{ "typeDefs": [{"name":"@minecraft/math","content":["function clampNumber(val, min, max) {",
"  return Math.min(Math.max(val, min), max);",
"}",
"var Vector3Utils = class _Vector3Utils {",
"  /**",
"   * equals",
"   *",
"   * Check the equality of two vectors",
"   */",
"  static equals(v1, v2) {",
"    return v1.x === v2.x && v1.y === v2.y && v1.z === v2.z;",
"  }",
"  /**",
"   * add",
"   *",
"   * Add two vectors to produce a new vector",
"   */",
"  static add(v1, v2) {",
"    return { x: v1.x + v2.x, y: v1.y + v2.y, z: v1.z + v2.z };",
"  }",
"  /**",
"   * subtract",
"   *",
"   * Subtract two vectors to produce a new vector (v1-v2)",
"   */",
"  static subtract(v1, v2) {",
"    return { x: v1.x - v2.x, y: v1.y - v2.y, z: v1.z - v2.z };",
"  }",
"  /** scale",
"   *",
"   * Multiple all entries in a vector by a single scalar value producing a new vector",
"   */",
"  static scale(v1, scale) {",
"    return { x: v1.x * scale, y: v1.y * scale, z: v1.z * scale };",
"  }",
"  /**",
"   * dot",
"   *",
"   * Calculate the dot product of two vectors",
"   */",
"  static dot(a, b) {",
"    return a.x * b.x + a.y * b.y + a.z * b.z;",
"  }",
"  /**",
"   * cross",
"   *",
"   * Calculate the cross product of two vectors. Returns a new vector.",
"   */",
"  static cross(a, b) {",
"    return {",
"      x: a.y * b.z - a.z * b.y,",
"      y: a.z * b.x - a.x * b.z,",
"      z: a.x * b.y - a.y * b.x,",
"    };",
"  }",
"  /**",
"   * magnitude",
"   *",
"   * The magnitude of a vector",
"   */",
"  static magnitude(v) {",
"    return Math.sqrt(v.x ** 2 + v.y ** 2 + v.z ** 2);",
"  }",
"  /**",
"   * distance",
"   *",
"   * Calculate the distance between two vectors",
"   */",
"  static distance(a, b) {",
"    return _Vector3Utils.magnitude(_Vector3Utils.subtract(a, b));",
"  }",
"  /**",
"   * normalize",
"   *",
"   * Takes a vector 3 and normalizes it to a unit vector",
"   */",
"  static normalize(v) {",
"    const mag = _Vector3Utils.magnitude(v);",
"    return { x: v.x / mag, y: v.y / mag, z: v.z / mag };",
"  }",
"  /**",
"   * floor",
"   *",
"   * Floor the components of a vector to produce a new vector",
"   */",
"  static floor(v) {",
"    return { x: Math.floor(v.x), y: Math.floor(v.y), z: Math.floor(v.z) };",
"  }",
"  /**",
"   * toString",
"   *",
"   * Create a string representation of a vector3",
"   */",
"  static toString(v, options) {",
"    const decimals = options?.decimals ?? 2;",
"    const str = [v.x.toFixed(decimals), v.y.toFixed(decimals), v.z.toFixed(decimals)];",
"    return str.join(options?.delimiter ?? ', ');",
"  }",
"  /**",
"   * clamp",
"   *",
"   * Clamps the components of a vector to limits to produce a new vector",
"   */",
"  static clamp(v, limits) {",
"    return {",
"      x: clampNumber(v.x, limits?.min?.x ?? Number.MIN_SAFE_INTEGER, limits?.max?.x ?? Number.MAX_SAFE_INTEGER),",
"      y: clampNumber(v.y, limits?.min?.y ?? Number.MIN_SAFE_INTEGER, limits?.max?.y ?? Number.MAX_SAFE_INTEGER),",
"      z: clampNumber(v.z, limits?.min?.z ?? Number.MIN_SAFE_INTEGER, limits?.max?.z ?? Number.MAX_SAFE_INTEGER),",
"    };",
"  }",
"  /**",
"   * lerp",
"   *",
"   * Constructs a new vector using linear interpolation on each component from two vectors.",
"   */",
"  static lerp(a, b, t) {",
"    return {",
"      x: a.x + (b.x - a.x) * t,",
"      y: a.y + (b.y - a.y) * t,",
"      z: a.z + (b.z - a.z) * t,",
"    };",
"  }",
"  /**",
"   * slerp",
"   *",
"   * Constructs a new vector using spherical linear interpolation on each component from two vectors.",
"   */",
"  static slerp(a, b, t) {",
"    const theta = Math.acos(_Vector3Utils.dot(a, b));",
"    const sinTheta = Math.sin(theta);",
"    const ta = Math.sin((1 - t) * theta) / sinTheta;",
"    const tb = Math.sin(t * theta) / sinTheta;",
"    return _Vector3Utils.add(_Vector3Utils.scale(a, ta), _Vector3Utils.scale(b, tb));",
"  }",
"};",
"var Vector2Utils = class {",
"  /**",
"   * toString",
"   *",
"   * Create a string representation of a vector2",
"   */",
"  static toString(v, options) {",
"    const decimals = options?.decimals ?? 2;",
"    const str = [v.x.toFixed(decimals), v.y.toFixed(decimals)];",
"    return str.join(options?.delimiter ?? ', ');",
"  }",
"};",
"var VECTOR3_UP = { x: 0, y: 1, z: 0 };",
"var VECTOR3_DOWN = { x: 0, y: -1, z: 0 };",
"var VECTOR3_LEFT = { x: -1, y: 0, z: 0 };",
"var VECTOR3_RIGHT = { x: 1, y: 0, z: 0 };",
"var VECTOR3_FORWARD = { x: 0, y: 0, z: 1 };",
"var VECTOR3_BACK = { x: 0, y: 0, z: -1 };",
"var VECTOR3_ONE = { x: 1, y: 1, z: 1 };",
"var VECTOR3_ZERO = { x: 0, y: 0, z: 0 };",
"var VECTOR3_WEST = { x: -1, y: 0, z: 0 };",
"var VECTOR3_EAST = { x: 1, y: 0, z: 0 };",
"var VECTOR3_NORTH = { x: 0, y: 0, z: 1 };",
"var VECTOR3_SOUTH = { x: 0, y: 0, z: -1 };",
"// lib/vector3/vectorWrapper.js",
"var Vector3Builder = class {",
"  constructor(first, y, z) {",
"    if (typeof first === 'object') {",
"      this.x = first.x;",
"      this.y = first.y;",
"      this.z = first.z;",
"    } else {",
"      this.x = first;",
"      this.y = y ?? 0;",
"      this.z = z ?? 0;",
"    }",
"  }",
"  /**",
"   * Assigns the values of the passed in vector to this vector. Returns itself.",
"   */",
"  assign(vec) {",
"    this.x = vec.x;",
"    this.y = vec.y;",
"    this.z = vec.z;",
"    return this;",
"  }",
"  /**",
"   * equals",
"   *",
"   * Check the equality of two vectors",
"   */",
"  equals(v) {",
"    return Vector3Utils.equals(this, v);",
"  }",
"  /**",
"   * add",
"   *",
"   * Adds the vector v to this, returning itself.",
"   */",
"  add(v) {",
"    return this.assign(Vector3Utils.add(this, v));",
"  }",
"  /**",
"   * subtract",
"   *",
"   * Subtracts the vector v from this, returning itself.",
"   */",
"  subtract(v) {",
"    return this.assign(Vector3Utils.subtract(this, v));",
"  }",
"  /** scale",
"   *",
"   * Scales this by the passed in value, returning itself.",
"   */",
"  scale(val) {",
"    return this.assign(Vector3Utils.scale(this, val));",
"  }",
"  /**",
"   * dot",
"   *",
"   * Computes the dot product of this and the passed in vector.",
"   */",
"  dot(vec) {",
"    return Vector3Utils.dot(this, vec);",
"  }",
"  /**",
"   * cross",
"   *",
"   * Computes the cross product of this and the passed in vector, returning itself.",
"   */",
"  cross(vec) {",
"    return this.assign(Vector3Utils.cross(this, vec));",
"  }",
"  /**",
"   * magnitude",
"   *",
"   * The magnitude of the vector",
"   */",
"  magnitude() {",
"    return Vector3Utils.magnitude(this);",
"  }",
"  /**",
"   * distance",
"   *",
"   * Calculate the distance between two vectors",
"   */",
"  distance(vec) {",
"    return Vector3Utils.distance(this, vec);",
"  }",
"  /**",
"   * normalize",
"   *",
"   * Normalizes this vector, returning itself.",
"   */",
"  normalize() {",
"    return this.assign(Vector3Utils.normalize(this));",
"  }",
"  /**",
"   * floor",
"   *",
"   * Floor the components of a vector to produce a new vector",
"   */",
"  floor() {",
"    return this.assign(Vector3Utils.floor(this));",
"  }",
"  /**",
"   * toString",
"   *",
"   * Create a string representation of a vector",
"   */",
"  toString(options) {",
"    return Vector3Utils.toString(this, options);",
"  }",
"  /**",
"   * clamp",
"   *",
"   * Clamps the components of a vector to limits to produce a new vector",
"   */",
"  clamp(limits) {",
"    return this.assign(Vector3Utils.clamp(this, limits));",
"  }",
"  /**",
"   * lerp",
"   *",
"   * Constructs a new vector using linear interpolation on each component from two vectors.",
"   */",
"  lerp(vec, t) {",
"    return this.assign(Vector3Utils.lerp(this, vec, t));",
"  }",
"  /**",
"   * slerp",
"   *",
"   * Constructs a new vector using spherical linear interpolation on each component from two vectors.",
"   */",
"  slerp(vec, t) {",
"    return this.assign(Vector3Utils.slerp(this, vec, t));",
"  }",
"};",
"var Vector2Builder = class {",
"  constructor(first, y) {",
"    if (typeof first === 'object') {",
"      this.x = first.x;",
"      this.y = first.y;",
"    } else {",
"      this.x = first;",
"      this.y = y ?? 0;",
"    }",
"  }",
"  toString(options) {",
"    return Vector2Utils.toString(this, options);",
"  }",
"};",
"export {",
"  VECTOR3_BACK,",
"  VECTOR3_DOWN,",
"  VECTOR3_EAST,",
"  VECTOR3_FORWARD,",
"  VECTOR3_LEFT,",
"  VECTOR3_NORTH,",
"  VECTOR3_ONE,",
"  VECTOR3_RIGHT,",
"  VECTOR3_SOUTH,",
"  VECTOR3_UP,",
"  VECTOR3_WEST,",
"  VECTOR3_ZERO,",
"  Vector2Builder,",
"  Vector2Utils,",
"  Vector3Builder,",
"  Vector3Utils,",
"  clampNumber,",
"};",
""]},{"name":"@minecraft/vanilla-data","content":["export enum MinecraftBiomeTypes {",
"  BambooJungle = 'minecraft:bamboo_jungle',",
"  BambooJungleHills = 'minecraft:bamboo_jungle_hills',",
"  BasaltDeltas = 'minecraft:basalt_deltas',",
"  Beach = 'minecraft:beach',",
"  BirchForest = 'minecraft:birch_forest',",
"  BirchForestHills = 'minecraft:birch_forest_hills',",
"  BirchForestHillsMutated = 'minecraft:birch_forest_hills_mutated',",
"  BirchForestMutated = 'minecraft:birch_forest_mutated',",
"  CherryGrove = 'minecraft:cherry_grove',",
"  ColdBeach = 'minecraft:cold_beach',",
"  ColdOcean = 'minecraft:cold_ocean',",
"  ColdTaiga = 'minecraft:cold_taiga',",
"  ColdTaigaHills = 'minecraft:cold_taiga_hills',",
"  ColdTaigaMutated = 'minecraft:cold_taiga_mutated',",
"  CrimsonForest = 'minecraft:crimson_forest',",
"  DeepColdOcean = 'minecraft:deep_cold_ocean',",
"  DeepDark = 'minecraft:deep_dark',",
"  DeepFrozenOcean = 'minecraft:deep_frozen_ocean',",
"  DeepLukewarmOcean = 'minecraft:deep_lukewarm_ocean',",
"  DeepOcean = 'minecraft:deep_ocean',",
"  DeepWarmOcean = 'minecraft:deep_warm_ocean',",
"  Desert = 'minecraft:desert',",
"  DesertHills = 'minecraft:desert_hills',",
"  DesertMutated = 'minecraft:desert_mutated',",
"  DripstoneCaves = 'minecraft:dripstone_caves',",
"  ExtremeHills = 'minecraft:extreme_hills',",
"  ExtremeHillsEdge = 'minecraft:extreme_hills_edge',",
"  ExtremeHillsMutated = 'minecraft:extreme_hills_mutated',",
"  ExtremeHillsPlusTrees = 'minecraft:extreme_hills_plus_trees',",
"  ExtremeHillsPlusTreesMutated = 'minecraft:extreme_hills_plus_trees_mutated',",
"  FlowerForest = 'minecraft:flower_forest',",
"  Forest = 'minecraft:forest',",
"  ForestHills = 'minecraft:forest_hills',",
"  FrozenOcean = 'minecraft:frozen_ocean',",
"  FrozenPeaks = 'minecraft:frozen_peaks',",
"  FrozenRiver = 'minecraft:frozen_river',",
"  Grove = 'minecraft:grove',",
"  Hell = 'minecraft:hell',",
"  IceMountains = 'minecraft:ice_mountains',",
"  IcePlains = 'minecraft:ice_plains',",
"  IcePlainsSpikes = 'minecraft:ice_plains_spikes',",
"  JaggedPeaks = 'minecraft:jagged_peaks',",
"  Jungle = 'minecraft:jungle',",
"  JungleEdge = 'minecraft:jungle_edge',",
"  JungleEdgeMutated = 'minecraft:jungle_edge_mutated',",
"  JungleHills = 'minecraft:jungle_hills',",
"  JungleMutated = 'minecraft:jungle_mutated',",
"  LegacyFrozenOcean = 'minecraft:legacy_frozen_ocean',",
"  LukewarmOcean = 'minecraft:lukewarm_ocean',",
"  LushCaves = 'minecraft:lush_caves',",
"  MangroveSwamp = 'minecraft:mangrove_swamp',",
"  Meadow = 'minecraft:meadow',",
"  MegaTaiga = 'minecraft:mega_taiga',",
"  MegaTaigaHills = 'minecraft:mega_taiga_hills',",
"  Mesa = 'minecraft:mesa',",
"  MesaBryce = 'minecraft:mesa_bryce',",
"  MesaPlateau = 'minecraft:mesa_plateau',",
"  MesaPlateauMutated = 'minecraft:mesa_plateau_mutated',",
"  MesaPlateauStone = 'minecraft:mesa_plateau_stone',",
"  MesaPlateauStoneMutated = 'minecraft:mesa_plateau_stone_mutated',",
"  MushroomIsland = 'minecraft:mushroom_island',",
"  MushroomIslandShore = 'minecraft:mushroom_island_shore',",
"  Ocean = 'minecraft:ocean',",
"  Plains = 'minecraft:plains',",
"  RedwoodTaigaHillsMutated = 'minecraft:redwood_taiga_hills_mutated',",
"  RedwoodTaigaMutated = 'minecraft:redwood_taiga_mutated',",
"  River = 'minecraft:river',",
"  RoofedForest = 'minecraft:roofed_forest',",
"  RoofedForestMutated = 'minecraft:roofed_forest_mutated',",
"  Savanna = 'minecraft:savanna',",
"  SavannaMutated = 'minecraft:savanna_mutated',",
"  SavannaPlateau = 'minecraft:savanna_plateau',",
"  SavannaPlateauMutated = 'minecraft:savanna_plateau_mutated',",
"  SnowySlopes = 'minecraft:snowy_slopes',",
"  SoulsandValley = 'minecraft:soulsand_valley',",
"  StoneBeach = 'minecraft:stone_beach',",
"  StonyPeaks = 'minecraft:stony_peaks',",
"  SunflowerPlains = 'minecraft:sunflower_plains',",
"  Swampland = 'minecraft:swampland',",
"  SwamplandMutated = 'minecraft:swampland_mutated',",
"  Taiga = 'minecraft:taiga',",
"  TaigaHills = 'minecraft:taiga_hills',",
"  TaigaMutated = 'minecraft:taiga_mutated',",
"  TheEnd = 'minecraft:the_end',",
"  WarmOcean = 'minecraft:warm_ocean',",
"  WarpedForest = 'minecraft:warped_forest',",
"}",
"export enum MinecraftBlockTypes {",
"  AcaciaButton = 'minecraft:acacia_button',",
"  AcaciaDoor = 'minecraft:acacia_door',",
"  AcaciaDoubleSlab = 'minecraft:acacia_double_slab',",
"  AcaciaFence = 'minecraft:acacia_fence',",
"  AcaciaFenceGate = 'minecraft:acacia_fence_gate',",
"  AcaciaHangingSign = 'minecraft:acacia_hanging_sign',",
"  AcaciaLeaves = 'minecraft:acacia_leaves',",
"  AcaciaLog = 'minecraft:acacia_log',",
"  AcaciaPlanks = 'minecraft:acacia_planks',",
"  AcaciaPressurePlate = 'minecraft:acacia_pressure_plate',",
"  AcaciaSapling = 'minecraft:acacia_sapling',",
"  AcaciaSlab = 'minecraft:acacia_slab',",
"  AcaciaStairs = 'minecraft:acacia_stairs',",
"  AcaciaStandingSign = 'minecraft:acacia_standing_sign',",
"  AcaciaTrapdoor = 'minecraft:acacia_trapdoor',",
"  AcaciaWallSign = 'minecraft:acacia_wall_sign',",
"  AcaciaWood = 'minecraft:acacia_wood',",
"  ActivatorRail = 'minecraft:activator_rail',",
"  Air = 'minecraft:air',",
"  Allium = 'minecraft:allium',",
"  Allow = 'minecraft:allow',",
"  AmethystBlock = 'minecraft:amethyst_block',",
"  AmethystCluster = 'minecraft:amethyst_cluster',",
"  AncientDebris = 'minecraft:ancient_debris',",
"  Andesite = 'minecraft:andesite',",
"  AndesiteStairs = 'minecraft:andesite_stairs',",
"  Anvil = 'minecraft:anvil',",
"  Azalea = 'minecraft:azalea',",
"  AzaleaLeaves = 'minecraft:azalea_leaves',",
"  AzaleaLeavesFlowered = 'minecraft:azalea_leaves_flowered',",
"  AzureBluet = 'minecraft:azure_bluet',",
"  Bamboo = 'minecraft:bamboo',",
"  BambooBlock = 'minecraft:bamboo_block',",
"  BambooButton = 'minecraft:bamboo_button',",
"  BambooDoor = 'minecraft:bamboo_door',",
"  BambooDoubleSlab = 'minecraft:bamboo_double_slab',",
"  BambooFence = 'minecraft:bamboo_fence',",
"  BambooFenceGate = 'minecraft:bamboo_fence_gate',",
"  BambooHangingSign = 'minecraft:bamboo_hanging_sign',",
"  BambooMosaic = 'minecraft:bamboo_mosaic',",
"  BambooMosaicDoubleSlab = 'minecraft:bamboo_mosaic_double_slab',",
"  BambooMosaicSlab = 'minecraft:bamboo_mosaic_slab',",
"  BambooMosaicStairs = 'minecraft:bamboo_mosaic_stairs',",
"  BambooPlanks = 'minecraft:bamboo_planks',",
"  BambooPressurePlate = 'minecraft:bamboo_pressure_plate',",
"  BambooSapling = 'minecraft:bamboo_sapling',",
"  BambooSlab = 'minecraft:bamboo_slab',",
"  BambooStairs = 'minecraft:bamboo_stairs',",
"  BambooStandingSign = 'minecraft:bamboo_standing_sign',",
"  BambooTrapdoor = 'minecraft:bamboo_trapdoor',",
"  BambooWallSign = 'minecraft:bamboo_wall_sign',",
"  Barrel = 'minecraft:barrel',",
"  Barrier = 'minecraft:barrier',",
"  Basalt = 'minecraft:basalt',",
"  Beacon = 'minecraft:beacon',",
"  Bed = 'minecraft:bed',",
"  Bedrock = 'minecraft:bedrock',",
"  BeeNest = 'minecraft:bee_nest',",
"  Beehive = 'minecraft:beehive',",
"  Beetroot = 'minecraft:beetroot',",
"  Bell = 'minecraft:bell',",
"  BigDripleaf = 'minecraft:big_dripleaf',",
"  BirchButton = 'minecraft:birch_button',",
"  BirchDoor = 'minecraft:birch_door',",
"  BirchDoubleSlab = 'minecraft:birch_double_slab',",
"  BirchFence = 'minecraft:birch_fence',",
"  BirchFenceGate = 'minecraft:birch_fence_gate',",
"  BirchHangingSign = 'minecraft:birch_hanging_sign',",
"  BirchLeaves = 'minecraft:birch_leaves',",
"  BirchLog = 'minecraft:birch_log',",
"  BirchPlanks = 'minecraft:birch_planks',",
"  BirchPressurePlate = 'minecraft:birch_pressure_plate',",
"  BirchSapling = 'minecraft:birch_sapling',",
"  BirchSlab = 'minecraft:birch_slab',",
"  BirchStairs = 'minecraft:birch_stairs',",
"  BirchStandingSign = 'minecraft:birch_standing_sign',",
"  BirchTrapdoor = 'minecraft:birch_trapdoor',",
"  BirchWallSign = 'minecraft:birch_wall_sign',",
"  BirchWood = 'minecraft:birch_wood',",
"  BlackCandle = 'minecraft:black_candle',",
"  BlackCandleCake = 'minecraft:black_candle_cake',",
"  BlackCarpet = 'minecraft:black_carpet',",
"  BlackConcrete = 'minecraft:black_concrete',",
"  BlackConcretePowder = 'minecraft:black_concrete_powder',",
"  BlackGlazedTerracotta = 'minecraft:black_glazed_terracotta',",
"  BlackShulkerBox = 'minecraft:black_shulker_box',",
"  BlackStainedGlass = 'minecraft:black_stained_glass',",
"  BlackStainedGlassPane = 'minecraft:black_stained_glass_pane',",
"  BlackTerracotta = 'minecraft:black_terracotta',",
"  BlackWool = 'minecraft:black_wool',",
"  Blackstone = 'minecraft:blackstone',",
"  BlackstoneDoubleSlab = 'minecraft:blackstone_double_slab',",
"  BlackstoneSlab = 'minecraft:blackstone_slab',",
"  BlackstoneStairs = 'minecraft:blackstone_stairs',",
"  BlackstoneWall = 'minecraft:blackstone_wall',",
"  BlastFurnace = 'minecraft:blast_furnace',",
"  BlueCandle = 'minecraft:blue_candle',",
"  BlueCandleCake = 'minecraft:blue_candle_cake',",
"  BlueCarpet = 'minecraft:blue_carpet',",
"  BlueConcrete = 'minecraft:blue_concrete',",
"  BlueConcretePowder = 'minecraft:blue_concrete_powder',",
"  BlueGlazedTerracotta = 'minecraft:blue_glazed_terracotta',",
"  BlueIce = 'minecraft:blue_ice',",
"  BlueOrchid = 'minecraft:blue_orchid',",
"  BlueShulkerBox = 'minecraft:blue_shulker_box',",
"  BlueStainedGlass = 'minecraft:blue_stained_glass',",
"  BlueStainedGlassPane = 'minecraft:blue_stained_glass_pane',",
"  BlueTerracotta = 'minecraft:blue_terracotta',",
"  BlueWool = 'minecraft:blue_wool',",
"  BoneBlock = 'minecraft:bone_block',",
"  Bookshelf = 'minecraft:bookshelf',",
"  BorderBlock = 'minecraft:border_block',",
"  BrainCoral = 'minecraft:brain_coral',",
"  BrainCoralFan = 'minecraft:brain_coral_fan',",
"  BrewingStand = 'minecraft:brewing_stand',",
"  BrickBlock = 'minecraft:brick_block',",
"  BrickStairs = 'minecraft:brick_stairs',",
"  BrownCandle = 'minecraft:brown_candle',",
"  BrownCandleCake = 'minecraft:brown_candle_cake',",
"  BrownCarpet = 'minecraft:brown_carpet',",
"  BrownConcrete = 'minecraft:brown_concrete',",
"  BrownConcretePowder = 'minecraft:brown_concrete_powder',",
"  BrownGlazedTerracotta = 'minecraft:brown_glazed_terracotta',",
"  BrownMushroom = 'minecraft:brown_mushroom',",
"  BrownMushroomBlock = 'minecraft:brown_mushroom_block',",
"  BrownShulkerBox = 'minecraft:brown_shulker_box',",
"  BrownStainedGlass = 'minecraft:brown_stained_glass',",
"  BrownStainedGlassPane = 'minecraft:brown_stained_glass_pane',",
"  BrownTerracotta = 'minecraft:brown_terracotta',",
"  BrownWool = 'minecraft:brown_wool',",
"  BubbleColumn = 'minecraft:bubble_column',",
"  BubbleCoral = 'minecraft:bubble_coral',",
"  BubbleCoralFan = 'minecraft:bubble_coral_fan',",
"  BuddingAmethyst = 'minecraft:budding_amethyst',",
"  Cactus = 'minecraft:cactus',",
"  Cake = 'minecraft:cake',",
"  Calcite = 'minecraft:calcite',",
"  CalibratedSculkSensor = 'minecraft:calibrated_sculk_sensor',",
"  Camera = 'minecraft:camera',",
"  Campfire = 'minecraft:campfire',",
"  Candle = 'minecraft:candle',",
"  CandleCake = 'minecraft:candle_cake',",
"  Carrots = 'minecraft:carrots',",
"  CartographyTable = 'minecraft:cartography_table',",
"  CarvedPumpkin = 'minecraft:carved_pumpkin',",
"  Cauldron = 'minecraft:cauldron',",
"  CaveVines = 'minecraft:cave_vines',",
"  CaveVinesBodyWithBerries = 'minecraft:cave_vines_body_with_berries',",
"  CaveVinesHeadWithBerries = 'minecraft:cave_vines_head_with_berries',",
"  Chain = 'minecraft:chain',",
"  ChainCommandBlock = 'minecraft:chain_command_block',",
"  ChemicalHeat = 'minecraft:chemical_heat',",
"  ChemistryTable = 'minecraft:chemistry_table',",
"  CherryButton = 'minecraft:cherry_button',",
"  CherryDoor = 'minecraft:cherry_door',",
"  CherryDoubleSlab = 'minecraft:cherry_double_slab',",
"  CherryFence = 'minecraft:cherry_fence',",
"  CherryFenceGate = 'minecraft:cherry_fence_gate',",
"  CherryHangingSign = 'minecraft:cherry_hanging_sign',",
"  CherryLeaves = 'minecraft:cherry_leaves',",
"  CherryLog = 'minecraft:cherry_log',",
"  CherryPlanks = 'minecraft:cherry_planks',",
"  CherryPressurePlate = 'minecraft:cherry_pressure_plate',",
"  CherrySapling = 'minecraft:cherry_sapling',",
"  CherrySlab = 'minecraft:cherry_slab',",
"  CherryStairs = 'minecraft:cherry_stairs',",
"  CherryStandingSign = 'minecraft:cherry_standing_sign',",
"  CherryTrapdoor = 'minecraft:cherry_trapdoor',",
"  CherryWallSign = 'minecraft:cherry_wall_sign',",
"  CherryWood = 'minecraft:cherry_wood',",
"  Chest = 'minecraft:chest',",
"  ChiseledBookshelf = 'minecraft:chiseled_bookshelf',",
"  ChiseledCopper = 'minecraft:chiseled_copper',",
"  ChiseledDeepslate = 'minecraft:chiseled_deepslate',",
"  ChiseledNetherBricks = 'minecraft:chiseled_nether_bricks',",
"  ChiseledPolishedBlackstone = 'minecraft:chiseled_polished_blackstone',",
"  ChiseledTuff = 'minecraft:chiseled_tuff',",
"  ChiseledTuffBricks = 'minecraft:chiseled_tuff_bricks',",
"  ChorusFlower = 'minecraft:chorus_flower',",
"  ChorusPlant = 'minecraft:chorus_plant',",
"  Clay = 'minecraft:clay',",
"  ClientRequestPlaceholderBlock = 'minecraft:client_request_placeholder_block',",
"  CoalBlock = 'minecraft:coal_block',",
"  CoalOre = 'minecraft:coal_ore',",
"  CobbledDeepslate = 'minecraft:cobbled_deepslate',",
"  CobbledDeepslateDoubleSlab = 'minecraft:cobbled_deepslate_double_slab',",
"  CobbledDeepslateSlab = 'minecraft:cobbled_deepslate_slab',",
"  CobbledDeepslateStairs = 'minecraft:cobbled_deepslate_stairs',",
"  CobbledDeepslateWall = 'minecraft:cobbled_deepslate_wall',",
"  Cobblestone = 'minecraft:cobblestone',",
"  CobblestoneWall = 'minecraft:cobblestone_wall',",
"  Cocoa = 'minecraft:cocoa',",
"  ColoredTorchBp = 'minecraft:colored_torch_bp',",
"  ColoredTorchRg = 'minecraft:colored_torch_rg',",
"  CommandBlock = 'minecraft:command_block',",
"  Composter = 'minecraft:composter',",
"  Conduit = 'minecraft:conduit',",
"  CopperBlock = 'minecraft:copper_block',",
"  CopperBulb = 'minecraft:copper_bulb',",
"  CopperDoor = 'minecraft:copper_door',",
"  CopperGrate = 'minecraft:copper_grate',",
"  CopperOre = 'minecraft:copper_ore',",
"  CopperTrapdoor = 'minecraft:copper_trapdoor',",
"  CoralBlock = 'minecraft:coral_block',",
"  CoralFanHang = 'minecraft:coral_fan_hang',",
"  CoralFanHang2 = 'minecraft:coral_fan_hang2',",
"  CoralFanHang3 = 'minecraft:coral_fan_hang3',",
"  Cornflower = 'minecraft:cornflower',",
"  CrackedDeepslateBricks = 'minecraft:cracked_deepslate_bricks',",
"  CrackedDeepslateTiles = 'minecraft:cracked_deepslate_tiles',",
"  CrackedNetherBricks = 'minecraft:cracked_nether_bricks',",
"  CrackedPolishedBlackstoneBricks = 'minecraft:cracked_polished_blackstone_bricks',",
"  Crafter = 'minecraft:crafter',",
"  CraftingTable = 'minecraft:crafting_table',",
"  CrimsonButton = 'minecraft:crimson_button',",
"  CrimsonDoor = 'minecraft:crimson_door',",
"  CrimsonDoubleSlab = 'minecraft:crimson_double_slab',",
"  CrimsonFence = 'minecraft:crimson_fence',",
"  CrimsonFenceGate = 'minecraft:crimson_fence_gate',",
"  CrimsonFungus = 'minecraft:crimson_fungus',",
"  CrimsonHangingSign = 'minecraft:crimson_hanging_sign',",
"  CrimsonHyphae = 'minecraft:crimson_hyphae',",
"  CrimsonNylium = 'minecraft:crimson_nylium',",
"  CrimsonPlanks = 'minecraft:crimson_planks',",
"  CrimsonPressurePlate = 'minecraft:crimson_pressure_plate',",
"  CrimsonRoots = 'minecraft:crimson_roots',",
"  CrimsonSlab = 'minecraft:crimson_slab',",
"  CrimsonStairs = 'minecraft:crimson_stairs',",
"  CrimsonStandingSign = 'minecraft:crimson_standing_sign',",
"  CrimsonStem = 'minecraft:crimson_stem',",
"  CrimsonTrapdoor = 'minecraft:crimson_trapdoor',",
"  CrimsonWallSign = 'minecraft:crimson_wall_sign',",
"  CryingObsidian = 'minecraft:crying_obsidian',",
"  CutCopper = 'minecraft:cut_copper',",
"  CutCopperSlab = 'minecraft:cut_copper_slab',",
"  CutCopperStairs = 'minecraft:cut_copper_stairs',",
"  CyanCandle = 'minecraft:cyan_candle',",
"  CyanCandleCake = 'minecraft:cyan_candle_cake',",
"  CyanCarpet = 'minecraft:cyan_carpet',",
"  CyanConcrete = 'minecraft:cyan_concrete',",
"  CyanConcretePowder = 'minecraft:cyan_concrete_powder',",
"  CyanGlazedTerracotta = 'minecraft:cyan_glazed_terracotta',",
"  CyanShulkerBox = 'minecraft:cyan_shulker_box',",
"  CyanStainedGlass = 'minecraft:cyan_stained_glass',",
"  CyanStainedGlassPane = 'minecraft:cyan_stained_glass_pane',",
"  CyanTerracotta = 'minecraft:cyan_terracotta',",
"  CyanWool = 'minecraft:cyan_wool',",
"  DarkOakButton = 'minecraft:dark_oak_button',",
"  DarkOakDoor = 'minecraft:dark_oak_door',",
"  DarkOakDoubleSlab = 'minecraft:dark_oak_double_slab',",
"  DarkOakFence = 'minecraft:dark_oak_fence',",
"  DarkOakFenceGate = 'minecraft:dark_oak_fence_gate',",
"  DarkOakHangingSign = 'minecraft:dark_oak_hanging_sign',",
"  DarkOakLeaves = 'minecraft:dark_oak_leaves',",
"  DarkOakLog = 'minecraft:dark_oak_log',",
"  DarkOakPlanks = 'minecraft:dark_oak_planks',",
"  DarkOakPressurePlate = 'minecraft:dark_oak_pressure_plate',",
"  DarkOakSapling = 'minecraft:dark_oak_sapling',",
"  DarkOakSlab = 'minecraft:dark_oak_slab',",
"  DarkOakStairs = 'minecraft:dark_oak_stairs',",
"  DarkOakTrapdoor = 'minecraft:dark_oak_trapdoor',",
"  DarkOakWood = 'minecraft:dark_oak_wood',",
"  DarkPrismarineStairs = 'minecraft:dark_prismarine_stairs',",
"  DarkoakStandingSign = 'minecraft:darkoak_standing_sign',",
"  DarkoakWallSign = 'minecraft:darkoak_wall_sign',",
"  DaylightDetector = 'minecraft:daylight_detector',",
"  DaylightDetectorInverted = 'minecraft:daylight_detector_inverted',",
"  DeadBrainCoral = 'minecraft:dead_brain_coral',",
"  DeadBrainCoralFan = 'minecraft:dead_brain_coral_fan',",
"  DeadBubbleCoral = 'minecraft:dead_bubble_coral',",
"  DeadBubbleCoralFan = 'minecraft:dead_bubble_coral_fan',",
"  DeadFireCoral = 'minecraft:dead_fire_coral',",
"  DeadFireCoralFan = 'minecraft:dead_fire_coral_fan',",
"  DeadHornCoral = 'minecraft:dead_horn_coral',",
"  DeadHornCoralFan = 'minecraft:dead_horn_coral_fan',",
"  DeadTubeCoral = 'minecraft:dead_tube_coral',",
"  DeadTubeCoralFan = 'minecraft:dead_tube_coral_fan',",
"  Deadbush = 'minecraft:deadbush',",
"  DecoratedPot = 'minecraft:decorated_pot',",
"  Deepslate = 'minecraft:deepslate',",
"  DeepslateBrickDoubleSlab = 'minecraft:deepslate_brick_double_slab',",
"  DeepslateBrickSlab = 'minecraft:deepslate_brick_slab',",
"  DeepslateBrickStairs = 'minecraft:deepslate_brick_stairs',",
"  DeepslateBrickWall = 'minecraft:deepslate_brick_wall',",
"  DeepslateBricks = 'minecraft:deepslate_bricks',",
"  DeepslateCoalOre = 'minecraft:deepslate_coal_ore',",
"  DeepslateCopperOre = 'minecraft:deepslate_copper_ore',",
"  DeepslateDiamondOre = 'minecraft:deepslate_diamond_ore',",
"  DeepslateEmeraldOre = 'minecraft:deepslate_emerald_ore',",
"  DeepslateGoldOre = 'minecraft:deepslate_gold_ore',",
"  DeepslateIronOre = 'minecraft:deepslate_iron_ore',",
"  DeepslateLapisOre = 'minecraft:deepslate_lapis_ore',",
"  DeepslateRedstoneOre = 'minecraft:deepslate_redstone_ore',",
"  DeepslateTileDoubleSlab = 'minecraft:deepslate_tile_double_slab',",
"  DeepslateTileSlab = 'minecraft:deepslate_tile_slab',",
"  DeepslateTileStairs = 'minecraft:deepslate_tile_stairs',",
"  DeepslateTileWall = 'minecraft:deepslate_tile_wall',",
"  DeepslateTiles = 'minecraft:deepslate_tiles',",
"  Deny = 'minecraft:deny',",
"  DetectorRail = 'minecraft:detector_rail',",
"  DiamondBlock = 'minecraft:diamond_block',",
"  DiamondOre = 'minecraft:diamond_ore',",
"  Diorite = 'minecraft:diorite',",
"  DioriteStairs = 'minecraft:diorite_stairs',",
"  Dirt = 'minecraft:dirt',",
"  DirtWithRoots = 'minecraft:dirt_with_roots',",
"  Dispenser = 'minecraft:dispenser',",
"  DoubleCutCopperSlab = 'minecraft:double_cut_copper_slab',",
"  DoublePlant = 'minecraft:double_plant',",
"  DoubleStoneBlockSlab = 'minecraft:double_stone_block_slab',",
"  DoubleStoneBlockSlab2 = 'minecraft:double_stone_block_slab2',",
"  DoubleStoneBlockSlab3 = 'minecraft:double_stone_block_slab3',",
"  DoubleStoneBlockSlab4 = 'minecraft:double_stone_block_slab4',",
"  DragonEgg = 'minecraft:dragon_egg',",
"  DriedKelpBlock = 'minecraft:dried_kelp_block',",
"  DripstoneBlock = 'minecraft:dripstone_block',",
"  Dropper = 'minecraft:dropper',",
"  Element0 = 'minecraft:element_0',",
"  Element1 = 'minecraft:element_1',",
"  Element10 = 'minecraft:element_10',",
"  Element100 = 'minecraft:element_100',",
"  Element101 = 'minecraft:element_101',",
"  Element102 = 'minecraft:element_102',",
"  Element103 = 'minecraft:element_103',",
"  Element104 = 'minecraft:element_104',",
"  Element105 = 'minecraft:element_105',",
"  Element106 = 'minecraft:element_106',",
"  Element107 = 'minecraft:element_107',",
"  Element108 = 'minecraft:element_108',",
"  Element109 = 'minecraft:element_109',",
"  Element11 = 'minecraft:element_11',",
"  Element110 = 'minecraft:element_110',",
"  Element111 = 'minecraft:element_111',",
"  Element112 = 'minecraft:element_112',",
"  Element113 = 'minecraft:element_113',",
"  Element114 = 'minecraft:element_114',",
"  Element115 = 'minecraft:element_115',",
"  Element116 = 'minecraft:element_116',",
"  Element117 = 'minecraft:element_117',",
"  Element118 = 'minecraft:element_118',",
"  Element12 = 'minecraft:element_12',",
"  Element13 = 'minecraft:element_13',",
"  Element14 = 'minecraft:element_14',",
"  Element15 = 'minecraft:element_15',",
"  Element16 = 'minecraft:element_16',",
"  Element17 = 'minecraft:element_17',",
"  Element18 = 'minecraft:element_18',",
"  Element19 = 'minecraft:element_19',",
"  Element2 = 'minecraft:element_2',",
"  Element20 = 'minecraft:element_20',",
"  Element21 = 'minecraft:element_21',",
"  Element22 = 'minecraft:element_22',",
"  Element23 = 'minecraft:element_23',",
"  Element24 = 'minecraft:element_24',",
"  Element25 = 'minecraft:element_25',",
"  Element26 = 'minecraft:element_26',",
"  Element27 = 'minecraft:element_27',",
"  Element28 = 'minecraft:element_28',",
"  Element29 = 'minecraft:element_29',",
"  Element3 = 'minecraft:element_3',",
"  Element30 = 'minecraft:element_30',",
"  Element31 = 'minecraft:element_31',",
"  Element32 = 'minecraft:element_32',",
"  Element33 = 'minecraft:element_33',",
"  Element34 = 'minecraft:element_34',",
"  Element35 = 'minecraft:element_35',",
"  Element36 = 'minecraft:element_36',",
"  Element37 = 'minecraft:element_37',",
"  Element38 = 'minecraft:element_38',",
"  Element39 = 'minecraft:element_39',",
"  Element4 = 'minecraft:element_4',",
"  Element40 = 'minecraft:element_40',",
"  Element41 = 'minecraft:element_41',",
"  Element42 = 'minecraft:element_42',",
"  Element43 = 'minecraft:element_43',",
"  Element44 = 'minecraft:element_44',",
"  Element45 = 'minecraft:element_45',",
"  Element46 = 'minecraft:element_46',",
"  Element47 = 'minecraft:element_47',",
"  Element48 = 'minecraft:element_48',",
"  Element49 = 'minecraft:element_49',",
"  Element5 = 'minecraft:element_5',",
"  Element50 = 'minecraft:element_50',",
"  Element51 = 'minecraft:element_51',",
"  Element52 = 'minecraft:element_52',",
"  Element53 = 'minecraft:element_53',",
"  Element54 = 'minecraft:element_54',",
"  Element55 = 'minecraft:element_55',",
"  Element56 = 'minecraft:element_56',",
"  Element57 = 'minecraft:element_57',",
"  Element58 = 'minecraft:element_58',",
"  Element59 = 'minecraft:element_59',",
"  Element6 = 'minecraft:element_6',",
"  Element60 = 'minecraft:element_60',",
"  Element61 = 'minecraft:element_61',",
"  Element62 = 'minecraft:element_62',",
"  Element63 = 'minecraft:element_63',",
"  Element64 = 'minecraft:element_64',",
"  Element65 = 'minecraft:element_65',",
"  Element66 = 'minecraft:element_66',",
"  Element67 = 'minecraft:element_67',",
"  Element68 = 'minecraft:element_68',",
"  Element69 = 'minecraft:element_69',",
"  Element7 = 'minecraft:element_7',",
"  Element70 = 'minecraft:element_70',",
"  Element71 = 'minecraft:element_71',",
"  Element72 = 'minecraft:element_72',",
"  Element73 = 'minecraft:element_73',",
"  Element74 = 'minecraft:element_74',",
"  Element75 = 'minecraft:element_75',",
"  Element76 = 'minecraft:element_76',",
"  Element77 = 'minecraft:element_77',",
"  Element78 = 'minecraft:element_78',",
"  Element79 = 'minecraft:element_79',",
"  Element8 = 'minecraft:element_8',",
"  Element80 = 'minecraft:element_80',",
"  Element81 = 'minecraft:element_81',",
"  Element82 = 'minecraft:element_82',",
"  Element83 = 'minecraft:element_83',",
"  Element84 = 'minecraft:element_84',",
"  Element85 = 'minecraft:element_85',",
"  Element86 = 'minecraft:element_86',",
"  Element87 = 'minecraft:element_87',",
"  Element88 = 'minecraft:element_88',",
"  Element89 = 'minecraft:element_89',",
"  Element9 = 'minecraft:element_9',",
"  Element90 = 'minecraft:element_90',",
"  Element91 = 'minecraft:element_91',",
"  Element92 = 'minecraft:element_92',",
"  Element93 = 'minecraft:element_93',",
"  Element94 = 'minecraft:element_94',",
"  Element95 = 'minecraft:element_95',",
"  Element96 = 'minecraft:element_96',",
"  Element97 = 'minecraft:element_97',",
"  Element98 = 'minecraft:element_98',",
"  Element99 = 'minecraft:element_99',",
"  EmeraldBlock = 'minecraft:emerald_block',",
"  EmeraldOre = 'minecraft:emerald_ore',",
"  EnchantingTable = 'minecraft:enchanting_table',",
"  EndBrickStairs = 'minecraft:end_brick_stairs',",
"  EndBricks = 'minecraft:end_bricks',",
"  EndGateway = 'minecraft:end_gateway',",
"  EndPortal = 'minecraft:end_portal',",
"  EndPortalFrame = 'minecraft:end_portal_frame',",
"  EndRod = 'minecraft:end_rod',",
"  EndStone = 'minecraft:end_stone',",
"  EnderChest = 'minecraft:ender_chest',",
"  ExposedChiseledCopper = 'minecraft:exposed_chiseled_copper',",
"  ExposedCopper = 'minecraft:exposed_copper',",
"  ExposedCopperBulb = 'minecraft:exposed_copper_bulb',",
"  ExposedCopperDoor = 'minecraft:exposed_copper_door',",
"  ExposedCopperGrate = 'minecraft:exposed_copper_grate',",
"  ExposedCopperTrapdoor = 'minecraft:exposed_copper_trapdoor',",
"  ExposedCutCopper = 'minecraft:exposed_cut_copper',",
"  ExposedCutCopperSlab = 'minecraft:exposed_cut_copper_slab',",
"  ExposedCutCopperStairs = 'minecraft:exposed_cut_copper_stairs',",
"  ExposedDoubleCutCopperSlab = 'minecraft:exposed_double_cut_copper_slab',",
"  Farmland = 'minecraft:farmland',",
"  FenceGate = 'minecraft:fence_gate',",
"  Fire = 'minecraft:fire',",
"  FireCoral = 'minecraft:fire_coral',",
"  FireCoralFan = 'minecraft:fire_coral_fan',",
"  FletchingTable = 'minecraft:fletching_table',",
"  FlowerPot = 'minecraft:flower_pot',",
"  FloweringAzalea = 'minecraft:flowering_azalea',",
"  FlowingLava = 'minecraft:flowing_lava',",
"  FlowingWater = 'minecraft:flowing_water',",
"  Frame = 'minecraft:frame',",
"  FrogSpawn = 'minecraft:frog_spawn',",
"  FrostedIce = 'minecraft:frosted_ice',",
"  Furnace = 'minecraft:furnace',",
"  GildedBlackstone = 'minecraft:gilded_blackstone',",
"  Glass = 'minecraft:glass',",
"  GlassPane = 'minecraft:glass_pane',",
"  GlowFrame = 'minecraft:glow_frame',",
"  GlowLichen = 'minecraft:glow_lichen',",
"  Glowingobsidian = 'minecraft:glowingobsidian',",
"  Glowstone = 'minecraft:glowstone',",
"  GoldBlock = 'minecraft:gold_block',",
"  GoldOre = 'minecraft:gold_ore',",
"  GoldenRail = 'minecraft:golden_rail',",
"  Granite = 'minecraft:granite',",
"  GraniteStairs = 'minecraft:granite_stairs',",
"  GrassBlock = 'minecraft:grass_block',",
"  GrassPath = 'minecraft:grass_path',",
"  Gravel = 'minecraft:gravel',",
"  GrayCandle = 'minecraft:gray_candle',",
"  GrayCandleCake = 'minecraft:gray_candle_cake',",
"  GrayCarpet = 'minecraft:gray_carpet',",
"  GrayConcrete = 'minecraft:gray_concrete',",
"  GrayConcretePowder = 'minecraft:gray_concrete_powder',",
"  GrayGlazedTerracotta = 'minecraft:gray_glazed_terracotta',",
"  GrayShulkerBox = 'minecraft:gray_shulker_box',",
"  GrayStainedGlass = 'minecraft:gray_stained_glass',",
"  GrayStainedGlassPane = 'minecraft:gray_stained_glass_pane',",
"  GrayTerracotta = 'minecraft:gray_terracotta',",
"  GrayWool = 'minecraft:gray_wool',",
"  GreenCandle = 'minecraft:green_candle',",
"  GreenCandleCake = 'minecraft:green_candle_cake',",
"  GreenCarpet = 'minecraft:green_carpet',",
"  GreenConcrete = 'minecraft:green_concrete',",
"  GreenConcretePowder = 'minecraft:green_concrete_powder',",
"  GreenGlazedTerracotta = 'minecraft:green_glazed_terracotta',",
"  GreenShulkerBox = 'minecraft:green_shulker_box',",
"  GreenStainedGlass = 'minecraft:green_stained_glass',",
"  GreenStainedGlassPane = 'minecraft:green_stained_glass_pane',",
"  GreenTerracotta = 'minecraft:green_terracotta',",
"  GreenWool = 'minecraft:green_wool',",
"  Grindstone = 'minecraft:grindstone',",
"  HangingRoots = 'minecraft:hanging_roots',",
"  HardBlackStainedGlass = 'minecraft:hard_black_stained_glass',",
"  HardBlackStainedGlassPane = 'minecraft:hard_black_stained_glass_pane',",
"  HardBlueStainedGlass = 'minecraft:hard_blue_stained_glass',",
"  HardBlueStainedGlassPane = 'minecraft:hard_blue_stained_glass_pane',",
"  HardBrownStainedGlass = 'minecraft:hard_brown_stained_glass',",
"  HardBrownStainedGlassPane = 'minecraft:hard_brown_stained_glass_pane',",
"  HardCyanStainedGlass = 'minecraft:hard_cyan_stained_glass',",
"  HardCyanStainedGlassPane = 'minecraft:hard_cyan_stained_glass_pane',",
"  HardGlass = 'minecraft:hard_glass',",
"  HardGlassPane = 'minecraft:hard_glass_pane',",
"  HardGrayStainedGlass = 'minecraft:hard_gray_stained_glass',",
"  HardGrayStainedGlassPane = 'minecraft:hard_gray_stained_glass_pane',",
"  HardGreenStainedGlass = 'minecraft:hard_green_stained_glass',",
"  HardGreenStainedGlassPane = 'minecraft:hard_green_stained_glass_pane',",
"  HardLightBlueStainedGlass = 'minecraft:hard_light_blue_stained_glass',",
"  HardLightBlueStainedGlassPane = 'minecraft:hard_light_blue_stained_glass_pane',",
"  HardLightGrayStainedGlass = 'minecraft:hard_light_gray_stained_glass',",
"  HardLightGrayStainedGlassPane = 'minecraft:hard_light_gray_stained_glass_pane',",
"  HardLimeStainedGlass = 'minecraft:hard_lime_stained_glass',",
"  HardLimeStainedGlassPane = 'minecraft:hard_lime_stained_glass_pane',",
"  HardMagentaStainedGlass = 'minecraft:hard_magenta_stained_glass',",
"  HardMagentaStainedGlassPane = 'minecraft:hard_magenta_stained_glass_pane',",
"  HardOrangeStainedGlass = 'minecraft:hard_orange_stained_glass',",
"  HardOrangeStainedGlassPane = 'minecraft:hard_orange_stained_glass_pane',",
"  HardPinkStainedGlass = 'minecraft:hard_pink_stained_glass',",
"  HardPinkStainedGlassPane = 'minecraft:hard_pink_stained_glass_pane',",
"  HardPurpleStainedGlass = 'minecraft:hard_purple_stained_glass',",
"  HardPurpleStainedGlassPane = 'minecraft:hard_purple_stained_glass_pane',",
"  HardRedStainedGlass = 'minecraft:hard_red_stained_glass',",
"  HardRedStainedGlassPane = 'minecraft:hard_red_stained_glass_pane',",
"  HardWhiteStainedGlass = 'minecraft:hard_white_stained_glass',",
"  HardWhiteStainedGlassPane = 'minecraft:hard_white_stained_glass_pane',",
"  HardYellowStainedGlass = 'minecraft:hard_yellow_stained_glass',",
"  HardYellowStainedGlassPane = 'minecraft:hard_yellow_stained_glass_pane',",
"  HardenedClay = 'minecraft:hardened_clay',",
"  HayBlock = 'minecraft:hay_block',",
"  HeavyCore = 'minecraft:heavy_core',",
"  HeavyWeightedPressurePlate = 'minecraft:heavy_weighted_pressure_plate',",
"  HoneyBlock = 'minecraft:honey_block',",
"  HoneycombBlock = 'minecraft:honeycomb_block',",
"  Hopper = 'minecraft:hopper',",
"  HornCoral = 'minecraft:horn_coral',",
"  HornCoralFan = 'minecraft:horn_coral_fan',",
"  Ice = 'minecraft:ice',",
"  InfestedDeepslate = 'minecraft:infested_deepslate',",
"  InfoUpdate = 'minecraft:info_update',",
"  InfoUpdate2 = 'minecraft:info_update2',",
"  InvisibleBedrock = 'minecraft:invisible_bedrock',",
"  IronBars = 'minecraft:iron_bars',",
"  IronBlock = 'minecraft:iron_block',",
"  IronDoor = 'minecraft:iron_door',",
"  IronOre = 'minecraft:iron_ore',",
"  IronTrapdoor = 'minecraft:iron_trapdoor',",
"  Jigsaw = 'minecraft:jigsaw',",
"  Jukebox = 'minecraft:jukebox',",
"  JungleButton = 'minecraft:jungle_button',",
"  JungleDoor = 'minecraft:jungle_door',",
"  JungleDoubleSlab = 'minecraft:jungle_double_slab',",
"  JungleFence = 'minecraft:jungle_fence',",
"  JungleFenceGate = 'minecraft:jungle_fence_gate',",
"  JungleHangingSign = 'minecraft:jungle_hanging_sign',",
"  JungleLeaves = 'minecraft:jungle_leaves',",
"  JungleLog = 'minecraft:jungle_log',",
"  JunglePlanks = 'minecraft:jungle_planks',",
"  JunglePressurePlate = 'minecraft:jungle_pressure_plate',",
"  JungleSapling = 'minecraft:jungle_sapling',",
"  JungleSlab = 'minecraft:jungle_slab',",
"  JungleStairs = 'minecraft:jungle_stairs',",
"  JungleStandingSign = 'minecraft:jungle_standing_sign',",
"  JungleTrapdoor = 'minecraft:jungle_trapdoor',",
"  JungleWallSign = 'minecraft:jungle_wall_sign',",
"  JungleWood = 'minecraft:jungle_wood',",
"  Kelp = 'minecraft:kelp',",
"  Ladder = 'minecraft:ladder',",
"  Lantern = 'minecraft:lantern',",
"  LapisBlock = 'minecraft:lapis_block',",
"  LapisOre = 'minecraft:lapis_ore',",
"  LargeAmethystBud = 'minecraft:large_amethyst_bud',",
"  Lava = 'minecraft:lava',",
"  Lectern = 'minecraft:lectern',",
"  Lever = 'minecraft:lever',",
"  LightBlock = 'minecraft:light_block',",
"  LightBlueCandle = 'minecraft:light_blue_candle',",
"  LightBlueCandleCake = 'minecraft:light_blue_candle_cake',",
"  LightBlueCarpet = 'minecraft:light_blue_carpet',",
"  LightBlueConcrete = 'minecraft:light_blue_concrete',",
"  LightBlueConcretePowder = 'minecraft:light_blue_concrete_powder',",
"  LightBlueGlazedTerracotta = 'minecraft:light_blue_glazed_terracotta',",
"  LightBlueShulkerBox = 'minecraft:light_blue_shulker_box',",
"  LightBlueStainedGlass = 'minecraft:light_blue_stained_glass',",
"  LightBlueStainedGlassPane = 'minecraft:light_blue_stained_glass_pane',",
"  LightBlueTerracotta = 'minecraft:light_blue_terracotta',",
"  LightBlueWool = 'minecraft:light_blue_wool',",
"  LightGrayCandle = 'minecraft:light_gray_candle',",
"  LightGrayCandleCake = 'minecraft:light_gray_candle_cake',",
"  LightGrayCarpet = 'minecraft:light_gray_carpet',",
"  LightGrayConcrete = 'minecraft:light_gray_concrete',",
"  LightGrayConcretePowder = 'minecraft:light_gray_concrete_powder',",
"  LightGrayShulkerBox = 'minecraft:light_gray_shulker_box',",
"  LightGrayStainedGlass = 'minecraft:light_gray_stained_glass',",
"  LightGrayStainedGlassPane = 'minecraft:light_gray_stained_glass_pane',",
"  LightGrayTerracotta = 'minecraft:light_gray_terracotta',",
"  LightGrayWool = 'minecraft:light_gray_wool',",
"  LightWeightedPressurePlate = 'minecraft:light_weighted_pressure_plate',",
"  LightningRod = 'minecraft:lightning_rod',",
"  LilyOfTheValley = 'minecraft:lily_of_the_valley',",
"  LimeCandle = 'minecraft:lime_candle',",
"  LimeCandleCake = 'minecraft:lime_candle_cake',",
"  LimeCarpet = 'minecraft:lime_carpet',",
"  LimeConcrete = 'minecraft:lime_concrete',",
"  LimeConcretePowder = 'minecraft:lime_concrete_powder',",
"  LimeGlazedTerracotta = 'minecraft:lime_glazed_terracotta',",
"  LimeShulkerBox = 'minecraft:lime_shulker_box',",
"  LimeStainedGlass = 'minecraft:lime_stained_glass',",
"  LimeStainedGlassPane = 'minecraft:lime_stained_glass_pane',",
"  LimeTerracotta = 'minecraft:lime_terracotta',",
"  LimeWool = 'minecraft:lime_wool',",
"  LitBlastFurnace = 'minecraft:lit_blast_furnace',",
"  LitDeepslateRedstoneOre = 'minecraft:lit_deepslate_redstone_ore',",
"  LitFurnace = 'minecraft:lit_furnace',",
"  LitPumpkin = 'minecraft:lit_pumpkin',",
"  LitRedstoneLamp = 'minecraft:lit_redstone_lamp',",
"  LitRedstoneOre = 'minecraft:lit_redstone_ore',",
"  LitSmoker = 'minecraft:lit_smoker',",
"  Lodestone = 'minecraft:lodestone',",
"  Loom = 'minecraft:loom',",
"  MagentaCandle = 'minecraft:magenta_candle',",
"  MagentaCandleCake = 'minecraft:magenta_candle_cake',",
"  MagentaCarpet = 'minecraft:magenta_carpet',",
"  MagentaConcrete = 'minecraft:magenta_concrete',",
"  MagentaConcretePowder = 'minecraft:magenta_concrete_powder',",
"  MagentaGlazedTerracotta = 'minecraft:magenta_glazed_terracotta',",
"  MagentaShulkerBox = 'minecraft:magenta_shulker_box',",
"  MagentaStainedGlass = 'minecraft:magenta_stained_glass',",
"  MagentaStainedGlassPane = 'minecraft:magenta_stained_glass_pane',",
"  MagentaTerracotta = 'minecraft:magenta_terracotta',",
"  MagentaWool = 'minecraft:magenta_wool',",
"  Magma = 'minecraft:magma',",
"  MangroveButton = 'minecraft:mangrove_button',",
"  MangroveDoor = 'minecraft:mangrove_door',",
"  MangroveDoubleSlab = 'minecraft:mangrove_double_slab',",
"  MangroveFence = 'minecraft:mangrove_fence',",
"  MangroveFenceGate = 'minecraft:mangrove_fence_gate',",
"  MangroveHangingSign = 'minecraft:mangrove_hanging_sign',",
"  MangroveLeaves = 'minecraft:mangrove_leaves',",
"  MangroveLog = 'minecraft:mangrove_log',",
"  MangrovePlanks = 'minecraft:mangrove_planks',",
"  MangrovePressurePlate = 'minecraft:mangrove_pressure_plate',",
"  MangrovePropagule = 'minecraft:mangrove_propagule',",
"  MangroveRoots = 'minecraft:mangrove_roots',",
"  MangroveSlab = 'minecraft:mangrove_slab',",
"  MangroveStairs = 'minecraft:mangrove_stairs',",
"  MangroveStandingSign = 'minecraft:mangrove_standing_sign',",
"  MangroveTrapdoor = 'minecraft:mangrove_trapdoor',",
"  MangroveWallSign = 'minecraft:mangrove_wall_sign',",
"  MangroveWood = 'minecraft:mangrove_wood',",
"  MediumAmethystBud = 'minecraft:medium_amethyst_bud',",
"  MelonBlock = 'minecraft:melon_block',",
"  MelonStem = 'minecraft:melon_stem',",
"  MobSpawner = 'minecraft:mob_spawner',",
"  MonsterEgg = 'minecraft:monster_egg',",
"  MossBlock = 'minecraft:moss_block',",
"  MossCarpet = 'minecraft:moss_carpet',",
"  MossyCobblestone = 'minecraft:mossy_cobblestone',",
"  MossyCobblestoneStairs = 'minecraft:mossy_cobblestone_stairs',",
"  MossyStoneBrickStairs = 'minecraft:mossy_stone_brick_stairs',",
"  MovingBlock = 'minecraft:moving_block',",
"  Mud = 'minecraft:mud',",
"  MudBrickDoubleSlab = 'minecraft:mud_brick_double_slab',",
"  MudBrickSlab = 'minecraft:mud_brick_slab',",
"  MudBrickStairs = 'minecraft:mud_brick_stairs',",
"  MudBrickWall = 'minecraft:mud_brick_wall',",
"  MudBricks = 'minecraft:mud_bricks',",
"  MuddyMangroveRoots = 'minecraft:muddy_mangrove_roots',",
"  Mycelium = 'minecraft:mycelium',",
"  NetherBrick = 'minecraft:nether_brick',",
"  NetherBrickFence = 'minecraft:nether_brick_fence',",
"  NetherBrickStairs = 'minecraft:nether_brick_stairs',",
"  NetherGoldOre = 'minecraft:nether_gold_ore',",
"  NetherSprouts = 'minecraft:nether_sprouts',",
"  NetherWart = 'minecraft:nether_wart',",
"  NetherWartBlock = 'minecraft:nether_wart_block',",
"  NetheriteBlock = 'minecraft:netherite_block',",
"  Netherrack = 'minecraft:netherrack',",
"  Netherreactor = 'minecraft:netherreactor',",
"  NormalStoneStairs = 'minecraft:normal_stone_stairs',",
"  Noteblock = 'minecraft:noteblock',",
"  OakDoubleSlab = 'minecraft:oak_double_slab',",
"  OakFence = 'minecraft:oak_fence',",
"  OakHangingSign = 'minecraft:oak_hanging_sign',",
"  OakLeaves = 'minecraft:oak_leaves',",
"  OakLog = 'minecraft:oak_log',",
"  OakPlanks = 'minecraft:oak_planks',",
"  OakSapling = 'minecraft:oak_sapling',",
"  OakSlab = 'minecraft:oak_slab',",
"  OakStairs = 'minecraft:oak_stairs',",
"  OakWood = 'minecraft:oak_wood',",
"  Observer = 'minecraft:observer',",
"  Obsidian = 'minecraft:obsidian',",
"  OchreFroglight = 'minecraft:ochre_froglight',",
"  OrangeCandle = 'minecraft:orange_candle',",
"  OrangeCandleCake = 'minecraft:orange_candle_cake',",
"  OrangeCarpet = 'minecraft:orange_carpet',",
"  OrangeConcrete = 'minecraft:orange_concrete',",
"  OrangeConcretePowder = 'minecraft:orange_concrete_powder',",
"  OrangeGlazedTerracotta = 'minecraft:orange_glazed_terracotta',",
"  OrangeShulkerBox = 'minecraft:orange_shulker_box',",
"  OrangeStainedGlass = 'minecraft:orange_stained_glass',",
"  OrangeStainedGlassPane = 'minecraft:orange_stained_glass_pane',",
"  OrangeTerracotta = 'minecraft:orange_terracotta',",
"  OrangeTulip = 'minecraft:orange_tulip',",
"  OrangeWool = 'minecraft:orange_wool',",
"  OxeyeDaisy = 'minecraft:oxeye_daisy',",
"  OxidizedChiseledCopper = 'minecraft:oxidized_chiseled_copper',",
"  OxidizedCopper = 'minecraft:oxidized_copper',",
"  OxidizedCopperBulb = 'minecraft:oxidized_copper_bulb',",
"  OxidizedCopperDoor = 'minecraft:oxidized_copper_door',",
"  OxidizedCopperGrate = 'minecraft:oxidized_copper_grate',",
"  OxidizedCopperTrapdoor = 'minecraft:oxidized_copper_trapdoor',",
"  OxidizedCutCopper = 'minecraft:oxidized_cut_copper',",
"  OxidizedCutCopperSlab = 'minecraft:oxidized_cut_copper_slab',",
"  OxidizedCutCopperStairs = 'minecraft:oxidized_cut_copper_stairs',",
"  OxidizedDoubleCutCopperSlab = 'minecraft:oxidized_double_cut_copper_slab',",
"  PackedIce = 'minecraft:packed_ice',",
"  PackedMud = 'minecraft:packed_mud',",
"  PearlescentFroglight = 'minecraft:pearlescent_froglight',",
"  PinkCandle = 'minecraft:pink_candle',",
"  PinkCandleCake = 'minecraft:pink_candle_cake',",
"  PinkCarpet = 'minecraft:pink_carpet',",
"  PinkConcrete = 'minecraft:pink_concrete',",
"  PinkConcretePowder = 'minecraft:pink_concrete_powder',",
"  PinkGlazedTerracotta = 'minecraft:pink_glazed_terracotta',",
"  PinkPetals = 'minecraft:pink_petals',",
"  PinkShulkerBox = 'minecraft:pink_shulker_box',",
"  PinkStainedGlass = 'minecraft:pink_stained_glass',",
"  PinkStainedGlassPane = 'minecraft:pink_stained_glass_pane',",
"  PinkTerracotta = 'minecraft:pink_terracotta',",
"  PinkTulip = 'minecraft:pink_tulip',",
"  PinkWool = 'minecraft:pink_wool',",
"  Piston = 'minecraft:piston',",
"  PistonArmCollision = 'minecraft:piston_arm_collision',",
"  PitcherCrop = 'minecraft:pitcher_crop',",
"  PitcherPlant = 'minecraft:pitcher_plant',",
"  Podzol = 'minecraft:podzol',",
"  PointedDripstone = 'minecraft:pointed_dripstone',",
"  PolishedAndesite = 'minecraft:polished_andesite',",
"  PolishedAndesiteStairs = 'minecraft:polished_andesite_stairs',",
"  PolishedBasalt = 'minecraft:polished_basalt',",
"  PolishedBlackstone = 'minecraft:polished_blackstone',",
"  PolishedBlackstoneBrickDoubleSlab = 'minecraft:polished_blackstone_brick_double_slab',",
"  PolishedBlackstoneBrickSlab = 'minecraft:polished_blackstone_brick_slab',",
"  PolishedBlackstoneBrickStairs = 'minecraft:polished_blackstone_brick_stairs',",
"  PolishedBlackstoneBrickWall = 'minecraft:polished_blackstone_brick_wall',",
"  PolishedBlackstoneBricks = 'minecraft:polished_blackstone_bricks',",
"  PolishedBlackstoneButton = 'minecraft:polished_blackstone_button',",
"  PolishedBlackstoneDoubleSlab = 'minecraft:polished_blackstone_double_slab',",
"  PolishedBlackstonePressurePlate = 'minecraft:polished_blackstone_pressure_plate',",
"  PolishedBlackstoneSlab = 'minecraft:polished_blackstone_slab',",
"  PolishedBlackstoneStairs = 'minecraft:polished_blackstone_stairs',",
"  PolishedBlackstoneWall = 'minecraft:polished_blackstone_wall',",
"  PolishedDeepslate = 'minecraft:polished_deepslate',",
"  PolishedDeepslateDoubleSlab = 'minecraft:polished_deepslate_double_slab',",
"  PolishedDeepslateSlab = 'minecraft:polished_deepslate_slab',",
"  PolishedDeepslateStairs = 'minecraft:polished_deepslate_stairs',",
"  PolishedDeepslateWall = 'minecraft:polished_deepslate_wall',",
"  PolishedDiorite = 'minecraft:polished_diorite',",
"  PolishedDioriteStairs = 'minecraft:polished_diorite_stairs',",
"  PolishedGranite = 'minecraft:polished_granite',",
"  PolishedGraniteStairs = 'minecraft:polished_granite_stairs',",
"  PolishedTuff = 'minecraft:polished_tuff',",
"  PolishedTuffDoubleSlab = 'minecraft:polished_tuff_double_slab',",
"  PolishedTuffSlab = 'minecraft:polished_tuff_slab',",
"  PolishedTuffStairs = 'minecraft:polished_tuff_stairs',",
"  PolishedTuffWall = 'minecraft:polished_tuff_wall',",
"  Poppy = 'minecraft:poppy',",
"  Portal = 'minecraft:portal',",
"  Potatoes = 'minecraft:potatoes',",
"  PowderSnow = 'minecraft:powder_snow',",
"  PoweredComparator = 'minecraft:powered_comparator',",
"  PoweredRepeater = 'minecraft:powered_repeater',",
"  Prismarine = 'minecraft:prismarine',",
"  PrismarineBricksStairs = 'minecraft:prismarine_bricks_stairs',",
"  PrismarineStairs = 'minecraft:prismarine_stairs',",
"  Pumpkin = 'minecraft:pumpkin',",
"  PumpkinStem = 'minecraft:pumpkin_stem',",
"  PurpleCandle = 'minecraft:purple_candle',",
"  PurpleCandleCake = 'minecraft:purple_candle_cake',",
"  PurpleCarpet = 'minecraft:purple_carpet',",
"  PurpleConcrete = 'minecraft:purple_concrete',",
"  PurpleConcretePowder = 'minecraft:purple_concrete_powder',",
"  PurpleGlazedTerracotta = 'minecraft:purple_glazed_terracotta',",
"  PurpleShulkerBox = 'minecraft:purple_shulker_box',",
"  PurpleStainedGlass = 'minecraft:purple_stained_glass',",
"  PurpleStainedGlassPane = 'minecraft:purple_stained_glass_pane',",
"  PurpleTerracotta = 'minecraft:purple_terracotta',",
"  PurpleWool = 'minecraft:purple_wool',",
"  PurpurBlock = 'minecraft:purpur_block',",
"  PurpurStairs = 'minecraft:purpur_stairs',",
"  QuartzBlock = 'minecraft:quartz_block',",
"  QuartzBricks = 'minecraft:quartz_bricks',",
"  QuartzOre = 'minecraft:quartz_ore',",
"  QuartzStairs = 'minecraft:quartz_stairs',",
"  Rail = 'minecraft:rail',",
"  RawCopperBlock = 'minecraft:raw_copper_block',",
"  RawGoldBlock = 'minecraft:raw_gold_block',",
"  RawIronBlock = 'minecraft:raw_iron_block',",
"  RedCandle = 'minecraft:red_candle',",
"  RedCandleCake = 'minecraft:red_candle_cake',",
"  RedCarpet = 'minecraft:red_carpet',",
"  RedConcrete = 'minecraft:red_concrete',",
"  RedConcretePowder = 'minecraft:red_concrete_powder',",
"  RedGlazedTerracotta = 'minecraft:red_glazed_terracotta',",
"  RedMushroom = 'minecraft:red_mushroom',",
"  RedMushroomBlock = 'minecraft:red_mushroom_block',",
"  RedNetherBrick = 'minecraft:red_nether_brick',",
"  RedNetherBrickStairs = 'minecraft:red_nether_brick_stairs',",
"  RedSandstone = 'minecraft:red_sandstone',",
"  RedSandstoneStairs = 'minecraft:red_sandstone_stairs',",
"  RedShulkerBox = 'minecraft:red_shulker_box',",
"  RedStainedGlass = 'minecraft:red_stained_glass',",
"  RedStainedGlassPane = 'minecraft:red_stained_glass_pane',",
"  RedTerracotta = 'minecraft:red_terracotta',",
"  RedTulip = 'minecraft:red_tulip',",
"  RedWool = 'minecraft:red_wool',",
"  RedstoneBlock = 'minecraft:redstone_block',",
"  RedstoneLamp = 'minecraft:redstone_lamp',",
"  RedstoneOre = 'minecraft:redstone_ore',",
"  RedstoneTorch = 'minecraft:redstone_torch',",
"  RedstoneWire = 'minecraft:redstone_wire',",
"  Reeds = 'minecraft:reeds',",
"  ReinforcedDeepslate = 'minecraft:reinforced_deepslate',",
"  RepeatingCommandBlock = 'minecraft:repeating_command_block',",
"  Reserved6 = 'minecraft:reserved6',",
"  RespawnAnchor = 'minecraft:respawn_anchor',",
"  Sand = 'minecraft:sand',",
"  Sandstone = 'minecraft:sandstone',",
"  SandstoneStairs = 'minecraft:sandstone_stairs',",
"  Scaffolding = 'minecraft:scaffolding',",
"  Sculk = 'minecraft:sculk',",
"  SculkCatalyst = 'minecraft:sculk_catalyst',",
"  SculkSensor = 'minecraft:sculk_sensor',",
"  SculkShrieker = 'minecraft:sculk_shrieker',",
"  SculkVein = 'minecraft:sculk_vein',",
"  SeaLantern = 'minecraft:sea_lantern',",
"  SeaPickle = 'minecraft:sea_pickle',",
"  Seagrass = 'minecraft:seagrass',",
"  Shroomlight = 'minecraft:shroomlight',",
"  SilverGlazedTerracotta = 'minecraft:silver_glazed_terracotta',",
"  Skull = 'minecraft:skull',",
"  Slime = 'minecraft:slime',",
"  SmallAmethystBud = 'minecraft:small_amethyst_bud',",
"  SmallDripleafBlock = 'minecraft:small_dripleaf_block',",
"  SmithingTable = 'minecraft:smithing_table',",
"  Smoker = 'minecraft:smoker',",
"  SmoothBasalt = 'minecraft:smooth_basalt',",
"  SmoothQuartzStairs = 'minecraft:smooth_quartz_stairs',",
"  SmoothRedSandstoneStairs = 'minecraft:smooth_red_sandstone_stairs',",
"  SmoothSandstoneStairs = 'minecraft:smooth_sandstone_stairs',",
"  SmoothStone = 'minecraft:smooth_stone',",
"  SnifferEgg = 'minecraft:sniffer_egg',",
"  Snow = 'minecraft:snow',",
"  SnowLayer = 'minecraft:snow_layer',",
"  SoulCampfire = 'minecraft:soul_campfire',",
"  SoulFire = 'minecraft:soul_fire',",
"  SoulLantern = 'minecraft:soul_lantern',",
"  SoulSand = 'minecraft:soul_sand',",
"  SoulSoil = 'minecraft:soul_soil',",
"  SoulTorch = 'minecraft:soul_torch',",
"  Sponge = 'minecraft:sponge',",
"  SporeBlossom = 'minecraft:spore_blossom',",
"  SpruceButton = 'minecraft:spruce_button',",
"  SpruceDoor = 'minecraft:spruce_door',",
"  SpruceDoubleSlab = 'minecraft:spruce_double_slab',",
"  SpruceFence = 'minecraft:spruce_fence',",
"  SpruceFenceGate = 'minecraft:spruce_fence_gate',",
"  SpruceHangingSign = 'minecraft:spruce_hanging_sign',",
"  SpruceLeaves = 'minecraft:spruce_leaves',",
"  SpruceLog = 'minecraft:spruce_log',",
"  SprucePlanks = 'minecraft:spruce_planks',",
"  SprucePressurePlate = 'minecraft:spruce_pressure_plate',",
"  SpruceSapling = 'minecraft:spruce_sapling',",
"  SpruceSlab = 'minecraft:spruce_slab',",
"  SpruceStairs = 'minecraft:spruce_stairs',",
"  SpruceStandingSign = 'minecraft:spruce_standing_sign',",
"  SpruceTrapdoor = 'minecraft:spruce_trapdoor',",
"  SpruceWallSign = 'minecraft:spruce_wall_sign',",
"  SpruceWood = 'minecraft:spruce_wood',",
"  StandingBanner = 'minecraft:standing_banner',",
"  StandingSign = 'minecraft:standing_sign',",
"  StickyPiston = 'minecraft:sticky_piston',",
"  StickyPistonArmCollision = 'minecraft:sticky_piston_arm_collision',",
"  Stone = 'minecraft:stone',",
"  StoneBlockSlab = 'minecraft:stone_block_slab',",
"  StoneBlockSlab2 = 'minecraft:stone_block_slab2',",
"  StoneBlockSlab3 = 'minecraft:stone_block_slab3',",
"  StoneBlockSlab4 = 'minecraft:stone_block_slab4',",
"  StoneBrickStairs = 'minecraft:stone_brick_stairs',",
"  StoneButton = 'minecraft:stone_button',",
"  StonePressurePlate = 'minecraft:stone_pressure_plate',",
"  StoneStairs = 'minecraft:stone_stairs',",
"  Stonebrick = 'minecraft:stonebrick',",
"  Stonecutter = 'minecraft:stonecutter',",
"  StonecutterBlock = 'minecraft:stonecutter_block',",
"  StrippedAcaciaLog = 'minecraft:stripped_acacia_log',",
"  StrippedAcaciaWood = 'minecraft:stripped_acacia_wood',",
"  StrippedBambooBlock = 'minecraft:stripped_bamboo_block',",
"  StrippedBirchLog = 'minecraft:stripped_birch_log',",
"  StrippedBirchWood = 'minecraft:stripped_birch_wood',",
"  StrippedCherryLog = 'minecraft:stripped_cherry_log',",
"  StrippedCherryWood = 'minecraft:stripped_cherry_wood',",
"  StrippedCrimsonHyphae = 'minecraft:stripped_crimson_hyphae',",
"  StrippedCrimsonStem = 'minecraft:stripped_crimson_stem',",
"  StrippedDarkOakLog = 'minecraft:stripped_dark_oak_log',",
"  StrippedDarkOakWood = 'minecraft:stripped_dark_oak_wood',",
"  StrippedJungleLog = 'minecraft:stripped_jungle_log',",
"  StrippedJungleWood = 'minecraft:stripped_jungle_wood',",
"  StrippedMangroveLog = 'minecraft:stripped_mangrove_log',",
"  StrippedMangroveWood = 'minecraft:stripped_mangrove_wood',",
"  StrippedOakLog = 'minecraft:stripped_oak_log',",
"  StrippedOakWood = 'minecraft:stripped_oak_wood',",
"  StrippedSpruceLog = 'minecraft:stripped_spruce_log',",
"  StrippedSpruceWood = 'minecraft:stripped_spruce_wood',",
"  StrippedWarpedHyphae = 'minecraft:stripped_warped_hyphae',",
"  StrippedWarpedStem = 'minecraft:stripped_warped_stem',",
"  StructureBlock = 'minecraft:structure_block',",
"  StructureVoid = 'minecraft:structure_void',",
"  SuspiciousGravel = 'minecraft:suspicious_gravel',",
"  SuspiciousSand = 'minecraft:suspicious_sand',",
"  SweetBerryBush = 'minecraft:sweet_berry_bush',",
"  Tallgrass = 'minecraft:tallgrass',",
"  Target = 'minecraft:target',",
"  TintedGlass = 'minecraft:tinted_glass',",
"  Tnt = 'minecraft:tnt',",
"  Torch = 'minecraft:torch',",
"  Torchflower = 'minecraft:torchflower',",
"  TorchflowerCrop = 'minecraft:torchflower_crop',",
"  Trapdoor = 'minecraft:trapdoor',",
"  TrappedChest = 'minecraft:trapped_chest',",
"  TrialSpawner = 'minecraft:trial_spawner',",
"  TripWire = 'minecraft:trip_wire',",
"  TripwireHook = 'minecraft:tripwire_hook',",
"  TubeCoral = 'minecraft:tube_coral',",
"  TubeCoralFan = 'minecraft:tube_coral_fan',",
"  Tuff = 'minecraft:tuff',",
"  TuffBrickDoubleSlab = 'minecraft:tuff_brick_double_slab',",
"  TuffBrickSlab = 'minecraft:tuff_brick_slab',",
"  TuffBrickStairs = 'minecraft:tuff_brick_stairs',",
"  TuffBrickWall = 'minecraft:tuff_brick_wall',",
"  TuffBricks = 'minecraft:tuff_bricks',",
"  TuffDoubleSlab = 'minecraft:tuff_double_slab',",
"  TuffSlab = 'minecraft:tuff_slab',",
"  TuffStairs = 'minecraft:tuff_stairs',",
"  TuffWall = 'minecraft:tuff_wall',",
"  TurtleEgg = 'minecraft:turtle_egg',",
"  TwistingVines = 'minecraft:twisting_vines',",
"  UnderwaterTorch = 'minecraft:underwater_torch',",
"  UndyedShulkerBox = 'minecraft:undyed_shulker_box',",
"  Unknown = 'minecraft:unknown',",
"  UnlitRedstoneTorch = 'minecraft:unlit_redstone_torch',",
"  UnpoweredComparator = 'minecraft:unpowered_comparator',",
"  UnpoweredRepeater = 'minecraft:unpowered_repeater',",
"  Vault = 'minecraft:vault',",
"  VerdantFroglight = 'minecraft:verdant_froglight',",
"  Vine = 'minecraft:vine',",
"  WallBanner = 'minecraft:wall_banner',",
"  WallSign = 'minecraft:wall_sign',",
"  WarpedButton = 'minecraft:warped_button',",
"  WarpedDoor = 'minecraft:warped_door',",
"  WarpedDoubleSlab = 'minecraft:warped_double_slab',",
"  WarpedFence = 'minecraft:warped_fence',",
"  WarpedFenceGate = 'minecraft:warped_fence_gate',",
"  WarpedFungus = 'minecraft:warped_fungus',",
"  WarpedHangingSign = 'minecraft:warped_hanging_sign',",
"  WarpedHyphae = 'minecraft:warped_hyphae',",
"  WarpedNylium = 'minecraft:warped_nylium',",
"  WarpedPlanks = 'minecraft:warped_planks',",
"  WarpedPressurePlate = 'minecraft:warped_pressure_plate',",
"  WarpedRoots = 'minecraft:warped_roots',",
"  WarpedSlab = 'minecraft:warped_slab',",
"  WarpedStairs = 'minecraft:warped_stairs',",
"  WarpedStandingSign = 'minecraft:warped_standing_sign',",
"  WarpedStem = 'minecraft:warped_stem',",
"  WarpedTrapdoor = 'minecraft:warped_trapdoor',",
"  WarpedWallSign = 'minecraft:warped_wall_sign',",
"  WarpedWartBlock = 'minecraft:warped_wart_block',",
"  Water = 'minecraft:water',",
"  Waterlily = 'minecraft:waterlily',",
"  WaxedChiseledCopper = 'minecraft:waxed_chiseled_copper',",
"  WaxedCopper = 'minecraft:waxed_copper',",
"  WaxedCopperBulb = 'minecraft:waxed_copper_bulb',",
"  WaxedCopperDoor = 'minecraft:waxed_copper_door',",
"  WaxedCopperGrate = 'minecraft:waxed_copper_grate',",
"  WaxedCopperTrapdoor = 'minecraft:waxed_copper_trapdoor',",
"  WaxedCutCopper = 'minecraft:waxed_cut_copper',",
"  WaxedCutCopperSlab = 'minecraft:waxed_cut_copper_slab',",
"  WaxedCutCopperStairs = 'minecraft:waxed_cut_copper_stairs',",
"  WaxedDoubleCutCopperSlab = 'minecraft:waxed_double_cut_copper_slab',",
"  WaxedExposedChiseledCopper = 'minecraft:waxed_exposed_chiseled_copper',",
"  WaxedExposedCopper = 'minecraft:waxed_exposed_copper',",
"  WaxedExposedCopperBulb = 'minecraft:waxed_exposed_copper_bulb',",
"  WaxedExposedCopperDoor = 'minecraft:waxed_exposed_copper_door',",
"  WaxedExposedCopperGrate = 'minecraft:waxed_exposed_copper_grate',",
"  WaxedExposedCopperTrapdoor = 'minecraft:waxed_exposed_copper_trapdoor',",
"  WaxedExposedCutCopper = 'minecraft:waxed_exposed_cut_copper',",
"  WaxedExposedCutCopperSlab = 'minecraft:waxed_exposed_cut_copper_slab',",
"  WaxedExposedCutCopperStairs = 'minecraft:waxed_exposed_cut_copper_stairs',",
"  WaxedExposedDoubleCutCopperSlab = 'minecraft:waxed_exposed_double_cut_copper_slab',",
"  WaxedOxidizedChiseledCopper = 'minecraft:waxed_oxidized_chiseled_copper',",
"  WaxedOxidizedCopper = 'minecraft:waxed_oxidized_copper',",
"  WaxedOxidizedCopperBulb = 'minecraft:waxed_oxidized_copper_bulb',",
"  WaxedOxidizedCopperDoor = 'minecraft:waxed_oxidized_copper_door',",
"  WaxedOxidizedCopperGrate = 'minecraft:waxed_oxidized_copper_grate',",
"  WaxedOxidizedCopperTrapdoor = 'minecraft:waxed_oxidized_copper_trapdoor',",
"  WaxedOxidizedCutCopper = 'minecraft:waxed_oxidized_cut_copper',",
"  WaxedOxidizedCutCopperSlab = 'minecraft:waxed_oxidized_cut_copper_slab',",
"  WaxedOxidizedCutCopperStairs = 'minecraft:waxed_oxidized_cut_copper_stairs',",
"  WaxedOxidizedDoubleCutCopperSlab = 'minecraft:waxed_oxidized_double_cut_copper_slab',",
"  WaxedWeatheredChiseledCopper = 'minecraft:waxed_weathered_chiseled_copper',",
"  WaxedWeatheredCopper = 'minecraft:waxed_weathered_copper',",
"  WaxedWeatheredCopperBulb = 'minecraft:waxed_weathered_copper_bulb',",
"  WaxedWeatheredCopperDoor = 'minecraft:waxed_weathered_copper_door',",
"  WaxedWeatheredCopperGrate = 'minecraft:waxed_weathered_copper_grate',",
"  WaxedWeatheredCopperTrapdoor = 'minecraft:waxed_weathered_copper_trapdoor',",
"  WaxedWeatheredCutCopper = 'minecraft:waxed_weathered_cut_copper',",
"  WaxedWeatheredCutCopperSlab = 'minecraft:waxed_weathered_cut_copper_slab',",
"  WaxedWeatheredCutCopperStairs = 'minecraft:waxed_weathered_cut_copper_stairs',",
"  WaxedWeatheredDoubleCutCopperSlab = 'minecraft:waxed_weathered_double_cut_copper_slab',",
"  WeatheredChiseledCopper = 'minecraft:weathered_chiseled_copper',",
"  WeatheredCopper = 'minecraft:weathered_copper',",
"  WeatheredCopperBulb = 'minecraft:weathered_copper_bulb',",
"  WeatheredCopperDoor = 'minecraft:weathered_copper_door',",
"  WeatheredCopperGrate = 'minecraft:weathered_copper_grate',",
"  WeatheredCopperTrapdoor = 'minecraft:weathered_copper_trapdoor',",
"  WeatheredCutCopper = 'minecraft:weathered_cut_copper',",
"  WeatheredCutCopperSlab = 'minecraft:weathered_cut_copper_slab',",
"  WeatheredCutCopperStairs = 'minecraft:weathered_cut_copper_stairs',",
"  WeatheredDoubleCutCopperSlab = 'minecraft:weathered_double_cut_copper_slab',",
"  Web = 'minecraft:web',",
"  WeepingVines = 'minecraft:weeping_vines',",
"  Wheat = 'minecraft:wheat',",
"  WhiteCandle = 'minecraft:white_candle',",
"  WhiteCandleCake = 'minecraft:white_candle_cake',",
"  WhiteCarpet = 'minecraft:white_carpet',",
"  WhiteConcrete = 'minecraft:white_concrete',",
"  WhiteConcretePowder = 'minecraft:white_concrete_powder',",
"  WhiteGlazedTerracotta = 'minecraft:white_glazed_terracotta',",
"  WhiteShulkerBox = 'minecraft:white_shulker_box',",
"  WhiteStainedGlass = 'minecraft:white_stained_glass',",
"  WhiteStainedGlassPane = 'minecraft:white_stained_glass_pane',",
"  WhiteTerracotta = 'minecraft:white_terracotta',",
"  WhiteTulip = 'minecraft:white_tulip',",
"  WhiteWool = 'minecraft:white_wool',",
"  WitherRose = 'minecraft:wither_rose',",
"  WoodenButton = 'minecraft:wooden_button',",
"  WoodenDoor = 'minecraft:wooden_door',",
"  WoodenPressurePlate = 'minecraft:wooden_pressure_plate',",
"  YellowCandle = 'minecraft:yellow_candle',",
"  YellowCandleCake = 'minecraft:yellow_candle_cake',",
"  YellowCarpet = 'minecraft:yellow_carpet',",
"  YellowConcrete = 'minecraft:yellow_concrete',",
"  YellowConcretePowder = 'minecraft:yellow_concrete_powder',",
"  YellowFlower = 'minecraft:yellow_flower',",
"  YellowGlazedTerracotta = 'minecraft:yellow_glazed_terracotta',",
"  YellowShulkerBox = 'minecraft:yellow_shulker_box',",
"  YellowStainedGlass = 'minecraft:yellow_stained_glass',",
"  YellowStainedGlassPane = 'minecraft:yellow_stained_glass_pane',",
"  YellowTerracotta = 'minecraft:yellow_terracotta',",
"  YellowWool = 'minecraft:yellow_wool',",
"}",
"export type MinecraftBlockTypesUnion = keyof typeof MinecraftBlockTypes;",
"export type BlockStateSuperset = {",
"  ['active']?: boolean;",
"  ['age']?: number;",
"  ['age_bit']?: boolean;",
"  ['allow_underwater_bit']?: boolean;",
"  ['attached_bit']?: boolean;",
"  ['attachment']?: string;",
"  ['bamboo_leaf_size']?: string;",
"  ['bamboo_stalk_thickness']?: string;",
"  ['big_dripleaf_head']?: boolean;",
"  ['big_dripleaf_tilt']?: string;",
"  ['bite_counter']?: number;",
"  ['block_light_level']?: number;",
"  ['bloom']?: boolean;",
"  ['books_stored']?: number;",
"  ['brewing_stand_slot_a_bit']?: boolean;",
"  ['brewing_stand_slot_b_bit']?: boolean;",
"  ['brewing_stand_slot_c_bit']?: boolean;",
"  ['brushed_progress']?: number;",
"  ['button_pressed_bit']?: boolean;",
"  ['can_summon']?: boolean;",
"  ['candles']?: number;",
"  ['cauldron_liquid']?: string;",
"  ['chemistry_table_type']?: string;",
"  ['chisel_type']?: string;",
"  ['cluster_count']?: number;",
"  ['color']?: string;",
"  ['color_bit']?: boolean;",
"  ['composter_fill_level']?: number;",
"  ['conditional_bit']?: boolean;",
"  ['coral_color']?: string;",
"  ['coral_direction']?: number;",
"  ['coral_fan_direction']?: number;",
"  ['coral_hang_type_bit']?: boolean;",
"  ['covered_bit']?: boolean;",
"  ['cracked_state']?: string;",
"  ['crafting']?: boolean;",
"  ['damage']?: string;",
"  ['dead_bit']?: boolean;",
"  ['deprecated']?: number;",
"  ['direction']?: number;",
"  ['dirt_type']?: string;",
"  ['disarmed_bit']?: boolean;",
"  ['door_hinge_bit']?: boolean;",
"  ['double_plant_type']?: string;",
"  ['drag_down']?: boolean;",
"  ['dripstone_thickness']?: string;",
"  ['end_portal_eye_bit']?: boolean;",
"  ['explode_bit']?: boolean;",
"  ['extinguished']?: boolean;",
"  ['facing_direction']?: number;",
"  ['fill_level']?: number;",
"  ['flower_type']?: string;",
"  ['ground_sign_direction']?: number;",
"  ['growing_plant_age']?: number;",
"  ['growth']?: number;",
"  ['hanging']?: boolean;",
"  ['head_piece_bit']?: boolean;",
"  ['height']?: number;",
"  ['honey_level']?: number;",
"  ['huge_mushroom_bits']?: number;",
"  ['in_wall_bit']?: boolean;",
"  ['infiniburn_bit']?: boolean;",
"  ['item_frame_map_bit']?: boolean;",
"  ['item_frame_photo_bit']?: boolean;",
"  ['kelp_age']?: number;",
"  ['lever_direction']?: string;",
"  ['liquid_depth']?: number;",
"  ['lit']?: boolean;",
"  ['minecraft:block_face']?: string;",
"  ['minecraft:cardinal_direction']?: string;",
"  ['minecraft:facing_direction']?: string;",
"  ['minecraft:vertical_half']?: string;",
"  ['moisturized_amount']?: number;",
"  ['monster_egg_stone_type']?: string;",
"  ['multi_face_direction_bits']?: number;",
"  ['new_leaf_type']?: string;",
"  ['new_log_type']?: string;",
"  ['no_drop_bit']?: boolean;",
"  ['occupied_bit']?: boolean;",
"  ['old_leaf_type']?: string;",
"  ['old_log_type']?: string;",
"  ['open_bit']?: boolean;",
"  ['orientation']?: string;",
"  ['output_lit_bit']?: boolean;",
"  ['output_subtract_bit']?: boolean;",
"  ['persistent_bit']?: boolean;",
"  ['pillar_axis']?: string;",
"  ['portal_axis']?: string;",
"  ['powered_bit']?: boolean;",
"  ['prismarine_block_type']?: string;",
"  ['propagule_stage']?: number;",
"  ['rail_data_bit']?: boolean;",
"  ['rail_direction']?: number;",
"  ['redstone_signal']?: number;",
"  ['repeater_delay']?: number;",
"  ['respawn_anchor_charge']?: number;",
"  ['rotation']?: number;",
"  ['sand_stone_type']?: string;",
"  ['sand_type']?: string;",
"  ['sapling_type']?: string;",
"  ['sculk_sensor_phase']?: number;",
"  ['sea_grass_type']?: string;",
"  ['sponge_type']?: string;",
"  ['stability']?: number;",
"  ['stability_check']?: boolean;",
"  ['stone_brick_type']?: string;",
"  ['stone_slab_type']?: string;",
"  ['stone_slab_type_2']?: string;",
"  ['stone_slab_type_3']?: string;",
"  ['stone_slab_type_4']?: string;",
"  ['stone_type']?: string;",
"  ['stripped_bit']?: boolean;",
"  ['structure_block_type']?: string;",
"  ['structure_void_type']?: string;",
"  ['suspended_bit']?: boolean;",
"  ['tall_grass_type']?: string;",
"  ['toggle_bit']?: boolean;",
"  ['top_slot_bit']?: boolean;",
"  ['torch_facing_direction']?: string;",
"  ['trial_spawner_state']?: number;",
"  ['triggered_bit']?: boolean;",
"  ['turtle_egg_count']?: string;",
"  ['twisting_vines_age']?: number;",
"  ['update_bit']?: boolean;",
"  ['upper_block_bit']?: boolean;",
"  ['upside_down_bit']?: boolean;",
"  ['vault_state']?: string;",
"  ['vine_direction_bits']?: number;",
"  ['wall_block_type']?: string;",
"  ['wall_connection_type_east']?: string;",
"  ['wall_connection_type_north']?: string;",
"  ['wall_connection_type_south']?: string;",
"  ['wall_connection_type_west']?: string;",
"  ['wall_post_bit']?: boolean;",
"  ['weeping_vines_age']?: number;",
"  ['weirdo_direction']?: number;",
"  ['wood_type']?: string;",
"};",
"export type AcaciaButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"export type AcaciaDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"export type AcaciaDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"export type AcaciaFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"export type AcaciaHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to AcaciaLeaves",
" */",
"export type AcaciaLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to AcaciaLog",
" */",
"export type AcaciaLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to AcaciaPressurePlate",
" */",
"export type AcaciaPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to AcaciaSapling",
" */",
"export type AcaciaSaplingStates = Pick<BlockStateSuperset, 'age_bit'>;",
"/**",
" * States specific to AcaciaSlab",
" */",
"export type AcaciaSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to AcaciaStairs",
" */",
"export type AcaciaStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to AcaciaStandingSign",
" */",
"export type AcaciaStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to AcaciaTrapdoor",
" */",
"export type AcaciaTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to AcaciaWallSign",
" */",
"export type AcaciaWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to AcaciaWood",
" */",
"export type AcaciaWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to ActivatorRail",
" */",
"export type ActivatorRailStates = Pick<BlockStateSuperset, 'rail_data_bit' | 'rail_direction'>;",
"/**",
" * States specific to AmethystCluster",
" */",
"export type AmethystClusterStates = Pick<BlockStateSuperset, 'minecraft:block_face'>;",
"/**",
" * States specific to AndesiteStairs",
" */",
"export type AndesiteStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to Anvil",
" */",
"export type AnvilStates = Pick<BlockStateSuperset, 'damage' | 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to AzaleaLeaves",
" */",
"export type AzaleaLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to AzaleaLeavesFlowered",
" */",
"export type AzaleaLeavesFloweredStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to Bamboo",
" */",
"export type BambooStates = Pick<BlockStateSuperset, 'age_bit' | 'bamboo_leaf_size' | 'bamboo_stalk_thickness'>;",
"/**",
" * States specific to BambooBlock",
" */",
"export type BambooBlockStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to BambooButton",
" */",
"export type BambooButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to BambooDoor",
" */",
"export type BambooDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to BambooDoubleSlab",
" */",
"export type BambooDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to BambooFenceGate",
" */",
"export type BambooFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to BambooHangingSign",
" */",
"export type BambooHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to BambooMosaicDoubleSlab",
" */",
"export type BambooMosaicDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to BambooMosaicSlab",
" */",
"export type BambooMosaicSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to BambooMosaicStairs",
" */",
"export type BambooMosaicStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to BambooPressurePlate",
" */",
"export type BambooPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to BambooSapling",
" */",
"export type BambooSaplingStates = Pick<BlockStateSuperset, 'age_bit'>;",
"/**",
" * States specific to BambooSlab",
" */",
"export type BambooSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to BambooStairs",
" */",
"export type BambooStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to BambooStandingSign",
" */",
"export type BambooStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to BambooTrapdoor",
" */",
"export type BambooTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to BambooWallSign",
" */",
"export type BambooWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to Barrel",
" */",
"export type BarrelStates = Pick<BlockStateSuperset, 'facing_direction' | 'open_bit'>;",
"/**",
" * States specific to Basalt",
" */",
"export type BasaltStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to Bed",
" */",
"export type BedStates = Pick<BlockStateSuperset, 'direction' | 'head_piece_bit' | 'occupied_bit'>;",
"/**",
" * States specific to Bedrock",
" */",
"export type BedrockStates = Pick<BlockStateSuperset, 'infiniburn_bit'>;",
"/**",
" * States specific to BeeNest",
" */",
"export type BeeNestStates = Pick<BlockStateSuperset, 'direction' | 'honey_level'>;",
"/**",
" * States specific to Beehive",
" */",
"export type BeehiveStates = Pick<BlockStateSuperset, 'direction' | 'honey_level'>;",
"/**",
" * States specific to Beetroot",
" */",
"export type BeetrootStates = Pick<BlockStateSuperset, 'growth'>;",
"/**",
" * States specific to Bell",
" */",
"export type BellStates = Pick<BlockStateSuperset, 'attachment' | 'direction' | 'toggle_bit'>;",
"/**",
" * States specific to BigDripleaf",
" */",
"export type BigDripleafStates = Pick<",
"  BlockStateSuperset,",
"  'big_dripleaf_head' | 'big_dripleaf_tilt' | 'minecraft:cardinal_direction'",
">;",
"/**",
" * States specific to BirchButton",
" */",
"export type BirchButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to BirchDoor",
" */",
"export type BirchDoorStates = Pick<BlockStateSuperset, 'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'>;",
"/**",
" * States specific to BirchDoubleSlab",
" */",
"export type BirchDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to BirchFenceGate",
" */",
"export type BirchFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to BirchHangingSign",
" */",
"export type BirchHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to BirchLeaves",
" */",
"export type BirchLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to BirchLog",
" */",
"export type BirchLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to BirchPressurePlate",
" */",
"export type BirchPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to BirchSapling",
" */",
"export type BirchSaplingStates = Pick<BlockStateSuperset, 'age_bit'>;",
"/**",
" * States specific to BirchSlab",
" */",
"export type BirchSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to BirchStairs",
" */",
"export type BirchStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to BirchStandingSign",
" */",
"export type BirchStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to BirchTrapdoor",
" */",
"export type BirchTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to BirchWallSign",
" */",
"export type BirchWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to BirchWood",
" */",
"export type BirchWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to BlackCandle",
" */",
"export type BlackCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to BlackCandleCake",
" */",
"export type BlackCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to BlackGlazedTerracotta",
" */",
"export type BlackGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to BlackstoneDoubleSlab",
" */",
"export type BlackstoneDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to BlackstoneSlab",
" */",
"export type BlackstoneSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to BlackstoneStairs",
" */",
"export type BlackstoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to BlackstoneWall",
" */",
"export type BlackstoneWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to BlastFurnace",
" */",
"export type BlastFurnaceStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to BlueCandle",
" */",
"export type BlueCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to BlueCandleCake",
" */",
"export type BlueCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to BlueGlazedTerracotta",
" */",
"export type BlueGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to BoneBlock",
" */",
"export type BoneBlockStates = Pick<BlockStateSuperset, 'deprecated' | 'pillar_axis'>;",
"/**",
" * States specific to BorderBlock",
" */",
"export type BorderBlockStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to BrainCoralFan",
" */",
"export type BrainCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"/**",
" * States specific to BrewingStand",
" */",
"export type BrewingStandStates = Pick<",
"  BlockStateSuperset,",
"  'brewing_stand_slot_a_bit' | 'brewing_stand_slot_b_bit' | 'brewing_stand_slot_c_bit'",
">;",
"/**",
" * States specific to BrickStairs",
" */",
"export type BrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to BrownCandle",
" */",
"export type BrownCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to BrownCandleCake",
" */",
"export type BrownCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to BrownGlazedTerracotta",
" */",
"export type BrownGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to BrownMushroomBlock",
" */",
"export type BrownMushroomBlockStates = Pick<BlockStateSuperset, 'huge_mushroom_bits'>;",
"/**",
" * States specific to BubbleColumn",
" */",
"export type BubbleColumnStates = Pick<BlockStateSuperset, 'drag_down'>;",
"/**",
" * States specific to BubbleCoralFan",
" */",
"export type BubbleCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"/**",
" * States specific to Cactus",
" */",
"export type CactusStates = Pick<BlockStateSuperset, 'age'>;",
"/**",
" * States specific to Cake",
" */",
"export type CakeStates = Pick<BlockStateSuperset, 'bite_counter'>;",
"/**",
" * States specific to CalibratedSculkSensor",
" */",
"export type CalibratedSculkSensorStates = Pick<",
"  BlockStateSuperset,",
"  'minecraft:cardinal_direction' | 'sculk_sensor_phase'",
">;",
"/**",
" * States specific to Campfire",
" */",
"export type CampfireStates = Pick<BlockStateSuperset, 'extinguished' | 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to Candle",
" */",
"export type CandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to CandleCake",
" */",
"export type CandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to Carrots",
" */",
"export type CarrotsStates = Pick<BlockStateSuperset, 'growth'>;",
"/**",
" * States specific to CarvedPumpkin",
" */",
"export type CarvedPumpkinStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to Cauldron",
" */",
"export type CauldronStates = Pick<BlockStateSuperset, 'cauldron_liquid' | 'fill_level'>;",
"/**",
" * States specific to CaveVines",
" */",
"export type CaveVinesStates = Pick<BlockStateSuperset, 'growing_plant_age'>;",
"/**",
" * States specific to CaveVinesBodyWithBerries",
" */",
"export type CaveVinesBodyWithBerriesStates = Pick<BlockStateSuperset, 'growing_plant_age'>;",
"/**",
" * States specific to CaveVinesHeadWithBerries",
" */",
"export type CaveVinesHeadWithBerriesStates = Pick<BlockStateSuperset, 'growing_plant_age'>;",
"/**",
" * States specific to Chain",
" */",
"export type ChainStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to ChainCommandBlock",
" */",
"export type ChainCommandBlockStates = Pick<BlockStateSuperset, 'conditional_bit' | 'facing_direction'>;",
"/**",
" * States specific to ChemistryTable",
" */",
"export type ChemistryTableStates = Pick<BlockStateSuperset, 'chemistry_table_type' | 'direction'>;",
"/**",
" * States specific to CherryButton",
" */",
"export type CherryButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to CherryDoor",
" */",
"export type CherryDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to CherryDoubleSlab",
" */",
"export type CherryDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to CherryFenceGate",
" */",
"export type CherryFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to CherryHangingSign",
" */",
"export type CherryHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to CherryLeaves",
" */",
"export type CherryLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to CherryLog",
" */",
"export type CherryLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to CherryPressurePlate",
" */",
"export type CherryPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to CherrySapling",
" */",
"export type CherrySaplingStates = Pick<BlockStateSuperset, 'age_bit'>;",
"/**",
" * States specific to CherrySlab",
" */",
"export type CherrySlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to CherryStairs",
" */",
"export type CherryStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to CherryStandingSign",
" */",
"export type CherryStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to CherryTrapdoor",
" */",
"export type CherryTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to CherryWallSign",
" */",
"export type CherryWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to CherryWood",
" */",
"export type CherryWoodStates = Pick<BlockStateSuperset, 'pillar_axis' | 'stripped_bit'>;",
"/**",
" * States specific to Chest",
" */",
"export type ChestStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to ChiseledBookshelf",
" */",
"export type ChiseledBookshelfStates = Pick<BlockStateSuperset, 'books_stored' | 'direction'>;",
"/**",
" * States specific to ChorusFlower",
" */",
"export type ChorusFlowerStates = Pick<BlockStateSuperset, 'age'>;",
"/**",
" * States specific to CobbledDeepslateDoubleSlab",
" */",
"export type CobbledDeepslateDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to CobbledDeepslateSlab",
" */",
"export type CobbledDeepslateSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to CobbledDeepslateStairs",
" */",
"export type CobbledDeepslateStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to CobbledDeepslateWall",
" */",
"export type CobbledDeepslateWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to CobblestoneWall",
" */",
"export type CobblestoneWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_block_type'",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to Cocoa",
" */",
"export type CocoaStates = Pick<BlockStateSuperset, 'age' | 'direction'>;",
"/**",
" * States specific to ColoredTorchBp",
" */",
"export type ColoredTorchBpStates = Pick<BlockStateSuperset, 'color_bit' | 'torch_facing_direction'>;",
"/**",
" * States specific to ColoredTorchRg",
" */",
"export type ColoredTorchRgStates = Pick<BlockStateSuperset, 'color_bit' | 'torch_facing_direction'>;",
"/**",
" * States specific to CommandBlock",
" */",
"export type CommandBlockStates = Pick<BlockStateSuperset, 'conditional_bit' | 'facing_direction'>;",
"/**",
" * States specific to Composter",
" */",
"export type ComposterStates = Pick<BlockStateSuperset, 'composter_fill_level'>;",
"/**",
" * States specific to CopperBulb",
" */",
"export type CopperBulbStates = Pick<BlockStateSuperset, 'lit' | 'powered_bit'>;",
"/**",
" * States specific to CopperDoor",
" */",
"export type CopperDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to CopperTrapdoor",
" */",
"export type CopperTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to CoralBlock",
" */",
"export type CoralBlockStates = Pick<BlockStateSuperset, 'coral_color' | 'dead_bit'>;",
"/**",
" * States specific to CoralFanHang",
" */",
"export type CoralFanHangStates = Pick<BlockStateSuperset, 'coral_direction' | 'coral_hang_type_bit' | 'dead_bit'>;",
"/**",
" * States specific to CoralFanHang2",
" */",
"export type CoralFanHang2States = Pick<BlockStateSuperset, 'coral_direction' | 'coral_hang_type_bit' | 'dead_bit'>;",
"/**",
" * States specific to CoralFanHang3",
" */",
"export type CoralFanHang3States = Pick<BlockStateSuperset, 'coral_direction' | 'coral_hang_type_bit' | 'dead_bit'>;",
"/**",
" * States specific to Crafter",
" */",
"export type CrafterStates = Pick<BlockStateSuperset, 'crafting' | 'orientation' | 'triggered_bit'>;",
"/**",
" * States specific to CrimsonButton",
" */",
"export type CrimsonButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to CrimsonDoor",
" */",
"export type CrimsonDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to CrimsonDoubleSlab",
" */",
"export type CrimsonDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to CrimsonFenceGate",
" */",
"export type CrimsonFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to CrimsonHangingSign",
" */",
"export type CrimsonHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to CrimsonHyphae",
" */",
"export type CrimsonHyphaeStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to CrimsonPressurePlate",
" */",
"export type CrimsonPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to CrimsonSlab",
" */",
"export type CrimsonSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to CrimsonStairs",
" */",
"export type CrimsonStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to CrimsonStandingSign",
" */",
"export type CrimsonStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to CrimsonStem",
" */",
"export type CrimsonStemStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to CrimsonTrapdoor",
" */",
"export type CrimsonTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to CrimsonWallSign",
" */",
"export type CrimsonWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to CutCopperSlab",
" */",
"export type CutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to CutCopperStairs",
" */",
"export type CutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to CyanCandle",
" */",
"export type CyanCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to CyanCandleCake",
" */",
"export type CyanCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to CyanGlazedTerracotta",
" */",
"export type CyanGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to DarkOakButton",
" */",
"export type DarkOakButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to DarkOakDoor",
" */",
"export type DarkOakDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to DarkOakDoubleSlab",
" */",
"export type DarkOakDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to DarkOakFenceGate",
" */",
"export type DarkOakFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to DarkOakHangingSign",
" */",
"export type DarkOakHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to DarkOakLeaves",
" */",
"export type DarkOakLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to DarkOakLog",
" */",
"export type DarkOakLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to DarkOakPressurePlate",
" */",
"export type DarkOakPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to DarkOakSapling",
" */",
"export type DarkOakSaplingStates = Pick<BlockStateSuperset, 'age_bit'>;",
"/**",
" * States specific to DarkOakSlab",
" */",
"export type DarkOakSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to DarkOakStairs",
" */",
"export type DarkOakStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to DarkOakTrapdoor",
" */",
"export type DarkOakTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to DarkOakWood",
" */",
"export type DarkOakWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to DarkPrismarineStairs",
" */",
"export type DarkPrismarineStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to DarkoakStandingSign",
" */",
"export type DarkoakStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to DarkoakWallSign",
" */",
"export type DarkoakWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to DaylightDetector",
" */",
"export type DaylightDetectorStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to DaylightDetectorInverted",
" */",
"export type DaylightDetectorInvertedStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to DeadBrainCoralFan",
" */",
"export type DeadBrainCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"/**",
" * States specific to DeadBubbleCoralFan",
" */",
"export type DeadBubbleCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"/**",
" * States specific to DeadFireCoralFan",
" */",
"export type DeadFireCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"/**",
" * States specific to DeadHornCoralFan",
" */",
"export type DeadHornCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"export type DeadTubeCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"export type DecoratedPotStates = Pick<BlockStateSuperset, 'direction'>;",
"export type DeepslateStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"export type DeepslateBrickDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"export type DeepslateBrickSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"export type DeepslateBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"export type DeepslateBrickWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to DeepslateTileDoubleSlab",
" */",
"export type DeepslateTileDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to DeepslateTileSlab",
" */",
"export type DeepslateTileSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to DeepslateTileStairs",
" */",
"export type DeepslateTileStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to DeepslateTileWall",
" */",
"export type DeepslateTileWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to DetectorRail",
" */",
"export type DetectorRailStates = Pick<BlockStateSuperset, 'rail_data_bit' | 'rail_direction'>;",
"/**",
" * States specific to DioriteStairs",
" */",
"export type DioriteStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to Dirt",
" */",
"export type DirtStates = Pick<BlockStateSuperset, 'dirt_type'>;",
"/**",
" * States specific to Dispenser",
" */",
"export type DispenserStates = Pick<BlockStateSuperset, 'facing_direction' | 'triggered_bit'>;",
"/**",
" * States specific to DoubleCutCopperSlab",
" */",
"export type DoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to DoublePlant",
" */",
"export type DoublePlantStates = Pick<BlockStateSuperset, 'double_plant_type' | 'upper_block_bit'>;",
"/**",
" * States specific to DoubleStoneBlockSlab",
" */",
"export type DoubleStoneBlockSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half' | 'stone_slab_type'>;",
"/**",
" * States specific to DoubleStoneBlockSlab2",
" */",
"export type DoubleStoneBlockSlab2States = Pick<BlockStateSuperset, 'minecraft:vertical_half' | 'stone_slab_type_2'>;",
"/**",
" * States specific to DoubleStoneBlockSlab3",
" */",
"export type DoubleStoneBlockSlab3States = Pick<BlockStateSuperset, 'minecraft:vertical_half' | 'stone_slab_type_3'>;",
"/**",
" * States specific to DoubleStoneBlockSlab4",
" */",
"export type DoubleStoneBlockSlab4States = Pick<BlockStateSuperset, 'minecraft:vertical_half' | 'stone_slab_type_4'>;",
"/**",
" * States specific to Dropper",
" */",
"export type DropperStates = Pick<BlockStateSuperset, 'facing_direction' | 'triggered_bit'>;",
"/**",
" * States specific to EndBrickStairs",
" */",
"export type EndBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to EndPortalFrame",
" */",
"export type EndPortalFrameStates = Pick<BlockStateSuperset, 'end_portal_eye_bit' | 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to EndRod",
" */",
"export type EndRodStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to EnderChest",
" */",
"export type EnderChestStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to ExposedCopperBulb",
" */",
"export type ExposedCopperBulbStates = Pick<BlockStateSuperset, 'lit' | 'powered_bit'>;",
"/**",
" * States specific to ExposedCopperDoor",
" */",
"export type ExposedCopperDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to ExposedCopperTrapdoor",
" */",
"export type ExposedCopperTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to ExposedCutCopperSlab",
" */",
"export type ExposedCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to ExposedCutCopperStairs",
" */",
"export type ExposedCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to ExposedDoubleCutCopperSlab",
" */",
"export type ExposedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to Farmland",
" */",
"export type FarmlandStates = Pick<BlockStateSuperset, 'moisturized_amount'>;",
"/**",
" * States specific to FenceGate",
" */",
"export type FenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to Fire",
" */",
"export type FireStates = Pick<BlockStateSuperset, 'age'>;",
"/**",
" * States specific to FireCoralFan",
" */",
"export type FireCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"/**",
" * States specific to FlowerPot",
" */",
"export type FlowerPotStates = Pick<BlockStateSuperset, 'update_bit'>;",
"/**",
" * States specific to FlowingLava",
" */",
"export type FlowingLavaStates = Pick<BlockStateSuperset, 'liquid_depth'>;",
"/**",
" * States specific to FlowingWater",
" */",
"export type FlowingWaterStates = Pick<BlockStateSuperset, 'liquid_depth'>;",
"/**",
" * States specific to Frame",
" */",
"export type FrameStates = Pick<BlockStateSuperset, 'facing_direction' | 'item_frame_map_bit' | 'item_frame_photo_bit'>;",
"/**",
" * States specific to FrostedIce",
" */",
"export type FrostedIceStates = Pick<BlockStateSuperset, 'age'>;",
"/**",
" * States specific to Furnace",
" */",
"export type FurnaceStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to GlowFrame",
" */",
"export type GlowFrameStates = Pick<",
"  BlockStateSuperset,",
"  'facing_direction' | 'item_frame_map_bit' | 'item_frame_photo_bit'",
">;",
"/**",
" * States specific to GlowLichen",
" */",
"export type GlowLichenStates = Pick<BlockStateSuperset, 'multi_face_direction_bits'>;",
"/**",
" * States specific to GoldenRail",
" */",
"export type GoldenRailStates = Pick<BlockStateSuperset, 'rail_data_bit' | 'rail_direction'>;",
"/**",
" * States specific to GraniteStairs",
" */",
"export type GraniteStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to GrayCandle",
" */",
"export type GrayCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to GrayCandleCake",
" */",
"export type GrayCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to GrayGlazedTerracotta",
" */",
"export type GrayGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to GreenCandle",
" */",
"export type GreenCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to GreenCandleCake",
" */",
"export type GreenCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to GreenGlazedTerracotta",
" */",
"export type GreenGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to Grindstone",
" */",
"export type GrindstoneStates = Pick<BlockStateSuperset, 'attachment' | 'direction'>;",
"/**",
" * States specific to HayBlock",
" */",
"export type HayBlockStates = Pick<BlockStateSuperset, 'deprecated' | 'pillar_axis'>;",
"/**",
" * States specific to HeavyWeightedPressurePlate",
" */",
"export type HeavyWeightedPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to Hopper",
" */",
"export type HopperStates = Pick<BlockStateSuperset, 'facing_direction' | 'toggle_bit'>;",
"/**",
" * States specific to HornCoralFan",
" */",
"export type HornCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"/**",
" * States specific to InfestedDeepslate",
" */",
"export type InfestedDeepslateStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to IronDoor",
" */",
"export type IronDoorStates = Pick<BlockStateSuperset, 'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'>;",
"/**",
" * States specific to IronTrapdoor",
" */",
"export type IronTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to Jigsaw",
" */",
"export type JigsawStates = Pick<BlockStateSuperset, 'facing_direction' | 'rotation'>;",
"/**",
" * States specific to JungleButton",
" */",
"export type JungleButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to JungleDoor",
" */",
"export type JungleDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to JungleDoubleSlab",
" */",
"export type JungleDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to JungleFenceGate",
" */",
"export type JungleFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to JungleHangingSign",
" */",
"export type JungleHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to JungleLeaves",
" */",
"export type JungleLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to JungleLog",
" */",
"export type JungleLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to JunglePressurePlate",
" */",
"export type JunglePressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to JungleSapling",
" */",
"export type JungleSaplingStates = Pick<BlockStateSuperset, 'age_bit'>;",
"/**",
" * States specific to JungleSlab",
" */",
"export type JungleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to JungleStairs",
" */",
"export type JungleStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to JungleStandingSign",
" */",
"export type JungleStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to JungleTrapdoor",
" */",
"export type JungleTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to JungleWallSign",
" */",
"export type JungleWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to JungleWood",
" */",
"export type JungleWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to Kelp",
" */",
"export type KelpStates = Pick<BlockStateSuperset, 'kelp_age'>;",
"/**",
" * States specific to Ladder",
" */",
"export type LadderStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to Lantern",
" */",
"export type LanternStates = Pick<BlockStateSuperset, 'hanging'>;",
"/**",
" * States specific to LargeAmethystBud",
" */",
"export type LargeAmethystBudStates = Pick<BlockStateSuperset, 'minecraft:block_face'>;",
"/**",
" * States specific to Lava",
" */",
"export type LavaStates = Pick<BlockStateSuperset, 'liquid_depth'>;",
"/**",
" * States specific to Lectern",
" */",
"export type LecternStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction' | 'powered_bit'>;",
"/**",
" * States specific to Lever",
" */",
"export type LeverStates = Pick<BlockStateSuperset, 'lever_direction' | 'open_bit'>;",
"/**",
" * States specific to LightBlock",
" */",
"export type LightBlockStates = Pick<BlockStateSuperset, 'block_light_level'>;",
"/**",
" * States specific to LightBlueCandle",
" */",
"export type LightBlueCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to LightBlueCandleCake",
" */",
"export type LightBlueCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to LightBlueGlazedTerracotta",
" */",
"export type LightBlueGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to LightGrayCandle",
" */",
"export type LightGrayCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to LightGrayCandleCake",
" */",
"export type LightGrayCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to LightWeightedPressurePlate",
" */",
"export type LightWeightedPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to LightningRod",
" */",
"export type LightningRodStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to LimeCandle",
" */",
"export type LimeCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to LimeCandleCake",
" */",
"export type LimeCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to LimeGlazedTerracotta",
" */",
"export type LimeGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to LitBlastFurnace",
" */",
"export type LitBlastFurnaceStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to LitFurnace",
" */",
"export type LitFurnaceStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to LitPumpkin",
" */",
"export type LitPumpkinStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to LitSmoker",
" */",
"export type LitSmokerStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to Loom",
" */",
"export type LoomStates = Pick<BlockStateSuperset, 'direction'>;",
"/**",
" * States specific to MagentaCandle",
" */",
"export type MagentaCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to MagentaCandleCake",
" */",
"export type MagentaCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to MagentaGlazedTerracotta",
" */",
"export type MagentaGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to MangroveButton",
" */",
"export type MangroveButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to MangroveDoor",
" */",
"export type MangroveDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to MangroveDoubleSlab",
" */",
"export type MangroveDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to MangroveFenceGate",
" */",
"export type MangroveFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to MangroveHangingSign",
" */",
"export type MangroveHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to MangroveLeaves",
" */",
"export type MangroveLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to MangroveLog",
" */",
"export type MangroveLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to MangrovePressurePlate",
" */",
"export type MangrovePressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to MangrovePropagule",
" */",
"export type MangrovePropaguleStates = Pick<BlockStateSuperset, 'hanging' | 'propagule_stage'>;",
"/**",
" * States specific to MangroveSlab",
" */",
"export type MangroveSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to MangroveStairs",
" */",
"export type MangroveStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to MangroveStandingSign",
" */",
"export type MangroveStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to MangroveTrapdoor",
" */",
"export type MangroveTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to MangroveWallSign",
" */",
"export type MangroveWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to MangroveWood",
" */",
"export type MangroveWoodStates = Pick<BlockStateSuperset, 'pillar_axis' | 'stripped_bit'>;",
"/**",
" * States specific to MediumAmethystBud",
" */",
"export type MediumAmethystBudStates = Pick<BlockStateSuperset, 'minecraft:block_face'>;",
"/**",
" * States specific to MelonStem",
" */",
"export type MelonStemStates = Pick<BlockStateSuperset, 'facing_direction' | 'growth'>;",
"/**",
" * States specific to MonsterEgg",
" */",
"export type MonsterEggStates = Pick<BlockStateSuperset, 'monster_egg_stone_type'>;",
"/**",
" * States specific to MossyCobblestoneStairs",
" */",
"export type MossyCobblestoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to MossyStoneBrickStairs",
" */",
"export type MossyStoneBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to MudBrickDoubleSlab",
" */",
"export type MudBrickDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to MudBrickSlab",
" */",
"export type MudBrickSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to MudBrickStairs",
" */",
"export type MudBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to MudBrickWall",
" */",
"export type MudBrickWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to MuddyMangroveRoots",
" */",
"export type MuddyMangroveRootsStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to NetherBrickStairs",
" */",
"export type NetherBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to NetherWart",
" */",
"export type NetherWartStates = Pick<BlockStateSuperset, 'age'>;",
"/**",
" * States specific to NormalStoneStairs",
" */",
"export type NormalStoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to OakDoubleSlab",
" */",
"export type OakDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to OakHangingSign",
" */",
"export type OakHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to OakLeaves",
" */",
"export type OakLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to OakLog",
" */",
"export type OakLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to OakSapling",
" */",
"export type OakSaplingStates = Pick<BlockStateSuperset, 'age_bit'>;",
"/**",
" * States specific to OakSlab",
" */",
"export type OakSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to OakStairs",
" */",
"export type OakStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to OakWood",
" */",
"export type OakWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to Observer",
" */",
"export type ObserverStates = Pick<BlockStateSuperset, 'minecraft:facing_direction' | 'powered_bit'>;",
"/**",
" * States specific to OchreFroglight",
" */",
"export type OchreFroglightStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to OrangeCandle",
" */",
"export type OrangeCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to OrangeCandleCake",
" */",
"export type OrangeCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to OrangeGlazedTerracotta",
" */",
"export type OrangeGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to OxidizedCopperBulb",
" */",
"export type OxidizedCopperBulbStates = Pick<BlockStateSuperset, 'lit' | 'powered_bit'>;",
"/**",
" * States specific to OxidizedCopperDoor",
" */",
"export type OxidizedCopperDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to OxidizedCopperTrapdoor",
" */",
"export type OxidizedCopperTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to OxidizedCutCopperSlab",
" */",
"export type OxidizedCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to OxidizedCutCopperStairs",
" */",
"export type OxidizedCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to OxidizedDoubleCutCopperSlab",
" */",
"export type OxidizedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PearlescentFroglight",
" */",
"export type PearlescentFroglightStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to PinkCandle",
" */",
"export type PinkCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to PinkCandleCake",
" */",
"export type PinkCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to PinkGlazedTerracotta",
" */",
"export type PinkGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to PinkPetals",
" */",
"export type PinkPetalsStates = Pick<BlockStateSuperset, 'growth' | 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to Piston",
" */",
"export type PistonStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to PistonArmCollision",
" */",
"export type PistonArmCollisionStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to PitcherCrop",
" */",
"export type PitcherCropStates = Pick<BlockStateSuperset, 'growth' | 'upper_block_bit'>;",
"/**",
" * States specific to PitcherPlant",
" */",
"export type PitcherPlantStates = Pick<BlockStateSuperset, 'upper_block_bit'>;",
"/**",
" * States specific to PointedDripstone",
" */",
"export type PointedDripstoneStates = Pick<BlockStateSuperset, 'dripstone_thickness' | 'hanging'>;",
"/**",
" * States specific to PolishedAndesiteStairs",
" */",
"export type PolishedAndesiteStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to PolishedBasalt",
" */",
"export type PolishedBasaltStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to PolishedBlackstoneBrickDoubleSlab",
" */",
"export type PolishedBlackstoneBrickDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PolishedBlackstoneBrickSlab",
" */",
"export type PolishedBlackstoneBrickSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PolishedBlackstoneBrickStairs",
" */",
"export type PolishedBlackstoneBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to PolishedBlackstoneBrickWall",
" */",
"export type PolishedBlackstoneBrickWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to PolishedBlackstoneButton",
" */",
"export type PolishedBlackstoneButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to PolishedBlackstoneDoubleSlab",
" */",
"export type PolishedBlackstoneDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PolishedBlackstonePressurePlate",
" */",
"export type PolishedBlackstonePressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to PolishedBlackstoneSlab",
" */",
"export type PolishedBlackstoneSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PolishedBlackstoneStairs",
" */",
"export type PolishedBlackstoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to PolishedBlackstoneWall",
" */",
"export type PolishedBlackstoneWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to PolishedDeepslateDoubleSlab",
" */",
"export type PolishedDeepslateDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PolishedDeepslateSlab",
" */",
"export type PolishedDeepslateSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PolishedDeepslateStairs",
" */",
"export type PolishedDeepslateStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to PolishedDeepslateWall",
" */",
"export type PolishedDeepslateWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to PolishedDioriteStairs",
" */",
"export type PolishedDioriteStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to PolishedGraniteStairs",
" */",
"export type PolishedGraniteStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to PolishedTuffDoubleSlab",
" */",
"export type PolishedTuffDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PolishedTuffSlab",
" */",
"export type PolishedTuffSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to PolishedTuffStairs",
" */",
"export type PolishedTuffStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to PolishedTuffWall",
" */",
"export type PolishedTuffWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to Portal",
" */",
"export type PortalStates = Pick<BlockStateSuperset, 'portal_axis'>;",
"/**",
" * States specific to Potatoes",
" */",
"export type PotatoesStates = Pick<BlockStateSuperset, 'growth'>;",
"/**",
" * States specific to PoweredComparator",
" */",
"export type PoweredComparatorStates = Pick<",
"  BlockStateSuperset,",
"  'minecraft:cardinal_direction' | 'output_lit_bit' | 'output_subtract_bit'",
">;",
"/**",
" * States specific to PoweredRepeater",
" */",
"export type PoweredRepeaterStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction' | 'repeater_delay'>;",
"/**",
" * States specific to Prismarine",
" */",
"export type PrismarineStates = Pick<BlockStateSuperset, 'prismarine_block_type'>;",
"/**",
" * States specific to PrismarineBricksStairs",
" */",
"export type PrismarineBricksStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to PrismarineStairs",
" */",
"export type PrismarineStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to Pumpkin",
" */",
"export type PumpkinStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to PumpkinStem",
" */",
"export type PumpkinStemStates = Pick<BlockStateSuperset, 'facing_direction' | 'growth'>;",
"/**",
" * States specific to PurpleCandle",
" */",
"export type PurpleCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to PurpleCandleCake",
" */",
"export type PurpleCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to PurpleGlazedTerracotta",
" */",
"export type PurpleGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to PurpurBlock",
" */",
"export type PurpurBlockStates = Pick<BlockStateSuperset, 'chisel_type' | 'pillar_axis'>;",
"/**",
" * States specific to PurpurStairs",
" */",
"export type PurpurStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to QuartzBlock",
" */",
"export type QuartzBlockStates = Pick<BlockStateSuperset, 'chisel_type' | 'pillar_axis'>;",
"/**",
" * States specific to QuartzStairs",
" */",
"export type QuartzStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to Rail",
" */",
"export type RailStates = Pick<BlockStateSuperset, 'rail_direction'>;",
"/**",
" * States specific to RedCandle",
" */",
"export type RedCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to RedCandleCake",
" */",
"export type RedCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to RedGlazedTerracotta",
" */",
"export type RedGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to RedMushroomBlock",
" */",
"export type RedMushroomBlockStates = Pick<BlockStateSuperset, 'huge_mushroom_bits'>;",
"/**",
" * States specific to RedNetherBrickStairs",
" */",
"export type RedNetherBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to RedSandstone",
" */",
"export type RedSandstoneStates = Pick<BlockStateSuperset, 'sand_stone_type'>;",
"/**",
" * States specific to RedSandstoneStairs",
" */",
"export type RedSandstoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to RedstoneTorch",
" */",
"export type RedstoneTorchStates = Pick<BlockStateSuperset, 'torch_facing_direction'>;",
"/**",
" * States specific to RedstoneWire",
" */",
"export type RedstoneWireStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to Reeds",
" */",
"export type ReedsStates = Pick<BlockStateSuperset, 'age'>;",
"/**",
" * States specific to RepeatingCommandBlock",
" */",
"export type RepeatingCommandBlockStates = Pick<BlockStateSuperset, 'conditional_bit' | 'facing_direction'>;",
"/**",
" * States specific to RespawnAnchor",
" */",
"export type RespawnAnchorStates = Pick<BlockStateSuperset, 'respawn_anchor_charge'>;",
"/**",
" * States specific to Sand",
" */",
"export type SandStates = Pick<BlockStateSuperset, 'sand_type'>;",
"/**",
" * States specific to Sandstone",
" */",
"export type SandstoneStates = Pick<BlockStateSuperset, 'sand_stone_type'>;",
"/**",
" * States specific to SandstoneStairs",
" */",
"export type SandstoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to Scaffolding",
" */",
"export type ScaffoldingStates = Pick<BlockStateSuperset, 'stability' | 'stability_check'>;",
"/**",
" * States specific to SculkCatalyst",
" */",
"export type SculkCatalystStates = Pick<BlockStateSuperset, 'bloom'>;",
"/**",
" * States specific to SculkSensor",
" */",
"export type SculkSensorStates = Pick<BlockStateSuperset, 'sculk_sensor_phase'>;",
"/**",
" * States specific to SculkShrieker",
" */",
"export type SculkShriekerStates = Pick<BlockStateSuperset, 'active' | 'can_summon'>;",
"/**",
" * States specific to SculkVein",
" */",
"export type SculkVeinStates = Pick<BlockStateSuperset, 'multi_face_direction_bits'>;",
"/**",
" * States specific to SeaPickle",
" */",
"export type SeaPickleStates = Pick<BlockStateSuperset, 'cluster_count' | 'dead_bit'>;",
"/**",
" * States specific to Seagrass",
" */",
"export type SeagrassStates = Pick<BlockStateSuperset, 'sea_grass_type'>;",
"/**",
" * States specific to SilverGlazedTerracotta",
" */",
"export type SilverGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to Skull",
" */",
"export type SkullStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to SmallAmethystBud",
" */",
"export type SmallAmethystBudStates = Pick<BlockStateSuperset, 'minecraft:block_face'>;",
"/**",
" * States specific to SmallDripleafBlock",
" */",
"export type SmallDripleafBlockStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction' | 'upper_block_bit'>;",
"/**",
" * States specific to Smoker",
" */",
"export type SmokerStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to SmoothQuartzStairs",
" */",
"export type SmoothQuartzStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to SmoothRedSandstoneStairs",
" */",
"export type SmoothRedSandstoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to SmoothSandstoneStairs",
" */",
"export type SmoothSandstoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to SnifferEgg",
" */",
"export type SnifferEggStates = Pick<BlockStateSuperset, 'cracked_state'>;",
"/**",
" * States specific to SnowLayer",
" */",
"export type SnowLayerStates = Pick<BlockStateSuperset, 'covered_bit' | 'height'>;",
"/**",
" * States specific to SoulCampfire",
" */",
"export type SoulCampfireStates = Pick<BlockStateSuperset, 'extinguished' | 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to SoulFire",
" */",
"export type SoulFireStates = Pick<BlockStateSuperset, 'age'>;",
"/**",
" * States specific to SoulLantern",
" */",
"export type SoulLanternStates = Pick<BlockStateSuperset, 'hanging'>;",
"/**",
" * States specific to SoulTorch",
" */",
"export type SoulTorchStates = Pick<BlockStateSuperset, 'torch_facing_direction'>;",
"/**",
" * States specific to Sponge",
" */",
"export type SpongeStates = Pick<BlockStateSuperset, 'sponge_type'>;",
"/**",
" * States specific to SpruceButton",
" */",
"export type SpruceButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to SpruceDoor",
" */",
"export type SpruceDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to SpruceDoubleSlab",
" */",
"export type SpruceDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to SpruceFenceGate",
" */",
"export type SpruceFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to SpruceHangingSign",
" */",
"export type SpruceHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to SpruceLeaves",
" */",
"export type SpruceLeavesStates = Pick<BlockStateSuperset, 'persistent_bit' | 'update_bit'>;",
"/**",
" * States specific to SpruceLog",
" */",
"export type SpruceLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to SprucePressurePlate",
" */",
"export type SprucePressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to SpruceSapling",
" */",
"export type SpruceSaplingStates = Pick<BlockStateSuperset, 'age_bit'>;",
"/**",
" * States specific to SpruceSlab",
" */",
"export type SpruceSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to SpruceStairs",
" */",
"export type SpruceStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to SpruceStandingSign",
" */",
"export type SpruceStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to SpruceTrapdoor",
" */",
"export type SpruceTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to SpruceWallSign",
" */",
"export type SpruceWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to SpruceWood",
" */",
"export type SpruceWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StandingBanner",
" */",
"export type StandingBannerStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to StandingSign",
" */",
"export type StandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to StickyPiston",
" */",
"export type StickyPistonStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to StickyPistonArmCollision",
" */",
"export type StickyPistonArmCollisionStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to StoneBlockSlab",
" */",
"export type StoneBlockSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half' | 'stone_slab_type'>;",
"/**",
" * States specific to StoneBlockSlab2",
" */",
"export type StoneBlockSlab2States = Pick<BlockStateSuperset, 'minecraft:vertical_half' | 'stone_slab_type_2'>;",
"/**",
" * States specific to StoneBlockSlab3",
" */",
"export type StoneBlockSlab3States = Pick<BlockStateSuperset, 'minecraft:vertical_half' | 'stone_slab_type_3'>;",
"/**",
" * States specific to StoneBlockSlab4",
" */",
"export type StoneBlockSlab4States = Pick<BlockStateSuperset, 'minecraft:vertical_half' | 'stone_slab_type_4'>;",
"/**",
" * States specific to StoneBrickStairs",
" */",
"export type StoneBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to StoneButton",
" */",
"export type StoneButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to StonePressurePlate",
" */",
"export type StonePressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to StoneStairs",
" */",
"export type StoneStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to Stonebrick",
" */",
"export type StonebrickStates = Pick<BlockStateSuperset, 'stone_brick_type'>;",
"/**",
" * States specific to StonecutterBlock",
" */",
"export type StonecutterBlockStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to StrippedAcaciaLog",
" */",
"export type StrippedAcaciaLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedAcaciaWood",
" */",
"export type StrippedAcaciaWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedBambooBlock",
" */",
"export type StrippedBambooBlockStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedBirchLog",
" */",
"export type StrippedBirchLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedBirchWood",
" */",
"export type StrippedBirchWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedCherryLog",
" */",
"export type StrippedCherryLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedCherryWood",
" */",
"export type StrippedCherryWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedCrimsonHyphae",
" */",
"export type StrippedCrimsonHyphaeStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedCrimsonStem",
" */",
"export type StrippedCrimsonStemStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedDarkOakLog",
" */",
"export type StrippedDarkOakLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedDarkOakWood",
" */",
"export type StrippedDarkOakWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedJungleLog",
" */",
"export type StrippedJungleLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedJungleWood",
" */",
"export type StrippedJungleWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedMangroveLog",
" */",
"export type StrippedMangroveLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedMangroveWood",
" */",
"export type StrippedMangroveWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedOakLog",
" */",
"export type StrippedOakLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedOakWood",
" */",
"export type StrippedOakWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedSpruceLog",
" */",
"export type StrippedSpruceLogStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedSpruceWood",
" */",
"export type StrippedSpruceWoodStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedWarpedHyphae",
" */",
"export type StrippedWarpedHyphaeStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StrippedWarpedStem",
" */",
"export type StrippedWarpedStemStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to StructureBlock",
" */",
"export type StructureBlockStates = Pick<BlockStateSuperset, 'structure_block_type'>;",
"/**",
" * States specific to StructureVoid",
" */",
"export type StructureVoidStates = Pick<BlockStateSuperset, 'structure_void_type'>;",
"/**",
" * States specific to SuspiciousGravel",
" */",
"export type SuspiciousGravelStates = Pick<BlockStateSuperset, 'brushed_progress' | 'hanging'>;",
"/**",
" * States specific to SuspiciousSand",
" */",
"export type SuspiciousSandStates = Pick<BlockStateSuperset, 'brushed_progress' | 'hanging'>;",
"/**",
" * States specific to SweetBerryBush",
" */",
"export type SweetBerryBushStates = Pick<BlockStateSuperset, 'growth'>;",
"/**",
" * States specific to Tallgrass",
" */",
"export type TallgrassStates = Pick<BlockStateSuperset, 'tall_grass_type'>;",
"/**",
" * States specific to Tnt",
" */",
"export type TntStates = Pick<BlockStateSuperset, 'allow_underwater_bit' | 'explode_bit'>;",
"/**",
" * States specific to Torch",
" */",
"export type TorchStates = Pick<BlockStateSuperset, 'torch_facing_direction'>;",
"/**",
" * States specific to TorchflowerCrop",
" */",
"export type TorchflowerCropStates = Pick<BlockStateSuperset, 'growth'>;",
"/**",
" * States specific to Trapdoor",
" */",
"export type TrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to TrappedChest",
" */",
"export type TrappedChestStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction'>;",
"/**",
" * States specific to TrialSpawner",
" */",
"export type TrialSpawnerStates = Pick<BlockStateSuperset, 'trial_spawner_state'>;",
"/**",
" * States specific to TripWire",
" */",
"export type TripWireStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'disarmed_bit' | 'powered_bit' | 'suspended_bit'",
">;",
"/**",
" * States specific to TripwireHook",
" */",
"export type TripwireHookStates = Pick<BlockStateSuperset, 'attached_bit' | 'direction' | 'powered_bit'>;",
"/**",
" * States specific to TubeCoralFan",
" */",
"export type TubeCoralFanStates = Pick<BlockStateSuperset, 'coral_fan_direction'>;",
"/**",
" * States specific to TuffBrickDoubleSlab",
" */",
"export type TuffBrickDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to TuffBrickSlab",
" */",
"export type TuffBrickSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to TuffBrickStairs",
" */",
"export type TuffBrickStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to TuffBrickWall",
" */",
"export type TuffBrickWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to TuffDoubleSlab",
" */",
"export type TuffDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to TuffSlab",
" */",
"export type TuffSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to TuffStairs",
" */",
"export type TuffStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to TuffWall",
" */",
"export type TuffWallStates = Pick<",
"  BlockStateSuperset,",
"  | 'wall_connection_type_east'",
"  | 'wall_connection_type_north'",
"  | 'wall_connection_type_south'",
"  | 'wall_connection_type_west'",
"  | 'wall_post_bit'",
">;",
"/**",
" * States specific to TurtleEgg",
" */",
"export type TurtleEggStates = Pick<BlockStateSuperset, 'cracked_state' | 'turtle_egg_count'>;",
"/**",
" * States specific to TwistingVines",
" */",
"export type TwistingVinesStates = Pick<BlockStateSuperset, 'twisting_vines_age'>;",
"/**",
" * States specific to UnderwaterTorch",
" */",
"export type UnderwaterTorchStates = Pick<BlockStateSuperset, 'torch_facing_direction'>;",
"/**",
" * States specific to UnlitRedstoneTorch",
" */",
"export type UnlitRedstoneTorchStates = Pick<BlockStateSuperset, 'torch_facing_direction'>;",
"/**",
" * States specific to UnpoweredComparator",
" */",
"export type UnpoweredComparatorStates = Pick<",
"  BlockStateSuperset,",
"  'minecraft:cardinal_direction' | 'output_lit_bit' | 'output_subtract_bit'",
">;",
"/**",
" * States specific to UnpoweredRepeater",
" */",
"export type UnpoweredRepeaterStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction' | 'repeater_delay'>;",
"/**",
" * States specific to Vault",
" */",
"export type VaultStates = Pick<BlockStateSuperset, 'minecraft:cardinal_direction' | 'vault_state'>;",
"/**",
" * States specific to VerdantFroglight",
" */",
"export type VerdantFroglightStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to Vine",
" */",
"export type VineStates = Pick<BlockStateSuperset, 'vine_direction_bits'>;",
"/**",
" * States specific to WallBanner",
" */",
"export type WallBannerStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to WallSign",
" */",
"export type WallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to WarpedButton",
" */",
"export type WarpedButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to WarpedDoor",
" */",
"export type WarpedDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to WarpedDoubleSlab",
" */",
"export type WarpedDoubleSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WarpedFenceGate",
" */",
"export type WarpedFenceGateStates = Pick<BlockStateSuperset, 'direction' | 'in_wall_bit' | 'open_bit'>;",
"/**",
" * States specific to WarpedHangingSign",
" */",
"export type WarpedHangingSignStates = Pick<",
"  BlockStateSuperset,",
"  'attached_bit' | 'facing_direction' | 'ground_sign_direction' | 'hanging'",
">;",
"/**",
" * States specific to WarpedHyphae",
" */",
"export type WarpedHyphaeStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to WarpedPressurePlate",
" */",
"export type WarpedPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to WarpedSlab",
" */",
"export type WarpedSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WarpedStairs",
" */",
"export type WarpedStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to WarpedStandingSign",
" */",
"export type WarpedStandingSignStates = Pick<BlockStateSuperset, 'ground_sign_direction'>;",
"/**",
" * States specific to WarpedStem",
" */",
"export type WarpedStemStates = Pick<BlockStateSuperset, 'pillar_axis'>;",
"/**",
" * States specific to WarpedTrapdoor",
" */",
"export type WarpedTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to WarpedWallSign",
" */",
"export type WarpedWallSignStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to Water",
" */",
"export type WaterStates = Pick<BlockStateSuperset, 'liquid_depth'>;",
"/**",
" * States specific to WaxedCopperBulb",
" */",
"export type WaxedCopperBulbStates = Pick<BlockStateSuperset, 'lit' | 'powered_bit'>;",
"/**",
" * States specific to WaxedCopperDoor",
" */",
"export type WaxedCopperDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to WaxedCopperTrapdoor",
" */",
"export type WaxedCopperTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to WaxedCutCopperSlab",
" */",
"export type WaxedCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WaxedCutCopperStairs",
" */",
"export type WaxedCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to WaxedDoubleCutCopperSlab",
" */",
"export type WaxedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WaxedExposedCopperBulb",
" */",
"export type WaxedExposedCopperBulbStates = Pick<BlockStateSuperset, 'lit' | 'powered_bit'>;",
"/**",
" * States specific to WaxedExposedCopperDoor",
" */",
"export type WaxedExposedCopperDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to WaxedExposedCopperTrapdoor",
" */",
"export type WaxedExposedCopperTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to WaxedExposedCutCopperSlab",
" */",
"export type WaxedExposedCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WaxedExposedCutCopperStairs",
" */",
"export type WaxedExposedCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to WaxedExposedDoubleCutCopperSlab",
" */",
"export type WaxedExposedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WaxedOxidizedCopperBulb",
" */",
"export type WaxedOxidizedCopperBulbStates = Pick<BlockStateSuperset, 'lit' | 'powered_bit'>;",
"/**",
" * States specific to WaxedOxidizedCopperDoor",
" */",
"export type WaxedOxidizedCopperDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to WaxedOxidizedCopperTrapdoor",
" */",
"export type WaxedOxidizedCopperTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to WaxedOxidizedCutCopperSlab",
" */",
"export type WaxedOxidizedCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WaxedOxidizedCutCopperStairs",
" */",
"export type WaxedOxidizedCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to WaxedOxidizedDoubleCutCopperSlab",
" */",
"export type WaxedOxidizedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WaxedWeatheredCopperBulb",
" */",
"export type WaxedWeatheredCopperBulbStates = Pick<BlockStateSuperset, 'lit' | 'powered_bit'>;",
"/**",
" * States specific to WaxedWeatheredCopperDoor",
" */",
"export type WaxedWeatheredCopperDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to WaxedWeatheredCopperTrapdoor",
" */",
"export type WaxedWeatheredCopperTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to WaxedWeatheredCutCopperSlab",
" */",
"export type WaxedWeatheredCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WaxedWeatheredCutCopperStairs",
" */",
"export type WaxedWeatheredCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to WaxedWeatheredDoubleCutCopperSlab",
" */",
"export type WaxedWeatheredDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WeatheredCopperBulb",
" */",
"export type WeatheredCopperBulbStates = Pick<BlockStateSuperset, 'lit' | 'powered_bit'>;",
"/**",
" * States specific to WeatheredCopperDoor",
" */",
"export type WeatheredCopperDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to WeatheredCopperTrapdoor",
" */",
"export type WeatheredCopperTrapdoorStates = Pick<BlockStateSuperset, 'direction' | 'open_bit' | 'upside_down_bit'>;",
"/**",
" * States specific to WeatheredCutCopperSlab",
" */",
"export type WeatheredCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WeatheredCutCopperStairs",
" */",
"export type WeatheredCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down_bit' | 'weirdo_direction'>;",
"/**",
" * States specific to WeatheredDoubleCutCopperSlab",
" */",
"export type WeatheredDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;",
"/**",
" * States specific to WeepingVines",
" */",
"export type WeepingVinesStates = Pick<BlockStateSuperset, 'weeping_vines_age'>;",
"/**",
" * States specific to Wheat",
" */",
"export type WheatStates = Pick<BlockStateSuperset, 'growth'>;",
"/**",
" * States specific to WhiteCandle",
" */",
"export type WhiteCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to WhiteCandleCake",
" */",
"export type WhiteCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to WhiteGlazedTerracotta",
" */",
"export type WhiteGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * States specific to WoodenButton",
" */",
"export type WoodenButtonStates = Pick<BlockStateSuperset, 'button_pressed_bit' | 'facing_direction'>;",
"/**",
" * States specific to WoodenDoor",
" */",
"export type WoodenDoorStates = Pick<",
"  BlockStateSuperset,",
"  'direction' | 'door_hinge_bit' | 'open_bit' | 'upper_block_bit'",
">;",
"/**",
" * States specific to WoodenPressurePlate",
" */",
"export type WoodenPressurePlateStates = Pick<BlockStateSuperset, 'redstone_signal'>;",
"/**",
" * States specific to YellowCandle",
" */",
"export type YellowCandleStates = Pick<BlockStateSuperset, 'candles' | 'lit'>;",
"/**",
" * States specific to YellowCandleCake",
" */",
"export type YellowCandleCakeStates = Pick<BlockStateSuperset, 'lit'>;",
"/**",
" * States specific to YellowGlazedTerracotta",
" */",
"export type YellowGlazedTerracottaStates = Pick<BlockStateSuperset, 'facing_direction'>;",
"/**",
" * Union of all types for Block states",
" */",
"export type BlockStates =",
"  | AcaciaButtonStates",
"  | AcaciaDoorStates",
"  | AcaciaDoubleSlabStates",
"  | AcaciaFenceGateStates",
"  | AcaciaHangingSignStates",
"  | AcaciaLeavesStates",
"  | AcaciaLogStates",
"  | AcaciaPressurePlateStates",
"  | AcaciaSaplingStates",
"  | AcaciaSlabStates",
"  | AcaciaStairsStates",
"  | AcaciaStandingSignStates",
"  | AcaciaTrapdoorStates",
"  | AcaciaWallSignStates",
"  | AcaciaWoodStates",
"  | ActivatorRailStates",
"  | AmethystClusterStates",
"  | AndesiteStairsStates",
"  | AnvilStates",
"  | AzaleaLeavesStates",
"  | AzaleaLeavesFloweredStates",
"  | BambooStates",
"  | BambooBlockStates",
"  | BambooButtonStates",
"  | BambooDoorStates",
"  | BambooDoubleSlabStates",
"  | BambooFenceGateStates",
"  | BambooHangingSignStates",
"  | BambooMosaicDoubleSlabStates",
"  | BambooMosaicSlabStates",
"  | BambooMosaicStairsStates",
"  | BambooPressurePlateStates",
"  | BambooSaplingStates",
"  | BambooSlabStates",
"  | BambooStairsStates",
"  | BambooStandingSignStates",
"  | BambooTrapdoorStates",
"  | BambooWallSignStates",
"  | BarrelStates",
"  | BasaltStates",
"  | BedStates",
"  | BedrockStates",
"  | BeeNestStates",
"  | BeehiveStates",
"  | BeetrootStates",
"  | BellStates",
"  | BigDripleafStates",
"  | BirchButtonStates",
"  | BirchDoorStates",
"  | BirchDoubleSlabStates",
"  | BirchFenceGateStates",
"  | BirchHangingSignStates",
"  | BirchLeavesStates",
"  | BirchLogStates",
"  | BirchPressurePlateStates",
"  | BirchSaplingStates",
"  | BirchSlabStates",
"  | BirchStairsStates",
"  | BirchStandingSignStates",
"  | BirchTrapdoorStates",
"  | BirchWallSignStates",
"  | BirchWoodStates",
"  | BlackCandleStates",
"  | BlackCandleCakeStates",
"  | BlackGlazedTerracottaStates",
"  | BlackstoneDoubleSlabStates",
"  | BlackstoneSlabStates",
"  | BlackstoneStairsStates",
"  | BlackstoneWallStates",
"  | BlastFurnaceStates",
"  | BlueCandleStates",
"  | BlueCandleCakeStates",
"  | BlueGlazedTerracottaStates",
"  | BoneBlockStates",
"  | BorderBlockStates",
"  | BrainCoralFanStates",
"  | BrewingStandStates",
"  | BrickStairsStates",
"  | BrownCandleStates",
"  | BrownCandleCakeStates",
"  | BrownGlazedTerracottaStates",
"  | BrownMushroomBlockStates",
"  | BubbleColumnStates",
"  | BubbleCoralFanStates",
"  | CactusStates",
"  | CakeStates",
"  | CalibratedSculkSensorStates",
"  | CampfireStates",
"  | CandleStates",
"  | CandleCakeStates",
"  | CarrotsStates",
"  | CarvedPumpkinStates",
"  | CauldronStates",
"  | CaveVinesStates",
"  | CaveVinesBodyWithBerriesStates",
"  | CaveVinesHeadWithBerriesStates",
"  | ChainStates",
"  | ChainCommandBlockStates",
"  | ChemistryTableStates",
"  | CherryButtonStates",
"  | CherryDoorStates",
"  | CherryDoubleSlabStates",
"  | CherryFenceGateStates",
"  | CherryHangingSignStates",
"  | CherryLeavesStates",
"  | CherryLogStates",
"  | CherryPressurePlateStates",
"  | CherrySaplingStates",
"  | CherrySlabStates",
"  | CherryStairsStates",
"  | CherryStandingSignStates",
"  | CherryTrapdoorStates",
"  | CherryWallSignStates",
"  | CherryWoodStates",
"  | ChestStates",
"  | ChiseledBookshelfStates",
"  | ChorusFlowerStates",
"  | CobbledDeepslateDoubleSlabStates",
"  | CobbledDeepslateSlabStates",
"  | CobbledDeepslateStairsStates",
"  | CobbledDeepslateWallStates",
"  | CobblestoneWallStates",
"  | CocoaStates",
"  | ColoredTorchBpStates",
"  | ColoredTorchRgStates",
"  | CommandBlockStates",
"  | ComposterStates",
"  | CopperBulbStates",
"  | CopperDoorStates",
"  | CopperTrapdoorStates",
"  | CoralBlockStates",
"  | CoralFanHangStates",
"  | CoralFanHang2States",
"  | CoralFanHang3States",
"  | CrafterStates",
"  | CrimsonButtonStates",
"  | CrimsonDoorStates",
"  | CrimsonDoubleSlabStates",
"  | CrimsonFenceGateStates",
"  | CrimsonHangingSignStates",
"  | CrimsonHyphaeStates",
"  | CrimsonPressurePlateStates",
"  | CrimsonSlabStates",
"  | CrimsonStairsStates",
"  | CrimsonStandingSignStates",
"  | CrimsonStemStates",
"  | CrimsonTrapdoorStates",
"  | CrimsonWallSignStates",
"  | CutCopperSlabStates",
"  | CutCopperStairsStates",
"  | CyanCandleStates",
"  | CyanCandleCakeStates",
"  | CyanGlazedTerracottaStates",
"  | DarkOakButtonStates",
"  | DarkOakDoorStates",
"  | DarkOakDoubleSlabStates",
"  | DarkOakFenceGateStates",
"  | DarkOakHangingSignStates",
"  | DarkOakLeavesStates",
"  | DarkOakLogStates",
"  | DarkOakPressurePlateStates",
"  | DarkOakSaplingStates",
"  | DarkOakSlabStates",
"  | DarkOakStairsStates",
"  | DarkOakTrapdoorStates",
"  | DarkOakWoodStates",
"  | DarkPrismarineStairsStates",
"  | DarkoakStandingSignStates",
"  | DarkoakWallSignStates",
"  | DaylightDetectorStates",
"  | DaylightDetectorInvertedStates",
"  | DeadBrainCoralFanStates",
"  | DeadBubbleCoralFanStates",
"  | DeadFireCoralFanStates",
"  | DeadHornCoralFanStates",
"  | DeadTubeCoralFanStates",
"  | DecoratedPotStates",
"  | DeepslateStates",
"  | DeepslateBrickDoubleSlabStates",
"  | DeepslateBrickSlabStates",
"  | DeepslateBrickStairsStates",
"  | DeepslateBrickWallStates",
"  | DeepslateTileDoubleSlabStates",
"  | DeepslateTileSlabStates",
"  | DeepslateTileStairsStates",
"  | DeepslateTileWallStates",
"  | DetectorRailStates",
"  | DioriteStairsStates",
"  | DirtStates",
"  | DispenserStates",
"  | DoubleCutCopperSlabStates",
"  | DoublePlantStates",
"  | DoubleStoneBlockSlabStates",
"  | DoubleStoneBlockSlab2States",
"  | DoubleStoneBlockSlab3States",
"  | DoubleStoneBlockSlab4States",
"  | DropperStates",
"  | EndBrickStairsStates",
"  | EndPortalFrameStates",
"  | EndRodStates",
"  | EnderChestStates",
"  | ExposedCopperBulbStates",
"  | ExposedCopperDoorStates",
"  | ExposedCopperTrapdoorStates",
"  | ExposedCutCopperSlabStates",
"  | ExposedCutCopperStairsStates",
"  | ExposedDoubleCutCopperSlabStates",
"  | FarmlandStates",
"  | FenceGateStates",
"  | FireStates",
"  | FireCoralFanStates",
"  | FlowerPotStates",
"  | FlowingLavaStates",
"  | FlowingWaterStates",
"  | FrameStates",
"  | FrostedIceStates",
"  | FurnaceStates",
"  | GlowFrameStates",
"  | GlowLichenStates",
"  | GoldenRailStates",
"  | GraniteStairsStates",
"  | GrayCandleStates",
"  | GrayCandleCakeStates",
"  | GrayGlazedTerracottaStates",
"  | GreenCandleStates",
"  | GreenCandleCakeStates",
"  | GreenGlazedTerracottaStates",
"  | GrindstoneStates",
"  | HayBlockStates",
"  | HeavyWeightedPressurePlateStates",
"  | HopperStates",
"  | HornCoralFanStates",
"  | InfestedDeepslateStates",
"  | IronDoorStates",
"  | IronTrapdoorStates",
"  | JigsawStates",
"  | JungleButtonStates",
"  | JungleDoorStates",
"  | JungleDoubleSlabStates",
"  | JungleFenceGateStates",
"  | JungleHangingSignStates",
"  | JungleLeavesStates",
"  | JungleLogStates",
"  | JunglePressurePlateStates",
"  | JungleSaplingStates",
"  | JungleSlabStates",
"  | JungleStairsStates",
"  | JungleStandingSignStates",
"  | JungleTrapdoorStates",
"  | JungleWallSignStates",
"  | JungleWoodStates",
"  | KelpStates",
"  | LadderStates",
"  | LanternStates",
"  | LargeAmethystBudStates",
"  | LavaStates",
"  | LecternStates",
"  | LeverStates",
"  | LightBlockStates",
"  | LightBlueCandleStates",
"  | LightBlueCandleCakeStates",
"  | LightBlueGlazedTerracottaStates",
"  | LightGrayCandleStates",
"  | LightGrayCandleCakeStates",
"  | LightWeightedPressurePlateStates",
"  | LightningRodStates",
"  | LimeCandleStates",
"  | LimeCandleCakeStates",
"  | LimeGlazedTerracottaStates",
"  | LitBlastFurnaceStates",
"  | LitFurnaceStates",
"  | LitPumpkinStates",
"  | LitSmokerStates",
"  | LoomStates",
"  | MagentaCandleStates",
"  | MagentaCandleCakeStates",
"  | MagentaGlazedTerracottaStates",
"  | MangroveButtonStates",
"  | MangroveDoorStates",
"  | MangroveDoubleSlabStates",
"  | MangroveFenceGateStates",
"  | MangroveHangingSignStates",
"  | MangroveLeavesStates",
"  | MangroveLogStates",
"  | MangrovePressurePlateStates",
"  | MangrovePropaguleStates",
"  | MangroveSlabStates",
"  | MangroveStairsStates",
"  | MangroveStandingSignStates",
"  | MangroveTrapdoorStates",
"  | MangroveWallSignStates",
"  | MangroveWoodStates",
"  | MediumAmethystBudStates",
"  | MelonStemStates",
"  | MonsterEggStates",
"  | MossyCobblestoneStairsStates",
"  | MossyStoneBrickStairsStates",
"  | MudBrickDoubleSlabStates",
"  | MudBrickSlabStates",
"  | MudBrickStairsStates",
"  | MudBrickWallStates",
"  | MuddyMangroveRootsStates",
"  | NetherBrickStairsStates",
"  | NetherWartStates",
"  | NormalStoneStairsStates",
"  | OakDoubleSlabStates",
"  | OakHangingSignStates",
"  | OakLeavesStates",
"  | OakLogStates",
"  | OakSaplingStates",
"  | OakSlabStates",
"  | OakStairsStates",
"  | OakWoodStates",
"  | ObserverStates",
"  | OchreFroglightStates",
"  | OrangeCandleStates",
"  | OrangeCandleCakeStates",
"  | OrangeGlazedTerracottaStates",
"  | OxidizedCopperBulbStates",
"  | OxidizedCopperDoorStates",
"  | OxidizedCopperTrapdoorStates",
"  | OxidizedCutCopperSlabStates",
"  | OxidizedCutCopperStairsStates",
"  | OxidizedDoubleCutCopperSlabStates",
"  | PearlescentFroglightStates",
"  | PinkCandleStates",
"  | PinkCandleCakeStates",
"  | PinkGlazedTerracottaStates",
"  | PinkPetalsStates",
"  | PistonStates",
"  | PistonArmCollisionStates",
"  | PitcherCropStates",
"  | PitcherPlantStates",
"  | PointedDripstoneStates",
"  | PolishedAndesiteStairsStates",
"  | PolishedBasaltStates",
"  | PolishedBlackstoneBrickDoubleSlabStates",
"  | PolishedBlackstoneBrickSlabStates",
"  | PolishedBlackstoneBrickStairsStates",
"  | PolishedBlackstoneBrickWallStates",
"  | PolishedBlackstoneButtonStates",
"  | PolishedBlackstoneDoubleSlabStates",
"  | PolishedBlackstonePressurePlateStates",
"  | PolishedBlackstoneSlabStates",
"  | PolishedBlackstoneStairsStates",
"  | PolishedBlackstoneWallStates",
"  | PolishedDeepslateDoubleSlabStates",
"  | PolishedDeepslateSlabStates",
"  | PolishedDeepslateStairsStates",
"  | PolishedDeepslateWallStates",
"  | PolishedDioriteStairsStates",
"  | PolishedGraniteStairsStates",
"  | PolishedTuffDoubleSlabStates",
"  | PolishedTuffSlabStates",
"  | PolishedTuffStairsStates",
"  | PolishedTuffWallStates",
"  | PortalStates",
"  | PotatoesStates",
"  | PoweredComparatorStates",
"  | PoweredRepeaterStates",
"  | PrismarineStates",
"  | PrismarineBricksStairsStates",
"  | PrismarineStairsStates",
"  | PumpkinStates",
"  | PumpkinStemStates",
"  | PurpleCandleStates",
"  | PurpleCandleCakeStates",
"  | PurpleGlazedTerracottaStates",
"  | PurpurBlockStates",
"  | PurpurStairsStates",
"  | QuartzBlockStates",
"  | QuartzStairsStates",
"  | RailStates",
"  | RedCandleStates",
"  | RedCandleCakeStates",
"  | RedGlazedTerracottaStates",
"  | RedMushroomBlockStates",
"  | RedNetherBrickStairsStates",
"  | RedSandstoneStates",
"  | RedSandstoneStairsStates",
"  | RedstoneTorchStates",
"  | RedstoneWireStates",
"  | ReedsStates",
"  | RepeatingCommandBlockStates",
"  | RespawnAnchorStates",
"  | SandStates",
"  | SandstoneStates",
"  | SandstoneStairsStates",
"  | ScaffoldingStates",
"  | SculkCatalystStates",
"  | SculkSensorStates",
"  | SculkShriekerStates",
"  | SculkVeinStates",
"  | SeaPickleStates",
"  | SeagrassStates",
"  | SilverGlazedTerracottaStates",
"  | SkullStates",
"  | SmallAmethystBudStates",
"  | SmallDripleafBlockStates",
"  | SmokerStates",
"  | SmoothQuartzStairsStates",
"  | SmoothRedSandstoneStairsStates",
"  | SmoothSandstoneStairsStates",
"  | SnifferEggStates",
"  | SnowLayerStates",
"  | SoulCampfireStates",
"  | SoulFireStates",
"  | SoulLanternStates",
"  | SoulTorchStates",
"  | SpongeStates",
"  | SpruceButtonStates",
"  | SpruceDoorStates",
"  | SpruceDoubleSlabStates",
"  | SpruceFenceGateStates",
"  | SpruceHangingSignStates",
"  | SpruceLeavesStates",
"  | SpruceLogStates",
"  | SprucePressurePlateStates",
"  | SpruceSaplingStates",
"  | SpruceSlabStates",
"  | SpruceStairsStates",
"  | SpruceStandingSignStates",
"  | SpruceTrapdoorStates",
"  | SpruceWallSignStates",
"  | SpruceWoodStates",
"  | StandingBannerStates",
"  | StandingSignStates",
"  | StickyPistonStates",
"  | StickyPistonArmCollisionStates",
"  | StoneBlockSlabStates",
"  | StoneBlockSlab2States",
"  | StoneBlockSlab3States",
"  | StoneBlockSlab4States",
"  | StoneBrickStairsStates",
"  | StoneButtonStates",
"  | StonePressurePlateStates",
"  | StoneStairsStates",
"  | StonebrickStates",
"  | StonecutterBlockStates",
"  | StrippedAcaciaLogStates",
"  | StrippedAcaciaWoodStates",
"  | StrippedBambooBlockStates",
"  | StrippedBirchLogStates",
"  | StrippedBirchWoodStates",
"  | StrippedCherryLogStates",
"  | StrippedCherryWoodStates",
"  | StrippedCrimsonHyphaeStates",
"  | StrippedCrimsonStemStates",
"  | StrippedDarkOakLogStates",
"  | StrippedDarkOakWoodStates",
"  | StrippedJungleLogStates",
"  | StrippedJungleWoodStates",
"  | StrippedMangroveLogStates",
"  | StrippedMangroveWoodStates",
"  | StrippedOakLogStates",
"  | StrippedOakWoodStates",
"  | StrippedSpruceLogStates",
"  | StrippedSpruceWoodStates",
"  | StrippedWarpedHyphaeStates",
"  | StrippedWarpedStemStates",
"  | StructureBlockStates",
"  | StructureVoidStates",
"  | SuspiciousGravelStates",
"  | SuspiciousSandStates",
"  | SweetBerryBushStates",
"  | TallgrassStates",
"  | TntStates",
"  | TorchStates",
"  | TorchflowerCropStates",
"  | TrapdoorStates",
"  | TrappedChestStates",
"  | TrialSpawnerStates",
"  | TripWireStates",
"  | TripwireHookStates",
"  | TubeCoralFanStates",
"  | TuffBrickDoubleSlabStates",
"  | TuffBrickSlabStates",
"  | TuffBrickStairsStates",
"  | TuffBrickWallStates",
"  | TuffDoubleSlabStates",
"  | TuffSlabStates",
"  | TuffStairsStates",
"  | TuffWallStates",
"  | TurtleEggStates",
"  | TwistingVinesStates",
"  | UnderwaterTorchStates",
"  | UnlitRedstoneTorchStates",
"  | UnpoweredComparatorStates",
"  | UnpoweredRepeaterStates",
"  | VaultStates",
"  | VerdantFroglightStates",
"  | VineStates",
"  | WallBannerStates",
"  | WallSignStates",
"  | WarpedButtonStates",
"  | WarpedDoorStates",
"  | WarpedDoubleSlabStates",
"  | WarpedFenceGateStates",
"  | WarpedHangingSignStates",
"  | WarpedHyphaeStates",
"  | WarpedPressurePlateStates",
"  | WarpedSlabStates",
"  | WarpedStairsStates",
"  | WarpedStandingSignStates",
"  | WarpedStemStates",
"  | WarpedTrapdoorStates",
"  | WarpedWallSignStates",
"  | WaterStates",
"  | WaxedCopperBulbStates",
"  | WaxedCopperDoorStates",
"  | WaxedCopperTrapdoorStates",
"  | WaxedCutCopperSlabStates",
"  | WaxedCutCopperStairsStates",
"  | WaxedDoubleCutCopperSlabStates",
"  | WaxedExposedCopperBulbStates",
"  | WaxedExposedCopperDoorStates",
"  | WaxedExposedCopperTrapdoorStates",
"  | WaxedExposedCutCopperSlabStates",
"  | WaxedExposedCutCopperStairsStates",
"  | WaxedExposedDoubleCutCopperSlabStates",
"  | WaxedOxidizedCopperBulbStates",
"  | WaxedOxidizedCopperDoorStates",
"  | WaxedOxidizedCopperTrapdoorStates",
"  | WaxedOxidizedCutCopperSlabStates",
"  | WaxedOxidizedCutCopperStairsStates",
"  | WaxedOxidizedDoubleCutCopperSlabStates",
"  | WaxedWeatheredCopperBulbStates",
"  | WaxedWeatheredCopperDoorStates",
"  | WaxedWeatheredCopperTrapdoorStates",
"  | WaxedWeatheredCutCopperSlabStates",
"  | WaxedWeatheredCutCopperStairsStates",
"  | WaxedWeatheredDoubleCutCopperSlabStates",
"  | WeatheredCopperBulbStates",
"  | WeatheredCopperDoorStates",
"  | WeatheredCopperTrapdoorStates",
"  | WeatheredCutCopperSlabStates",
"  | WeatheredCutCopperStairsStates",
"  | WeatheredDoubleCutCopperSlabStates",
"  | WeepingVinesStates",
"  | WheatStates",
"  | WhiteCandleStates",
"  | WhiteCandleCakeStates",
"  | WhiteGlazedTerracottaStates",
"  | WoodenButtonStates",
"  | WoodenDoorStates",
"  | WoodenPressurePlateStates",
"  | YellowCandleStates",
"  | YellowCandleCakeStates",
"  | YellowGlazedTerracottaStates;",
"/**",
" * Mapping of each Block name to it's states",
" */",
"export type BlockStateMapping = {",
"  acacia_button: AcaciaButtonStates;",
"  'minecraft:acacia_button': AcaciaButtonStates;",
"  acacia_door: AcaciaDoorStates;",
"  'minecraft:acacia_door': AcaciaDoorStates;",
"  acacia_double_slab: AcaciaDoubleSlabStates;",
"  'minecraft:acacia_double_slab': AcaciaDoubleSlabStates;",
"  acacia_fence_gate: AcaciaFenceGateStates;",
"  'minecraft:acacia_fence_gate': AcaciaFenceGateStates;",
"  acacia_hanging_sign: AcaciaHangingSignStates;",
"  'minecraft:acacia_hanging_sign': AcaciaHangingSignStates;",
"  acacia_leaves: AcaciaLeavesStates;",
"  'minecraft:acacia_leaves': AcaciaLeavesStates;",
"  acacia_log: AcaciaLogStates;",
"  'minecraft:acacia_log': AcaciaLogStates;",
"  acacia_pressure_plate: AcaciaPressurePlateStates;",
"  'minecraft:acacia_pressure_plate': AcaciaPressurePlateStates;",
"  acacia_sapling: AcaciaSaplingStates;",
"  'minecraft:acacia_sapling': AcaciaSaplingStates;",
"  acacia_slab: AcaciaSlabStates;",
"  'minecraft:acacia_slab': AcaciaSlabStates;",
"  acacia_stairs: AcaciaStairsStates;",
"  'minecraft:acacia_stairs': AcaciaStairsStates;",
"  acacia_standing_sign: AcaciaStandingSignStates;",
"  'minecraft:acacia_standing_sign': AcaciaStandingSignStates;",
"  acacia_trapdoor: AcaciaTrapdoorStates;",
"  'minecraft:acacia_trapdoor': AcaciaTrapdoorStates;",
"  acacia_wall_sign: AcaciaWallSignStates;",
"  'minecraft:acacia_wall_sign': AcaciaWallSignStates;",
"  acacia_wood: AcaciaWoodStates;",
"  'minecraft:acacia_wood': AcaciaWoodStates;",
"  activator_rail: ActivatorRailStates;",
"  'minecraft:activator_rail': ActivatorRailStates;",
"  amethyst_cluster: AmethystClusterStates;",
"  'minecraft:amethyst_cluster': AmethystClusterStates;",
"  andesite_stairs: AndesiteStairsStates;",
"  'minecraft:andesite_stairs': AndesiteStairsStates;",
"  anvil: AnvilStates;",
"  'minecraft:anvil': AnvilStates;",
"  azalea_leaves: AzaleaLeavesStates;",
"  'minecraft:azalea_leaves': AzaleaLeavesStates;",
"  azalea_leaves_flowered: AzaleaLeavesFloweredStates;",
"  'minecraft:azalea_leaves_flowered': AzaleaLeavesFloweredStates;",
"  bamboo: BambooStates;",
"  'minecraft:bamboo': BambooStates;",
"  bamboo_block: BambooBlockStates;",
"  'minecraft:bamboo_block': BambooBlockStates;",
"  bamboo_button: BambooButtonStates;",
"  'minecraft:bamboo_button': BambooButtonStates;",
"  bamboo_door: BambooDoorStates;",
"  'minecraft:bamboo_door': BambooDoorStates;",
"  bamboo_double_slab: BambooDoubleSlabStates;",
"  'minecraft:bamboo_double_slab': BambooDoubleSlabStates;",
"  bamboo_fence_gate: BambooFenceGateStates;",
"  'minecraft:bamboo_fence_gate': BambooFenceGateStates;",
"  bamboo_hanging_sign: BambooHangingSignStates;",
"  'minecraft:bamboo_hanging_sign': BambooHangingSignStates;",
"  bamboo_mosaic_double_slab: BambooMosaicDoubleSlabStates;",
"  'minecraft:bamboo_mosaic_double_slab': BambooMosaicDoubleSlabStates;",
"  bamboo_mosaic_slab: BambooMosaicSlabStates;",
"  'minecraft:bamboo_mosaic_slab': BambooMosaicSlabStates;",
"  bamboo_mosaic_stairs: BambooMosaicStairsStates;",
"  'minecraft:bamboo_mosaic_stairs': BambooMosaicStairsStates;",
"  bamboo_pressure_plate: BambooPressurePlateStates;",
"  'minecraft:bamboo_pressure_plate': BambooPressurePlateStates;",
"  bamboo_sapling: BambooSaplingStates;",
"  'minecraft:bamboo_sapling': BambooSaplingStates;",
"  bamboo_slab: BambooSlabStates;",
"  'minecraft:bamboo_slab': BambooSlabStates;",
"  bamboo_stairs: BambooStairsStates;",
"  'minecraft:bamboo_stairs': BambooStairsStates;",
"  bamboo_standing_sign: BambooStandingSignStates;",
"  'minecraft:bamboo_standing_sign': BambooStandingSignStates;",
"  bamboo_trapdoor: BambooTrapdoorStates;",
"  'minecraft:bamboo_trapdoor': BambooTrapdoorStates;",
"  bamboo_wall_sign: BambooWallSignStates;",
"  'minecraft:bamboo_wall_sign': BambooWallSignStates;",
"  barrel: BarrelStates;",
"  'minecraft:barrel': BarrelStates;",
"  basalt: BasaltStates;",
"  'minecraft:basalt': BasaltStates;",
"  bed: BedStates;",
"  'minecraft:bed': BedStates;",
"  bedrock: BedrockStates;",
"  'minecraft:bedrock': BedrockStates;",
"  bee_nest: BeeNestStates;",
"  'minecraft:bee_nest': BeeNestStates;",
"  beehive: BeehiveStates;",
"  'minecraft:beehive': BeehiveStates;",
"  beetroot: BeetrootStates;",
"  'minecraft:beetroot': BeetrootStates;",
"  bell: BellStates;",
"  'minecraft:bell': BellStates;",
"  big_dripleaf: BigDripleafStates;",
"  'minecraft:big_dripleaf': BigDripleafStates;",
"  birch_button: BirchButtonStates;",
"  'minecraft:birch_button': BirchButtonStates;",
"  birch_door: BirchDoorStates;",
"  'minecraft:birch_door': BirchDoorStates;",
"  birch_double_slab: BirchDoubleSlabStates;",
"  'minecraft:birch_double_slab': BirchDoubleSlabStates;",
"  birch_fence_gate: BirchFenceGateStates;",
"  'minecraft:birch_fence_gate': BirchFenceGateStates;",
"  birch_hanging_sign: BirchHangingSignStates;",
"  'minecraft:birch_hanging_sign': BirchHangingSignStates;",
"  birch_leaves: BirchLeavesStates;",
"  'minecraft:birch_leaves': BirchLeavesStates;",
"  birch_log: BirchLogStates;",
"  'minecraft:birch_log': BirchLogStates;",
"  birch_pressure_plate: BirchPressurePlateStates;",
"  'minecraft:birch_pressure_plate': BirchPressurePlateStates;",
"  birch_sapling: BirchSaplingStates;",
"  'minecraft:birch_sapling': BirchSaplingStates;",
"  birch_slab: BirchSlabStates;",
"  'minecraft:birch_slab': BirchSlabStates;",
"  birch_stairs: BirchStairsStates;",
"  'minecraft:birch_stairs': BirchStairsStates;",
"  birch_standing_sign: BirchStandingSignStates;",
"  'minecraft:birch_standing_sign': BirchStandingSignStates;",
"  birch_trapdoor: BirchTrapdoorStates;",
"  'minecraft:birch_trapdoor': BirchTrapdoorStates;",
"  birch_wall_sign: BirchWallSignStates;",
"  'minecraft:birch_wall_sign': BirchWallSignStates;",
"  birch_wood: BirchWoodStates;",
"  'minecraft:birch_wood': BirchWoodStates;",
"  black_candle: BlackCandleStates;",
"  'minecraft:black_candle': BlackCandleStates;",
"  black_candle_cake: BlackCandleCakeStates;",
"  'minecraft:black_candle_cake': BlackCandleCakeStates;",
"  black_glazed_terracotta: BlackGlazedTerracottaStates;",
"  'minecraft:black_glazed_terracotta': BlackGlazedTerracottaStates;",
"  blackstone_double_slab: BlackstoneDoubleSlabStates;",
"  'minecraft:blackstone_double_slab': BlackstoneDoubleSlabStates;",
"  blackstone_slab: BlackstoneSlabStates;",
"  'minecraft:blackstone_slab': BlackstoneSlabStates;",
"  blackstone_stairs: BlackstoneStairsStates;",
"  'minecraft:blackstone_stairs': BlackstoneStairsStates;",
"  blackstone_wall: BlackstoneWallStates;",
"  'minecraft:blackstone_wall': BlackstoneWallStates;",
"  blast_furnace: BlastFurnaceStates;",
"  'minecraft:blast_furnace': BlastFurnaceStates;",
"  blue_candle: BlueCandleStates;",
"  'minecraft:blue_candle': BlueCandleStates;",
"  blue_candle_cake: BlueCandleCakeStates;",
"  'minecraft:blue_candle_cake': BlueCandleCakeStates;",
"  blue_glazed_terracotta: BlueGlazedTerracottaStates;",
"  'minecraft:blue_glazed_terracotta': BlueGlazedTerracottaStates;",
"  bone_block: BoneBlockStates;",
"  'minecraft:bone_block': BoneBlockStates;",
"  border_block: BorderBlockStates;",
"  'minecraft:border_block': BorderBlockStates;",
"  brain_coral_fan: BrainCoralFanStates;",
"  'minecraft:brain_coral_fan': BrainCoralFanStates;",
"  brewing_stand: BrewingStandStates;",
"  'minecraft:brewing_stand': BrewingStandStates;",
"  brick_stairs: BrickStairsStates;",
"  'minecraft:brick_stairs': BrickStairsStates;",
"  brown_candle: BrownCandleStates;",
"  'minecraft:brown_candle': BrownCandleStates;",
"  brown_candle_cake: BrownCandleCakeStates;",
"  'minecraft:brown_candle_cake': BrownCandleCakeStates;",
"  brown_glazed_terracotta: BrownGlazedTerracottaStates;",
"  'minecraft:brown_glazed_terracotta': BrownGlazedTerracottaStates;",
"  brown_mushroom_block: BrownMushroomBlockStates;",
"  'minecraft:brown_mushroom_block': BrownMushroomBlockStates;",
"  bubble_column: BubbleColumnStates;",
"  'minecraft:bubble_column': BubbleColumnStates;",
"  bubble_coral_fan: BubbleCoralFanStates;",
"  'minecraft:bubble_coral_fan': BubbleCoralFanStates;",
"  cactus: CactusStates;",
"  'minecraft:cactus': CactusStates;",
"  cake: CakeStates;",
"  'minecraft:cake': CakeStates;",
"  calibrated_sculk_sensor: CalibratedSculkSensorStates;",
"  'minecraft:calibrated_sculk_sensor': CalibratedSculkSensorStates;",
"  campfire: CampfireStates;",
"  'minecraft:campfire': CampfireStates;",
"  candle: CandleStates;",
"  'minecraft:candle': CandleStates;",
"  candle_cake: CandleCakeStates;",
"  'minecraft:candle_cake': CandleCakeStates;",
"  carrots: CarrotsStates;",
"  'minecraft:carrots': CarrotsStates;",
"  carved_pumpkin: CarvedPumpkinStates;",
"  'minecraft:carved_pumpkin': CarvedPumpkinStates;",
"  cauldron: CauldronStates;",
"  'minecraft:cauldron': CauldronStates;",
"  cave_vines: CaveVinesStates;",
"  'minecraft:cave_vines': CaveVinesStates;",
"  cave_vines_body_with_berries: CaveVinesBodyWithBerriesStates;",
"  'minecraft:cave_vines_body_with_berries': CaveVinesBodyWithBerriesStates;",
"  cave_vines_head_with_berries: CaveVinesHeadWithBerriesStates;",
"  'minecraft:cave_vines_head_with_berries': CaveVinesHeadWithBerriesStates;",
"  chain: ChainStates;",
"  'minecraft:chain': ChainStates;",
"  chain_command_block: ChainCommandBlockStates;",
"  'minecraft:chain_command_block': ChainCommandBlockStates;",
"  chemistry_table: ChemistryTableStates;",
"  'minecraft:chemistry_table': ChemistryTableStates;",
"  cherry_button: CherryButtonStates;",
"  'minecraft:cherry_button': CherryButtonStates;",
"  cherry_door: CherryDoorStates;",
"  'minecraft:cherry_door': CherryDoorStates;",
"  cherry_double_slab: CherryDoubleSlabStates;",
"  'minecraft:cherry_double_slab': CherryDoubleSlabStates;",
"  cherry_fence_gate: CherryFenceGateStates;",
"  'minecraft:cherry_fence_gate': CherryFenceGateStates;",
"  cherry_hanging_sign: CherryHangingSignStates;",
"  'minecraft:cherry_hanging_sign': CherryHangingSignStates;",
"  cherry_leaves: CherryLeavesStates;",
"  'minecraft:cherry_leaves': CherryLeavesStates;",
"  cherry_log: CherryLogStates;",
"  'minecraft:cherry_log': CherryLogStates;",
"  cherry_pressure_plate: CherryPressurePlateStates;",
"  'minecraft:cherry_pressure_plate': CherryPressurePlateStates;",
"  cherry_sapling: CherrySaplingStates;",
"  'minecraft:cherry_sapling': CherrySaplingStates;",
"  cherry_slab: CherrySlabStates;",
"  'minecraft:cherry_slab': CherrySlabStates;",
"  cherry_stairs: CherryStairsStates;",
"  'minecraft:cherry_stairs': CherryStairsStates;",
"  cherry_standing_sign: CherryStandingSignStates;",
"  'minecraft:cherry_standing_sign': CherryStandingSignStates;",
"  cherry_trapdoor: CherryTrapdoorStates;",
"  'minecraft:cherry_trapdoor': CherryTrapdoorStates;",
"  cherry_wall_sign: CherryWallSignStates;",
"  'minecraft:cherry_wall_sign': CherryWallSignStates;",
"  cherry_wood: CherryWoodStates;",
"  'minecraft:cherry_wood': CherryWoodStates;",
"  chest: ChestStates;",
"  'minecraft:chest': ChestStates;",
"  chiseled_bookshelf: ChiseledBookshelfStates;",
"  'minecraft:chiseled_bookshelf': ChiseledBookshelfStates;",
"  chorus_flower: ChorusFlowerStates;",
"  'minecraft:chorus_flower': ChorusFlowerStates;",
"  cobbled_deepslate_double_slab: CobbledDeepslateDoubleSlabStates;",
"  'minecraft:cobbled_deepslate_double_slab': CobbledDeepslateDoubleSlabStates;",
"  cobbled_deepslate_slab: CobbledDeepslateSlabStates;",
"  'minecraft:cobbled_deepslate_slab': CobbledDeepslateSlabStates;",
"  cobbled_deepslate_stairs: CobbledDeepslateStairsStates;",
"  'minecraft:cobbled_deepslate_stairs': CobbledDeepslateStairsStates;",
"  cobbled_deepslate_wall: CobbledDeepslateWallStates;",
"  'minecraft:cobbled_deepslate_wall': CobbledDeepslateWallStates;",
"  cobblestone_wall: CobblestoneWallStates;",
"  'minecraft:cobblestone_wall': CobblestoneWallStates;",
"  cocoa: CocoaStates;",
"  'minecraft:cocoa': CocoaStates;",
"  colored_torch_bp: ColoredTorchBpStates;",
"  'minecraft:colored_torch_bp': ColoredTorchBpStates;",
"  colored_torch_rg: ColoredTorchRgStates;",
"  'minecraft:colored_torch_rg': ColoredTorchRgStates;",
"  command_block: CommandBlockStates;",
"  'minecraft:command_block': CommandBlockStates;",
"  composter: ComposterStates;",
"  'minecraft:composter': ComposterStates;",
"  copper_bulb: CopperBulbStates;",
"  'minecraft:copper_bulb': CopperBulbStates;",
"  copper_door: CopperDoorStates;",
"  'minecraft:copper_door': CopperDoorStates;",
"  copper_trapdoor: CopperTrapdoorStates;",
"  'minecraft:copper_trapdoor': CopperTrapdoorStates;",
"  coral_block: CoralBlockStates;",
"  'minecraft:coral_block': CoralBlockStates;",
"  coral_fan_hang: CoralFanHangStates;",
"  'minecraft:coral_fan_hang': CoralFanHangStates;",
"  coral_fan_hang2: CoralFanHang2States;",
"  'minecraft:coral_fan_hang2': CoralFanHang2States;",
"  coral_fan_hang3: CoralFanHang3States;",
"  'minecraft:coral_fan_hang3': CoralFanHang3States;",
"  crafter: CrafterStates;",
"  'minecraft:crafter': CrafterStates;",
"  crimson_button: CrimsonButtonStates;",
"  'minecraft:crimson_button': CrimsonButtonStates;",
"  crimson_door: CrimsonDoorStates;",
"  'minecraft:crimson_door': CrimsonDoorStates;",
"  crimson_double_slab: CrimsonDoubleSlabStates;",
"  'minecraft:crimson_double_slab': CrimsonDoubleSlabStates;",
"  crimson_fence_gate: CrimsonFenceGateStates;",
"  'minecraft:crimson_fence_gate': CrimsonFenceGateStates;",
"  crimson_hanging_sign: CrimsonHangingSignStates;",
"  'minecraft:crimson_hanging_sign': CrimsonHangingSignStates;",
"  crimson_hyphae: CrimsonHyphaeStates;",
"  'minecraft:crimson_hyphae': CrimsonHyphaeStates;",
"  crimson_pressure_plate: CrimsonPressurePlateStates;",
"  'minecraft:crimson_pressure_plate': CrimsonPressurePlateStates;",
"  crimson_slab: CrimsonSlabStates;",
"  'minecraft:crimson_slab': CrimsonSlabStates;",
"  crimson_stairs: CrimsonStairsStates;",
"  'minecraft:crimson_stairs': CrimsonStairsStates;",
"  crimson_standing_sign: CrimsonStandingSignStates;",
"  'minecraft:crimson_standing_sign': CrimsonStandingSignStates;",
"  crimson_stem: CrimsonStemStates;",
"  'minecraft:crimson_stem': CrimsonStemStates;",
"  crimson_trapdoor: CrimsonTrapdoorStates;",
"  'minecraft:crimson_trapdoor': CrimsonTrapdoorStates;",
"  crimson_wall_sign: CrimsonWallSignStates;",
"  'minecraft:crimson_wall_sign': CrimsonWallSignStates;",
"  cut_copper_slab: CutCopperSlabStates;",
"  'minecraft:cut_copper_slab': CutCopperSlabStates;",
"  cut_copper_stairs: CutCopperStairsStates;",
"  'minecraft:cut_copper_stairs': CutCopperStairsStates;",
"  cyan_candle: CyanCandleStates;",
"  'minecraft:cyan_candle': CyanCandleStates;",
"  cyan_candle_cake: CyanCandleCakeStates;",
"  'minecraft:cyan_candle_cake': CyanCandleCakeStates;",
"  cyan_glazed_terracotta: CyanGlazedTerracottaStates;",
"  'minecraft:cyan_glazed_terracotta': CyanGlazedTerracottaStates;",
"  dark_oak_button: DarkOakButtonStates;",
"  'minecraft:dark_oak_button': DarkOakButtonStates;",
"  dark_oak_door: DarkOakDoorStates;",
"  'minecraft:dark_oak_door': DarkOakDoorStates;",
"  dark_oak_double_slab: DarkOakDoubleSlabStates;",
"  'minecraft:dark_oak_double_slab': DarkOakDoubleSlabStates;",
"  dark_oak_fence_gate: DarkOakFenceGateStates;",
"  'minecraft:dark_oak_fence_gate': DarkOakFenceGateStates;",
"  dark_oak_hanging_sign: DarkOakHangingSignStates;",
"  'minecraft:dark_oak_hanging_sign': DarkOakHangingSignStates;",
"  dark_oak_leaves: DarkOakLeavesStates;",
"  'minecraft:dark_oak_leaves': DarkOakLeavesStates;",
"  dark_oak_log: DarkOakLogStates;",
"  'minecraft:dark_oak_log': DarkOakLogStates;",
"  dark_oak_pressure_plate: DarkOakPressurePlateStates;",
"  'minecraft:dark_oak_pressure_plate': DarkOakPressurePlateStates;",
"  dark_oak_sapling: DarkOakSaplingStates;",
"  'minecraft:dark_oak_sapling': DarkOakSaplingStates;",
"  dark_oak_slab: DarkOakSlabStates;",
"  'minecraft:dark_oak_slab': DarkOakSlabStates;",
"  dark_oak_stairs: DarkOakStairsStates;",
"  'minecraft:dark_oak_stairs': DarkOakStairsStates;",
"  dark_oak_trapdoor: DarkOakTrapdoorStates;",
"  'minecraft:dark_oak_trapdoor': DarkOakTrapdoorStates;",
"  dark_oak_wood: DarkOakWoodStates;",
"  'minecraft:dark_oak_wood': DarkOakWoodStates;",
"  dark_prismarine_stairs: DarkPrismarineStairsStates;",
"  'minecraft:dark_prismarine_stairs': DarkPrismarineStairsStates;",
"  darkoak_standing_sign: DarkoakStandingSignStates;",
"  'minecraft:darkoak_standing_sign': DarkoakStandingSignStates;",
"  darkoak_wall_sign: DarkoakWallSignStates;",
"  'minecraft:darkoak_wall_sign': DarkoakWallSignStates;",
"  daylight_detector: DaylightDetectorStates;",
"  'minecraft:daylight_detector': DaylightDetectorStates;",
"  daylight_detector_inverted: DaylightDetectorInvertedStates;",
"  'minecraft:daylight_detector_inverted': DaylightDetectorInvertedStates;",
"  dead_brain_coral_fan: DeadBrainCoralFanStates;",
"  'minecraft:dead_brain_coral_fan': DeadBrainCoralFanStates;",
"  dead_bubble_coral_fan: DeadBubbleCoralFanStates;",
"  'minecraft:dead_bubble_coral_fan': DeadBubbleCoralFanStates;",
"  dead_fire_coral_fan: DeadFireCoralFanStates;",
"  'minecraft:dead_fire_coral_fan': DeadFireCoralFanStates;",
"  dead_horn_coral_fan: DeadHornCoralFanStates;",
"  'minecraft:dead_horn_coral_fan': DeadHornCoralFanStates;",
"  dead_tube_coral_fan: DeadTubeCoralFanStates;",
"  'minecraft:dead_tube_coral_fan': DeadTubeCoralFanStates;",
"  decorated_pot: DecoratedPotStates;",
"  'minecraft:decorated_pot': DecoratedPotStates;",
"  deepslate: DeepslateStates;",
"  'minecraft:deepslate': DeepslateStates;",
"  deepslate_brick_double_slab: DeepslateBrickDoubleSlabStates;",
"  'minecraft:deepslate_brick_double_slab': DeepslateBrickDoubleSlabStates;",
"  deepslate_brick_slab: DeepslateBrickSlabStates;",
"  'minecraft:deepslate_brick_slab': DeepslateBrickSlabStates;",
"  deepslate_brick_stairs: DeepslateBrickStairsStates;",
"  'minecraft:deepslate_brick_stairs': DeepslateBrickStairsStates;",
"  deepslate_brick_wall: DeepslateBrickWallStates;",
"  'minecraft:deepslate_brick_wall': DeepslateBrickWallStates;",
"  deepslate_tile_double_slab: DeepslateTileDoubleSlabStates;",
"  'minecraft:deepslate_tile_double_slab': DeepslateTileDoubleSlabStates;",
"  deepslate_tile_slab: DeepslateTileSlabStates;",
"  'minecraft:deepslate_tile_slab': DeepslateTileSlabStates;",
"  deepslate_tile_stairs: DeepslateTileStairsStates;",
"  'minecraft:deepslate_tile_stairs': DeepslateTileStairsStates;",
"  deepslate_tile_wall: DeepslateTileWallStates;",
"  'minecraft:deepslate_tile_wall': DeepslateTileWallStates;",
"  detector_rail: DetectorRailStates;",
"  'minecraft:detector_rail': DetectorRailStates;",
"  diorite_stairs: DioriteStairsStates;",
"  'minecraft:diorite_stairs': DioriteStairsStates;",
"  dirt: DirtStates;",
"  'minecraft:dirt': DirtStates;",
"  dispenser: DispenserStates;",
"  'minecraft:dispenser': DispenserStates;",
"  double_cut_copper_slab: DoubleCutCopperSlabStates;",
"  'minecraft:double_cut_copper_slab': DoubleCutCopperSlabStates;",
"  double_plant: DoublePlantStates;",
"  'minecraft:double_plant': DoublePlantStates;",
"  double_stone_block_slab: DoubleStoneBlockSlabStates;",
"  'minecraft:double_stone_block_slab': DoubleStoneBlockSlabStates;",
"  double_stone_block_slab2: DoubleStoneBlockSlab2States;",
"  'minecraft:double_stone_block_slab2': DoubleStoneBlockSlab2States;",
"  double_stone_block_slab3: DoubleStoneBlockSlab3States;",
"  'minecraft:double_stone_block_slab3': DoubleStoneBlockSlab3States;",
"  double_stone_block_slab4: DoubleStoneBlockSlab4States;",
"  'minecraft:double_stone_block_slab4': DoubleStoneBlockSlab4States;",
"  dropper: DropperStates;",
"  'minecraft:dropper': DropperStates;",
"  end_brick_stairs: EndBrickStairsStates;",
"  'minecraft:end_brick_stairs': EndBrickStairsStates;",
"  end_portal_frame: EndPortalFrameStates;",
"  'minecraft:end_portal_frame': EndPortalFrameStates;",
"  end_rod: EndRodStates;",
"  'minecraft:end_rod': EndRodStates;",
"  ender_chest: EnderChestStates;",
"  'minecraft:ender_chest': EnderChestStates;",
"  exposed_copper_bulb: ExposedCopperBulbStates;",
"  'minecraft:exposed_copper_bulb': ExposedCopperBulbStates;",
"  exposed_copper_door: ExposedCopperDoorStates;",
"  'minecraft:exposed_copper_door': ExposedCopperDoorStates;",
"  exposed_copper_trapdoor: ExposedCopperTrapdoorStates;",
"  'minecraft:exposed_copper_trapdoor': ExposedCopperTrapdoorStates;",
"  exposed_cut_copper_slab: ExposedCutCopperSlabStates;",
"  'minecraft:exposed_cut_copper_slab': ExposedCutCopperSlabStates;",
"  exposed_cut_copper_stairs: ExposedCutCopperStairsStates;",
"  'minecraft:exposed_cut_copper_stairs': ExposedCutCopperStairsStates;",
"  exposed_double_cut_copper_slab: ExposedDoubleCutCopperSlabStates;",
"  'minecraft:exposed_double_cut_copper_slab': ExposedDoubleCutCopperSlabStates;",
"  farmland: FarmlandStates;",
"  'minecraft:farmland': FarmlandStates;",
"  fence_gate: FenceGateStates;",
"  'minecraft:fence_gate': FenceGateStates;",
"  fire: FireStates;",
"  'minecraft:fire': FireStates;",
"  fire_coral_fan: FireCoralFanStates;",
"  'minecraft:fire_coral_fan': FireCoralFanStates;",
"  flower_pot: FlowerPotStates;",
"  'minecraft:flower_pot': FlowerPotStates;",
"  flowing_lava: FlowingLavaStates;",
"  'minecraft:flowing_lava': FlowingLavaStates;",
"  flowing_water: FlowingWaterStates;",
"  'minecraft:flowing_water': FlowingWaterStates;",
"  frame: FrameStates;",
"  'minecraft:frame': FrameStates;",
"  frosted_ice: FrostedIceStates;",
"  'minecraft:frosted_ice': FrostedIceStates;",
"  furnace: FurnaceStates;",
"  'minecraft:furnace': FurnaceStates;",
"  glow_frame: GlowFrameStates;",
"  'minecraft:glow_frame': GlowFrameStates;",
"  glow_lichen: GlowLichenStates;",
"  'minecraft:glow_lichen': GlowLichenStates;",
"  golden_rail: GoldenRailStates;",
"  'minecraft:golden_rail': GoldenRailStates;",
"  granite_stairs: GraniteStairsStates;",
"  'minecraft:granite_stairs': GraniteStairsStates;",
"  gray_candle: GrayCandleStates;",
"  'minecraft:gray_candle': GrayCandleStates;",
"  gray_candle_cake: GrayCandleCakeStates;",
"  'minecraft:gray_candle_cake': GrayCandleCakeStates;",
"  gray_glazed_terracotta: GrayGlazedTerracottaStates;",
"  'minecraft:gray_glazed_terracotta': GrayGlazedTerracottaStates;",
"  green_candle: GreenCandleStates;",
"  'minecraft:green_candle': GreenCandleStates;",
"  green_candle_cake: GreenCandleCakeStates;",
"  'minecraft:green_candle_cake': GreenCandleCakeStates;",
"  green_glazed_terracotta: GreenGlazedTerracottaStates;",
"  'minecraft:green_glazed_terracotta': GreenGlazedTerracottaStates;",
"  grindstone: GrindstoneStates;",
"  'minecraft:grindstone': GrindstoneStates;",
"  hay_block: HayBlockStates;",
"  'minecraft:hay_block': HayBlockStates;",
"  heavy_weighted_pressure_plate: HeavyWeightedPressurePlateStates;",
"  'minecraft:heavy_weighted_pressure_plate': HeavyWeightedPressurePlateStates;",
"  hopper: HopperStates;",
"  'minecraft:hopper': HopperStates;",
"  horn_coral_fan: HornCoralFanStates;",
"  'minecraft:horn_coral_fan': HornCoralFanStates;",
"  infested_deepslate: InfestedDeepslateStates;",
"  'minecraft:infested_deepslate': InfestedDeepslateStates;",
"  iron_door: IronDoorStates;",
"  'minecraft:iron_door': IronDoorStates;",
"  iron_trapdoor: IronTrapdoorStates;",
"  'minecraft:iron_trapdoor': IronTrapdoorStates;",
"  jigsaw: JigsawStates;",
"  'minecraft:jigsaw': JigsawStates;",
"  jungle_button: JungleButtonStates;",
"  'minecraft:jungle_button': JungleButtonStates;",
"  jungle_door: JungleDoorStates;",
"  'minecraft:jungle_door': JungleDoorStates;",
"  jungle_double_slab: JungleDoubleSlabStates;",
"  'minecraft:jungle_double_slab': JungleDoubleSlabStates;",
"  jungle_fence_gate: JungleFenceGateStates;",
"  'minecraft:jungle_fence_gate': JungleFenceGateStates;",
"  jungle_hanging_sign: JungleHangingSignStates;",
"  'minecraft:jungle_hanging_sign': JungleHangingSignStates;",
"  jungle_leaves: JungleLeavesStates;",
"  'minecraft:jungle_leaves': JungleLeavesStates;",
"  jungle_log: JungleLogStates;",
"  'minecraft:jungle_log': JungleLogStates;",
"  jungle_pressure_plate: JunglePressurePlateStates;",
"  'minecraft:jungle_pressure_plate': JunglePressurePlateStates;",
"  jungle_sapling: JungleSaplingStates;",
"  'minecraft:jungle_sapling': JungleSaplingStates;",
"  jungle_slab: JungleSlabStates;",
"  'minecraft:jungle_slab': JungleSlabStates;",
"  jungle_stairs: JungleStairsStates;",
"  'minecraft:jungle_stairs': JungleStairsStates;",
"  jungle_standing_sign: JungleStandingSignStates;",
"  'minecraft:jungle_standing_sign': JungleStandingSignStates;",
"  jungle_trapdoor: JungleTrapdoorStates;",
"  'minecraft:jungle_trapdoor': JungleTrapdoorStates;",
"  jungle_wall_sign: JungleWallSignStates;",
"  'minecraft:jungle_wall_sign': JungleWallSignStates;",
"  jungle_wood: JungleWoodStates;",
"  'minecraft:jungle_wood': JungleWoodStates;",
"  kelp: KelpStates;",
"  'minecraft:kelp': KelpStates;",
"  ladder: LadderStates;",
"  'minecraft:ladder': LadderStates;",
"  lantern: LanternStates;",
"  'minecraft:lantern': LanternStates;",
"  large_amethyst_bud: LargeAmethystBudStates;",
"  'minecraft:large_amethyst_bud': LargeAmethystBudStates;",
"  lava: LavaStates;",
"  'minecraft:lava': LavaStates;",
"  lectern: LecternStates;",
"  'minecraft:lectern': LecternStates;",
"  lever: LeverStates;",
"  'minecraft:lever': LeverStates;",
"  light_block: LightBlockStates;",
"  'minecraft:light_block': LightBlockStates;",
"  light_blue_candle: LightBlueCandleStates;",
"  'minecraft:light_blue_candle': LightBlueCandleStates;",
"  light_blue_candle_cake: LightBlueCandleCakeStates;",
"  'minecraft:light_blue_candle_cake': LightBlueCandleCakeStates;",
"  light_blue_glazed_terracotta: LightBlueGlazedTerracottaStates;",
"  'minecraft:light_blue_glazed_terracotta': LightBlueGlazedTerracottaStates;",
"  light_gray_candle: LightGrayCandleStates;",
"  'minecraft:light_gray_candle': LightGrayCandleStates;",
"  light_gray_candle_cake: LightGrayCandleCakeStates;",
"  'minecraft:light_gray_candle_cake': LightGrayCandleCakeStates;",
"  light_weighted_pressure_plate: LightWeightedPressurePlateStates;",
"  'minecraft:light_weighted_pressure_plate': LightWeightedPressurePlateStates;",
"  lightning_rod: LightningRodStates;",
"  'minecraft:lightning_rod': LightningRodStates;",
"  lime_candle: LimeCandleStates;",
"  'minecraft:lime_candle': LimeCandleStates;",
"  lime_candle_cake: LimeCandleCakeStates;",
"  'minecraft:lime_candle_cake': LimeCandleCakeStates;",
"  lime_glazed_terracotta: LimeGlazedTerracottaStates;",
"  'minecraft:lime_glazed_terracotta': LimeGlazedTerracottaStates;",
"  lit_blast_furnace: LitBlastFurnaceStates;",
"  'minecraft:lit_blast_furnace': LitBlastFurnaceStates;",
"  lit_furnace: LitFurnaceStates;",
"  'minecraft:lit_furnace': LitFurnaceStates;",
"  lit_pumpkin: LitPumpkinStates;",
"  'minecraft:lit_pumpkin': LitPumpkinStates;",
"  lit_smoker: LitSmokerStates;",
"  'minecraft:lit_smoker': LitSmokerStates;",
"  loom: LoomStates;",
"  'minecraft:loom': LoomStates;",
"  magenta_candle: MagentaCandleStates;",
"  'minecraft:magenta_candle': MagentaCandleStates;",
"  magenta_candle_cake: MagentaCandleCakeStates;",
"  'minecraft:magenta_candle_cake': MagentaCandleCakeStates;",
"  magenta_glazed_terracotta: MagentaGlazedTerracottaStates;",
"  'minecraft:magenta_glazed_terracotta': MagentaGlazedTerracottaStates;",
"  mangrove_button: MangroveButtonStates;",
"  'minecraft:mangrove_button': MangroveButtonStates;",
"  mangrove_door: MangroveDoorStates;",
"  'minecraft:mangrove_door': MangroveDoorStates;",
"  mangrove_double_slab: MangroveDoubleSlabStates;",
"  'minecraft:mangrove_double_slab': MangroveDoubleSlabStates;",
"  mangrove_fence_gate: MangroveFenceGateStates;",
"  'minecraft:mangrove_fence_gate': MangroveFenceGateStates;",
"  mangrove_hanging_sign: MangroveHangingSignStates;",
"  'minecraft:mangrove_hanging_sign': MangroveHangingSignStates;",
"  mangrove_leaves: MangroveLeavesStates;",
"  'minecraft:mangrove_leaves': MangroveLeavesStates;",
"  mangrove_log: MangroveLogStates;",
"  'minecraft:mangrove_log': MangroveLogStates;",
"  mangrove_pressure_plate: MangrovePressurePlateStates;",
"  'minecraft:mangrove_pressure_plate': MangrovePressurePlateStates;",
"  mangrove_propagule: MangrovePropaguleStates;",
"  'minecraft:mangrove_propagule': MangrovePropaguleStates;",
"  mangrove_slab: MangroveSlabStates;",
"  'minecraft:mangrove_slab': MangroveSlabStates;",
"  mangrove_stairs: MangroveStairsStates;",
"  'minecraft:mangrove_stairs': MangroveStairsStates;",
"  mangrove_standing_sign: MangroveStandingSignStates;",
"  'minecraft:mangrove_standing_sign': MangroveStandingSignStates;",
"  mangrove_trapdoor: MangroveTrapdoorStates;",
"  'minecraft:mangrove_trapdoor': MangroveTrapdoorStates;",
"  mangrove_wall_sign: MangroveWallSignStates;",
"  'minecraft:mangrove_wall_sign': MangroveWallSignStates;",
"  mangrove_wood: MangroveWoodStates;",
"  'minecraft:mangrove_wood': MangroveWoodStates;",
"  medium_amethyst_bud: MediumAmethystBudStates;",
"  'minecraft:medium_amethyst_bud': MediumAmethystBudStates;",
"  melon_stem: MelonStemStates;",
"  'minecraft:melon_stem': MelonStemStates;",
"  monster_egg: MonsterEggStates;",
"  'minecraft:monster_egg': MonsterEggStates;",
"  mossy_cobblestone_stairs: MossyCobblestoneStairsStates;",
"  'minecraft:mossy_cobblestone_stairs': MossyCobblestoneStairsStates;",
"  mossy_stone_brick_stairs: MossyStoneBrickStairsStates;",
"  'minecraft:mossy_stone_brick_stairs': MossyStoneBrickStairsStates;",
"  mud_brick_double_slab: MudBrickDoubleSlabStates;",
"  'minecraft:mud_brick_double_slab': MudBrickDoubleSlabStates;",
"  mud_brick_slab: MudBrickSlabStates;",
"  'minecraft:mud_brick_slab': MudBrickSlabStates;",
"  mud_brick_stairs: MudBrickStairsStates;",
"  'minecraft:mud_brick_stairs': MudBrickStairsStates;",
"  mud_brick_wall: MudBrickWallStates;",
"  'minecraft:mud_brick_wall': MudBrickWallStates;",
"  muddy_mangrove_roots: MuddyMangroveRootsStates;",
"  'minecraft:muddy_mangrove_roots': MuddyMangroveRootsStates;",
"  nether_brick_stairs: NetherBrickStairsStates;",
"  'minecraft:nether_brick_stairs': NetherBrickStairsStates;",
"  nether_wart: NetherWartStates;",
"  'minecraft:nether_wart': NetherWartStates;",
"  normal_stone_stairs: NormalStoneStairsStates;",
"  'minecraft:normal_stone_stairs': NormalStoneStairsStates;",
"  oak_double_slab: OakDoubleSlabStates;",
"  'minecraft:oak_double_slab': OakDoubleSlabStates;",
"  oak_hanging_sign: OakHangingSignStates;",
"  'minecraft:oak_hanging_sign': OakHangingSignStates;",
"  oak_leaves: OakLeavesStates;",
"  'minecraft:oak_leaves': OakLeavesStates;",
"  oak_log: OakLogStates;",
"  'minecraft:oak_log': OakLogStates;",
"  oak_sapling: OakSaplingStates;",
"  'minecraft:oak_sapling': OakSaplingStates;",
"  oak_slab: OakSlabStates;",
"  'minecraft:oak_slab': OakSlabStates;",
"  oak_stairs: OakStairsStates;",
"  'minecraft:oak_stairs': OakStairsStates;",
"  oak_wood: OakWoodStates;",
"  'minecraft:oak_wood': OakWoodStates;",
"  observer: ObserverStates;",
"  'minecraft:observer': ObserverStates;",
"  ochre_froglight: OchreFroglightStates;",
"  'minecraft:ochre_froglight': OchreFroglightStates;",
"  orange_candle: OrangeCandleStates;",
"  'minecraft:orange_candle': OrangeCandleStates;",
"  orange_candle_cake: OrangeCandleCakeStates;",
"  'minecraft:orange_candle_cake': OrangeCandleCakeStates;",
"  orange_glazed_terracotta: OrangeGlazedTerracottaStates;",
"  'minecraft:orange_glazed_terracotta': OrangeGlazedTerracottaStates;",
"  oxidized_copper_bulb: OxidizedCopperBulbStates;",
"  'minecraft:oxidized_copper_bulb': OxidizedCopperBulbStates;",
"  oxidized_copper_door: OxidizedCopperDoorStates;",
"  'minecraft:oxidized_copper_door': OxidizedCopperDoorStates;",
"  oxidized_copper_trapdoor: OxidizedCopperTrapdoorStates;",
"  'minecraft:oxidized_copper_trapdoor': OxidizedCopperTrapdoorStates;",
"  oxidized_cut_copper_slab: OxidizedCutCopperSlabStates;",
"  'minecraft:oxidized_cut_copper_slab': OxidizedCutCopperSlabStates;",
"  oxidized_cut_copper_stairs: OxidizedCutCopperStairsStates;",
"  'minecraft:oxidized_cut_copper_stairs': OxidizedCutCopperStairsStates;",
"  oxidized_double_cut_copper_slab: OxidizedDoubleCutCopperSlabStates;",
"  'minecraft:oxidized_double_cut_copper_slab': OxidizedDoubleCutCopperSlabStates;",
"  pearlescent_froglight: PearlescentFroglightStates;",
"  'minecraft:pearlescent_froglight': PearlescentFroglightStates;",
"  pink_candle: PinkCandleStates;",
"  'minecraft:pink_candle': PinkCandleStates;",
"  pink_candle_cake: PinkCandleCakeStates;",
"  'minecraft:pink_candle_cake': PinkCandleCakeStates;",
"  pink_glazed_terracotta: PinkGlazedTerracottaStates;",
"  'minecraft:pink_glazed_terracotta': PinkGlazedTerracottaStates;",
"  pink_petals: PinkPetalsStates;",
"  'minecraft:pink_petals': PinkPetalsStates;",
"  piston: PistonStates;",
"  'minecraft:piston': PistonStates;",
"  piston_arm_collision: PistonArmCollisionStates;",
"  'minecraft:piston_arm_collision': PistonArmCollisionStates;",
"  pitcher_crop: PitcherCropStates;",
"  'minecraft:pitcher_crop': PitcherCropStates;",
"  pitcher_plant: PitcherPlantStates;",
"  'minecraft:pitcher_plant': PitcherPlantStates;",
"  pointed_dripstone: PointedDripstoneStates;",
"  'minecraft:pointed_dripstone': PointedDripstoneStates;",
"  polished_andesite_stairs: PolishedAndesiteStairsStates;",
"  'minecraft:polished_andesite_stairs': PolishedAndesiteStairsStates;",
"  polished_basalt: PolishedBasaltStates;",
"  'minecraft:polished_basalt': PolishedBasaltStates;",
"  polished_blackstone_brick_double_slab: PolishedBlackstoneBrickDoubleSlabStates;",
"  'minecraft:polished_blackstone_brick_double_slab': PolishedBlackstoneBrickDoubleSlabStates;",
"  polished_blackstone_brick_slab: PolishedBlackstoneBrickSlabStates;",
"  'minecraft:polished_blackstone_brick_slab': PolishedBlackstoneBrickSlabStates;",
"  polished_blackstone_brick_stairs: PolishedBlackstoneBrickStairsStates;",
"  'minecraft:polished_blackstone_brick_stairs': PolishedBlackstoneBrickStairsStates;",
"  polished_blackstone_brick_wall: PolishedBlackstoneBrickWallStates;",
"  'minecraft:polished_blackstone_brick_wall': PolishedBlackstoneBrickWallStates;",
"  polished_blackstone_button: PolishedBlackstoneButtonStates;",
"  'minecraft:polished_blackstone_button': PolishedBlackstoneButtonStates;",
"  polished_blackstone_double_slab: PolishedBlackstoneDoubleSlabStates;",
"  'minecraft:polished_blackstone_double_slab': PolishedBlackstoneDoubleSlabStates;",
"  polished_blackstone_pressure_plate: PolishedBlackstonePressurePlateStates;",
"  'minecraft:polished_blackstone_pressure_plate': PolishedBlackstonePressurePlateStates;",
"  polished_blackstone_slab: PolishedBlackstoneSlabStates;",
"  'minecraft:polished_blackstone_slab': PolishedBlackstoneSlabStates;",
"  polished_blackstone_stairs: PolishedBlackstoneStairsStates;",
"  'minecraft:polished_blackstone_stairs': PolishedBlackstoneStairsStates;",
"  polished_blackstone_wall: PolishedBlackstoneWallStates;",
"  'minecraft:polished_blackstone_wall': PolishedBlackstoneWallStates;",
"  polished_deepslate_double_slab: PolishedDeepslateDoubleSlabStates;",
"  'minecraft:polished_deepslate_double_slab': PolishedDeepslateDoubleSlabStates;",
"  polished_deepslate_slab: PolishedDeepslateSlabStates;",
"  'minecraft:polished_deepslate_slab': PolishedDeepslateSlabStates;",
"  polished_deepslate_stairs: PolishedDeepslateStairsStates;",
"  'minecraft:polished_deepslate_stairs': PolishedDeepslateStairsStates;",
"  polished_deepslate_wall: PolishedDeepslateWallStates;",
"  'minecraft:polished_deepslate_wall': PolishedDeepslateWallStates;",
"  polished_diorite_stairs: PolishedDioriteStairsStates;",
"  'minecraft:polished_diorite_stairs': PolishedDioriteStairsStates;",
"  polished_granite_stairs: PolishedGraniteStairsStates;",
"  'minecraft:polished_granite_stairs': PolishedGraniteStairsStates;",
"  polished_tuff_double_slab: PolishedTuffDoubleSlabStates;",
"  'minecraft:polished_tuff_double_slab': PolishedTuffDoubleSlabStates;",
"  polished_tuff_slab: PolishedTuffSlabStates;",
"  'minecraft:polished_tuff_slab': PolishedTuffSlabStates;",
"  polished_tuff_stairs: PolishedTuffStairsStates;",
"  'minecraft:polished_tuff_stairs': PolishedTuffStairsStates;",
"  polished_tuff_wall: PolishedTuffWallStates;",
"  'minecraft:polished_tuff_wall': PolishedTuffWallStates;",
"  portal: PortalStates;",
"  'minecraft:portal': PortalStates;",
"  potatoes: PotatoesStates;",
"  'minecraft:potatoes': PotatoesStates;",
"  powered_comparator: PoweredComparatorStates;",
"  'minecraft:powered_comparator': PoweredComparatorStates;",
"  powered_repeater: PoweredRepeaterStates;",
"  'minecraft:powered_repeater': PoweredRepeaterStates;",
"  prismarine: PrismarineStates;",
"  'minecraft:prismarine': PrismarineStates;",
"  prismarine_bricks_stairs: PrismarineBricksStairsStates;",
"  'minecraft:prismarine_bricks_stairs': PrismarineBricksStairsStates;",
"  prismarine_stairs: PrismarineStairsStates;",
"  'minecraft:prismarine_stairs': PrismarineStairsStates;",
"  pumpkin: PumpkinStates;",
"  'minecraft:pumpkin': PumpkinStates;",
"  pumpkin_stem: PumpkinStemStates;",
"  'minecraft:pumpkin_stem': PumpkinStemStates;",
"  purple_candle: PurpleCandleStates;",
"  'minecraft:purple_candle': PurpleCandleStates;",
"  purple_candle_cake: PurpleCandleCakeStates;",
"  'minecraft:purple_candle_cake': PurpleCandleCakeStates;",
"  purple_glazed_terracotta: PurpleGlazedTerracottaStates;",
"  'minecraft:purple_glazed_terracotta': PurpleGlazedTerracottaStates;",
"  purpur_block: PurpurBlockStates;",
"  'minecraft:purpur_block': PurpurBlockStates;",
"  purpur_stairs: PurpurStairsStates;",
"  'minecraft:purpur_stairs': PurpurStairsStates;",
"  quartz_block: QuartzBlockStates;",
"  'minecraft:quartz_block': QuartzBlockStates;",
"  quartz_stairs: QuartzStairsStates;",
"  'minecraft:quartz_stairs': QuartzStairsStates;",
"  rail: RailStates;",
"  'minecraft:rail': RailStates;",
"  red_candle: RedCandleStates;",
"  'minecraft:red_candle': RedCandleStates;",
"  red_candle_cake: RedCandleCakeStates;",
"  'minecraft:red_candle_cake': RedCandleCakeStates;",
"  red_glazed_terracotta: RedGlazedTerracottaStates;",
"  'minecraft:red_glazed_terracotta': RedGlazedTerracottaStates;",
"  red_mushroom_block: RedMushroomBlockStates;",
"  'minecraft:red_mushroom_block': RedMushroomBlockStates;",
"  red_nether_brick_stairs: RedNetherBrickStairsStates;",
"  'minecraft:red_nether_brick_stairs': RedNetherBrickStairsStates;",
"  red_sandstone: RedSandstoneStates;",
"  'minecraft:red_sandstone': RedSandstoneStates;",
"  red_sandstone_stairs: RedSandstoneStairsStates;",
"  'minecraft:red_sandstone_stairs': RedSandstoneStairsStates;",
"  redstone_torch: RedstoneTorchStates;",
"  'minecraft:redstone_torch': RedstoneTorchStates;",
"  redstone_wire: RedstoneWireStates;",
"  'minecraft:redstone_wire': RedstoneWireStates;",
"  reeds: ReedsStates;",
"  'minecraft:reeds': ReedsStates;",
"  repeating_command_block: RepeatingCommandBlockStates;",
"  'minecraft:repeating_command_block': RepeatingCommandBlockStates;",
"  respawn_anchor: RespawnAnchorStates;",
"  'minecraft:respawn_anchor': RespawnAnchorStates;",
"  sand: SandStates;",
"  'minecraft:sand': SandStates;",
"  sandstone: SandstoneStates;",
"  'minecraft:sandstone': SandstoneStates;",
"  sandstone_stairs: SandstoneStairsStates;",
"  'minecraft:sandstone_stairs': SandstoneStairsStates;",
"  scaffolding: ScaffoldingStates;",
"  'minecraft:scaffolding': ScaffoldingStates;",
"  sculk_catalyst: SculkCatalystStates;",
"  'minecraft:sculk_catalyst': SculkCatalystStates;",
"  sculk_sensor: SculkSensorStates;",
"  'minecraft:sculk_sensor': SculkSensorStates;",
"  sculk_shrieker: SculkShriekerStates;",
"  'minecraft:sculk_shrieker': SculkShriekerStates;",
"  sculk_vein: SculkVeinStates;",
"  'minecraft:sculk_vein': SculkVeinStates;",
"  sea_pickle: SeaPickleStates;",
"  'minecraft:sea_pickle': SeaPickleStates;",
"  seagrass: SeagrassStates;",
"  'minecraft:seagrass': SeagrassStates;",
"  silver_glazed_terracotta: SilverGlazedTerracottaStates;",
"  'minecraft:silver_glazed_terracotta': SilverGlazedTerracottaStates;",
"  skull: SkullStates;",
"  'minecraft:skull': SkullStates;",
"  small_amethyst_bud: SmallAmethystBudStates;",
"  'minecraft:small_amethyst_bud': SmallAmethystBudStates;",
"  small_dripleaf_block: SmallDripleafBlockStates;",
"  'minecraft:small_dripleaf_block': SmallDripleafBlockStates;",
"  smoker: SmokerStates;",
"  'minecraft:smoker': SmokerStates;",
"  smooth_quartz_stairs: SmoothQuartzStairsStates;",
"  'minecraft:smooth_quartz_stairs': SmoothQuartzStairsStates;",
"  smooth_red_sandstone_stairs: SmoothRedSandstoneStairsStates;",
"  'minecraft:smooth_red_sandstone_stairs': SmoothRedSandstoneStairsStates;",
"  smooth_sandstone_stairs: SmoothSandstoneStairsStates;",
"  'minecraft:smooth_sandstone_stairs': SmoothSandstoneStairsStates;",
"  sniffer_egg: SnifferEggStates;",
"  'minecraft:sniffer_egg': SnifferEggStates;",
"  snow_layer: SnowLayerStates;",
"  'minecraft:snow_layer': SnowLayerStates;",
"  soul_campfire: SoulCampfireStates;",
"  'minecraft:soul_campfire': SoulCampfireStates;",
"  soul_fire: SoulFireStates;",
"  'minecraft:soul_fire': SoulFireStates;",
"  soul_lantern: SoulLanternStates;",
"  'minecraft:soul_lantern': SoulLanternStates;",
"  soul_torch: SoulTorchStates;",
"  'minecraft:soul_torch': SoulTorchStates;",
"  sponge: SpongeStates;",
"  'minecraft:sponge': SpongeStates;",
"  spruce_button: SpruceButtonStates;",
"  'minecraft:spruce_button': SpruceButtonStates;",
"  spruce_door: SpruceDoorStates;",
"  'minecraft:spruce_door': SpruceDoorStates;",
"  spruce_double_slab: SpruceDoubleSlabStates;",
"  'minecraft:spruce_double_slab': SpruceDoubleSlabStates;",
"  spruce_fence_gate: SpruceFenceGateStates;",
"  'minecraft:spruce_fence_gate': SpruceFenceGateStates;",
"  spruce_hanging_sign: SpruceHangingSignStates;",
"  'minecraft:spruce_hanging_sign': SpruceHangingSignStates;",
"  spruce_leaves: SpruceLeavesStates;",
"  'minecraft:spruce_leaves': SpruceLeavesStates;",
"  spruce_log: SpruceLogStates;",
"  'minecraft:spruce_log': SpruceLogStates;",
"  spruce_pressure_plate: SprucePressurePlateStates;",
"  'minecraft:spruce_pressure_plate': SprucePressurePlateStates;",
"  spruce_sapling: SpruceSaplingStates;",
"  'minecraft:spruce_sapling': SpruceSaplingStates;",
"  spruce_slab: SpruceSlabStates;",
"  'minecraft:spruce_slab': SpruceSlabStates;",
"  spruce_stairs: SpruceStairsStates;",
"  'minecraft:spruce_stairs': SpruceStairsStates;",
"  spruce_standing_sign: SpruceStandingSignStates;",
"  'minecraft:spruce_standing_sign': SpruceStandingSignStates;",
"  spruce_trapdoor: SpruceTrapdoorStates;",
"  'minecraft:spruce_trapdoor': SpruceTrapdoorStates;",
"  spruce_wall_sign: SpruceWallSignStates;",
"  'minecraft:spruce_wall_sign': SpruceWallSignStates;",
"  spruce_wood: SpruceWoodStates;",
"  'minecraft:spruce_wood': SpruceWoodStates;",
"  standing_banner: StandingBannerStates;",
"  'minecraft:standing_banner': StandingBannerStates;",
"  standing_sign: StandingSignStates;",
"  'minecraft:standing_sign': StandingSignStates;",
"  sticky_piston: StickyPistonStates;",
"  'minecraft:sticky_piston': StickyPistonStates;",
"  sticky_piston_arm_collision: StickyPistonArmCollisionStates;",
"  'minecraft:sticky_piston_arm_collision': StickyPistonArmCollisionStates;",
"  stone_block_slab: StoneBlockSlabStates;",
"  'minecraft:stone_block_slab': StoneBlockSlabStates;",
"  stone_block_slab2: StoneBlockSlab2States;",
"  'minecraft:stone_block_slab2': StoneBlockSlab2States;",
"  stone_block_slab3: StoneBlockSlab3States;",
"  'minecraft:stone_block_slab3': StoneBlockSlab3States;",
"  stone_block_slab4: StoneBlockSlab4States;",
"  'minecraft:stone_block_slab4': StoneBlockSlab4States;",
"  stone_brick_stairs: StoneBrickStairsStates;",
"  'minecraft:stone_brick_stairs': StoneBrickStairsStates;",
"  stone_button: StoneButtonStates;",
"  'minecraft:stone_button': StoneButtonStates;",
"  stone_pressure_plate: StonePressurePlateStates;",
"  'minecraft:stone_pressure_plate': StonePressurePlateStates;",
"  stone_stairs: StoneStairsStates;",
"  'minecraft:stone_stairs': StoneStairsStates;",
"  stonebrick: StonebrickStates;",
"  'minecraft:stonebrick': StonebrickStates;",
"  stonecutter_block: StonecutterBlockStates;",
"  'minecraft:stonecutter_block': StonecutterBlockStates;",
"  stripped_acacia_log: StrippedAcaciaLogStates;",
"  'minecraft:stripped_acacia_log': StrippedAcaciaLogStates;",
"  stripped_acacia_wood: StrippedAcaciaWoodStates;",
"  'minecraft:stripped_acacia_wood': StrippedAcaciaWoodStates;",
"  stripped_bamboo_block: StrippedBambooBlockStates;",
"  'minecraft:stripped_bamboo_block': StrippedBambooBlockStates;",
"  stripped_birch_log: StrippedBirchLogStates;",
"  'minecraft:stripped_birch_log': StrippedBirchLogStates;",
"  stripped_birch_wood: StrippedBirchWoodStates;",
"  'minecraft:stripped_birch_wood': StrippedBirchWoodStates;",
"  stripped_cherry_log: StrippedCherryLogStates;",
"  'minecraft:stripped_cherry_log': StrippedCherryLogStates;",
"  stripped_cherry_wood: StrippedCherryWoodStates;",
"  'minecraft:stripped_cherry_wood': StrippedCherryWoodStates;",
"  stripped_crimson_hyphae: StrippedCrimsonHyphaeStates;",
"  'minecraft:stripped_crimson_hyphae': StrippedCrimsonHyphaeStates;",
"  stripped_crimson_stem: StrippedCrimsonStemStates;",
"  'minecraft:stripped_crimson_stem': StrippedCrimsonStemStates;",
"  stripped_dark_oak_log: StrippedDarkOakLogStates;",
"  'minecraft:stripped_dark_oak_log': StrippedDarkOakLogStates;",
"  stripped_dark_oak_wood: StrippedDarkOakWoodStates;",
"  'minecraft:stripped_dark_oak_wood': StrippedDarkOakWoodStates;",
"  stripped_jungle_log: StrippedJungleLogStates;",
"  'minecraft:stripped_jungle_log': StrippedJungleLogStates;",
"  stripped_jungle_wood: StrippedJungleWoodStates;",
"  'minecraft:stripped_jungle_wood': StrippedJungleWoodStates;",
"  stripped_mangrove_log: StrippedMangroveLogStates;",
"  'minecraft:stripped_mangrove_log': StrippedMangroveLogStates;",
"  stripped_mangrove_wood: StrippedMangroveWoodStates;",
"  'minecraft:stripped_mangrove_wood': StrippedMangroveWoodStates;",
"  stripped_oak_log: StrippedOakLogStates;",
"  'minecraft:stripped_oak_log': StrippedOakLogStates;",
"  stripped_oak_wood: StrippedOakWoodStates;",
"  'minecraft:stripped_oak_wood': StrippedOakWoodStates;",
"  stripped_spruce_log: StrippedSpruceLogStates;",
"  'minecraft:stripped_spruce_log': StrippedSpruceLogStates;",
"  stripped_spruce_wood: StrippedSpruceWoodStates;",
"  'minecraft:stripped_spruce_wood': StrippedSpruceWoodStates;",
"  stripped_warped_hyphae: StrippedWarpedHyphaeStates;",
"  'minecraft:stripped_warped_hyphae': StrippedWarpedHyphaeStates;",
"  stripped_warped_stem: StrippedWarpedStemStates;",
"  'minecraft:stripped_warped_stem': StrippedWarpedStemStates;",
"  structure_block: StructureBlockStates;",
"  'minecraft:structure_block': StructureBlockStates;",
"  structure_void: StructureVoidStates;",
"  'minecraft:structure_void': StructureVoidStates;",
"  suspicious_gravel: SuspiciousGravelStates;",
"  'minecraft:suspicious_gravel': SuspiciousGravelStates;",
"  suspicious_sand: SuspiciousSandStates;",
"  'minecraft:suspicious_sand': SuspiciousSandStates;",
"  sweet_berry_bush: SweetBerryBushStates;",
"  'minecraft:sweet_berry_bush': SweetBerryBushStates;",
"  tallgrass: TallgrassStates;",
"  'minecraft:tallgrass': TallgrassStates;",
"  tnt: TntStates;",
"  'minecraft:tnt': TntStates;",
"  torch: TorchStates;",
"  'minecraft:torch': TorchStates;",
"  torchflower_crop: TorchflowerCropStates;",
"  'minecraft:torchflower_crop': TorchflowerCropStates;",
"  trapdoor: TrapdoorStates;",
"  'minecraft:trapdoor': TrapdoorStates;",
"  trapped_chest: TrappedChestStates;",
"  'minecraft:trapped_chest': TrappedChestStates;",
"  trial_spawner: TrialSpawnerStates;",
"  'minecraft:trial_spawner': TrialSpawnerStates;",
"  trip_wire: TripWireStates;",
"  'minecraft:trip_wire': TripWireStates;",
"  tripwire_hook: TripwireHookStates;",
"  'minecraft:tripwire_hook': TripwireHookStates;",
"  tube_coral_fan: TubeCoralFanStates;",
"  'minecraft:tube_coral_fan': TubeCoralFanStates;",
"  tuff_brick_double_slab: TuffBrickDoubleSlabStates;",
"  'minecraft:tuff_brick_double_slab': TuffBrickDoubleSlabStates;",
"  tuff_brick_slab: TuffBrickSlabStates;",
"  'minecraft:tuff_brick_slab': TuffBrickSlabStates;",
"  tuff_brick_stairs: TuffBrickStairsStates;",
"  'minecraft:tuff_brick_stairs': TuffBrickStairsStates;",
"  tuff_brick_wall: TuffBrickWallStates;",
"  'minecraft:tuff_brick_wall': TuffBrickWallStates;",
"  tuff_double_slab: TuffDoubleSlabStates;",
"  'minecraft:tuff_double_slab': TuffDoubleSlabStates;",
"  tuff_slab: TuffSlabStates;",
"  'minecraft:tuff_slab': TuffSlabStates;",
"  tuff_stairs: TuffStairsStates;",
"  'minecraft:tuff_stairs': TuffStairsStates;",
"  tuff_wall: TuffWallStates;",
"  'minecraft:tuff_wall': TuffWallStates;",
"  turtle_egg: TurtleEggStates;",
"  'minecraft:turtle_egg': TurtleEggStates;",
"  twisting_vines: TwistingVinesStates;",
"  'minecraft:twisting_vines': TwistingVinesStates;",
"  underwater_torch: UnderwaterTorchStates;",
"  'minecraft:underwater_torch': UnderwaterTorchStates;",
"  unlit_redstone_torch: UnlitRedstoneTorchStates;",
"  'minecraft:unlit_redstone_torch': UnlitRedstoneTorchStates;",
"  unpowered_comparator: UnpoweredComparatorStates;",
"  'minecraft:unpowered_comparator': UnpoweredComparatorStates;",
"  unpowered_repeater: UnpoweredRepeaterStates;",
"  'minecraft:unpowered_repeater': UnpoweredRepeaterStates;",
"  vault: VaultStates;",
"  'minecraft:vault': VaultStates;",
"  verdant_froglight: VerdantFroglightStates;",
"  'minecraft:verdant_froglight': VerdantFroglightStates;",
"  vine: VineStates;",
"  'minecraft:vine': VineStates;",
"  wall_banner: WallBannerStates;",
"  'minecraft:wall_banner': WallBannerStates;",
"  wall_sign: WallSignStates;",
"  'minecraft:wall_sign': WallSignStates;",
"  warped_button: WarpedButtonStates;",
"  'minecraft:warped_button': WarpedButtonStates;",
"  warped_door: WarpedDoorStates;",
"  'minecraft:warped_door': WarpedDoorStates;",
"  warped_double_slab: WarpedDoubleSlabStates;",
"  'minecraft:warped_double_slab': WarpedDoubleSlabStates;",
"  warped_fence_gate: WarpedFenceGateStates;",
"  'minecraft:warped_fence_gate': WarpedFenceGateStates;",
"  warped_hanging_sign: WarpedHangingSignStates;",
"  'minecraft:warped_hanging_sign': WarpedHangingSignStates;",
"  warped_hyphae: WarpedHyphaeStates;",
"  'minecraft:warped_hyphae': WarpedHyphaeStates;",
"  warped_pressure_plate: WarpedPressurePlateStates;",
"  'minecraft:warped_pressure_plate': WarpedPressurePlateStates;",
"  warped_slab: WarpedSlabStates;",
"  'minecraft:warped_slab': WarpedSlabStates;",
"  warped_stairs: WarpedStairsStates;",
"  'minecraft:warped_stairs': WarpedStairsStates;",
"  warped_standing_sign: WarpedStandingSignStates;",
"  'minecraft:warped_standing_sign': WarpedStandingSignStates;",
"  warped_stem: WarpedStemStates;",
"  'minecraft:warped_stem': WarpedStemStates;",
"  warped_trapdoor: WarpedTrapdoorStates;",
"  'minecraft:warped_trapdoor': WarpedTrapdoorStates;",
"  warped_wall_sign: WarpedWallSignStates;",
"  'minecraft:warped_wall_sign': WarpedWallSignStates;",
"  water: WaterStates;",
"  'minecraft:water': WaterStates;",
"  waxed_copper_bulb: WaxedCopperBulbStates;",
"  'minecraft:waxed_copper_bulb': WaxedCopperBulbStates;",
"  waxed_copper_door: WaxedCopperDoorStates;",
"  'minecraft:waxed_copper_door': WaxedCopperDoorStates;",
"  waxed_copper_trapdoor: WaxedCopperTrapdoorStates;",
"  'minecraft:waxed_copper_trapdoor': WaxedCopperTrapdoorStates;",
"  waxed_cut_copper_slab: WaxedCutCopperSlabStates;",
"  'minecraft:waxed_cut_copper_slab': WaxedCutCopperSlabStates;",
"  waxed_cut_copper_stairs: WaxedCutCopperStairsStates;",
"  'minecraft:waxed_cut_copper_stairs': WaxedCutCopperStairsStates;",
"  waxed_double_cut_copper_slab: WaxedDoubleCutCopperSlabStates;",
"  'minecraft:waxed_double_cut_copper_slab': WaxedDoubleCutCopperSlabStates;",
"  waxed_exposed_copper_bulb: WaxedExposedCopperBulbStates;",
"  'minecraft:waxed_exposed_copper_bulb': WaxedExposedCopperBulbStates;",
"  waxed_exposed_copper_door: WaxedExposedCopperDoorStates;",
"  'minecraft:waxed_exposed_copper_door': WaxedExposedCopperDoorStates;",
"  waxed_exposed_copper_trapdoor: WaxedExposedCopperTrapdoorStates;",
"  'minecraft:waxed_exposed_copper_trapdoor': WaxedExposedCopperTrapdoorStates;",
"  waxed_exposed_cut_copper_slab: WaxedExposedCutCopperSlabStates;",
"  'minecraft:waxed_exposed_cut_copper_slab': WaxedExposedCutCopperSlabStates;",
"  waxed_exposed_cut_copper_stairs: WaxedExposedCutCopperStairsStates;",
"  'minecraft:waxed_exposed_cut_copper_stairs': WaxedExposedCutCopperStairsStates;",
"  waxed_exposed_double_cut_copper_slab: WaxedExposedDoubleCutCopperSlabStates;",
"  'minecraft:waxed_exposed_double_cut_copper_slab': WaxedExposedDoubleCutCopperSlabStates;",
"  waxed_oxidized_copper_bulb: WaxedOxidizedCopperBulbStates;",
"  'minecraft:waxed_oxidized_copper_bulb': WaxedOxidizedCopperBulbStates;",
"  waxed_oxidized_copper_door: WaxedOxidizedCopperDoorStates;",
"  'minecraft:waxed_oxidized_copper_door': WaxedOxidizedCopperDoorStates;",
"  waxed_oxidized_copper_trapdoor: WaxedOxidizedCopperTrapdoorStates;",
"  'minecraft:waxed_oxidized_copper_trapdoor': WaxedOxidizedCopperTrapdoorStates;",
"  waxed_oxidized_cut_copper_slab: WaxedOxidizedCutCopperSlabStates;",
"  'minecraft:waxed_oxidized_cut_copper_slab': WaxedOxidizedCutCopperSlabStates;",
"  waxed_oxidized_cut_copper_stairs: WaxedOxidizedCutCopperStairsStates;",
"  'minecraft:waxed_oxidized_cut_copper_stairs': WaxedOxidizedCutCopperStairsStates;",
"  waxed_oxidized_double_cut_copper_slab: WaxedOxidizedDoubleCutCopperSlabStates;",
"  'minecraft:waxed_oxidized_double_cut_copper_slab': WaxedOxidizedDoubleCutCopperSlabStates;",
"  waxed_weathered_copper_bulb: WaxedWeatheredCopperBulbStates;",
"  'minecraft:waxed_weathered_copper_bulb': WaxedWeatheredCopperBulbStates;",
"  waxed_weathered_copper_door: WaxedWeatheredCopperDoorStates;",
"  'minecraft:waxed_weathered_copper_door': WaxedWeatheredCopperDoorStates;",
"  waxed_weathered_copper_trapdoor: WaxedWeatheredCopperTrapdoorStates;",
"  'minecraft:waxed_weathered_copper_trapdoor': WaxedWeatheredCopperTrapdoorStates;",
"  waxed_weathered_cut_copper_slab: WaxedWeatheredCutCopperSlabStates;",
"  'minecraft:waxed_weathered_cut_copper_slab': WaxedWeatheredCutCopperSlabStates;",
"  waxed_weathered_cut_copper_stairs: WaxedWeatheredCutCopperStairsStates;",
"  'minecraft:waxed_weathered_cut_copper_stairs': WaxedWeatheredCutCopperStairsStates;",
"  waxed_weathered_double_cut_copper_slab: WaxedWeatheredDoubleCutCopperSlabStates;",
"  'minecraft:waxed_weathered_double_cut_copper_slab': WaxedWeatheredDoubleCutCopperSlabStates;",
"  weathered_copper_bulb: WeatheredCopperBulbStates;",
"  'minecraft:weathered_copper_bulb': WeatheredCopperBulbStates;",
"  weathered_copper_door: WeatheredCopperDoorStates;",
"  'minecraft:weathered_copper_door': WeatheredCopperDoorStates;",
"  weathered_copper_trapdoor: WeatheredCopperTrapdoorStates;",
"  'minecraft:weathered_copper_trapdoor': WeatheredCopperTrapdoorStates;",
"  weathered_cut_copper_slab: WeatheredCutCopperSlabStates;",
"  'minecraft:weathered_cut_copper_slab': WeatheredCutCopperSlabStates;",
"  weathered_cut_copper_stairs: WeatheredCutCopperStairsStates;",
"  'minecraft:weathered_cut_copper_stairs': WeatheredCutCopperStairsStates;",
"  weathered_double_cut_copper_slab: WeatheredDoubleCutCopperSlabStates;",
"  'minecraft:weathered_double_cut_copper_slab': WeatheredDoubleCutCopperSlabStates;",
"  weeping_vines: WeepingVinesStates;",
"  'minecraft:weeping_vines': WeepingVinesStates;",
"  wheat: WheatStates;",
"  'minecraft:wheat': WheatStates;",
"  white_candle: WhiteCandleStates;",
"  'minecraft:white_candle': WhiteCandleStates;",
"  white_candle_cake: WhiteCandleCakeStates;",
"  'minecraft:white_candle_cake': WhiteCandleCakeStates;",
"  white_glazed_terracotta: WhiteGlazedTerracottaStates;",
"  'minecraft:white_glazed_terracotta': WhiteGlazedTerracottaStates;",
"  wooden_button: WoodenButtonStates;",
"  'minecraft:wooden_button': WoodenButtonStates;",
"  wooden_door: WoodenDoorStates;",
"  'minecraft:wooden_door': WoodenDoorStates;",
"  wooden_pressure_plate: WoodenPressurePlateStates;",
"  'minecraft:wooden_pressure_plate': WoodenPressurePlateStates;",
"  yellow_candle: YellowCandleStates;",
"  'minecraft:yellow_candle': YellowCandleStates;",
"  yellow_candle_cake: YellowCandleCakeStates;",
"  'minecraft:yellow_candle_cake': YellowCandleCakeStates;",
"  yellow_glazed_terracotta: YellowGlazedTerracottaStates;",
"  'minecraft:yellow_glazed_terracotta': YellowGlazedTerracottaStates;",
"};",
"export type MinecraftBiomeTypesUnion = keyof typeof MinecraftBiomeTypes;",
"export enum MinecraftCameraPresetsTypes {",
"  FirstPerson = 'minecraft:first_person',",
"  Free = 'minecraft:free',",
"  ThirdPerson = 'minecraft:third_person',",
"  ThirdPersonFront = 'minecraft:third_person_front',",
"}",
"export type MinecraftCameraPresetsTypesUnion = keyof typeof MinecraftCameraPresetsTypes;",
"export enum MinecraftCooldownCategoryTypes {",
"  Chorusfruit = 'minecraft:chorusfruit',",
"  EnderPearl = 'minecraft:ender_pearl',",
"  GoatHorn = 'minecraft:goat_horn',",
"  Shield = 'minecraft:shield',",
"  WindCharge = 'minecraft:wind_charge',",
"}",
"export type MinecraftCooldownCategoryTypesUnion = keyof typeof MinecraftCooldownCategoryTypes;",
"export enum MinecraftDimensionTypes {",
"  Nether = 'minecraft:nether',",
"  Overworld = 'minecraft:overworld',",
"  TheEnd = 'minecraft:the_end',",
"}",
"export type MinecraftDimensionTypesUnion = keyof typeof MinecraftDimensionTypes;",
"export enum MinecraftEffectTypes {",
"  Absorption = 'absorption',",
"  BadOmen = 'bad_omen',",
"  Blindness = 'blindness',",
"  ConduitPower = 'conduit_power',",
"  Darkness = 'darkness',",
"  Empty = 'empty',",
"  FatalPoison = 'fatal_poison',",
"  FireResistance = 'fire_resistance',",
"  Haste = 'haste',",
"  HealthBoost = 'health_boost',",
"  Hunger = 'hunger',",
"  InstantDamage = 'instant_damage',",
"  InstantHealth = 'instant_health',",
"  Invisibility = 'invisibility',",
"  JumpBoost = 'jump_boost',",
"  Levitation = 'levitation',",
"  MiningFatigue = 'mining_fatigue',",
"  Nausea = 'nausea',",
"  NightVision = 'night_vision',",
"  Poison = 'poison',",
"  Regeneration = 'regeneration',",
"  Resistance = 'resistance',",
"  Saturation = 'saturation',",
"  SlowFalling = 'slow_falling',",
"  Slowness = 'slowness',",
"  Speed = 'speed',",
"  Strength = 'strength',",
"  VillageHero = 'village_hero',",
"  WaterBreathing = 'water_breathing',",
"  Weakness = 'weakness',",
"  Wither = 'wither',",
"}",
"export type MinecraftEffectTypesUnion = keyof typeof MinecraftEffectTypes;",
"export enum MinecraftEnchantmentTypes {",
"  AquaAffinity = 'aqua_affinity',",
"  BaneOfArthropods = 'bane_of_arthropods',",
"  Binding = 'binding',",
"  BlastProtection = 'blast_protection',",
"  Channeling = 'channeling',",
"  DepthStrider = 'depth_strider',",
"  Efficiency = 'efficiency',",
"  FeatherFalling = 'feather_falling',",
"  FireAspect = 'fire_aspect',",
"  FireProtection = 'fire_protection',",
"  Flame = 'flame',",
"  Fortune = 'fortune',",
"  FrostWalker = 'frost_walker',",
"  Impaling = 'impaling',",
"  Infinity = 'infinity',",
"  Knockback = 'knockback',",
"  Looting = 'looting',",
"  Loyalty = 'loyalty',",
"  LuckOfTheSea = 'luck_of_the_sea',",
"  Lure = 'lure',",
"  Mending = 'mending',",
"  Multishot = 'multishot',",
"  Piercing = 'piercing',",
"  Power = 'power',",
"  ProjectileProtection = 'projectile_protection',",
"  Protection = 'protection',",
"  Punch = 'punch',",
"  QuickCharge = 'quick_charge',",
"  Respiration = 'respiration',",
"  Riptide = 'riptide',",
"  Sharpness = 'sharpness',",
"  SilkTouch = 'silk_touch',",
"  Smite = 'smite',",
"  SoulSpeed = 'soul_speed',",
"  SwiftSneak = 'swift_sneak',",
"  Thorns = 'thorns',",
"  Unbreaking = 'unbreaking',",
"  Vanishing = 'vanishing',",
"}",
"export type MinecraftEnchantmentTypesUnion = keyof typeof MinecraftEnchantmentTypes;",
"export enum MinecraftEntityTypes {",
"  Agent = 'agent',",
"  Allay = 'allay',",
"  AreaEffectCloud = 'area_effect_cloud',",
"  Armadillo = 'armadillo',",
"  ArmorStand = 'armor_stand',",
"  Arrow = 'arrow',",
"  Axolotl = 'axolotl',",
"  Bat = 'bat',",
"  Bee = 'bee',",
"  Blaze = 'blaze',",
"  Boat = 'boat',",
"  Bogged = 'bogged',",
"  Breeze = 'breeze',",
"  BreezeWindChargeProjectile = 'breeze_wind_charge_projectile',",
"  Camel = 'camel',",
"  Cat = 'cat',",
"  CaveSpider = 'cave_spider',",
"  ChestBoat = 'chest_boat',",
"  ChestMinecart = 'chest_minecart',",
"  Chicken = 'chicken',",
"  Cod = 'cod',",
"  CommandBlockMinecart = 'command_block_minecart',",
"  Cow = 'cow',",
"  Creeper = 'creeper',",
"  Dolphin = 'dolphin',",
"  Donkey = 'donkey',",
"  DragonFireball = 'dragon_fireball',",
"  Drowned = 'drowned',",
"  Egg = 'egg',",
"  ElderGuardian = 'elder_guardian',",
"  EnderCrystal = 'ender_crystal',",
"  EnderDragon = 'ender_dragon',",
"  EnderPearl = 'ender_pearl',",
"  Enderman = 'enderman',",
"  Endermite = 'endermite',",
"  EvocationIllager = 'evocation_illager',",
"  EyeOfEnderSignal = 'eye_of_ender_signal',",
"  Fireball = 'fireball',",
"  FireworksRocket = 'fireworks_rocket',",
"  FishingHook = 'fishing_hook',",
"  Fox = 'fox',",
"  Frog = 'frog',",
"  Ghast = 'ghast',",
"  GlowSquid = 'glow_squid',",
"  Goat = 'goat',",
"  Guardian = 'guardian',",
"  Hoglin = 'hoglin',",
"  HopperMinecart = 'hopper_minecart',",
"  Horse = 'horse',",
"  Husk = 'husk',",
"  IronGolem = 'iron_golem',",
"  LightningBolt = 'lightning_bolt',",
"  LingeringPotion = 'lingering_potion',",
"  Llama = 'llama',",
"  LlamaSpit = 'llama_spit',",
"  MagmaCube = 'magma_cube',",
"  Minecart = 'minecart',",
"  Mooshroom = 'mooshroom',",
"  Mule = 'mule',",
"  Npc = 'npc',",
"  Ocelot = 'ocelot',",
"  Panda = 'panda',",
"  Parrot = 'parrot',",
"  Phantom = 'phantom',",
"  Pig = 'pig',",
"  Piglin = 'piglin',",
"  PiglinBrute = 'piglin_brute',",
"  Pillager = 'pillager',",
"  Player = 'player',",
"  PolarBear = 'polar_bear',",
"  Pufferfish = 'pufferfish',",
"  Rabbit = 'rabbit',",
"  Ravager = 'ravager',",
"  Salmon = 'salmon',",
"  Sheep = 'sheep',",
"  Shulker = 'shulker',",
"  ShulkerBullet = 'shulker_bullet',",
"  Silverfish = 'silverfish',",
"  Skeleton = 'skeleton',",
"  SkeletonHorse = 'skeleton_horse',",
"  Slime = 'slime',",
"  SmallFireball = 'small_fireball',",
"  Sniffer = 'sniffer',",
"  SnowGolem = 'snow_golem',",
"  Snowball = 'snowball',",
"  Spider = 'spider',",
"  SplashPotion = 'splash_potion',",
"  Squid = 'squid',",
"  Stray = 'stray',",
"  Strider = 'strider',",
"  Tadpole = 'tadpole',",
"  ThrownTrident = 'thrown_trident',",
"  Tnt = 'tnt',",
"  TntMinecart = 'tnt_minecart',",
"  TraderLlama = 'trader_llama',",
"  TripodCamera = 'tripod_camera',",
"  Tropicalfish = 'tropicalfish',",
"  Turtle = 'turtle',",
"  Vex = 'vex',",
"  Villager = 'villager',",
"  VillagerV2 = 'villager_v2',",
"  Vindicator = 'vindicator',",
"  WanderingTrader = 'wandering_trader',",
"  Warden = 'warden',",
"  WindChargeProjectile = 'wind_charge_projectile',",
"  Witch = 'witch',",
"  Wither = 'wither',",
"  WitherSkeleton = 'wither_skeleton',",
"  WitherSkull = 'wither_skull',",
"  WitherSkullDangerous = 'wither_skull_dangerous',",
"  Wolf = 'wolf',",
"  XpBottle = 'xp_bottle',",
"  XpOrb = 'xp_orb',",
"  Zoglin = 'zoglin',",
"  Zombie = 'zombie',",
"  ZombieHorse = 'zombie_horse',",
"  ZombiePigman = 'zombie_pigman',",
"  ZombieVillager = 'zombie_villager',",
"  ZombieVillagerV2 = 'zombie_villager_v2',",
"}",
"export type MinecraftEntityTypesUnion = keyof typeof MinecraftEntityTypes;",
"export enum MinecraftFeatureTypes {",
"  AncientCity = 'minecraft:ancient_city',",
"  BastionRemnant = 'minecraft:bastion_remnant',",
"  BuriedTreasure = 'minecraft:buried_treasure',",
"  EndCity = 'minecraft:end_city',",
"  Fortress = 'minecraft:fortress',",
"  Mansion = 'minecraft:mansion',",
"  Mineshaft = 'minecraft:mineshaft',",
"  Monument = 'minecraft:monument',",
"  PillagerOutpost = 'minecraft:pillager_outpost',",
"  RuinedPortal = 'minecraft:ruined_portal',",
"  Ruins = 'minecraft:ruins',",
"  Shipwreck = 'minecraft:shipwreck',",
"  Stronghold = 'minecraft:stronghold',",
"  Temple = 'minecraft:temple',",
"  TrailRuins = 'minecraft:trail_ruins',",
"  TrialChambers = 'minecraft:trial_chambers',",
"  Village = 'minecraft:village',",
"}",
"export type MinecraftFeatureTypesUnion = keyof typeof MinecraftFeatureTypes;",
"export enum MinecraftItemTypes {",
"  AcaciaBoat = 'minecraft:acacia_boat',",
"  AcaciaButton = 'minecraft:acacia_button',",
"  AcaciaChestBoat = 'minecraft:acacia_chest_boat',",
"  AcaciaDoor = 'minecraft:acacia_door',",
"  AcaciaFence = 'minecraft:acacia_fence',",
"  AcaciaFenceGate = 'minecraft:acacia_fence_gate',",
"  AcaciaHangingSign = 'minecraft:acacia_hanging_sign',",
"  AcaciaLeaves = 'minecraft:acacia_leaves',",
"  AcaciaLog = 'minecraft:acacia_log',",
"  AcaciaPlanks = 'minecraft:acacia_planks',",
"  AcaciaPressurePlate = 'minecraft:acacia_pressure_plate',",
"  AcaciaSapling = 'minecraft:acacia_sapling',",
"  AcaciaSign = 'minecraft:acacia_sign',",
"  AcaciaSlab = 'minecraft:acacia_slab',",
"  AcaciaStairs = 'minecraft:acacia_stairs',",
"  AcaciaTrapdoor = 'minecraft:acacia_trapdoor',",
"  AcaciaWood = 'minecraft:acacia_wood',",
"  ActivatorRail = 'minecraft:activator_rail',",
"  AllaySpawnEgg = 'minecraft:allay_spawn_egg',",
"  Allium = 'minecraft:allium',",
"  Allow = 'minecraft:allow',",
"  AmethystBlock = 'minecraft:amethyst_block',",
"  AmethystCluster = 'minecraft:amethyst_cluster',",
"  AmethystShard = 'minecraft:amethyst_shard',",
"  AncientDebris = 'minecraft:ancient_debris',",
"  Andesite = 'minecraft:andesite',",
"  AndesiteStairs = 'minecraft:andesite_stairs',",
"  AnglerPotterySherd = 'minecraft:angler_pottery_sherd',",
"  Anvil = 'minecraft:anvil',",
"  Apple = 'minecraft:apple',",
"  ArcherPotterySherd = 'minecraft:archer_pottery_sherd',",
"  ArmadilloScute = 'minecraft:armadillo_scute',",
"  ArmadilloSpawnEgg = 'minecraft:armadillo_spawn_egg',",
"  ArmorStand = 'minecraft:armor_stand',",
"  ArmsUpPotterySherd = 'minecraft:arms_up_pottery_sherd',",
"  Arrow = 'minecraft:arrow',",
"  AxolotlBucket = 'minecraft:axolotl_bucket',",
"  AxolotlSpawnEgg = 'minecraft:axolotl_spawn_egg',",
"  Azalea = 'minecraft:azalea',",
"  AzaleaLeaves = 'minecraft:azalea_leaves',",
"  AzaleaLeavesFlowered = 'minecraft:azalea_leaves_flowered',",
"  AzureBluet = 'minecraft:azure_bluet',",
"  BakedPotato = 'minecraft:baked_potato',",
"  Bamboo = 'minecraft:bamboo',",
"  BambooBlock = 'minecraft:bamboo_block',",
"  BambooButton = 'minecraft:bamboo_button',",
"  BambooChestRaft = 'minecraft:bamboo_chest_raft',",
"  BambooDoor = 'minecraft:bamboo_door',",
"  BambooFence = 'minecraft:bamboo_fence',",
"  BambooFenceGate = 'minecraft:bamboo_fence_gate',",
"  BambooHangingSign = 'minecraft:bamboo_hanging_sign',",
"  BambooMosaic = 'minecraft:bamboo_mosaic',",
"  BambooMosaicSlab = 'minecraft:bamboo_mosaic_slab',",
"  BambooMosaicStairs = 'minecraft:bamboo_mosaic_stairs',",
"  BambooPlanks = 'minecraft:bamboo_planks',",
"  BambooPressurePlate = 'minecraft:bamboo_pressure_plate',",
"  BambooRaft = 'minecraft:bamboo_raft',",
"  BambooSign = 'minecraft:bamboo_sign',",
"  BambooSlab = 'minecraft:bamboo_slab',",
"  BambooStairs = 'minecraft:bamboo_stairs',",
"  BambooTrapdoor = 'minecraft:bamboo_trapdoor',",
"  Banner = 'minecraft:banner',",
"  BannerPattern = 'minecraft:banner_pattern',",
"  Barrel = 'minecraft:barrel',",
"  Barrier = 'minecraft:barrier',",
"  Basalt = 'minecraft:basalt',",
"  BatSpawnEgg = 'minecraft:bat_spawn_egg',",
"  Beacon = 'minecraft:beacon',",
"  Bed = 'minecraft:bed',",
"  Bedrock = 'minecraft:bedrock',",
"  BeeNest = 'minecraft:bee_nest',",
"  BeeSpawnEgg = 'minecraft:bee_spawn_egg',",
"  Beef = 'minecraft:beef',",
"  Beehive = 'minecraft:beehive',",
"  Beetroot = 'minecraft:beetroot',",
"  BeetrootSeeds = 'minecraft:beetroot_seeds',",
"  BeetrootSoup = 'minecraft:beetroot_soup',",
"  Bell = 'minecraft:bell',",
"  BigDripleaf = 'minecraft:big_dripleaf',",
"  BirchBoat = 'minecraft:birch_boat',",
"  BirchButton = 'minecraft:birch_button',",
"  BirchChestBoat = 'minecraft:birch_chest_boat',",
"  BirchDoor = 'minecraft:birch_door',",
"  BirchFence = 'minecraft:birch_fence',",
"  BirchFenceGate = 'minecraft:birch_fence_gate',",
"  BirchHangingSign = 'minecraft:birch_hanging_sign',",
"  BirchLeaves = 'minecraft:birch_leaves',",
"  BirchLog = 'minecraft:birch_log',",
"  BirchPlanks = 'minecraft:birch_planks',",
"  BirchPressurePlate = 'minecraft:birch_pressure_plate',",
"  BirchSapling = 'minecraft:birch_sapling',",
"  BirchSign = 'minecraft:birch_sign',",
"  BirchSlab = 'minecraft:birch_slab',",
"  BirchStairs = 'minecraft:birch_stairs',",
"  BirchTrapdoor = 'minecraft:birch_trapdoor',",
"  BirchWood = 'minecraft:birch_wood',",
"  BlackCandle = 'minecraft:black_candle',",
"  BlackCarpet = 'minecraft:black_carpet',",
"  BlackConcrete = 'minecraft:black_concrete',",
"  BlackConcretePowder = 'minecraft:black_concrete_powder',",
"  BlackDye = 'minecraft:black_dye',",
"  BlackGlazedTerracotta = 'minecraft:black_glazed_terracotta',",
"  BlackShulkerBox = 'minecraft:black_shulker_box',",
"  BlackStainedGlass = 'minecraft:black_stained_glass',",
"  BlackStainedGlassPane = 'minecraft:black_stained_glass_pane',",
"  BlackTerracotta = 'minecraft:black_terracotta',",
"  BlackWool = 'minecraft:black_wool',",
"  Blackstone = 'minecraft:blackstone',",
"  BlackstoneSlab = 'minecraft:blackstone_slab',",
"  BlackstoneStairs = 'minecraft:blackstone_stairs',",
"  BlackstoneWall = 'minecraft:blackstone_wall',",
"  BladePotterySherd = 'minecraft:blade_pottery_sherd',",
"  BlastFurnace = 'minecraft:blast_furnace',",
"  BlazePowder = 'minecraft:blaze_powder',",
"  BlazeRod = 'minecraft:blaze_rod',",
"  BlazeSpawnEgg = 'minecraft:blaze_spawn_egg',",
"  BlueCandle = 'minecraft:blue_candle',",
"  BlueCarpet = 'minecraft:blue_carpet',",
"  BlueConcrete = 'minecraft:blue_concrete',",
"  BlueConcretePowder = 'minecraft:blue_concrete_powder',",
"  BlueDye = 'minecraft:blue_dye',",
"  BlueGlazedTerracotta = 'minecraft:blue_glazed_terracotta',",
"  BlueIce = 'minecraft:blue_ice',",
"  BlueOrchid = 'minecraft:blue_orchid',",
"  BlueShulkerBox = 'minecraft:blue_shulker_box',",
"  BlueStainedGlass = 'minecraft:blue_stained_glass',",
"  BlueStainedGlassPane = 'minecraft:blue_stained_glass_pane',",
"  BlueTerracotta = 'minecraft:blue_terracotta',",
"  BlueWool = 'minecraft:blue_wool',",
"  Boat = 'minecraft:boat',",
"  BoggedSpawnEgg = 'minecraft:bogged_spawn_egg',",
"  BoltArmorTrimSmithingTemplate = 'minecraft:bolt_armor_trim_smithing_template',",
"  Bone = 'minecraft:bone',",
"  BoneBlock = 'minecraft:bone_block',",
"  BoneMeal = 'minecraft:bone_meal',",
"  Book = 'minecraft:book',",
"  Bookshelf = 'minecraft:bookshelf',",
"  BorderBlock = 'minecraft:border_block',",
"  BordureIndentedBannerPattern = 'minecraft:bordure_indented_banner_pattern',",
"  Bow = 'minecraft:bow',",
"  Bowl = 'minecraft:bowl',",
"  BrainCoral = 'minecraft:brain_coral',",
"  BrainCoralFan = 'minecraft:brain_coral_fan',",
"  Bread = 'minecraft:bread',",
"  BreezeRod = 'minecraft:breeze_rod',",
"  BreezeSpawnEgg = 'minecraft:breeze_spawn_egg',",
"  BrewerPotterySherd = 'minecraft:brewer_pottery_sherd',",
"  BrewingStand = 'minecraft:brewing_stand',",
"  Brick = 'minecraft:brick',",
"  BrickBlock = 'minecraft:brick_block',",
"  BrickStairs = 'minecraft:brick_stairs',",
"  BrownCandle = 'minecraft:brown_candle',",
"  BrownCarpet = 'minecraft:brown_carpet',",
"  BrownConcrete = 'minecraft:brown_concrete',",
"  BrownConcretePowder = 'minecraft:brown_concrete_powder',",
"  BrownDye = 'minecraft:brown_dye',",
"  BrownGlazedTerracotta = 'minecraft:brown_glazed_terracotta',",
"  BrownMushroom = 'minecraft:brown_mushroom',",
"  BrownMushroomBlock = 'minecraft:brown_mushroom_block',",
"  BrownShulkerBox = 'minecraft:brown_shulker_box',",
"  BrownStainedGlass = 'minecraft:brown_stained_glass',",
"  BrownStainedGlassPane = 'minecraft:brown_stained_glass_pane',",
"  BrownTerracotta = 'minecraft:brown_terracotta',",
"  BrownWool = 'minecraft:brown_wool',",
"  Brush = 'minecraft:brush',",
"  BubbleCoral = 'minecraft:bubble_coral',",
"  BubbleCoralFan = 'minecraft:bubble_coral_fan',",
"  Bucket = 'minecraft:bucket',",
"  BuddingAmethyst = 'minecraft:budding_amethyst',",
"  BurnPotterySherd = 'minecraft:burn_pottery_sherd',",
"  Cactus = 'minecraft:cactus',",
"  Cake = 'minecraft:cake',",
"  Calcite = 'minecraft:calcite',",
"  CalibratedSculkSensor = 'minecraft:calibrated_sculk_sensor',",
"  CamelSpawnEgg = 'minecraft:camel_spawn_egg',",
"  Campfire = 'minecraft:campfire',",
"  Candle = 'minecraft:candle',",
"  Carpet = 'minecraft:carpet',",
"  Carrot = 'minecraft:carrot',",
"  CarrotOnAStick = 'minecraft:carrot_on_a_stick',",
"  CartographyTable = 'minecraft:cartography_table',",
"  CarvedPumpkin = 'minecraft:carved_pumpkin',",
"  CatSpawnEgg = 'minecraft:cat_spawn_egg',",
"  Cauldron = 'minecraft:cauldron',",
"  CaveSpiderSpawnEgg = 'minecraft:cave_spider_spawn_egg',",
"  Chain = 'minecraft:chain',",
"  ChainCommandBlock = 'minecraft:chain_command_block',",
"  ChainmailBoots = 'minecraft:chainmail_boots',",
"  ChainmailChestplate = 'minecraft:chainmail_chestplate',",
"  ChainmailHelmet = 'minecraft:chainmail_helmet',",
"  ChainmailLeggings = 'minecraft:chainmail_leggings',",
"  Charcoal = 'minecraft:charcoal',",
"  CherryBoat = 'minecraft:cherry_boat',",
"  CherryButton = 'minecraft:cherry_button',",
"  CherryChestBoat = 'minecraft:cherry_chest_boat',",
"  CherryDoor = 'minecraft:cherry_door',",
"  CherryFence = 'minecraft:cherry_fence',",
"  CherryFenceGate = 'minecraft:cherry_fence_gate',",
"  CherryHangingSign = 'minecraft:cherry_hanging_sign',",
"  CherryLeaves = 'minecraft:cherry_leaves',",
"  CherryLog = 'minecraft:cherry_log',",
"  CherryPlanks = 'minecraft:cherry_planks',",
"  CherryPressurePlate = 'minecraft:cherry_pressure_plate',",
"  CherrySapling = 'minecraft:cherry_sapling',",
"  CherrySign = 'minecraft:cherry_sign',",
"  CherrySlab = 'minecraft:cherry_slab',",
"  CherryStairs = 'minecraft:cherry_stairs',",
"  CherryTrapdoor = 'minecraft:cherry_trapdoor',",
"  CherryWood = 'minecraft:cherry_wood',",
"  Chest = 'minecraft:chest',",
"  ChestBoat = 'minecraft:chest_boat',",
"  ChestMinecart = 'minecraft:chest_minecart',",
"  Chicken = 'minecraft:chicken',",
"  ChickenSpawnEgg = 'minecraft:chicken_spawn_egg',",
"  ChiseledBookshelf = 'minecraft:chiseled_bookshelf',",
"  ChiseledCopper = 'minecraft:chiseled_copper',",
"  ChiseledDeepslate = 'minecraft:chiseled_deepslate',",
"  ChiseledNetherBricks = 'minecraft:chiseled_nether_bricks',",
"  ChiseledPolishedBlackstone = 'minecraft:chiseled_polished_blackstone',",
"  ChiseledTuff = 'minecraft:chiseled_tuff',",
"  ChiseledTuffBricks = 'minecraft:chiseled_tuff_bricks',",
"  ChorusFlower = 'minecraft:chorus_flower',",
"  ChorusFruit = 'minecraft:chorus_fruit',",
"  ChorusPlant = 'minecraft:chorus_plant',",
"  Clay = 'minecraft:clay',",
"  ClayBall = 'minecraft:clay_ball',",
"  Clock = 'minecraft:clock',",
"  Coal = 'minecraft:coal',",
"  CoalBlock = 'minecraft:coal_block',",
"  CoalOre = 'minecraft:coal_ore',",
"  CoastArmorTrimSmithingTemplate = 'minecraft:coast_armor_trim_smithing_template',",
"  CobbledDeepslate = 'minecraft:cobbled_deepslate',",
"  CobbledDeepslateSlab = 'minecraft:cobbled_deepslate_slab',",
"  CobbledDeepslateStairs = 'minecraft:cobbled_deepslate_stairs',",
"  CobbledDeepslateWall = 'minecraft:cobbled_deepslate_wall',",
"  Cobblestone = 'minecraft:cobblestone',",
"  CobblestoneWall = 'minecraft:cobblestone_wall',",
"  CocoaBeans = 'minecraft:cocoa_beans',",
"  Cod = 'minecraft:cod',",
"  CodBucket = 'minecraft:cod_bucket',",
"  CodSpawnEgg = 'minecraft:cod_spawn_egg',",
"  CommandBlock = 'minecraft:command_block',",
"  CommandBlockMinecart = 'minecraft:command_block_minecart',",
"  Comparator = 'minecraft:comparator',",
"  Compass = 'minecraft:compass',",
"  Composter = 'minecraft:composter',",
"  Concrete = 'minecraft:concrete',",
"  ConcretePowder = 'minecraft:concrete_powder',",
"  Conduit = 'minecraft:conduit',",
"  CookedBeef = 'minecraft:cooked_beef',",
"  CookedChicken = 'minecraft:cooked_chicken',",
"  CookedCod = 'minecraft:cooked_cod',",
"  CookedMutton = 'minecraft:cooked_mutton',",
"  CookedPorkchop = 'minecraft:cooked_porkchop',",
"  CookedRabbit = 'minecraft:cooked_rabbit',",
"  CookedSalmon = 'minecraft:cooked_salmon',",
"  Cookie = 'minecraft:cookie',",
"  CopperBlock = 'minecraft:copper_block',",
"  CopperBulb = 'minecraft:copper_bulb',",
"  CopperDoor = 'minecraft:copper_door',",
"  CopperGrate = 'minecraft:copper_grate',",
"  CopperIngot = 'minecraft:copper_ingot',",
"  CopperOre = 'minecraft:copper_ore',",
"  CopperTrapdoor = 'minecraft:copper_trapdoor',",
"  Coral = 'minecraft:coral',",
"  CoralBlock = 'minecraft:coral_block',",
"  CoralFan = 'minecraft:coral_fan',",
"  CoralFanDead = 'minecraft:coral_fan_dead',",
"  Cornflower = 'minecraft:cornflower',",
"  CowSpawnEgg = 'minecraft:cow_spawn_egg',",
"  CrackedDeepslateBricks = 'minecraft:cracked_deepslate_bricks',",
"  CrackedDeepslateTiles = 'minecraft:cracked_deepslate_tiles',",
"  CrackedNetherBricks = 'minecraft:cracked_nether_bricks',",
"  CrackedPolishedBlackstoneBricks = 'minecraft:cracked_polished_blackstone_bricks',",
"  Crafter = 'minecraft:crafter',",
"  CraftingTable = 'minecraft:crafting_table',",
"  CreeperBannerPattern = 'minecraft:creeper_banner_pattern',",
"  CreeperSpawnEgg = 'minecraft:creeper_spawn_egg',",
"  CrimsonButton = 'minecraft:crimson_button',",
"  CrimsonDoor = 'minecraft:crimson_door',",
"  CrimsonFence = 'minecraft:crimson_fence',",
"  CrimsonFenceGate = 'minecraft:crimson_fence_gate',",
"  CrimsonFungus = 'minecraft:crimson_fungus',",
"  CrimsonHangingSign = 'minecraft:crimson_hanging_sign',",
"  CrimsonHyphae = 'minecraft:crimson_hyphae',",
"  CrimsonNylium = 'minecraft:crimson_nylium',",
"  CrimsonPlanks = 'minecraft:crimson_planks',",
"  CrimsonPressurePlate = 'minecraft:crimson_pressure_plate',",
"  CrimsonRoots = 'minecraft:crimson_roots',",
"  CrimsonSign = 'minecraft:crimson_sign',",
"  CrimsonSlab = 'minecraft:crimson_slab',",
"  CrimsonStairs = 'minecraft:crimson_stairs',",
"  CrimsonStem = 'minecraft:crimson_stem',",
"  CrimsonTrapdoor = 'minecraft:crimson_trapdoor',",
"  Crossbow = 'minecraft:crossbow',",
"  CryingObsidian = 'minecraft:crying_obsidian',",
"  CutCopper = 'minecraft:cut_copper',",
"  CutCopperSlab = 'minecraft:cut_copper_slab',",
"  CutCopperStairs = 'minecraft:cut_copper_stairs',",
"  CyanCandle = 'minecraft:cyan_candle',",
"  CyanCarpet = 'minecraft:cyan_carpet',",
"  CyanConcrete = 'minecraft:cyan_concrete',",
"  CyanConcretePowder = 'minecraft:cyan_concrete_powder',",
"  CyanDye = 'minecraft:cyan_dye',",
"  CyanGlazedTerracotta = 'minecraft:cyan_glazed_terracotta',",
"  CyanShulkerBox = 'minecraft:cyan_shulker_box',",
"  CyanStainedGlass = 'minecraft:cyan_stained_glass',",
"  CyanStainedGlassPane = 'minecraft:cyan_stained_glass_pane',",
"  CyanTerracotta = 'minecraft:cyan_terracotta',",
"  CyanWool = 'minecraft:cyan_wool',",
"  DangerPotterySherd = 'minecraft:danger_pottery_sherd',",
"  DarkOakBoat = 'minecraft:dark_oak_boat',",
"  DarkOakButton = 'minecraft:dark_oak_button',",
"  DarkOakChestBoat = 'minecraft:dark_oak_chest_boat',",
"  DarkOakDoor = 'minecraft:dark_oak_door',",
"  DarkOakFence = 'minecraft:dark_oak_fence',",
"  DarkOakFenceGate = 'minecraft:dark_oak_fence_gate',",
"  DarkOakHangingSign = 'minecraft:dark_oak_hanging_sign',",
"  DarkOakLeaves = 'minecraft:dark_oak_leaves',",
"  DarkOakLog = 'minecraft:dark_oak_log',",
"  DarkOakPlanks = 'minecraft:dark_oak_planks',",
"  DarkOakPressurePlate = 'minecraft:dark_oak_pressure_plate',",
"  DarkOakSapling = 'minecraft:dark_oak_sapling',",
"  DarkOakSign = 'minecraft:dark_oak_sign',",
"  DarkOakSlab = 'minecraft:dark_oak_slab',",
"  DarkOakStairs = 'minecraft:dark_oak_stairs',",
"  DarkOakTrapdoor = 'minecraft:dark_oak_trapdoor',",
"  DarkOakWood = 'minecraft:dark_oak_wood',",
"  DarkPrismarineStairs = 'minecraft:dark_prismarine_stairs',",
"  DaylightDetector = 'minecraft:daylight_detector',",
"  DeadBrainCoral = 'minecraft:dead_brain_coral',",
"  DeadBrainCoralFan = 'minecraft:dead_brain_coral_fan',",
"  DeadBubbleCoral = 'minecraft:dead_bubble_coral',",
"  DeadBubbleCoralFan = 'minecraft:dead_bubble_coral_fan',",
"  DeadFireCoral = 'minecraft:dead_fire_coral',",
"  DeadFireCoralFan = 'minecraft:dead_fire_coral_fan',",
"  DeadHornCoral = 'minecraft:dead_horn_coral',",
"  DeadHornCoralFan = 'minecraft:dead_horn_coral_fan',",
"  DeadTubeCoral = 'minecraft:dead_tube_coral',",
"  DeadTubeCoralFan = 'minecraft:dead_tube_coral_fan',",
"  Deadbush = 'minecraft:deadbush',",
"  DecoratedPot = 'minecraft:decorated_pot',",
"  Deepslate = 'minecraft:deepslate',",
"  DeepslateBrickSlab = 'minecraft:deepslate_brick_slab',",
"  DeepslateBrickStairs = 'minecraft:deepslate_brick_stairs',",
"  DeepslateBrickWall = 'minecraft:deepslate_brick_wall',",
"  DeepslateBricks = 'minecraft:deepslate_bricks',",
"  DeepslateCoalOre = 'minecraft:deepslate_coal_ore',",
"  DeepslateCopperOre = 'minecraft:deepslate_copper_ore',",
"  DeepslateDiamondOre = 'minecraft:deepslate_diamond_ore',",
"  DeepslateEmeraldOre = 'minecraft:deepslate_emerald_ore',",
"  DeepslateGoldOre = 'minecraft:deepslate_gold_ore',",
"  DeepslateIronOre = 'minecraft:deepslate_iron_ore',",
"  DeepslateLapisOre = 'minecraft:deepslate_lapis_ore',",
"  DeepslateRedstoneOre = 'minecraft:deepslate_redstone_ore',",
"  DeepslateTileSlab = 'minecraft:deepslate_tile_slab',",
"  DeepslateTileStairs = 'minecraft:deepslate_tile_stairs',",
"  DeepslateTileWall = 'minecraft:deepslate_tile_wall',",
"  DeepslateTiles = 'minecraft:deepslate_tiles',",
"  Deny = 'minecraft:deny',",
"  DetectorRail = 'minecraft:detector_rail',",
"  Diamond = 'minecraft:diamond',",
"  DiamondAxe = 'minecraft:diamond_axe',",
"  DiamondBlock = 'minecraft:diamond_block',",
"  DiamondBoots = 'minecraft:diamond_boots',",
"  DiamondChestplate = 'minecraft:diamond_chestplate',",
"  DiamondHelmet = 'minecraft:diamond_helmet',",
"  DiamondHoe = 'minecraft:diamond_hoe',",
"  DiamondHorseArmor = 'minecraft:diamond_horse_armor',",
"  DiamondLeggings = 'minecraft:diamond_leggings',",
"  DiamondOre = 'minecraft:diamond_ore',",
"  DiamondPickaxe = 'minecraft:diamond_pickaxe',",
"  DiamondShovel = 'minecraft:diamond_shovel',",
"  DiamondSword = 'minecraft:diamond_sword',",
"  Diorite = 'minecraft:diorite',",
"  DioriteStairs = 'minecraft:diorite_stairs',",
"  Dirt = 'minecraft:dirt',",
"  DirtWithRoots = 'minecraft:dirt_with_roots',",
"  DiscFragment5 = 'minecraft:disc_fragment_5',",
"  Dispenser = 'minecraft:dispenser',",
"  DolphinSpawnEgg = 'minecraft:dolphin_spawn_egg',",
"  DonkeySpawnEgg = 'minecraft:donkey_spawn_egg',",
"  DoublePlant = 'minecraft:double_plant',",
"  DragonBreath = 'minecraft:dragon_breath',",
"  DragonEgg = 'minecraft:dragon_egg',",
"  DriedKelp = 'minecraft:dried_kelp',",
"  DriedKelpBlock = 'minecraft:dried_kelp_block',",
"  DripstoneBlock = 'minecraft:dripstone_block',",
"  Dropper = 'minecraft:dropper',",
"  DrownedSpawnEgg = 'minecraft:drowned_spawn_egg',",
"  DuneArmorTrimSmithingTemplate = 'minecraft:dune_armor_trim_smithing_template',",
"  Dye = 'minecraft:dye',",
"  EchoShard = 'minecraft:echo_shard',",
"  Egg = 'minecraft:egg',",
"  ElderGuardianSpawnEgg = 'minecraft:elder_guardian_spawn_egg',",
"  Elytra = 'minecraft:elytra',",
"  Emerald = 'minecraft:emerald',",
"  EmeraldBlock = 'minecraft:emerald_block',",
"  EmeraldOre = 'minecraft:emerald_ore',",
"  EmptyMap = 'minecraft:empty_map',",
"  EnchantedBook = 'minecraft:enchanted_book',",
"  EnchantedGoldenApple = 'minecraft:enchanted_golden_apple',",
"  EnchantingTable = 'minecraft:enchanting_table',",
"  EndBrickStairs = 'minecraft:end_brick_stairs',",
"  EndBricks = 'minecraft:end_bricks',",
"  EndCrystal = 'minecraft:end_crystal',",
"  EndPortalFrame = 'minecraft:end_portal_frame',",
"  EndRod = 'minecraft:end_rod',",
"  EndStone = 'minecraft:end_stone',",
"  EnderChest = 'minecraft:ender_chest',",
"  EnderDragonSpawnEgg = 'minecraft:ender_dragon_spawn_egg',",
"  EnderEye = 'minecraft:ender_eye',",
"  EnderPearl = 'minecraft:ender_pearl',",
"  EndermanSpawnEgg = 'minecraft:enderman_spawn_egg',",
"  EndermiteSpawnEgg = 'minecraft:endermite_spawn_egg',",
"  EvokerSpawnEgg = 'minecraft:evoker_spawn_egg',",
"  ExperienceBottle = 'minecraft:experience_bottle',",
"  ExplorerPotterySherd = 'minecraft:explorer_pottery_sherd',",
"  ExposedChiseledCopper = 'minecraft:exposed_chiseled_copper',",
"  ExposedCopper = 'minecraft:exposed_copper',",
"  ExposedCopperBulb = 'minecraft:exposed_copper_bulb',",
"  ExposedCopperDoor = 'minecraft:exposed_copper_door',",
"  ExposedCopperGrate = 'minecraft:exposed_copper_grate',",
"  ExposedCopperTrapdoor = 'minecraft:exposed_copper_trapdoor',",
"  ExposedCutCopper = 'minecraft:exposed_cut_copper',",
"  ExposedCutCopperSlab = 'minecraft:exposed_cut_copper_slab',",
"  ExposedCutCopperStairs = 'minecraft:exposed_cut_copper_stairs',",
"  EyeArmorTrimSmithingTemplate = 'minecraft:eye_armor_trim_smithing_template',",
"  Farmland = 'minecraft:farmland',",
"  Feather = 'minecraft:feather',",
"  Fence = 'minecraft:fence',",
"  FenceGate = 'minecraft:fence_gate',",
"  FermentedSpiderEye = 'minecraft:fermented_spider_eye',",
"  FieldMasonedBannerPattern = 'minecraft:field_masoned_banner_pattern',",
"  FilledMap = 'minecraft:filled_map',",
"  FireCharge = 'minecraft:fire_charge',",
"  FireCoral = 'minecraft:fire_coral',",
"  FireCoralFan = 'minecraft:fire_coral_fan',",
"  FireworkRocket = 'minecraft:firework_rocket',",
"  FireworkStar = 'minecraft:firework_star',",
"  FishingRod = 'minecraft:fishing_rod',",
"  FletchingTable = 'minecraft:fletching_table',",
"  Flint = 'minecraft:flint',",
"  FlintAndSteel = 'minecraft:flint_and_steel',",
"  FlowArmorTrimSmithingTemplate = 'minecraft:flow_armor_trim_smithing_template',",
"  FlowBannerPattern = 'minecraft:flow_banner_pattern',",
"  FlowPotterySherd = 'minecraft:flow_pottery_sherd',",
"  FlowerBannerPattern = 'minecraft:flower_banner_pattern',",
"  FlowerPot = 'minecraft:flower_pot',",
"  FloweringAzalea = 'minecraft:flowering_azalea',",
"  FoxSpawnEgg = 'minecraft:fox_spawn_egg',",
"  Frame = 'minecraft:frame',",
"  FriendPotterySherd = 'minecraft:friend_pottery_sherd',",
"  FrogSpawn = 'minecraft:frog_spawn',",
"  FrogSpawnEgg = 'minecraft:frog_spawn_egg',",
"  FrostedIce = 'minecraft:frosted_ice',",
"  Furnace = 'minecraft:furnace',",
"  GhastSpawnEgg = 'minecraft:ghast_spawn_egg',",
"  GhastTear = 'minecraft:ghast_tear',",
"  GildedBlackstone = 'minecraft:gilded_blackstone',",
"  Glass = 'minecraft:glass',",
"  GlassBottle = 'minecraft:glass_bottle',",
"  GlassPane = 'minecraft:glass_pane',",
"  GlisteringMelonSlice = 'minecraft:glistering_melon_slice',",
"  GlobeBannerPattern = 'minecraft:globe_banner_pattern',",
"  GlowBerries = 'minecraft:glow_berries',",
"  GlowFrame = 'minecraft:glow_frame',",
"  GlowInkSac = 'minecraft:glow_ink_sac',",
"  GlowLichen = 'minecraft:glow_lichen',",
"  GlowSquidSpawnEgg = 'minecraft:glow_squid_spawn_egg',",
"  Glowstone = 'minecraft:glowstone',",
"  GlowstoneDust = 'minecraft:glowstone_dust',",
"  GoatHorn = 'minecraft:goat_horn',",
"  GoatSpawnEgg = 'minecraft:goat_spawn_egg',",
"  GoldBlock = 'minecraft:gold_block',",
"  GoldIngot = 'minecraft:gold_ingot',",
"  GoldNugget = 'minecraft:gold_nugget',",
"  GoldOre = 'minecraft:gold_ore',",
"  GoldenApple = 'minecraft:golden_apple',",
"  GoldenAxe = 'minecraft:golden_axe',",
"  GoldenBoots = 'minecraft:golden_boots',",
"  GoldenCarrot = 'minecraft:golden_carrot',",
"  GoldenChestplate = 'minecraft:golden_chestplate',",
"  GoldenHelmet = 'minecraft:golden_helmet',",
"  GoldenHoe = 'minecraft:golden_hoe',",
"  GoldenHorseArmor = 'minecraft:golden_horse_armor',",
"  GoldenLeggings = 'minecraft:golden_leggings',",
"  GoldenPickaxe = 'minecraft:golden_pickaxe',",
"  GoldenRail = 'minecraft:golden_rail',",
"  GoldenShovel = 'minecraft:golden_shovel',",
"  GoldenSword = 'minecraft:golden_sword',",
"  Granite = 'minecraft:granite',",
"  GraniteStairs = 'minecraft:granite_stairs',",
"  GrassBlock = 'minecraft:grass_block',",
"  GrassPath = 'minecraft:grass_path',",
"  Gravel = 'minecraft:gravel',",
"  GrayCandle = 'minecraft:gray_candle',",
"  GrayCarpet = 'minecraft:gray_carpet',",
"  GrayConcrete = 'minecraft:gray_concrete',",
"  GrayConcretePowder = 'minecraft:gray_concrete_powder',",
"  GrayDye = 'minecraft:gray_dye',",
"  GrayGlazedTerracotta = 'minecraft:gray_glazed_terracotta',",
"  GrayShulkerBox = 'minecraft:gray_shulker_box',",
"  GrayStainedGlass = 'minecraft:gray_stained_glass',",
"  GrayStainedGlassPane = 'minecraft:gray_stained_glass_pane',",
"  GrayTerracotta = 'minecraft:gray_terracotta',",
"  GrayWool = 'minecraft:gray_wool',",
"  GreenCandle = 'minecraft:green_candle',",
"  GreenCarpet = 'minecraft:green_carpet',",
"  GreenConcrete = 'minecraft:green_concrete',",
"  GreenConcretePowder = 'minecraft:green_concrete_powder',",
"  GreenDye = 'minecraft:green_dye',",
"  GreenGlazedTerracotta = 'minecraft:green_glazed_terracotta',",
"  GreenShulkerBox = 'minecraft:green_shulker_box',",
"  GreenStainedGlass = 'minecraft:green_stained_glass',",
"  GreenStainedGlassPane = 'minecraft:green_stained_glass_pane',",
"  GreenTerracotta = 'minecraft:green_terracotta',",
"  GreenWool = 'minecraft:green_wool',",
"  Grindstone = 'minecraft:grindstone',",
"  GuardianSpawnEgg = 'minecraft:guardian_spawn_egg',",
"  Gunpowder = 'minecraft:gunpowder',",
"  GusterBannerPattern = 'minecraft:guster_banner_pattern',",
"  GusterPotterySherd = 'minecraft:guster_pottery_sherd',",
"  HangingRoots = 'minecraft:hanging_roots',",
"  HardStainedGlass = 'minecraft:hard_stained_glass',",
"  HardStainedGlassPane = 'minecraft:hard_stained_glass_pane',",
"  HardenedClay = 'minecraft:hardened_clay',",
"  HayBlock = 'minecraft:hay_block',",
"  HeartOfTheSea = 'minecraft:heart_of_the_sea',",
"  HeartPotterySherd = 'minecraft:heart_pottery_sherd',",
"  HeartbreakPotterySherd = 'minecraft:heartbreak_pottery_sherd',",
"  HeavyCore = 'minecraft:heavy_core',",
"  HeavyWeightedPressurePlate = 'minecraft:heavy_weighted_pressure_plate',",
"  HoglinSpawnEgg = 'minecraft:hoglin_spawn_egg',",
"  HoneyBlock = 'minecraft:honey_block',",
"  HoneyBottle = 'minecraft:honey_bottle',",
"  Honeycomb = 'minecraft:honeycomb',",
"  HoneycombBlock = 'minecraft:honeycomb_block',",
"  Hopper = 'minecraft:hopper',",
"  HopperMinecart = 'minecraft:hopper_minecart',",
"  HornCoral = 'minecraft:horn_coral',",
"  HornCoralFan = 'minecraft:horn_coral_fan',",
"  HorseSpawnEgg = 'minecraft:horse_spawn_egg',",
"  HostArmorTrimSmithingTemplate = 'minecraft:host_armor_trim_smithing_template',",
"  HowlPotterySherd = 'minecraft:howl_pottery_sherd',",
"  HuskSpawnEgg = 'minecraft:husk_spawn_egg',",
"  Ice = 'minecraft:ice',",
"  InfestedDeepslate = 'minecraft:infested_deepslate',",
"  InkSac = 'minecraft:ink_sac',",
"  IronAxe = 'minecraft:iron_axe',",
"  IronBars = 'minecraft:iron_bars',",
"  IronBlock = 'minecraft:iron_block',",
"  IronBoots = 'minecraft:iron_boots',",
"  IronChestplate = 'minecraft:iron_chestplate',",
"  IronDoor = 'minecraft:iron_door',",
"  IronGolemSpawnEgg = 'minecraft:iron_golem_spawn_egg',",
"  IronHelmet = 'minecraft:iron_helmet',",
"  IronHoe = 'minecraft:iron_hoe',",
"  IronHorseArmor = 'minecraft:iron_horse_armor',",
"  IronIngot = 'minecraft:iron_ingot',",
"  IronLeggings = 'minecraft:iron_leggings',",
"  IronNugget = 'minecraft:iron_nugget',",
"  IronOre = 'minecraft:iron_ore',",
"  IronPickaxe = 'minecraft:iron_pickaxe',",
"  IronShovel = 'minecraft:iron_shovel',",
"  IronSword = 'minecraft:iron_sword',",
"  IronTrapdoor = 'minecraft:iron_trapdoor',",
"  Jigsaw = 'minecraft:jigsaw',",
"  Jukebox = 'minecraft:jukebox',",
"  JungleBoat = 'minecraft:jungle_boat',",
"  JungleButton = 'minecraft:jungle_button',",
"  JungleChestBoat = 'minecraft:jungle_chest_boat',",
"  JungleDoor = 'minecraft:jungle_door',",
"  JungleFence = 'minecraft:jungle_fence',",
"  JungleFenceGate = 'minecraft:jungle_fence_gate',",
"  JungleHangingSign = 'minecraft:jungle_hanging_sign',",
"  JungleLeaves = 'minecraft:jungle_leaves',",
"  JungleLog = 'minecraft:jungle_log',",
"  JunglePlanks = 'minecraft:jungle_planks',",
"  JunglePressurePlate = 'minecraft:jungle_pressure_plate',",
"  JungleSapling = 'minecraft:jungle_sapling',",
"  JungleSign = 'minecraft:jungle_sign',",
"  JungleSlab = 'minecraft:jungle_slab',",
"  JungleStairs = 'minecraft:jungle_stairs',",
"  JungleTrapdoor = 'minecraft:jungle_trapdoor',",
"  JungleWood = 'minecraft:jungle_wood',",
"  Kelp = 'minecraft:kelp',",
"  Ladder = 'minecraft:ladder',",
"  Lantern = 'minecraft:lantern',",
"  LapisBlock = 'minecraft:lapis_block',",
"  LapisLazuli = 'minecraft:lapis_lazuli',",
"  LapisOre = 'minecraft:lapis_ore',",
"  LargeAmethystBud = 'minecraft:large_amethyst_bud',",
"  LavaBucket = 'minecraft:lava_bucket',",
"  Lead = 'minecraft:lead',",
"  Leather = 'minecraft:leather',",
"  LeatherBoots = 'minecraft:leather_boots',",
"  LeatherChestplate = 'minecraft:leather_chestplate',",
"  LeatherHelmet = 'minecraft:leather_helmet',",
"  LeatherHorseArmor = 'minecraft:leather_horse_armor',",
"  LeatherLeggings = 'minecraft:leather_leggings',",
"  Leaves = 'minecraft:leaves',",
"  Leaves2 = 'minecraft:leaves2',",
"  Lectern = 'minecraft:lectern',",
"  Lever = 'minecraft:lever',",
"  LightBlock = 'minecraft:light_block',",
"  LightBlueCandle = 'minecraft:light_blue_candle',",
"  LightBlueCarpet = 'minecraft:light_blue_carpet',",
"  LightBlueConcrete = 'minecraft:light_blue_concrete',",
"  LightBlueConcretePowder = 'minecraft:light_blue_concrete_powder',",
"  LightBlueDye = 'minecraft:light_blue_dye',",
"  LightBlueGlazedTerracotta = 'minecraft:light_blue_glazed_terracotta',",
"  LightBlueShulkerBox = 'minecraft:light_blue_shulker_box',",
"  LightBlueStainedGlass = 'minecraft:light_blue_stained_glass',",
"  LightBlueStainedGlassPane = 'minecraft:light_blue_stained_glass_pane',",
"  LightBlueTerracotta = 'minecraft:light_blue_terracotta',",
"  LightBlueWool = 'minecraft:light_blue_wool',",
"  LightGrayCandle = 'minecraft:light_gray_candle',",
"  LightGrayCarpet = 'minecraft:light_gray_carpet',",
"  LightGrayConcrete = 'minecraft:light_gray_concrete',",
"  LightGrayConcretePowder = 'minecraft:light_gray_concrete_powder',",
"  LightGrayDye = 'minecraft:light_gray_dye',",
"  LightGrayShulkerBox = 'minecraft:light_gray_shulker_box',",
"  LightGrayStainedGlass = 'minecraft:light_gray_stained_glass',",
"  LightGrayStainedGlassPane = 'minecraft:light_gray_stained_glass_pane',",
"  LightGrayTerracotta = 'minecraft:light_gray_terracotta',",
"  LightGrayWool = 'minecraft:light_gray_wool',",
"  LightWeightedPressurePlate = 'minecraft:light_weighted_pressure_plate',",
"  LightningRod = 'minecraft:lightning_rod',",
"  LilyOfTheValley = 'minecraft:lily_of_the_valley',",
"  LimeCandle = 'minecraft:lime_candle',",
"  LimeCarpet = 'minecraft:lime_carpet',",
"  LimeConcrete = 'minecraft:lime_concrete',",
"  LimeConcretePowder = 'minecraft:lime_concrete_powder',",
"  LimeDye = 'minecraft:lime_dye',",
"  LimeGlazedTerracotta = 'minecraft:lime_glazed_terracotta',",
"  LimeShulkerBox = 'minecraft:lime_shulker_box',",
"  LimeStainedGlass = 'minecraft:lime_stained_glass',",
"  LimeStainedGlassPane = 'minecraft:lime_stained_glass_pane',",
"  LimeTerracotta = 'minecraft:lime_terracotta',",
"  LimeWool = 'minecraft:lime_wool',",
"  LingeringPotion = 'minecraft:lingering_potion',",
"  LitPumpkin = 'minecraft:lit_pumpkin',",
"  LlamaSpawnEgg = 'minecraft:llama_spawn_egg',",
"  Lodestone = 'minecraft:lodestone',",
"  LodestoneCompass = 'minecraft:lodestone_compass',",
"  Log = 'minecraft:log',",
"  Log2 = 'minecraft:log2',",
"  Loom = 'minecraft:loom',",
"  Mace = 'minecraft:mace',",
"  MagentaCandle = 'minecraft:magenta_candle',",
"  MagentaCarpet = 'minecraft:magenta_carpet',",
"  MagentaConcrete = 'minecraft:magenta_concrete',",
"  MagentaConcretePowder = 'minecraft:magenta_concrete_powder',",
"  MagentaDye = 'minecraft:magenta_dye',",
"  MagentaGlazedTerracotta = 'minecraft:magenta_glazed_terracotta',",
"  MagentaShulkerBox = 'minecraft:magenta_shulker_box',",
"  MagentaStainedGlass = 'minecraft:magenta_stained_glass',",
"  MagentaStainedGlassPane = 'minecraft:magenta_stained_glass_pane',",
"  MagentaTerracotta = 'minecraft:magenta_terracotta',",
"  MagentaWool = 'minecraft:magenta_wool',",
"  Magma = 'minecraft:magma',",
"  MagmaCream = 'minecraft:magma_cream',",
"  MagmaCubeSpawnEgg = 'minecraft:magma_cube_spawn_egg',",
"  MangroveBoat = 'minecraft:mangrove_boat',",
"  MangroveButton = 'minecraft:mangrove_button',",
"  MangroveChestBoat = 'minecraft:mangrove_chest_boat',",
"  MangroveDoor = 'minecraft:mangrove_door',",
"  MangroveFence = 'minecraft:mangrove_fence',",
"  MangroveFenceGate = 'minecraft:mangrove_fence_gate',",
"  MangroveHangingSign = 'minecraft:mangrove_hanging_sign',",
"  MangroveLeaves = 'minecraft:mangrove_leaves',",
"  MangroveLog = 'minecraft:mangrove_log',",
"  MangrovePlanks = 'minecraft:mangrove_planks',",
"  MangrovePressurePlate = 'minecraft:mangrove_pressure_plate',",
"  MangrovePropagule = 'minecraft:mangrove_propagule',",
"  MangroveRoots = 'minecraft:mangrove_roots',",
"  MangroveSign = 'minecraft:mangrove_sign',",
"  MangroveSlab = 'minecraft:mangrove_slab',",
"  MangroveStairs = 'minecraft:mangrove_stairs',",
"  MangroveTrapdoor = 'minecraft:mangrove_trapdoor',",
"  MangroveWood = 'minecraft:mangrove_wood',",
"  MediumAmethystBud = 'minecraft:medium_amethyst_bud',",
"  MelonBlock = 'minecraft:melon_block',",
"  MelonSeeds = 'minecraft:melon_seeds',",
"  MelonSlice = 'minecraft:melon_slice',",
"  MilkBucket = 'minecraft:milk_bucket',",
"  Minecart = 'minecraft:minecart',",
"  MinerPotterySherd = 'minecraft:miner_pottery_sherd',",
"  MobSpawner = 'minecraft:mob_spawner',",
"  MojangBannerPattern = 'minecraft:mojang_banner_pattern',",
"  MonsterEgg = 'minecraft:monster_egg',",
"  MooshroomSpawnEgg = 'minecraft:mooshroom_spawn_egg',",
"  MossBlock = 'minecraft:moss_block',",
"  MossCarpet = 'minecraft:moss_carpet',",
"  MossyCobblestone = 'minecraft:mossy_cobblestone',",
"  MossyCobblestoneStairs = 'minecraft:mossy_cobblestone_stairs',",
"  MossyStoneBrickStairs = 'minecraft:mossy_stone_brick_stairs',",
"  MournerPotterySherd = 'minecraft:mourner_pottery_sherd',",
"  Mud = 'minecraft:mud',",
"  MudBrickSlab = 'minecraft:mud_brick_slab',",
"  MudBrickStairs = 'minecraft:mud_brick_stairs',",
"  MudBrickWall = 'minecraft:mud_brick_wall',",
"  MudBricks = 'minecraft:mud_bricks',",
"  MuddyMangroveRoots = 'minecraft:muddy_mangrove_roots',",
"  MuleSpawnEgg = 'minecraft:mule_spawn_egg',",
"  MushroomStew = 'minecraft:mushroom_stew',",
"  MusicDisc11 = 'minecraft:music_disc_11',",
"  MusicDisc13 = 'minecraft:music_disc_13',",
"  MusicDisc5 = 'minecraft:music_disc_5',",
"  MusicDiscBlocks = 'minecraft:music_disc_blocks',",
"  MusicDiscCat = 'minecraft:music_disc_cat',",
"  MusicDiscChirp = 'minecraft:music_disc_chirp',",
"  MusicDiscFar = 'minecraft:music_disc_far',",
"  MusicDiscMall = 'minecraft:music_disc_mall',",
"  MusicDiscMellohi = 'minecraft:music_disc_mellohi',",
"  MusicDiscOtherside = 'minecraft:music_disc_otherside',",
"  MusicDiscPigstep = 'minecraft:music_disc_pigstep',",
"  MusicDiscRelic = 'minecraft:music_disc_relic',",
"  MusicDiscStal = 'minecraft:music_disc_stal',",
"  MusicDiscStrad = 'minecraft:music_disc_strad',",
"  MusicDiscWait = 'minecraft:music_disc_wait',",
"  MusicDiscWard = 'minecraft:music_disc_ward',",
"  Mutton = 'minecraft:mutton',",
"  Mycelium = 'minecraft:mycelium',",
"  NameTag = 'minecraft:name_tag',",
"  NautilusShell = 'minecraft:nautilus_shell',",
"  NetherBrick = 'minecraft:nether_brick',",
"  NetherBrickFence = 'minecraft:nether_brick_fence',",
"  NetherBrickStairs = 'minecraft:nether_brick_stairs',",
"  NetherGoldOre = 'minecraft:nether_gold_ore',",
"  NetherSprouts = 'minecraft:nether_sprouts',",
"  NetherStar = 'minecraft:nether_star',",
"  NetherWart = 'minecraft:nether_wart',",
"  NetherWartBlock = 'minecraft:nether_wart_block',",
"  Netherbrick = 'minecraft:netherbrick',",
"  NetheriteAxe = 'minecraft:netherite_axe',",
"  NetheriteBlock = 'minecraft:netherite_block',",
"  NetheriteBoots = 'minecraft:netherite_boots',",
"  NetheriteChestplate = 'minecraft:netherite_chestplate',",
"  NetheriteHelmet = 'minecraft:netherite_helmet',",
"  NetheriteHoe = 'minecraft:netherite_hoe',",
"  NetheriteIngot = 'minecraft:netherite_ingot',",
"  NetheriteLeggings = 'minecraft:netherite_leggings',",
"  NetheritePickaxe = 'minecraft:netherite_pickaxe',",
"  NetheriteScrap = 'minecraft:netherite_scrap',",
"  NetheriteShovel = 'minecraft:netherite_shovel',",
"  NetheriteSword = 'minecraft:netherite_sword',",
"  NetheriteUpgradeSmithingTemplate = 'minecraft:netherite_upgrade_smithing_template',",
"  Netherrack = 'minecraft:netherrack',",
"  NormalStoneStairs = 'minecraft:normal_stone_stairs',",
"  Noteblock = 'minecraft:noteblock',",
"  OakBoat = 'minecraft:oak_boat',",
"  OakChestBoat = 'minecraft:oak_chest_boat',",
"  OakFence = 'minecraft:oak_fence',",
"  OakHangingSign = 'minecraft:oak_hanging_sign',",
"  OakLeaves = 'minecraft:oak_leaves',",
"  OakLog = 'minecraft:oak_log',",
"  OakPlanks = 'minecraft:oak_planks',",
"  OakSapling = 'minecraft:oak_sapling',",
"  OakSign = 'minecraft:oak_sign',",
"  OakSlab = 'minecraft:oak_slab',",
"  OakStairs = 'minecraft:oak_stairs',",
"  OakWood = 'minecraft:oak_wood',",
"  Observer = 'minecraft:observer',",
"  Obsidian = 'minecraft:obsidian',",
"  OcelotSpawnEgg = 'minecraft:ocelot_spawn_egg',",
"  OchreFroglight = 'minecraft:ochre_froglight',",
"  OrangeCandle = 'minecraft:orange_candle',",
"  OrangeCarpet = 'minecraft:orange_carpet',",
"  OrangeConcrete = 'minecraft:orange_concrete',",
"  OrangeConcretePowder = 'minecraft:orange_concrete_powder',",
"  OrangeDye = 'minecraft:orange_dye',",
"  OrangeGlazedTerracotta = 'minecraft:orange_glazed_terracotta',",
"  OrangeShulkerBox = 'minecraft:orange_shulker_box',",
"  OrangeStainedGlass = 'minecraft:orange_stained_glass',",
"  OrangeStainedGlassPane = 'minecraft:orange_stained_glass_pane',",
"  OrangeTerracotta = 'minecraft:orange_terracotta',",
"  OrangeTulip = 'minecraft:orange_tulip',",
"  OrangeWool = 'minecraft:orange_wool',",
"  OxeyeDaisy = 'minecraft:oxeye_daisy',",
"  OxidizedChiseledCopper = 'minecraft:oxidized_chiseled_copper',",
"  OxidizedCopper = 'minecraft:oxidized_copper',",
"  OxidizedCopperBulb = 'minecraft:oxidized_copper_bulb',",
"  OxidizedCopperDoor = 'minecraft:oxidized_copper_door',",
"  OxidizedCopperGrate = 'minecraft:oxidized_copper_grate',",
"  OxidizedCopperTrapdoor = 'minecraft:oxidized_copper_trapdoor',",
"  OxidizedCutCopper = 'minecraft:oxidized_cut_copper',",
"  OxidizedCutCopperSlab = 'minecraft:oxidized_cut_copper_slab',",
"  OxidizedCutCopperStairs = 'minecraft:oxidized_cut_copper_stairs',",
"  PackedIce = 'minecraft:packed_ice',",
"  PackedMud = 'minecraft:packed_mud',",
"  Painting = 'minecraft:painting',",
"  PandaSpawnEgg = 'minecraft:panda_spawn_egg',",
"  Paper = 'minecraft:paper',",
"  ParrotSpawnEgg = 'minecraft:parrot_spawn_egg',",
"  PearlescentFroglight = 'minecraft:pearlescent_froglight',",
"  PhantomMembrane = 'minecraft:phantom_membrane',",
"  PhantomSpawnEgg = 'minecraft:phantom_spawn_egg',",
"  PigSpawnEgg = 'minecraft:pig_spawn_egg',",
"  PiglinBannerPattern = 'minecraft:piglin_banner_pattern',",
"  PiglinBruteSpawnEgg = 'minecraft:piglin_brute_spawn_egg',",
"  PiglinSpawnEgg = 'minecraft:piglin_spawn_egg',",
"  PillagerSpawnEgg = 'minecraft:pillager_spawn_egg',",
"  PinkCandle = 'minecraft:pink_candle',",
"  PinkCarpet = 'minecraft:pink_carpet',",
"  PinkConcrete = 'minecraft:pink_concrete',",
"  PinkConcretePowder = 'minecraft:pink_concrete_powder',",
"  PinkDye = 'minecraft:pink_dye',",
"  PinkGlazedTerracotta = 'minecraft:pink_glazed_terracotta',",
"  PinkPetals = 'minecraft:pink_petals',",
"  PinkShulkerBox = 'minecraft:pink_shulker_box',",
"  PinkStainedGlass = 'minecraft:pink_stained_glass',",
"  PinkStainedGlassPane = 'minecraft:pink_stained_glass_pane',",
"  PinkTerracotta = 'minecraft:pink_terracotta',",
"  PinkTulip = 'minecraft:pink_tulip',",
"  PinkWool = 'minecraft:pink_wool',",
"  Piston = 'minecraft:piston',",
"  PitcherPlant = 'minecraft:pitcher_plant',",
"  PitcherPod = 'minecraft:pitcher_pod',",
"  Planks = 'minecraft:planks',",
"  PlentyPotterySherd = 'minecraft:plenty_pottery_sherd',",
"  Podzol = 'minecraft:podzol',",
"  PointedDripstone = 'minecraft:pointed_dripstone',",
"  PoisonousPotato = 'minecraft:poisonous_potato',",
"  PolarBearSpawnEgg = 'minecraft:polar_bear_spawn_egg',",
"  PolishedAndesite = 'minecraft:polished_andesite',",
"  PolishedAndesiteStairs = 'minecraft:polished_andesite_stairs',",
"  PolishedBasalt = 'minecraft:polished_basalt',",
"  PolishedBlackstone = 'minecraft:polished_blackstone',",
"  PolishedBlackstoneBrickSlab = 'minecraft:polished_blackstone_brick_slab',",
"  PolishedBlackstoneBrickStairs = 'minecraft:polished_blackstone_brick_stairs',",
"  PolishedBlackstoneBrickWall = 'minecraft:polished_blackstone_brick_wall',",
"  PolishedBlackstoneBricks = 'minecraft:polished_blackstone_bricks',",
"  PolishedBlackstoneButton = 'minecraft:polished_blackstone_button',",
"  PolishedBlackstonePressurePlate = 'minecraft:polished_blackstone_pressure_plate',",
"  PolishedBlackstoneSlab = 'minecraft:polished_blackstone_slab',",
"  PolishedBlackstoneStairs = 'minecraft:polished_blackstone_stairs',",
"  PolishedBlackstoneWall = 'minecraft:polished_blackstone_wall',",
"  PolishedDeepslate = 'minecraft:polished_deepslate',",
"  PolishedDeepslateSlab = 'minecraft:polished_deepslate_slab',",
"  PolishedDeepslateStairs = 'minecraft:polished_deepslate_stairs',",
"  PolishedDeepslateWall = 'minecraft:polished_deepslate_wall',",
"  PolishedDiorite = 'minecraft:polished_diorite',",
"  PolishedDioriteStairs = 'minecraft:polished_diorite_stairs',",
"  PolishedGranite = 'minecraft:polished_granite',",
"  PolishedGraniteStairs = 'minecraft:polished_granite_stairs',",
"  PolishedTuff = 'minecraft:polished_tuff',",
"  PolishedTuffSlab = 'minecraft:polished_tuff_slab',",
"  PolishedTuffStairs = 'minecraft:polished_tuff_stairs',",
"  PolishedTuffWall = 'minecraft:polished_tuff_wall',",
"  PoppedChorusFruit = 'minecraft:popped_chorus_fruit',",
"  Poppy = 'minecraft:poppy',",
"  Porkchop = 'minecraft:porkchop',",
"  Potato = 'minecraft:potato',",
"  Potion = 'minecraft:potion',",
"  PowderSnowBucket = 'minecraft:powder_snow_bucket',",
"  Prismarine = 'minecraft:prismarine',",
"  PrismarineBricksStairs = 'minecraft:prismarine_bricks_stairs',",
"  PrismarineCrystals = 'minecraft:prismarine_crystals',",
"  PrismarineShard = 'minecraft:prismarine_shard',",
"  PrismarineStairs = 'minecraft:prismarine_stairs',",
"  PrizePotterySherd = 'minecraft:prize_pottery_sherd',",
"  Pufferfish = 'minecraft:pufferfish',",
"  PufferfishBucket = 'minecraft:pufferfish_bucket',",
"  PufferfishSpawnEgg = 'minecraft:pufferfish_spawn_egg',",
"  Pumpkin = 'minecraft:pumpkin',",
"  PumpkinPie = 'minecraft:pumpkin_pie',",
"  PumpkinSeeds = 'minecraft:pumpkin_seeds',",
"  PurpleCandle = 'minecraft:purple_candle',",
"  PurpleCarpet = 'minecraft:purple_carpet',",
"  PurpleConcrete = 'minecraft:purple_concrete',",
"  PurpleConcretePowder = 'minecraft:purple_concrete_powder',",
"  PurpleDye = 'minecraft:purple_dye',",
"  PurpleGlazedTerracotta = 'minecraft:purple_glazed_terracotta',",
"  PurpleShulkerBox = 'minecraft:purple_shulker_box',",
"  PurpleStainedGlass = 'minecraft:purple_stained_glass',",
"  PurpleStainedGlassPane = 'minecraft:purple_stained_glass_pane',",
"  PurpleTerracotta = 'minecraft:purple_terracotta',",
"  PurpleWool = 'minecraft:purple_wool',",
"  PurpurBlock = 'minecraft:purpur_block',",
"  PurpurStairs = 'minecraft:purpur_stairs',",
"  Quartz = 'minecraft:quartz',",
"  QuartzBlock = 'minecraft:quartz_block',",
"  QuartzBricks = 'minecraft:quartz_bricks',",
"  QuartzOre = 'minecraft:quartz_ore',",
"  QuartzStairs = 'minecraft:quartz_stairs',",
"  Rabbit = 'minecraft:rabbit',",
"  RabbitFoot = 'minecraft:rabbit_foot',",
"  RabbitHide = 'minecraft:rabbit_hide',",
"  RabbitSpawnEgg = 'minecraft:rabbit_spawn_egg',",
"  RabbitStew = 'minecraft:rabbit_stew',",
"  Rail = 'minecraft:rail',",
"  RaiserArmorTrimSmithingTemplate = 'minecraft:raiser_armor_trim_smithing_template',",
"  RavagerSpawnEgg = 'minecraft:ravager_spawn_egg',",
"  RawCopper = 'minecraft:raw_copper',",
"  RawCopperBlock = 'minecraft:raw_copper_block',",
"  RawGold = 'minecraft:raw_gold',",
"  RawGoldBlock = 'minecraft:raw_gold_block',",
"  RawIron = 'minecraft:raw_iron',",
"  RawIronBlock = 'minecraft:raw_iron_block',",
"  RecoveryCompass = 'minecraft:recovery_compass',",
"  RedCandle = 'minecraft:red_candle',",
"  RedCarpet = 'minecraft:red_carpet',",
"  RedConcrete = 'minecraft:red_concrete',",
"  RedConcretePowder = 'minecraft:red_concrete_powder',",
"  RedDye = 'minecraft:red_dye',",
"  RedFlower = 'minecraft:red_flower',",
"  RedGlazedTerracotta = 'minecraft:red_glazed_terracotta',",
"  RedMushroom = 'minecraft:red_mushroom',",
"  RedMushroomBlock = 'minecraft:red_mushroom_block',",
"  RedNetherBrick = 'minecraft:red_nether_brick',",
"  RedNetherBrickStairs = 'minecraft:red_nether_brick_stairs',",
"  RedSandstone = 'minecraft:red_sandstone',",
"  RedSandstoneStairs = 'minecraft:red_sandstone_stairs',",
"  RedShulkerBox = 'minecraft:red_shulker_box',",
"  RedStainedGlass = 'minecraft:red_stained_glass',",
"  RedStainedGlassPane = 'minecraft:red_stained_glass_pane',",
"  RedTerracotta = 'minecraft:red_terracotta',",
"  RedTulip = 'minecraft:red_tulip',",
"  RedWool = 'minecraft:red_wool',",
"  Redstone = 'minecraft:redstone',",
"  RedstoneBlock = 'minecraft:redstone_block',",
"  RedstoneLamp = 'minecraft:redstone_lamp',",
"  RedstoneOre = 'minecraft:redstone_ore',",
"  RedstoneTorch = 'minecraft:redstone_torch',",
"  ReinforcedDeepslate = 'minecraft:reinforced_deepslate',",
"  Repeater = 'minecraft:repeater',",
"  RepeatingCommandBlock = 'minecraft:repeating_command_block',",
"  RespawnAnchor = 'minecraft:respawn_anchor',",
"  RibArmorTrimSmithingTemplate = 'minecraft:rib_armor_trim_smithing_template',",
"  RottenFlesh = 'minecraft:rotten_flesh',",
"  Saddle = 'minecraft:saddle',",
"  Salmon = 'minecraft:salmon',",
"  SalmonBucket = 'minecraft:salmon_bucket',",
"  SalmonSpawnEgg = 'minecraft:salmon_spawn_egg',",
"  Sand = 'minecraft:sand',",
"  Sandstone = 'minecraft:sandstone',",
"  SandstoneStairs = 'minecraft:sandstone_stairs',",
"  Sapling = 'minecraft:sapling',",
"  Scaffolding = 'minecraft:scaffolding',",
"  ScrapePotterySherd = 'minecraft:scrape_pottery_sherd',",
"  Sculk = 'minecraft:sculk',",
"  SculkCatalyst = 'minecraft:sculk_catalyst',",
"  SculkSensor = 'minecraft:sculk_sensor',",
"  SculkShrieker = 'minecraft:sculk_shrieker',",
"  SculkVein = 'minecraft:sculk_vein',",
"  SeaLantern = 'minecraft:sea_lantern',",
"  SeaPickle = 'minecraft:sea_pickle',",
"  Seagrass = 'minecraft:seagrass',",
"  SentryArmorTrimSmithingTemplate = 'minecraft:sentry_armor_trim_smithing_template',",
"  ShaperArmorTrimSmithingTemplate = 'minecraft:shaper_armor_trim_smithing_template',",
"  SheafPotterySherd = 'minecraft:sheaf_pottery_sherd',",
"  Shears = 'minecraft:shears',",
"  SheepSpawnEgg = 'minecraft:sheep_spawn_egg',",
"  ShelterPotterySherd = 'minecraft:shelter_pottery_sherd',",
"  Shield = 'minecraft:shield',",
"  Shroomlight = 'minecraft:shroomlight',",
"  ShulkerBox = 'minecraft:shulker_box',",
"  ShulkerShell = 'minecraft:shulker_shell',",
"  ShulkerSpawnEgg = 'minecraft:shulker_spawn_egg',",
"  SilenceArmorTrimSmithingTemplate = 'minecraft:silence_armor_trim_smithing_template',",
"  SilverGlazedTerracotta = 'minecraft:silver_glazed_terracotta',",
"  SilverfishSpawnEgg = 'minecraft:silverfish_spawn_egg',",
"  SkeletonHorseSpawnEgg = 'minecraft:skeleton_horse_spawn_egg',",
"  SkeletonSpawnEgg = 'minecraft:skeleton_spawn_egg',",
"  Skull = 'minecraft:skull',",
"  SkullBannerPattern = 'minecraft:skull_banner_pattern',",
"  SkullPotterySherd = 'minecraft:skull_pottery_sherd',",
"  Slime = 'minecraft:slime',",
"  SlimeBall = 'minecraft:slime_ball',",
"  SlimeSpawnEgg = 'minecraft:slime_spawn_egg',",
"  SmallAmethystBud = 'minecraft:small_amethyst_bud',",
"  SmallDripleafBlock = 'minecraft:small_dripleaf_block',",
"  SmithingTable = 'minecraft:smithing_table',",
"  Smoker = 'minecraft:smoker',",
"  SmoothBasalt = 'minecraft:smooth_basalt',",
"  SmoothQuartzStairs = 'minecraft:smooth_quartz_stairs',",
"  SmoothRedSandstoneStairs = 'minecraft:smooth_red_sandstone_stairs',",
"  SmoothSandstoneStairs = 'minecraft:smooth_sandstone_stairs',",
"  SmoothStone = 'minecraft:smooth_stone',",
"  SnifferEgg = 'minecraft:sniffer_egg',",
"  SnifferSpawnEgg = 'minecraft:sniffer_spawn_egg',",
"  SnortPotterySherd = 'minecraft:snort_pottery_sherd',",
"  SnoutArmorTrimSmithingTemplate = 'minecraft:snout_armor_trim_smithing_template',",
"  Snow = 'minecraft:snow',",
"  SnowGolemSpawnEgg = 'minecraft:snow_golem_spawn_egg',",
"  SnowLayer = 'minecraft:snow_layer',",
"  Snowball = 'minecraft:snowball',",
"  SoulCampfire = 'minecraft:soul_campfire',",
"  SoulLantern = 'minecraft:soul_lantern',",
"  SoulSand = 'minecraft:soul_sand',",
"  SoulSoil = 'minecraft:soul_soil',",
"  SoulTorch = 'minecraft:soul_torch',",
"  SpawnEgg = 'minecraft:spawn_egg',",
"  SpiderEye = 'minecraft:spider_eye',",
"  SpiderSpawnEgg = 'minecraft:spider_spawn_egg',",
"  SpireArmorTrimSmithingTemplate = 'minecraft:spire_armor_trim_smithing_template',",
"  SplashPotion = 'minecraft:splash_potion',",
"  Sponge = 'minecraft:sponge',",
"  SporeBlossom = 'minecraft:spore_blossom',",
"  SpruceBoat = 'minecraft:spruce_boat',",
"  SpruceButton = 'minecraft:spruce_button',",
"  SpruceChestBoat = 'minecraft:spruce_chest_boat',",
"  SpruceDoor = 'minecraft:spruce_door',",
"  SpruceFence = 'minecraft:spruce_fence',",
"  SpruceFenceGate = 'minecraft:spruce_fence_gate',",
"  SpruceHangingSign = 'minecraft:spruce_hanging_sign',",
"  SpruceLeaves = 'minecraft:spruce_leaves',",
"  SpruceLog = 'minecraft:spruce_log',",
"  SprucePlanks = 'minecraft:spruce_planks',",
"  SprucePressurePlate = 'minecraft:spruce_pressure_plate',",
"  SpruceSapling = 'minecraft:spruce_sapling',",
"  SpruceSign = 'minecraft:spruce_sign',",
"  SpruceSlab = 'minecraft:spruce_slab',",
"  SpruceStairs = 'minecraft:spruce_stairs',",
"  SpruceTrapdoor = 'minecraft:spruce_trapdoor',",
"  SpruceWood = 'minecraft:spruce_wood',",
"  Spyglass = 'minecraft:spyglass',",
"  SquidSpawnEgg = 'minecraft:squid_spawn_egg',",
"  StainedGlass = 'minecraft:stained_glass',",
"  StainedGlassPane = 'minecraft:stained_glass_pane',",
"  StainedHardenedClay = 'minecraft:stained_hardened_clay',",
"  Stick = 'minecraft:stick',",
"  StickyPiston = 'minecraft:sticky_piston',",
"  Stone = 'minecraft:stone',",
"  StoneAxe = 'minecraft:stone_axe',",
"  StoneBlockSlab = 'minecraft:stone_block_slab',",
"  StoneBlockSlab2 = 'minecraft:stone_block_slab2',",
"  StoneBlockSlab3 = 'minecraft:stone_block_slab3',",
"  StoneBlockSlab4 = 'minecraft:stone_block_slab4',",
"  StoneBrickStairs = 'minecraft:stone_brick_stairs',",
"  StoneButton = 'minecraft:stone_button',",
"  StoneHoe = 'minecraft:stone_hoe',",
"  StonePickaxe = 'minecraft:stone_pickaxe',",
"  StonePressurePlate = 'minecraft:stone_pressure_plate',",
"  StoneShovel = 'minecraft:stone_shovel',",
"  StoneStairs = 'minecraft:stone_stairs',",
"  StoneSword = 'minecraft:stone_sword',",
"  Stonebrick = 'minecraft:stonebrick',",
"  StonecutterBlock = 'minecraft:stonecutter_block',",
"  StraySpawnEgg = 'minecraft:stray_spawn_egg',",
"  StriderSpawnEgg = 'minecraft:strider_spawn_egg',",
"  String = 'minecraft:string',",
"  StrippedAcaciaLog = 'minecraft:stripped_acacia_log',",
"  StrippedAcaciaWood = 'minecraft:stripped_acacia_wood',",
"  StrippedBambooBlock = 'minecraft:stripped_bamboo_block',",
"  StrippedBirchLog = 'minecraft:stripped_birch_log',",
"  StrippedBirchWood = 'minecraft:stripped_birch_wood',",
"  StrippedCherryLog = 'minecraft:stripped_cherry_log',",
"  StrippedCherryWood = 'minecraft:stripped_cherry_wood',",
"  StrippedCrimsonHyphae = 'minecraft:stripped_crimson_hyphae',",
"  StrippedCrimsonStem = 'minecraft:stripped_crimson_stem',",
"  StrippedDarkOakLog = 'minecraft:stripped_dark_oak_log',",
"  StrippedDarkOakWood = 'minecraft:stripped_dark_oak_wood',",
"  StrippedJungleLog = 'minecraft:stripped_jungle_log',",
"  StrippedJungleWood = 'minecraft:stripped_jungle_wood',",
"  StrippedMangroveLog = 'minecraft:stripped_mangrove_log',",
"  StrippedMangroveWood = 'minecraft:stripped_mangrove_wood',",
"  StrippedOakLog = 'minecraft:stripped_oak_log',",
"  StrippedOakWood = 'minecraft:stripped_oak_wood',",
"  StrippedSpruceLog = 'minecraft:stripped_spruce_log',",
"  StrippedSpruceWood = 'minecraft:stripped_spruce_wood',",
"  StrippedWarpedHyphae = 'minecraft:stripped_warped_hyphae',",
"  StrippedWarpedStem = 'minecraft:stripped_warped_stem',",
"  StructureBlock = 'minecraft:structure_block',",
"  StructureVoid = 'minecraft:structure_void',",
"  Sugar = 'minecraft:sugar',",
"  SugarCane = 'minecraft:sugar_cane',",
"  SuspiciousGravel = 'minecraft:suspicious_gravel',",
"  SuspiciousSand = 'minecraft:suspicious_sand',",
"  SuspiciousStew = 'minecraft:suspicious_stew',",
"  SweetBerries = 'minecraft:sweet_berries',",
"  TadpoleBucket = 'minecraft:tadpole_bucket',",
"  TadpoleSpawnEgg = 'minecraft:tadpole_spawn_egg',",
"  Tallgrass = 'minecraft:tallgrass',",
"  Target = 'minecraft:target',",
"  TideArmorTrimSmithingTemplate = 'minecraft:tide_armor_trim_smithing_template',",
"  TintedGlass = 'minecraft:tinted_glass',",
"  Tnt = 'minecraft:tnt',",
"  TntMinecart = 'minecraft:tnt_minecart',",
"  Torch = 'minecraft:torch',",
"  Torchflower = 'minecraft:torchflower',",
"  TorchflowerSeeds = 'minecraft:torchflower_seeds',",
"  TotemOfUndying = 'minecraft:totem_of_undying',",
"  TraderLlamaSpawnEgg = 'minecraft:trader_llama_spawn_egg',",
"  Trapdoor = 'minecraft:trapdoor',",
"  TrappedChest = 'minecraft:trapped_chest',",
"  TrialKey = 'minecraft:trial_key',",
"  TrialSpawner = 'minecraft:trial_spawner',",
"  Trident = 'minecraft:trident',",
"  TripwireHook = 'minecraft:tripwire_hook',",
"  TropicalFish = 'minecraft:tropical_fish',",
"  TropicalFishBucket = 'minecraft:tropical_fish_bucket',",
"  TropicalFishSpawnEgg = 'minecraft:tropical_fish_spawn_egg',",
"  TubeCoral = 'minecraft:tube_coral',",
"  TubeCoralFan = 'minecraft:tube_coral_fan',",
"  Tuff = 'minecraft:tuff',",
"  TuffBrickSlab = 'minecraft:tuff_brick_slab',",
"  TuffBrickStairs = 'minecraft:tuff_brick_stairs',",
"  TuffBrickWall = 'minecraft:tuff_brick_wall',",
"  TuffBricks = 'minecraft:tuff_bricks',",
"  TuffSlab = 'minecraft:tuff_slab',",
"  TuffStairs = 'minecraft:tuff_stairs',",
"  TuffWall = 'minecraft:tuff_wall',",
"  TurtleEgg = 'minecraft:turtle_egg',",
"  TurtleHelmet = 'minecraft:turtle_helmet',",
"  TurtleScute = 'minecraft:turtle_scute',",
"  TurtleSpawnEgg = 'minecraft:turtle_spawn_egg',",
"  TwistingVines = 'minecraft:twisting_vines',",
"  UndyedShulkerBox = 'minecraft:undyed_shulker_box',",
"  Vault = 'minecraft:vault',",
"  VerdantFroglight = 'minecraft:verdant_froglight',",
"  VexArmorTrimSmithingTemplate = 'minecraft:vex_armor_trim_smithing_template',",
"  VexSpawnEgg = 'minecraft:vex_spawn_egg',",
"  VillagerSpawnEgg = 'minecraft:villager_spawn_egg',",
"  VindicatorSpawnEgg = 'minecraft:vindicator_spawn_egg',",
"  Vine = 'minecraft:vine',",
"  WanderingTraderSpawnEgg = 'minecraft:wandering_trader_spawn_egg',",
"  WardArmorTrimSmithingTemplate = 'minecraft:ward_armor_trim_smithing_template',",
"  WardenSpawnEgg = 'minecraft:warden_spawn_egg',",
"  WarpedButton = 'minecraft:warped_button',",
"  WarpedDoor = 'minecraft:warped_door',",
"  WarpedFence = 'minecraft:warped_fence',",
"  WarpedFenceGate = 'minecraft:warped_fence_gate',",
"  WarpedFungus = 'minecraft:warped_fungus',",
"  WarpedFungusOnAStick = 'minecraft:warped_fungus_on_a_stick',",
"  WarpedHangingSign = 'minecraft:warped_hanging_sign',",
"  WarpedHyphae = 'minecraft:warped_hyphae',",
"  WarpedNylium = 'minecraft:warped_nylium',",
"  WarpedPlanks = 'minecraft:warped_planks',",
"  WarpedPressurePlate = 'minecraft:warped_pressure_plate',",
"  WarpedRoots = 'minecraft:warped_roots',",
"  WarpedSign = 'minecraft:warped_sign',",
"  WarpedSlab = 'minecraft:warped_slab',",
"  WarpedStairs = 'minecraft:warped_stairs',",
"  WarpedStem = 'minecraft:warped_stem',",
"  WarpedTrapdoor = 'minecraft:warped_trapdoor',",
"  WarpedWartBlock = 'minecraft:warped_wart_block',",
"  WaterBucket = 'minecraft:water_bucket',",
"  Waterlily = 'minecraft:waterlily',",
"  WaxedChiseledCopper = 'minecraft:waxed_chiseled_copper',",
"  WaxedCopper = 'minecraft:waxed_copper',",
"  WaxedCopperBulb = 'minecraft:waxed_copper_bulb',",
"  WaxedCopperDoor = 'minecraft:waxed_copper_door',",
"  WaxedCopperGrate = 'minecraft:waxed_copper_grate',",
"  WaxedCopperTrapdoor = 'minecraft:waxed_copper_trapdoor',",
"  WaxedCutCopper = 'minecraft:waxed_cut_copper',",
"  WaxedCutCopperSlab = 'minecraft:waxed_cut_copper_slab',",
"  WaxedCutCopperStairs = 'minecraft:waxed_cut_copper_stairs',",
"  WaxedExposedChiseledCopper = 'minecraft:waxed_exposed_chiseled_copper',",
"  WaxedExposedCopper = 'minecraft:waxed_exposed_copper',",
"  WaxedExposedCopperBulb = 'minecraft:waxed_exposed_copper_bulb',",
"  WaxedExposedCopperDoor = 'minecraft:waxed_exposed_copper_door',",
"  WaxedExposedCopperGrate = 'minecraft:waxed_exposed_copper_grate',",
"  WaxedExposedCopperTrapdoor = 'minecraft:waxed_exposed_copper_trapdoor',",
"  WaxedExposedCutCopper = 'minecraft:waxed_exposed_cut_copper',",
"  WaxedExposedCutCopperSlab = 'minecraft:waxed_exposed_cut_copper_slab',",
"  WaxedExposedCutCopperStairs = 'minecraft:waxed_exposed_cut_copper_stairs',",
"  WaxedOxidizedChiseledCopper = 'minecraft:waxed_oxidized_chiseled_copper',",
"  WaxedOxidizedCopper = 'minecraft:waxed_oxidized_copper',",
"  WaxedOxidizedCopperBulb = 'minecraft:waxed_oxidized_copper_bulb',",
"  WaxedOxidizedCopperDoor = 'minecraft:waxed_oxidized_copper_door',",
"  WaxedOxidizedCopperGrate = 'minecraft:waxed_oxidized_copper_grate',",
"  WaxedOxidizedCopperTrapdoor = 'minecraft:waxed_oxidized_copper_trapdoor',",
"  WaxedOxidizedCutCopper = 'minecraft:waxed_oxidized_cut_copper',",
"  WaxedOxidizedCutCopperSlab = 'minecraft:waxed_oxidized_cut_copper_slab',",
"  WaxedOxidizedCutCopperStairs = 'minecraft:waxed_oxidized_cut_copper_stairs',",
"  WaxedWeatheredChiseledCopper = 'minecraft:waxed_weathered_chiseled_copper',",
"  WaxedWeatheredCopper = 'minecraft:waxed_weathered_copper',",
"  WaxedWeatheredCopperBulb = 'minecraft:waxed_weathered_copper_bulb',",
"  WaxedWeatheredCopperDoor = 'minecraft:waxed_weathered_copper_door',",
"  WaxedWeatheredCopperGrate = 'minecraft:waxed_weathered_copper_grate',",
"  WaxedWeatheredCopperTrapdoor = 'minecraft:waxed_weathered_copper_trapdoor',",
"  WaxedWeatheredCutCopper = 'minecraft:waxed_weathered_cut_copper',",
"  WaxedWeatheredCutCopperSlab = 'minecraft:waxed_weathered_cut_copper_slab',",
"  WaxedWeatheredCutCopperStairs = 'minecraft:waxed_weathered_cut_copper_stairs',",
"  WayfinderArmorTrimSmithingTemplate = 'minecraft:wayfinder_armor_trim_smithing_template',",
"  WeatheredChiseledCopper = 'minecraft:weathered_chiseled_copper',",
"  WeatheredCopper = 'minecraft:weathered_copper',",
"  WeatheredCopperBulb = 'minecraft:weathered_copper_bulb',",
"  WeatheredCopperDoor = 'minecraft:weathered_copper_door',",
"  WeatheredCopperGrate = 'minecraft:weathered_copper_grate',",
"  WeatheredCopperTrapdoor = 'minecraft:weathered_copper_trapdoor',",
"  WeatheredCutCopper = 'minecraft:weathered_cut_copper',",
"  WeatheredCutCopperSlab = 'minecraft:weathered_cut_copper_slab',",
"  WeatheredCutCopperStairs = 'minecraft:weathered_cut_copper_stairs',",
"  Web = 'minecraft:web',",
"  WeepingVines = 'minecraft:weeping_vines',",
"  Wheat = 'minecraft:wheat',",
"  WheatSeeds = 'minecraft:wheat_seeds',",
"  WhiteCandle = 'minecraft:white_candle',",
"  WhiteCarpet = 'minecraft:white_carpet',",
"  WhiteConcrete = 'minecraft:white_concrete',",
"  WhiteConcretePowder = 'minecraft:white_concrete_powder',",
"  WhiteDye = 'minecraft:white_dye',",
"  WhiteGlazedTerracotta = 'minecraft:white_glazed_terracotta',",
"  WhiteShulkerBox = 'minecraft:white_shulker_box',",
"  WhiteStainedGlass = 'minecraft:white_stained_glass',",
"  WhiteStainedGlassPane = 'minecraft:white_stained_glass_pane',",
"  WhiteTerracotta = 'minecraft:white_terracotta',",
"  WhiteTulip = 'minecraft:white_tulip',",
"  WhiteWool = 'minecraft:white_wool',",
"  WildArmorTrimSmithingTemplate = 'minecraft:wild_armor_trim_smithing_template',",
"  WindCharge = 'minecraft:wind_charge',",
"  WitchSpawnEgg = 'minecraft:witch_spawn_egg',",
"  WitherRose = 'minecraft:wither_rose',",
"  WitherSkeletonSpawnEgg = 'minecraft:wither_skeleton_spawn_egg',",
"  WitherSpawnEgg = 'minecraft:wither_spawn_egg',",
"  WolfArmor = 'minecraft:wolf_armor',",
"  WolfSpawnEgg = 'minecraft:wolf_spawn_egg',",
"  Wood = 'minecraft:wood',",
"  WoodenAxe = 'minecraft:wooden_axe',",
"  WoodenButton = 'minecraft:wooden_button',",
"  WoodenDoor = 'minecraft:wooden_door',",
"  WoodenHoe = 'minecraft:wooden_hoe',",
"  WoodenPickaxe = 'minecraft:wooden_pickaxe',",
"  WoodenPressurePlate = 'minecraft:wooden_pressure_plate',",
"  WoodenShovel = 'minecraft:wooden_shovel',",
"  WoodenSlab = 'minecraft:wooden_slab',",
"  WoodenSword = 'minecraft:wooden_sword',",
"  Wool = 'minecraft:wool',",
"  WritableBook = 'minecraft:writable_book',",
"  YellowCandle = 'minecraft:yellow_candle',",
"  YellowCarpet = 'minecraft:yellow_carpet',",
"  YellowConcrete = 'minecraft:yellow_concrete',",
"  YellowConcretePowder = 'minecraft:yellow_concrete_powder',",
"  YellowDye = 'minecraft:yellow_dye',",
"  YellowFlower = 'minecraft:yellow_flower',",
"  YellowGlazedTerracotta = 'minecraft:yellow_glazed_terracotta',",
"  YellowShulkerBox = 'minecraft:yellow_shulker_box',",
"  YellowStainedGlass = 'minecraft:yellow_stained_glass',",
"  YellowStainedGlassPane = 'minecraft:yellow_stained_glass_pane',",
"  YellowTerracotta = 'minecraft:yellow_terracotta',",
"  YellowWool = 'minecraft:yellow_wool',",
"  ZoglinSpawnEgg = 'minecraft:zoglin_spawn_egg',",
"  ZombieHorseSpawnEgg = 'minecraft:zombie_horse_spawn_egg',",
"  ZombiePigmanSpawnEgg = 'minecraft:zombie_pigman_spawn_egg',",
"  ZombieSpawnEgg = 'minecraft:zombie_spawn_egg',",
"  ZombieVillagerSpawnEgg = 'minecraft:zombie_villager_spawn_egg',",
"}",
"/**",
" * Union type equivalent of the MinecraftItemTypes enum.",
" */",
"export type MinecraftItemTypesUnion = keyof typeof MinecraftItemTypes;",
""]}]}