From 6a5addb38322aea743d05dd651d214548ed48ba7 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Sun, 18 Jan 2026 03:24:03 +0700 Subject: [PATCH] improve intellisense --- package.json | 6 +- scripts/autocomplete-build.ts | 39 +- scripts/custom.ts | 2 +- scripts/write/enum.ts | 4 + src/components/Modify.ts | 9 +- src/components/UI.ts | 18 +- src/components/Utils.ts | 7 +- src/types/enums/Type.ts | 69 +- src/types/properties/element/Control.ts | 1 + src/types/vanilla/elements.ts | 210 - src/types/vanilla/index.ts | 1 - src/types/vanilla/intellisense.ts | 20063 +++++++++++++++++++++- src/types/vanilla/paths.ts | 19435 +++++++++++++++++++++ test/app.ts | 8 +- tsconfig.json | 4 +- 15 files changed, 39393 insertions(+), 483 deletions(-) delete mode 100644 src/types/vanilla/elements.ts create mode 100644 src/types/vanilla/paths.ts diff --git a/package.json b/package.json index 7412453..4cdc0fe 100644 --- a/package.json +++ b/package.json @@ -20,14 +20,14 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { - "build": "npx tsc", - "dev": "npx tsc --watch", + "build": "tsc", + "dev": "tsc --watch", "test": "bun test/app.ts", "test:watch": "bun --watch test/app.ts", "prefetch": "bun scripts/prefetch", "gen:enums": "bun scripts/write/enum", "vanilla:defs": "bun scripts/vanilladefs", - "vanilla:autocomplete": "bun scripts/autocomplete-build" + "gen:autocomplete": "bun scripts/autocomplete-build" }, "devDependencies": { "@types/node": "^25.0.3", diff --git a/scripts/autocomplete-build.ts b/scripts/autocomplete-build.ts index a0b455c..b18ed9d 100644 --- a/scripts/autocomplete-build.ts +++ b/scripts/autocomplete-build.ts @@ -6,32 +6,47 @@ function toCamelCase(str: string) { return str.replace(/[-_]\w/g, m => m[1].toUpperCase()) } -const type: string[] = [] -const $$namespace: string[] = [] +const intelliSense: string[] = [ + 'import { Type as T } from "../enums/Type.js"\n', + "export type Namespace = keyof IntelliSense;", + "export type Element = IntelliSense[T]", + "export type VanillaType> = IntelliSense[T][K]\n", + "export type IntelliSense = {", +] -const intelliSense: string[] = ['import * as mc from "./elements.js"\n', "export type IntelliSense = {"] +const intelliSenseTypeEachNamespace: string[] = [] + +const paths: string[] = ["export const paths = {"] for (const [namespace, element] of Object.entries(data)) { if (namespace === "undefined") continue - $$namespace.push(`"${namespace}"`) const $namespace = toCamelCase("_" + namespace) - const eType: string[] = [] + const eType: string[] = [], + eType3: string[] = [`export type ${$namespace}Type = {`], + ePaths: string[] = [` "${namespace}": {`] + for (const [ePath, info] of Object.entries(element)) { const { file, type, extend } = info eType.push(`"${ePath}"`) + eType3.push(` "${ePath}": T.${type.toUpperCase()},`) + ePaths.push(` "${ePath}": "${file}",`) } - intelliSense.push(` "${namespace}": mc.${$namespace},`) + eType3.push("}\n") + ePaths.push(" },") - type.push(`export type ${$namespace} = ${eType.join(" | ")};`) + paths.push(ePaths.join("\n")) + intelliSense.push(` "${namespace}": ${$namespace}Type,`) + intelliSenseTypeEachNamespace.push(eType3.join("\n")) } intelliSense.push("}") -fs.writeFileSync( - "src/types/vanilla/elements.ts", - `export type Namespace = ${$$namespace.join(" | ")}\n\n` + type.join("\n"), -) +paths.push("}") -fs.writeFileSync("src/types/vanilla/intellisense.ts", intelliSense.join("\n")) +fs.writeFileSync( + "src/types/vanilla/intellisense.ts", + intelliSense.join("\n") + "\n\n" + intelliSenseTypeEachNamespace.join("\n"), +) +fs.writeFileSync("src/types/vanilla/paths.ts", paths.join("\n")) diff --git a/scripts/custom.ts b/scripts/custom.ts index 4360653..ee2d309 100644 --- a/scripts/custom.ts +++ b/scripts/custom.ts @@ -1,4 +1,4 @@ -export {} // 👈 BẮT BUỘC +export {} declare global { interface String { diff --git a/scripts/write/enum.ts b/scripts/write/enum.ts index d93b206..33a5ef5 100644 --- a/scripts/write/enum.ts +++ b/scripts/write/enum.ts @@ -35,6 +35,10 @@ for (const key in schema) { } } + if (enumName === "Type") { + fileData.push(` UNKNOWN = "unknown",`) + } + fileData.push("}") fs.writeFile(`${enumPath}${enumName}.ts`, fileData.join("\n")) diff --git a/src/components/Modify.ts b/src/components/Modify.ts index 146bfe2..7edfa42 100644 --- a/src/components/Modify.ts +++ b/src/components/Modify.ts @@ -1,5 +1,8 @@ -import { Namespace } from "../types/vanilla/elements.js" -import { IntelliSense } from "../types/vanilla/intellisense.js" +import { IntelliSense, Namespace, Element, VanillaType } from "../types/vanilla/intellisense.js" +import { paths } from "../types/vanilla/paths.js" import { UI } from "./UI.js" -export function Modify(namespace: T, name: IntelliSense[T]) {} +export function Modify>(namespace: T, name: K) { + // @ts-ignore -- TS cannot prove this, but runtime guarantees it + return new UI>(undefined, name, namespace, paths[namespace][name]) +} diff --git a/src/components/UI.ts b/src/components/UI.ts index 098eacc..3db4668 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -3,22 +3,30 @@ import { Memory } from "../compilers/Memory.js" import { Renderer } from "../types/enums/Renderer.js" import { Type } from "../types/enums/Type.js" import { Properties } from "../types/properties/components.js" +import { Namespace, VanillaType } from "../types/vanilla/intellisense.js" import { Class } from "./Class.js" import { RandomString } from "./Utils.js" import util from "node:util" export class UI extends Class { - private path: string + path: string name: string namespace: string extend?: UI + canExtend: boolean + controls = new Map, Properties]>() properties: Properties = {} - constructor(public type?: T, name?: string, namespace?: string, path?: string) { + constructor( + public type?: T, + name?: string, + namespace?: string, + path?: string, + ) { super() if (name === "namespace") { @@ -26,12 +34,14 @@ export class UI extends Class process.exit(1) } - this.name = name?.match(/^\w+/)?.[0] || RandomString(16) + this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomString(16) if (!path) this.path = `@/${this.namespace}` else this.path = path + this.canExtend = this.name.search("/") === -1 + Memory.register_ui(this.path, this) } @@ -79,7 +89,7 @@ export class UI extends Class } return `\x1b[33mUI\x1b[0m<\x1b[92m${ - this.type || `${this.extend}` + this.type || this.extend ? `${this.extend}` : "ANY" }\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(obj, opts)}\n` } } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 30de344..ff7467d 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -116,7 +116,7 @@ export function Custom( renderer: R, properties?: Properties, name?: string, - namespace?: string + namespace?: string, ) { const custom = new UI(Type.CUSTOM, name, namespace) if (properties) custom.setProperties({ renderer, ...properties }) @@ -171,8 +171,11 @@ export function Extends( element: UI, properties?: Properties, name?: string, - namespace?: string + namespace?: string, ) { + if (!element.canExtend) { + throw new Error("Cannot extend a UI that cannot be extended") + } const ui = new UI(undefined, name, namespace) if (properties) ui.setProperties(properties) ui.extend = element diff --git a/src/types/enums/Type.ts b/src/types/enums/Type.ts index 95113bd..dc70234 100644 --- a/src/types/enums/Type.ts +++ b/src/types/enums/Type.ts @@ -1,35 +1,36 @@ export enum Type { - SELECTION_WHEEL = "selection_wheel", - PANEL = "panel", - SCREEN = "screen", - STACK_PANEL = "stack_panel", - LABEL = "label", - IMAGE = "image", - INPUT_PANEL = "input_panel", - CUSTOM = "custom", - GRID = "grid", - FACTORY = "factory", - BUTTON = "button", - TOGGLE = "toggle", - SLIDER = "slider", - EDIT_BOX = "edit_box", - DROPDOWN = "dropdown", - SCROLL_VIEW = "scroll_view", - SLIDER_BOX = "slider_box", - SCROLLBAR_BOX = "scrollbar_box", - SCROLL_TRACK = "scroll_track", - GRID_PAGE_INDICATOR = "grid_page_indicator", - IMAGE_CYCLER = "image_cycler", - LABEL_CYCLER = "label_cycler", - COLLECTION_PANEL = "collection_panel", - TOOLTIP_TRIGGER = "tooltip_trigger", - TAB = "tab", - CAROUSEL_LABEL = "carousel_label", - COMBOX = "combox", - LAYOUT = "layout", - STACK_GRID = "stack_grid", - JOYSTICK = "joystick", - RICH_TEXT = "rich_text", - SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", - MUL_LINES = "mul_lines", -} \ No newline at end of file + SELECTION_WHEEL = "selection_wheel", + PANEL = "panel", + SCREEN = "screen", + STACK_PANEL = "stack_panel", + LABEL = "label", + IMAGE = "image", + INPUT_PANEL = "input_panel", + CUSTOM = "custom", + GRID = "grid", + FACTORY = "factory", + BUTTON = "button", + TOGGLE = "toggle", + SLIDER = "slider", + EDIT_BOX = "edit_box", + DROPDOWN = "dropdown", + SCROLL_VIEW = "scroll_view", + SLIDER_BOX = "slider_box", + SCROLLBAR_BOX = "scrollbar_box", + SCROLL_TRACK = "scroll_track", + GRID_PAGE_INDICATOR = "grid_page_indicator", + IMAGE_CYCLER = "image_cycler", + LABEL_CYCLER = "label_cycler", + COLLECTION_PANEL = "collection_panel", + TOOLTIP_TRIGGER = "tooltip_trigger", + TAB = "tab", + CAROUSEL_LABEL = "carousel_label", + COMBOX = "combox", + LAYOUT = "layout", + STACK_GRID = "stack_grid", + JOYSTICK = "joystick", + RICH_TEXT = "rich_text", + SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", + MUL_LINES = "mul_lines", + UNKNOWN = "unknown", +} diff --git a/src/types/properties/element/Control.ts b/src/types/properties/element/Control.ts index 4fa97dd..af56c56 100644 --- a/src/types/properties/element/Control.ts +++ b/src/types/properties/element/Control.ts @@ -2,6 +2,7 @@ import { AnimValue, Array2, Binding, PropertyBags, Value, Variable } from "../va export interface Control { visible?: Value + ignored?: Value enabled?: Value layer?: Value z_order?: Value diff --git a/src/types/vanilla/elements.ts b/src/types/vanilla/elements.ts deleted file mode 100644 index c6bf00a..0000000 --- a/src/types/vanilla/elements.ts +++ /dev/null @@ -1,210 +0,0 @@ -export type Namespace = "achievement" | "add_external_server" | "adhoc_inprogress" | "adhoc" | "anvil" | "anvil_pocket" | "authentication_modals" | "authentication" | "auto_save_info" | "beacon" | "beacon_pocket" | "blast_furnace" | "book" | "brewing_stand" | "brewing_stand_pocket" | "bundle_purchase_warning" | "cartography" | "cartography_pocket" | "chalkboard" | "chat" | "chat_settings" | "chest" | "choose_realm" | "coin_purchase" | "command_block" | "confirm_delete_account" | "content_log" | "content_log_history" | "crafter_pocket" | "create_world_upsell" | "credits" | "csb_purchase_error" | "csb" | "csb_content" | "csb_banner" | "csb_buy" | "common_csb" | "csb_purchase_amazondevicewarning" | "csb_purchase_warning" | "csb_subscription_panel" | "csb_upsell" | "csb_packs" | "csb_welcome" | "csb_faq" | "csb_landing" | "custom_templates" | "world_conversion_complete" | "day_one_experience_intro" | "day_one_experience" | "death" | "debug_screen" | "dev_console" | "disconnect" | "display_logged_error" | "discovery_dialog" | "edu_featured" | "edu_quit_button" | "persona_emote" | "enchanting" | "enchanting_pocket" | "encyclopedia" | "expanded_skin_pack" | "feed_common" | "file_upload" | "furnace" | "furnace_pocket" | "game_tip" | "gamepad_disconnected" | "gameplay" | "gathering_info" | "globalpause" | "grindstone" | "grindstone_pocket" | "gamma_calibration" | "horse" | "horse_pocket" | "how_to_play_common" | "how_to_play" | "hud" | "host_options" | "bed" | "im_reader" | "crafting" | "crafting_pocket" | "invite" | "jigsaw_editor" | "late_join" | "library_modal" | "local_world_picker" | "loom" | "loom_pocket" | "manage_feed" | "manifest_validation" | "sdl_label" | "sdl_dropdowns" | "sdl_image_row" | "sdl_text_row" | "mob_effect" | "non_xbl_user_management" | "npc_interact" | "online_safety" | "pack_settings" | "panorama" | "patch_notes" | "pause" | "pdp" | "pdp_screenshots" | "permissions" | "persona_cast_character_screen" | "persona_common" | "persona_popups" | "play" | "perf_turtle" | "pocket_containers" | "popup_dialog" | "portfolio" | "progress" | "rating_prompt" | "realms_common" | "realms_create" | "realms_pending_invitations" | "realms_slots" | "realms_settings" | "realms_allowlist" | "realms_invite_link_settings" | "realms_plus_ended" | "realmsPlus" | "realmsPlus_content" | "realmsPlus_faq" | "realmsPlus_landing" | "realmsPlus_buy" | "realmsPlus_packs" | "realmsPlus_purchase_warning" | "realms_stories_transition" | "redstone" | "resource_packs" | "safe_zone" | "storage_migration_common" | "storage_migration_generic" | "scoreboard" | "screenshot" | "select_world" | "server_form" | "settings" | "controls_section" | "general_section" | "realms_world_section" | "settings_common" | "world_section" | "social_section" | "sidebar_navigation" | "sign" | "simple_inprogress" | "skin_pack_purchase" | "skin_picker" | "smithing_table" | "smithing_table_2" | "smithing_table_pocket" | "smithing_table_2_pocket" | "smoker" | "start" | "stonecutter" | "stonecutter_pocket" | "storage_management" | "storage_management_popup" | "common_store" | "store_layout" | "filter_menu" | "store_inventory" | "store_item_list" | "store_progress" | "promo_timeline" | "store_sale_item_list" | "store_search" | "sort_menu" | "structure_editor" | "submit_feedback" | "tabbed_upsell" | "thanks_for_testing" | "third_party_store" | "toast_screen" | "token_faq" | "trade" | "trade_pocket" | "trade2" | "trade2_pocket" | "trialUpsell" | "ugc_viewer" | "common_art" | "common" | "common-classic" | "edu_common" | "purchase_common" | "common_buttons" | "common_dialogs" | "common_tabs" | "common_toggles" | "friendsbutton" | "iconbutton" | "update_dimensions" | "update_version" | "world_recovery" | "world_templates" | "xbl_console_qr_signin" | "xbl_console_signin" | "xbl_console_signin_succeeded" | "xbl_immediate_signin" | "win10_trial_conversion" - -export type Achievement = "empty_progress_bar_icon" | "full_progress_bar_icon_base"; -export type AddExternalServer = "play_button" | "play_disabled_button" | "remove_button" | "save_button" | "save_disabled_button" | "text_edit_group" | "text_edit_group/name_label" | "text_edit_group/edit_box" | "title_text" | "content_panel" | "content_panel/name_edit" | "content_panel/ip_edit" | "content_panel/port_edit" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/play" | "main_panel/play_disabled" | "main_panel/remove" | "main_panel/save" | "main_panel/save_disabled" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "add_external_server_screen_new" | "add_external_server_screen_edit" | "add_external_server_screen" | "add_external_server_screen_content" | "add_external_server_screen_content/root_panel" | "add_external_server_screen_content/root_panel/gamepad_helpers" | "add_external_server_screen_content/root_panel/main_panel"; -export type AdhocInprogress = "title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/progress_loading_bars" | "adhoc_inprogress_screen" | "adhoc_inprogress_screen_content" | "adhoc_inprogress_screen_content/root_panel" | "adhoc_inprogress_screen_content/root_panel/main_panel"; -export type Adhoc = "online_button" | "local_button" | "title_text" | "content_panel" | "content_panel/title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/online" | "main_panel/local" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "adhoc_screen" | "adhoc_screen_content" | "adhoc_screen_content/root_panel" | "adhoc_screen_content/root_panel/gamepad_helpers" | "adhoc_screen_content/root_panel/main_panel"; -export type Anvil = "generic_label" | "anvil_icon" | "title_label" | "anvil_icon_panel" | "anvil_icon_panel/anvil_icon" | "text_edit_control" | "icon_and_text_panel" | "icon_and_text_panel/anvil_icon_panel" | "icon_and_text_panel/anvil_title_and_text_panel" | "title_panel" | "title_panel/title_label" | "text_edit_panel" | "text_edit_panel/text_edit_control" | "anvil_title_and_text_panel" | "anvil_title_and_text_panel/title_panel" | "anvil_title_and_text_panel/text_edit_panel" | "plus_sign_icon" | "arrow_icon" | "cross_out_icon" | "anvil_output_slot_button" | "anvil_item_slot" | "anvil_item_slot/container_item" | "recipe_grid" | "recipe_grid/input_item_slot" | "recipe_grid/plus" | "recipe_grid/plus/plus_sign_icon" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "cost_label" | "cost_label/gray" | "recipe_panel" | "recipe_panel/recipe_grid" | "recipe_panel/cost_label_0" | "recipe_panel/cost_label_1" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "anvil_panel" | "anvil_panel/container_gamepad_helpers" | "anvil_panel/selected_item_details_factory" | "anvil_panel/item_lock_notification_factory" | "anvil_panel/root_panel" | "anvil_panel/root_panel/common_panel" | "anvil_panel/root_panel/anvil_screen_inventory" | "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel" | "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label" | "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid" | "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button" | "anvil_panel/root_panel/inventory_selected_icon_button" | "anvil_panel/root_panel/gamepad_cursor" | "anvil_panel/flying_item_renderer" | "anvil_screen"; -export type AnvilPocket = "generic_label" | "background_image" | "arrow_icon" | "cost_label" | "cost_label/gray" | "title_label" | "text_edit_control" | "anvil_title_and_text_panel" | "anvil_title_and_text_panel/title_label" | "anvil_title_and_text_panel/text_edit_control" | "slots_panel" | "slots_panel/input_slot" | "slots_panel/material_slot" | "slots_panel/result_slot" | "slots_panel/plus_sign" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "anvil_contents_panel" | "anvil_contents_panel/red_cost" | "anvil_contents_panel/green_cost" | "anvil_contents_panel/slots_panel" | "anvil_contents_panel/anvil_title_and_text_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "inventory_and_anvil_panel" | "inventory_and_anvil_panel/inventory_half_screen" | "inventory_and_anvil_panel/inventory_half_screen/inventory_content" | "inventory_and_anvil_panel/anvil_half_screen" | "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_anvil_panel" | "anvil_panel" | "anvil_panel/bg" | "anvil_panel/root_panel" | "anvil_panel/header_and_content_stack_panel" | "anvil_panel/container_gamepad_helpers" | "anvil_panel/inventory_selected_icon_button" | "anvil_panel/hold_icon" | "anvil_panel/selected_item_details_factory" | "anvil_panel/item_lock_notification_factory" | "anvil_panel/flying_item_renderer"; -export type AuthenticationModals = "modal_dialog_label" | "modal_dialog_content" | "modal_dialog_content/body_text" | "modal_dialog_content/button_wrapper" | "modal_dialog_content/button_wrapper/buttons" | "modal_dialog_content/button_wrapper/buttons/left" | "modal_dialog_content/button_wrapper/buttons/padding" | "modal_dialog_content/button_wrapper/buttons/right" | "modal_dialog_frame" | "modal_dialog_frame/title" | "modal_dialog_frame/close" | "modal_dialog_frame/black_tint_image" | "modal_dialog_frame/black_tint_image/content" | "ad_modal_dialog"; -export type Authentication = "nothing" | "tts_control" | "split_button_panel" | "split_button_panel/buttons" | "split_button_panel/buttons/a" | "split_button_panel/buttons/paddding" | "split_button_panel/buttons/b" | "vertical_split_button_panel" | "fixed_width_wrapper" | "fixed_width_wrapper/content" | "sign_in_button" | "download_button" | "smooth_label" | "smooth_bound_label" | "title_label" | "eula_hyperlink" | "accept_eula_button" | "eula_content" | "eula_content/prompt_wrapper" | "eula_content/prompt_wrapper/border" | "eula_content/prompt_wrapper/prompt_text" | "eula_content/padding" | "eula_content/buttons" | "eula" | "version" | "version/label" | "version/label_background" | "view_terms_button" | "privacy_policy_button" | "agree_panel" | "agree_panel/checkbox_control" | "agree_panel/i_agree_label" | "term_item" | "term_item/item" | "terms_and_conditions_panel" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "confirmation_panel" | "confirmation_panel/confirm_button" | "scroll_stack_panel" | "scroll_stack_panel/border" | "scroll_stack_panel/terms" | "purchase_confirm_content" | "purchase_confirm_content/header_padding" | "purchase_confirm_content/panel_wrap" | "purchase_confirm_content/panel_wrap/scrolling_panel" | "purchase_confirm_content/terms_and_conditions_panel" | "purchase_confirm_content/button_padding" | "purchase_confirm_content/confirmation_panel" | "purchase_confirm_content/padding" | "purchase_prompt_content" | "purchase_prompt_content/prompt_wrap" | "purchase_prompt_content/prompt_wrap/border" | "purchase_prompt_content/prompt_wrap/prompt" | "purchase_prompt_content/purchase_wrap_centering_container" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle" | "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout" | "purchase_prompt" | "purchase_confirm" | "purchase_panel" | "purchase_panel/prompt" | "purchase_panel/confirm" | "title_panel" | "title_panel/title_label_wrapper" | "hyperlink_panel" | "hyperlink_panel/link_stack" | "hyperlink_panel/link_stack/link1" | "hyperlink_panel/link_stack/link2" | "hyperlink_panel/link_stack/padding" | "auth_screen" | "sign_in_content" | "sign_in_content/body_text" | "sign_in_content/body_hyperlink" | "sign_in_content/sign_in_wrapper" | "sign_in_content/sign_in_wrapper/button" | "sign_in_content/download_wrapper" | "sign_in_content/download_wrapper/button" | "authentication_screen_content" | "authentication_screen_content/debug" | "authentication_screen_content/client_version" | "authentication_screen_content/client_version/version" | "authentication_screen_content/sign_in" | "authentication_screen_content/sign_in_ios" | "authentication_screen_content/pack_progress" | "authentication_screen_content/welcome" | "authentication_screen_content/demo" | "authentication_screen_content/eula" | "authentication_screen_content/purchase_panel" | "authentication_screen_content/popup_dialog_factory" | "popup_content_base" | "popup_content_base/message" | "popup_content_base/message/border" | "popup_content_base/message/text" | "popup_content_base/content" | "popup_content_base/footer_padding" | "popup_dialog" | "popup_dialog/dialog" | "trial_info_ios_additional_content" | "trial_info_ios_additional_content/dismiss" | "popup_dialog_trial_info_ios" | "student_message_panel" | "trial_info_additional_content" | "trial_info_additional_content/buttons" | "generic_welcome_additional_content" | "generic_welcome_additional_content/button_wrapper" | "generic_welcome_additional_content/button_wrapper/buttons" | "popup_dialog_trial_info" | "popup_dialog_generic_welcome" | "popup_message" | "popup_message/main_message" | "popup_message/extra_message" | "popup_message/padding" | "popup_message_student" | "popup_hyperlink" | "popup_purchase_link" | "popup_dismiss_button" | "pack_progress_content" | "pack_progress_content/top_padding" | "pack_progress_content/loading_text_panel" | "pack_progress_content/loading_text_panel/loading_text" | "pack_progress_content/loading_bar_panel" | "pack_progress_content/loading_bar_panel/loading_bar" | "pack_progress_content/loading_padding" | "pack_progress_content/skip_panel" | "pack_progress_content/skip_panel/skip_button" | "pack_progress_content/bottom_padding" | "sign_in_ios_content" | "sign_in_ios_content/body_text" | "sign_in_ios_content/body_hyperlink" | "sign_in_ios_content/signin_ios_button_panel" | "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap" | "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt" | "sign_in_ios_content/signin_ios_button_panel/buttons" | "sign_in_ios_content/signin_ios_button_panel/pad_footer" | "sign_in_ios_content/error_sign_in_panel" | "sign_in_ios_content/error_sign_in_panel/button" | "sign_in_ios_content/error_download_panel" | "sign_in_ios_content/error_download_panel/button" | "sign_in_ios_button" | "to_app_store" | "debug_panel" | "debug_panel/state_label" | "debug_panel/state_text_box" | "debug_panel/open_popup" | "debug_panel/refresh_popup" | "debug_panel/reset" | "debug_panel/toggle_ios" | "authentication_popup_link_button" | "authentication_popup_link_button/top_padding" | "authentication_popup_link_button/link_button" | "authentication_popup_contents" | "authentication_popup_contents/initial_padding" | "authentication_popup_contents/body" | "authentication_popup_contents/learn_more_link" | "authentication_popup_contents/link2" | "authentication_popup_contents/end_padding" | "resizeable_scrolling_panel" | "authentication_popup_content_panel" | "authentication_popup_button" | "authentication_popup_one_button" | "authentication_popup_one_button/button" | "authentication_popup_two_buttons" | "authentication_popup_two_buttons/first_button" | "authentication_popup_two_buttons/button_padding" | "authentication_popup_two_buttons/second_button" | "authentication_popup_lower_button_panel" | "authentication_popup_lower_button_panel/one_button" | "authentication_popup_lower_button_panel/two_buttons" | "authentication_popup"; -export type AutoSaveInfo = "auto_save" | "accept_label" | "accept_label/button_label" | "accept_button" | "main_panel" | "main_panel/common_panel" | "main_panel/title_label" | "main_panel/message_label" | "main_panel/save_icon" | "main_panel/a" | "main_panel/gamepad_helpers" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "auto_save_info_screen" | "auto_save_info_screen_content" | "auto_save_info_screen_content/root_panel" | "auto_save_info_screen_content/root_panel/main_panel"; -export type Beacon = "selected_item_details" | "beacon_panel" | "beacon_panel/container_gamepad_helpers" | "beacon_panel/selected_item_details_factory" | "beacon_panel/item_lock_notification_factory" | "beacon_panel/root_panel" | "beacon_panel/root_panel/common_panel" | "beacon_panel/root_panel/beacon_inventory" | "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel" | "beacon_panel/root_panel/beacon_inventory/payment_panel" | "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half" | "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template" | "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button" | "beacon_panel/root_panel/beacon_inventory/gamepad_cursor" | "beacon_panel/flying_item_renderer" | "inventory_slot_button" | "hotbar_slot_button" | "image_atlas" | "pyramid_image" | "pyramid_panel" | "pyramid_panel/level1" | "pyramid_panel/level2" | "pyramid_panel/level3" | "pyramid_panel/level4" | "item_seperator" | "item_renderer" | "usable_items_panel" | "usable_items_panel/netherite" | "usable_items_panel/item_seperator_0" | "usable_items_panel/emerald" | "usable_items_panel/item_seperator_1" | "usable_items_panel/diamond" | "usable_items_panel/item_seperator_2" | "usable_items_panel/gold" | "usable_items_panel/item_seperator_3" | "usable_items_panel/iron" | "base_image" | "hover_text" | "hover_state" | "hover_state/hover_text" | "button_unchecked_default" | "button_unchecked_hover" | "button_unchecked_hover/hover_text" | "button_checked_hover" | "button_checked_hover/hover_text" | "button_locked" | "button_locked_hover" | "button_locked_hover/hover_text" | "button_checked" | "toggle_button" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/pressed" | "active_button" | "inactive_button" | "inactive_button/default" | "inactive_button/hover" | "selected_button" | "selected_button/default" | "selected_button/hover" | "secondary_effect_base" | "speed_secondary" | "haste_secondary" | "resist_secondary" | "jump_secondary" | "strength_secondary" | "image_template" | "image_template/base_image" | "secondary_effect_images" | "secondary_effect_images/speed_secondary" | "secondary_effect_images/haste_secondary" | "secondary_effect_images/resist_secondary" | "secondary_effect_images/jump_secondary" | "secondary_effect_images/strength_secondary" | "toggle_template" | "toggle_template/toggle_button" | "button_template" | "button_template/active_button" | "button_template/inactive_button" | "button_template/image_template" | "panel_template" | "button_panel" | "button_panel/speed_panel" | "button_panel/speed_panel/toggle_template" | "button_panel/haste_panel" | "button_panel/resist_panel" | "button_panel/jump_panel" | "button_panel/strength_panel" | "button_panel/regen_panel" | "button_panel/extra_panel" | "payment_panel" | "payment_panel/confirm_panel" | "payment_panel/cancel_panel" | "payment_panel/ingredient_item" | "payment_panel/usable_items_panel" | "beacon_label" | "beacon_inner_panel" | "beacon_inner_panel/button_panel" | "beacon_inner_panel/pyramid_panel" | "beacon_inner_panel/middle_strip" | "beacon_inner_panel/primary_power_label" | "beacon_inner_panel/secondary_power_label" | "beacon_screen"; -export type BeaconPocket = "generic_label" | "panel_outline" | "dark_bg" | "background_image" | "item_seperator" | "item_renderer" | "usable_items_panel" | "usable_items_panel/netherite" | "usable_items_panel/item_seperator_0" | "usable_items_panel/emerald" | "usable_items_panel/item_seperator_1" | "usable_items_panel/diamond" | "usable_items_panel/item_seperator_2" | "usable_items_panel/gold" | "usable_items_panel/item_seperator_3" | "usable_items_panel/iron" | "pyramid_image" | "pyramid_panel" | "pyramid_panel/pyramid_image" | "background_panel" | "beacon_background" | "beacon_background/middle_strip" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "highlight_hover_square" | "highlight_hover_square/highlight_square" | "button_unchecked_default" | "button_unchecked_hover" | "button_unchecked_hover/highlight_hover_square" | "button_checked" | "button_checked_hover" | "button_checked_hover/highlight_hover_square" | "button_locked" | "button_locked_hover" | "button_locked_hover/highlight_hover_square" | "toggle_button" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/hover/highlight_hover_square" | "base_button/pressed" | "active_button" | "inactive_button_image" | "inactive_button" | "inactive_button/default" | "inactive_button/hover" | "inactive_button/hover/highlight_hover_square" | "selected_button_image" | "selected_button" | "selected_button/default" | "selected_button/hover" | "selected_button/hover/highlight_hover_square" | "secondary_effect_base" | "speed_secondary" | "haste_secondary" | "resist_secondary" | "jump_secondary" | "strength_secondary" | "secondary_effect_images" | "secondary_effect_images/speed_secondary" | "secondary_effect_images/haste_secondary" | "secondary_effect_images/resist_secondary" | "secondary_effect_images/jump_secondary" | "secondary_effect_images/strength_secondary" | "base_image" | "image_template" | "image_template/base_image" | "toggle_template" | "toggle_template/toggle_button" | "button_template" | "button_template/active_button" | "button_template/inactive_button" | "button_template/image_template" | "panel_template" | "beacon_power_label" | "beacon_power_label/label" | "beacon_sub_panel" | "beacon_button_left_panel" | "beacon_button_left_panel/primary_power_label" | "beacon_button_left_panel/panel" | "beacon_button_left_panel/panel/pyramids_and_buttons" | "beacon_button_left_panel/panel/pyramids_and_buttons/level1" | "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/level2" | "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel" | "beacon_button_left_panel/panel/pyramids_and_buttons/level3" | "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel" | "beacon_button_right_panel" | "beacon_button_right_panel/secondary_power_label" | "beacon_button_right_panel/panel" | "beacon_button_right_panel/panel/buttons_and_pyramid" | "beacon_button_right_panel/panel/buttons_and_pyramid/level4" | "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel" | "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel" | "beacon_buttons_panel" | "beacon_buttons_panel/beacon_background" | "beacon_buttons_panel/left_panel" | "beacon_buttons_panel/right_panel" | "confirm_panel" | "confirm_panel/ingredient_item" | "confirm_panel/confirm_panel" | "confirm_panel/cancel_panel" | "beacon_payment_panel" | "beacon_payment_panel/usable_items_panel" | "beacon_payment_panel/pad" | "beacon_payment_panel/confirm_panel" | "beacon_contents_panel" | "beacon_contents_panel/fill1" | "beacon_contents_panel/beacon_buttons_panel" | "beacon_contents_panel/pad1" | "beacon_contents_panel/beacon_payment_panel" | "beacon_contents_panel/fill2" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_beacon_panel" | "inventory_and_beacon_panel/inventory_half_screen" | "inventory_and_beacon_panel/inventory_half_screen/inventory_content" | "inventory_and_beacon_panel/beacon_half_screen" | "inventory_and_beacon_panel/beacon_half_screen/beacon_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_beacon_panel" | "beacon_panel" | "beacon_panel/bg" | "beacon_panel/root_panel" | "beacon_panel/header_and_content_stack_panel" | "beacon_panel/container_gamepad_helpers" | "beacon_panel/inventory_selected_icon_button" | "beacon_panel/hold_icon" | "beacon_panel/selected_item_details_factory" | "beacon_panel/item_lock_notification_factory" | "beacon_panel/flying_item_renderer"; -export type BlastFurnace = "blast_furnace_screen"; -export type Book = "screenshot" | "screenshot_frame" | "screenshot_frame/caption_edit" | "photo_corner" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl" | "page_caption" | "page_photo" | "page_photo/screenshot" | "page_photo/screenshot_frame" | "page_photo/photo_corner_bl" | "page_photo/photo_corner_br" | "page_photo/photo_corner_tl" | "page_photo/photo_corner_tr" | "pick_item" | "pick_item/photo" | "pick_item/button" | "pick_item_inventory" | "pick_item_inventory/photo" | "pick_item_inventory/button" | "header" | "text_centering_panel_inventory" | "text_centering_panel_inventory/inventory_header" | "text_centering_panel_portfolio" | "text_centering_panel_portfolio/portfolio_header" | "pick_scrolling_content" | "pick_scrolling_content/inventory_header" | "pick_scrolling_content/inventory_grid" | "pick_scrolling_content/portfolio_header" | "pick_scrolling_content/portfolio_grid" | "pick_panel" | "pick_panel/scroll" | "pick_panel/close_button" | "blank" | "book_background" | "book_spine_image" | "page_crease_left_image" | "page_crease_right_image" | "page_edge_left_image" | "page_edge_right_image" | "text_edit_hover_image" | "base_button" | "base_button/default" | "base_button/hover" | "base_button/pressed" | "book_buttons_panel" | "book_buttons_panel/sign_export_buttons" | "book_buttons_panel/sign_export_buttons/left_spacer" | "book_buttons_panel/sign_export_buttons/sign_button" | "book_buttons_panel/sign_export_buttons/export_button" | "book_buttons_panel/sign_export_buttons/right_spacer" | "book_buttons_panel/im_content_button" | "cover_buttons_stack_panel_holder" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1" | "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button" | "close_button_default" | "close_button_hover" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "page_text_edit" | "page_text" | "page_number_label" | "padded_button" | "padded_button/button" | "page_buttons_panel" | "page_buttons_panel/swap_page_left" | "page_buttons_panel/insert_text_page" | "page_buttons_panel/insert_photo_page" | "page_buttons_panel/delete_page" | "page_buttons_panel/swap_page_right" | "page_content_panel" | "page_content_panel/page_text" | "page_content_panel/page_photo" | "page_content_panel/page_number_label" | "page_content_panel/page_buttons_panel" | "page_content_panel/edit_page" | "title_label" | "title_text_box" | "author_label" | "author_text_box" | "author_stack_panel" | "author_stack_panel/author_label_panel" | "author_stack_panel/author_label_panel/author_label" | "author_stack_panel/author_text_panel" | "author_stack_panel/author_text_panel/author_text_box" | "warning_label" | "cover_content_panel" | "cover_content_panel/title_label" | "cover_content_panel/title_text_box" | "cover_content_panel/author_stack_panel" | "cover_content_panel/warning_label" | "cover_and_buttons_panel" | "cover_and_buttons_panel/cover_panel" | "cover_and_buttons_panel/cover_panel/cover_content_panel" | "cover_and_buttons_panel/cover_panel/book_background" | "cover_and_buttons_panel/cover_panel/close_button" | "cover_and_buttons_panel/cover_buttons_stack_panel_holder" | "page_panel" | "page_panel/page_content_panel" | "book_grid" | "book_grid/page_panel_left" | "book_grid/page_panel_right" | "book_and_buttons_panel" | "book_and_buttons_panel/book_panel" | "book_and_buttons_panel/book_panel/book_grid" | "book_and_buttons_panel/book_panel/book_background" | "book_and_buttons_panel/book_panel/book_spine_image" | "book_and_buttons_panel/book_panel/close_button" | "book_and_buttons_panel/book_panel/prev_button" | "book_and_buttons_panel/book_panel/next_button" | "book_and_buttons_panel/book_buttons_panel" | "root_panel" | "book_screen" | "book_screen_content" | "book_screen_content/root_panel" | "book_screen_content/root_panel/book_and_buttons_panel" | "book_screen_content/root_panel/cover_and_buttons_panel" | "book_screen_content/root_panel/pick_panel" | "book_screen_content/root_panel/export_progress" | "book_screen_content/root_panel/gamepad_helper_a" | "book_screen_content/root_panel/gamepad_helper_b"; -export type BrewingStand = "brewing_pipes" | "brewing_fuel_pipes" | "bottle_empty_image" | "fuel_empty_image" | "bubbles_empty_image" | "bubbles_full_image" | "brewing_arrow_empty_image" | "brewing_arrow_full_image" | "brewing_fuel_bar_empty_image" | "brewing_fuel_bar_full_image" | "brewing_label" | "brewingstand_output_item" | "brewing_output_slots" | "brewing_output_slots/left_offset" | "brewing_output_slots/left_offset/output_grid_item1" | "brewing_output_slots/output_grid_item2" | "brewing_output_slots/right_offset" | "brewing_output_slots/right_offset/output_grid_item3" | "brewing_input_slot" | "brewing_input_slot/input_grid_item" | "brewing_fuel_slot" | "brewing_fuel_slot/fuel_grid_item" | "brewing_panel_top_half" | "brewing_panel_top_half/brewing_label" | "brewing_panel_top_half/brewing_stand_pictogram" | "brewing_stand_pictogram" | "brewing_stand_pictogram/brewing_input_slot" | "brewing_stand_pictogram/brewing_output_slots" | "brewing_stand_pictogram/brewing_fuel_slot" | "brewing_stand_pictogram/brewing_arrow_empty_image" | "brewing_stand_pictogram/brewing_arrow_full_image" | "brewing_stand_pictogram/brewing_fuel_bar_empty_image" | "brewing_stand_pictogram/brewing_fuel_bar_full_image" | "brewing_stand_pictogram/bubbles_empty_image" | "brewing_stand_pictogram/bubbles_full_image" | "brewing_stand_pictogram/brewing_fuel_pipes" | "brewing_stand_pictogram/brewing_pipes" | "brewing_stand_panel" | "brewing_stand_panel/container_gamepad_helpers" | "brewing_stand_panel/selected_item_details_factory" | "brewing_stand_panel/item_lock_notification_factory" | "brewing_stand_panel/root_panel" | "brewing_stand_panel/root_panel/common_panel" | "brewing_stand_panel/root_panel/furnace_screen_inventory" | "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half" | "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label" | "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid" | "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button" | "brewing_stand_panel/root_panel/inventory_selected_icon_button" | "brewing_stand_panel/root_panel/gamepad_cursor" | "brewing_stand_panel/flying_item_renderer" | "brewing_stand_screen"; -export type BrewingStandPocket = "generic_label" | "brewing_fuel_pipes" | "bubbles_empty_image" | "bubbles_full_image" | "bottle_empty_image" | "background_image" | "output_slot" | "brewing_input_slot" | "brewing_input_slot/input_slot" | "brewing_fuel_slot" | "brewing_fuel_slot/fuel_slot" | "brewing_out_slots" | "brewing_out_slots/left_offset" | "brewing_out_slots/left_offset/output_slot1" | "brewing_out_slots/middle" | "brewing_out_slots/middle/output_slot2" | "brewing_out_slots/right_offset" | "brewing_out_slots/right_offset/output_slot3" | "slots_panel" | "slots_panel/brewing_input_slot" | "slots_panel/brewing_fuel_slot" | "slots_panel/brewing_out_slots" | "slots_panel/brewing_arrow_panel" | "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image" | "slots_panel/brewing_arrow_panel/brewing_arrow_full_image" | "slots_panel/brewing_bubbles_panel" | "slots_panel/brewing_bubbles_panel/bubbles_empty_image" | "slots_panel/brewing_bubbles_panel/bubbles_full_image" | "slots_panel/brewing_fuel_bar_panel" | "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image" | "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image" | "slots_panel/brewing_fuel_pipes" | "slots_panel/brewing_pipes" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "brewing_stand_contents_panel" | "brewing_stand_contents_panel/slots_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_brewing_panel" | "inventory_and_brewing_panel/inventory_half_screen" | "inventory_and_brewing_panel/inventory_half_screen/inventory_content" | "inventory_and_brewing_panel/brewing_half_screen" | "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_brewing_panel" | "brewing_stand_panel" | "brewing_stand_panel/bg" | "brewing_stand_panel/root_panel" | "brewing_stand_panel/header_and_content_stack_panel" | "brewing_stand_panel/container_gamepad_helpers" | "brewing_stand_panel/inventory_selected_icon_button" | "brewing_stand_panel/hold_icon" | "brewing_stand_panel/selected_item_details_factory" | "brewing_stand_panel/item_lock_notification_factory" | "brewing_stand_panel/flying_item_renderer"; -export type BundlePurchaseWarning = "x_padding" | "y_padding" | "bundle_grid_item" | "bundle_grid_item/banner_image" | "bundle_grid_item/content" | "bundle_grid_item/game_pad_focus_border" | "is_focused" | "is_focused/image_border" | "is_focused/banner_border" | "focus_border" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "grid_item_content" | "grid_item_content/image_border" | "grid_item_content/image_border/bundle_thumbnail" | "grid_item_content/padding_0" | "grid_item_content/bundle_title_panel" | "grid_item_content/bundle_title_panel/bundle_title" | "bundle_grid" | "side_contents" | "side_contents/title_alignment_hack" | "side_contents/title_alignment_hack/side_section_title" | "side_contents/padding_y_0" | "side_contents/grid_input_panel" | "side_contents/grid_input_panel/grid_scroll" | "dialog_content" | "dialog_content/grid_stack" | "dialog_content/grid_stack/left_grid_scroll" | "dialog_content/grid_stack/padding_x_divider" | "dialog_content/grid_stack/right_grid_scroll" | "purchase_button_panel" | "screen_dialog" | "bundle_purchase_warning_screen_content" | "bundle_purchase_warning_screen_content/dialog" | "background" | "bundle_purchase_warning_screen"; -export type Cartography = "title_label" | "arrow_icon" | "plus_sign_icon" | "text_edit_control" | "cartography_output_slot_button" | "cartography_item_slot" | "cartography_item_slot/container_item" | "map_image" | "map_image_panel" | "map_image_panel/none_map" | "map_image_panel/copy_map" | "map_image_panel/rename_map" | "map_image_panel/map" | "map_image_panel/locator_map" | "map_image_panel/zoom_map" | "map_image_panel/lock_map" | "text_box_panel" | "text_box_panel/map_name_label" | "text_box_panel/text_edit_control" | "input_slots" | "input_slots/input_item_slot" | "input_slots/plus_centerer" | "input_slots/plus_centerer/plus_sign_icon" | "input_slots/additional_item_slot" | "output_description_label" | "main_panel" | "main_panel/input_slots" | "main_panel/arrow_icon" | "main_panel/map_image_panel" | "main_panel/arrow_icon2" | "main_panel/result_item_slot" | "top_half_panel" | "top_half_panel/padding1" | "top_half_panel/title_panel" | "top_half_panel/title_panel/title_label" | "top_half_panel/padding2" | "top_half_panel/text_box_panel" | "top_half_panel/padding3" | "top_half_panel/padding4" | "top_half_panel/main_panel_wrap" | "top_half_panel/main_panel_wrap/main_panel" | "top_half_panel/output_description_label" | "top_half_panel/padding5" | "cartography_panel" | "cartography_panel/container_gamepad_helpers" | "cartography_panel/selected_item_details_factory" | "cartography_panel/item_lock_notification_factory" | "cartography_panel/root_panel" | "cartography_panel/root_panel/common_panel" | "cartography_panel/root_panel/cartography_screen_inventory" | "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel" | "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label" | "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid" | "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button" | "cartography_panel/root_panel/inventory_selected_icon_button" | "cartography_panel/root_panel/gamepad_cursor" | "cartography_panel/root_panel/tab_close_and_help_button" | "cartography_panel/flying_item_renderer" | "cartography_screen"; -export type CartographyPocket = "vertical_arrow_icon" | "chest_item_renderer" | "cartography_item_renderer" | "input_item_slot" | "additional_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/cartography_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_cartography" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_cartography" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots" | "input_slots/input_item_slot" | "input_slots/plus_centerer" | "input_slots/plus_centerer/plus_sign_icon" | "input_slots/additional_item_slot" | "cartography_content_stack_panel" | "cartography_content_stack_panel/label_holder" | "cartography_content_stack_panel/label_holder/cartography_label" | "cartography_content_stack_panel/padding_1" | "cartography_content_stack_panel/panel" | "cartography_content_stack_panel/panel/input_slots" | "cartography_content_stack_panel/padding_2" | "cartography_content_stack_panel/map_centerer" | "cartography_content_stack_panel/map_centerer/map_image_panel" | "cartography_content_stack_panel/description_centerer" | "cartography_content_stack_panel/description_centerer/output_description_label" | "cartography_content_stack_panel/padding_3" | "cartography_content_stack_panel/arrow_centerer" | "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon" | "cartography_content_stack_panel/padding_4" | "cartography_content_stack_panel/result_centerer" | "cartography_content_stack_panel/result_centerer/result_item_slot" | "cartography_content_stack_panel/filling_panel" | "cartography_content_stack_panel/text_box_panel" | "inventory_panel" | "inventory_panel/inventory_title_label_centerer" | "inventory_panel/inventory_title_label_centerer/inventory_title_label" | "inventory_panel/inventory_scroll_panel" | "inventory_scroll_panel" | "pattern_button" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_panel" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "cartography_panel" | "cartography_panel/pocket_hotbar_and_content_panels" | "cartography_panel/container_gamepad_helpers" | "cartography_panel/selected_item_details_factory" | "cartography_panel/item_lock_notification_factory" | "cartography_panel/inventory_selected_icon_button" | "cartography_panel/inventory_take_progress_icon_button" | "cartography_panel/flying_item_renderer"; -export type Chalkboard = "text_edit_control" | "locked_toggle" | "locked_label" | "lock_control" | "lock_control/toggle" | "lock_control/pad_wrap" | "lock_control/pad_wrap/label" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "chalkboard_screen" | "chalkboard_root" | "chalkboard_content" | "chalkboard_content/gamepad_helpers" | "chalkboard_content/edit_box" | "chalkboard_content/locked_toggle"; -export type Chat = "down_arrow_image" | "keyboard_image" | "copy_image" | "paste_image" | "gear_image" | "send_image" | "send_panel" | "send_panel/send_image_panel" | "send_panel/send_image_panel/send_image" | "send_panel/gamepad_x_button" | "send_panel/gamepad_x_button/side_padding" | "send_panel/gamepad_x_button/gamepad_x_button_image" | "send_panel/gamepad_x_button/gamepad_x_button_image/icon" | "keyboard_image_panel" | "keyboard_image_panel/keyboard_image" | "keyboard_image_panel/down_arrow_image" | "small_button" | "keyboard_button" | "chat_settings_button" | "send_button" | "messages_text" | "messages_text/text" | "message_tts_wrapper" | "messages_stack_panel" | "messages_scrolling_panel" | "text_edit_box" | "commands_background" | "click_autocomplete_is_focused" | "auto_complete_panel_contents_with_item" | "auto_complete_panel_contents_with_item/auto_complete_item_renderer" | "auto_complete_panel_contents_with_item/text" | "auto_complete_panel_contents_with_item/autocomplete_button" | "auto_complete_panel_contents_with_item/autocomplete_button/default" | "auto_complete_panel_contents_with_item/autocomplete_button/hover" | "auto_complete_panel_contents_with_item/autocomplete_button/pressed" | "auto_complete_panel" | "auto_complete_panel/panel" | "auto_complete_panel/panel/auto_complete_grid" | "commands_panel" | "commands_panel/auto_complete_panel" | "chat_bottom_panel" | "chat_bottom_panel/keyboard_button" | "chat_bottom_panel/host_main_button" | "chat_bottom_panel/chat_settings" | "chat_bottom_panel/text_box" | "chat_bottom_panel/send_button" | "title_text" | "title_text/title_panel" | "back_content_panel" | "back_content_panel/back_button" | "back_content_panel/gamepad_back_helper" | "back_content_panel/gamepad_back_helper/gamepad_helper_button" | "coordinate_dropdown_content" | "coordinate_dropdown_content/top_padding" | "coordinate_dropdown_content/my_position" | "coordinate_dropdown_content/block_position" | "coordinate_dropdown_content/bottom_padding" | "coordinate_dropdown" | "popup_toast" | "copy_coordinate_button" | "paste_button" | "chat_header" | "chat_header/title_panel" | "chat_header/title_panel/back_button_content_panel" | "chat_header/title_panel/title" | "chat_header/title_panel/popup_dialog_factory" | "chat_header/title_panel/chat_header_content_area" | "chat_header/title_panel/chat_header_content_area/coordinate_dropdown" | "chat_header/title_panel/chat_header_content_area/coordinates_panel" | "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image" | "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text" | "chat_header/title_panel/chat_header_content_area/copy_coordinate_button" | "chat_header/title_panel/chat_header_content_area/icon" | "chat_header/title_panel/chat_header_content_area/paste_button" | "chat_screen" | "chat_screen_content" | "chat_screen_content/messages_panel" | "chat_screen_content/chat_bottom_panel" | "chat_screen_content/chat_top_panel" | "chat_screen_content/autocomplete_commands_panel" | "chat_screen_content/host_main_panel" | "chat_screen_content/popup_factory" | "chat_background"; -export type ChatSettings = "mute_all_toggle" | "mute_emote_chat_toggle" | "chat_tts_toggle" | "reset_button" | "typeface_dropdown_content" | "typeface_dropdown_content/top_padding" | "typeface_dropdown_content/mojangles" | "typeface_dropdown_content/noto_sans" | "typeface_dropdown_content/bottom_padding" | "typeface_dropdown" | "chat_color_dropdown_content" | "chat_color_dropdown_content/top_padding" | "chat_color_dropdown_content/0" | "chat_color_dropdown_content/1" | "chat_color_dropdown_content/2" | "chat_color_dropdown_content/3" | "chat_color_dropdown_content/4" | "chat_color_dropdown_content/5" | "chat_color_dropdown_content/6" | "chat_color_dropdown_content/bottom_padding" | "colors_dropdown_base" | "chat_color_dropdown" | "mentions_color_dropdown" | "font_size_slider" | "line_spacing_slider" | "colored_icon_panel" | "colored_icon_panel/icon" | "colored_icon_panel/icon_overlay" | "paintbrush" | "line_break" | "line_break/line_break_image" | "chat_settings_scrolling_content" | "chat_settings_scrolling_content/chat_settings_content_area" | "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle" | "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape" | "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown" | "chat_settings_scrolling_content/chat_settings_content_area/font_size" | "chat_settings_scrolling_content/chat_settings_content_area/line_spacing" | "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors" | "chat_settings_scrolling_content/chat_settings_content_area/chat_color" | "chat_settings_scrolling_content/chat_settings_content_area/mentions_color" | "chat_settings_scrolling_content/chat_settings_content_area/reset_button" | "chat_setting_scrolling_panel" | "chat_settings_popup" | "popup_factory"; -export type Chest = "chest_label" | "chest_grid_item" | "small_chest_grid" | "large_chest_grid" | "small_chest_panel_top_half" | "small_chest_panel_top_half/chest_label" | "small_chest_panel_top_half/small_chest_grid" | "large_chest_panel_top_half" | "large_chest_panel_top_half/chest_label" | "large_chest_panel_top_half/large_chest_grid" | "small_chest_panel" | "small_chest_panel/container_gamepad_helpers" | "small_chest_panel/selected_item_details_factory" | "small_chest_panel/item_lock_notification_factory" | "small_chest_panel/root_panel" | "small_chest_panel/root_panel/common_panel" | "small_chest_panel/root_panel/chest_panel" | "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half" | "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label" | "small_chest_panel/root_panel/chest_panel/hotbar_grid" | "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button" | "small_chest_panel/root_panel/chest_panel/flying_item_renderer" | "small_chest_panel/root_panel/inventory_selected_icon_button" | "small_chest_panel/root_panel/gamepad_cursor" | "selected_item_details" | "large_chest_panel" | "large_chest_panel/container_gamepad_helpers" | "large_chest_panel/selected_item_details_factory" | "large_chest_panel/item_lock_notification_factory" | "large_chest_panel/root_panel" | "large_chest_panel/root_panel/common_panel" | "large_chest_panel/root_panel/chest_panel" | "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half" | "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label" | "large_chest_panel/root_panel/chest_panel/hotbar_grid" | "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button" | "large_chest_panel/root_panel/chest_panel/flying_item_renderer" | "large_chest_panel/root_panel/inventory_selected_icon_button" | "large_chest_panel/root_panel/gamepad_cursor" | "ender_chest_panel" | "shulker_box_panel" | "barrel_panel" | "small_chest_screen" | "large_chest_screen" | "ender_chest_screen" | "shulker_box_screen" | "barrel_screen"; -export type ChooseRealm = "realm_screenshot" | "realm_screenshot/picture" | "realms_scroll_content" | "realms_scroll_content/scrolling_panel" | "realms_scroll_panel" | "realms_scroll_panel/realms_stack_panel" | "realms_scroll_panel/realms_stack_panel/realms_world_item_grid" | "realms_scroll_panel/realms_stack_panel/padding_0" | "realms_scroll_panel/realms_stack_panel/add_realm_button" | "realms_scroll_panel/realms_stack_panel/ten_player_button" | "realms_scroll_panel/realms_stack_panel/padding_1" | "realms_scroll_panel/realms_stack_panel/two_player_button" | "realms_world_item_grid" | "realms_world_item" | "realms_world_item/realms_world_item_button" | "realms_world_item_button" | "add_realm_button" | "ten_player_button" | "two_player_button" | "realms_world_content_panel" | "realms_world_content_panel/realm_screenshot" | "realms_world_content_panel/padding" | "realms_world_content_panel/realms_world_content_text_area_panel" | "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel" | "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header" | "realms_world_content_panel/realms_world_content_status_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon" | "main_panel" | "main_panel/progress_loading_bars" | "main_panel/realms_scroll_content" | "slots_scroll_panel" | "slots_scroll_panel/slots_stack_panel" | "slots_scroll_panel/slots_stack_panel/padding_0" | "slots_scroll_panel/slots_stack_panel/choose_slot_text" | "slots_scroll_panel/slots_stack_panel/padding_1" | "slots_scroll_panel/slots_stack_panel/slots_grid" | "slots_grid" | "slots_grid/slot_1" | "slots_grid/padding_0" | "slots_grid/slot_2" | "slots_grid/padding_1" | "slots_grid/slot_3" | "slot_content_panel" | "slot_content_panel/world_slot_top" | "slot_content_panel/world_slot_top/plus_image" | "slot_content_panel/world_slot_top/world_thumbnail" | "slot_content_panel/world_slot_bottom" | "slot_content_panel/world_slot_bottom/white_line_hover" | "slot_content_panel/world_slot_bottom/world_text_panel" | "slot_content_panel/world_slot_bottom/world_text_panel/background_grey" | "slot_content_panel/world_slot_bottom/world_text_panel/background_green" | "slot_content_panel/world_slot_bottom/world_text_panel/world_text" | "slot_panel" | "slot_panel/slots_scroll_content" | "slot_panel/slots_scroll_content/scrolling_panel" | "choose_realm_screen" | "choose_realm_screen_content" | "choose_realm_screen_content/realm_dialog" | "choose_realm_screen_content/slot_dialog" | "background"; -export type CoinPurchase = "black_image" | "banner_fill" | "coins_stack_panel" | "coins_stack_panel/coin" | "coins_stack_panel/coin_padding" | "coins_stack_panel/text_padding" | "coins_stack_panel/text_padding/coins_without_bonus" | "call_out_coins_stack_panel" | "call_out_coins_stack_panel/coin" | "call_out_coins_stack_panel/coin_padding" | "call_out_coins_stack_panel/text_padding" | "call_out_coins_stack_panel/text_padding/coins_without_bonus" | "button_content" | "button_content/bonus_coins_stack" | "button_content/call_out_background" | "button_content/call_out_background/bevel" | "call_out_button_content" | "call_out_button_content/call_out_header" | "call_out_button_content/call_out_bonus_coins_stack" | "call_out_button_content/call_out_background" | "call_out_button_content/call_out_background/call_out_border" | "call_out_header" | "call_out_header/call_out_banner" | "call_out_header/call_out_label" | "bonus_coins_stack" | "bonus_coins_stack/image_padding" | "bonus_coins_stack/image_panel" | "bonus_coins_stack/image_panel/image" | "bonus_coins_stack/non_bonus_padding_0" | "bonus_coins_stack/price_panel" | "bonus_coins_stack/price_panel/coins_stack_panel" | "bonus_coins_stack/plus_label" | "bonus_coins_stack/plus_label/plus_label" | "bonus_coins_stack/non_bonus_padding_1" | "bonus_coins_stack/bonus_label_panel" | "bonus_coins_stack/bonus_label_panel/bonus_label" | "bonus_coins_stack/padding_0" | "bonus_coins_stack/bonus_price_panel" | "bonus_coins_stack/bonus_price_panel/coins_stack_panel" | "bonus_coins_stack/padding_1" | "bonus_coins_stack/currency_panel" | "bonus_coins_stack/currency_panel/currency_price_panel" | "bonus_coins_stack/currency_panel/currency_price_panel/price" | "bonus_coins_stack/currency_panel/currency_price_panel/debug_price" | "bonus_coins_stack/padding_2" | "call_out_bonus_coins_stack" | "call_out_bonus_coins_stack/image_padding" | "call_out_bonus_coins_stack/image_panel" | "call_out_bonus_coins_stack/image_panel/image" | "call_out_bonus_coins_stack/non_bonus_padding_0" | "call_out_bonus_coins_stack/price_panel" | "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel" | "call_out_bonus_coins_stack/plus_label" | "call_out_bonus_coins_stack/plus_label/plus_label" | "call_out_bonus_coins_stack/non_bonus_padding" | "call_out_bonus_coins_stack/bonus_label_panel" | "call_out_bonus_coins_stack/bonus_label_panel/bonus_label" | "call_out_bonus_coins_stack/padding_0" | "call_out_bonus_coins_stack/bonus_coin_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin" | "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding" | "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel" | "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins" | "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1" | "call_out_bonus_coins_stack/padding_1" | "call_out_bonus_coins_stack/currency_panel" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price" | "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price" | "call_out_bonus_coins_stack/padding_2" | "price" | "offer_panel" | "call_out_offer_panel" | "offer_item" | "offer_item/offer_panel" | "offer_item/call_out_offer_panel" | "offer_grid_item" | "offer_grid_item/offer_item" | "not_enough_coins" | "faq_button" | "divider_panel" | "divider_panel/divider" | "coin_purchase_panel" | "coin_purchase_panel/padding_0" | "coin_purchase_panel/not_enough_coins_panel" | "coin_purchase_panel/not_enough_coins_panel/not_enough_coins" | "coin_purchase_panel/padding_1" | "coin_purchase_panel/coin_purchase_grid" | "coin_purchase_panel/divider_panel" | "coin_purchase_panel/faq_button" | "main_panel" | "main_panel/coin_purchase_panel" | "main_panel/loading_background" | "main_panel/progress_loading_spinner" | "main_panel/no_offers_panel" | "background" | "bundle_description" | "bundle_description_left" | "bundle_description_center" | "bundle_description_right" | "bundle_coins_stack" | "bundle_coins_stack/content_panel" | "bundle_coins_stack/content_panel/text_stack" | "bundle_coins_stack/content_panel/text_stack/title_label" | "bundle_coins_stack/content_panel/text_stack/padding_1" | "bundle_coins_stack/content_panel/text_stack/description_section_factory" | "bundle_coins_stack/content_panel/thumbnail_panel" | "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail" | "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image" | "bundle_coins_stack/content_panel/padding_0" | "bundle_coins_stack/padding_0" | "bundle_coins_stack/currency_panel" | "bundle_coins_stack/currency_panel/currency_price_panel" | "bundle_coins_stack/currency_panel/currency_price_panel/price" | "bundle_coins_stack/currency_panel/currency_price_panel/debug_price" | "bundle_coins_stack/padding_2" | "bundle_button_content" | "bundle_button_content/bundle_coins_stack" | "bundle_button_content/call_out_background" | "bundle_button_content/call_out_background/bevel" | "bundle_offer_panel" | "bundle_offer_item" | "bundle_offer_item/offer_panel" | "bundle_offer_grid_item" | "bundle_offer_grid_item/offer_item" | "bundle_stack_factory" | "bundle_factory_panel" | "bundle_factory_panel/bundle_stack_factory" | "bundle_panel" | "bundle_panel/progress_loading_spinner" | "bundle_panel/loading_background" | "bundle_panel/bundle_stack_factory"; -export type CommandBlock = "plus_icon" | "paste_icon" | "plus_button" | "paste_button" | "icon_dropdown_toggle_button_state_content" | "icon_dropdown_toggle_button_state_content/icon_panel" | "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon" | "icon_dropdown_toggle_button_state_content/spacer" | "icon_dropdown_toggle_button_state_content/label_panel" | "icon_dropdown_toggle_button_state_content/label_panel/label" | "icon_dropdown_toggle_button_state_content/arrow_panel" | "icon_dropdown_toggle_button_state_content/arrow_panel/arrow" | "command_block_multiline_text_edit_box" | "command_block_text_edit_box" | "command_block_helper_stack" | "command_block_helper_stack/offset" | "command_block_helper_stack/text_" | "previous_command_block_info_stack" | "previous_command_block_info_stack/offset" | "previous_command_block_info_stack/start_label" | "previous_command_block_info_stack/offset1" | "previous_command_block_info_stack/start_label_dynamic_text" | "cancel_button" | "blocktype_dropdown_content" | "block_type_panel" | "condition_dropdown_content" | "condition_mode_panel" | "redstone_dropdown_content" | "redstone_mode_panel" | "left_scrolling_panel" | "left_scroll_panel_content" | "left_scroll_panel_content/content_stack_panel" | "left_scroll_panel_content/content_stack_panel/offset1" | "left_scroll_panel_content/content_stack_panel/offset2" | "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text" | "left_scroll_panel_content/content_stack_panel/offset3" | "left_scroll_panel_content/content_stack_panel/block_type_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset4" | "left_scroll_panel_content/content_stack_panel/condition_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset5" | "left_scroll_panel_content/content_stack_panel/redstone_mode_panel" | "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick" | "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick" | "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle" | "left_scroll_panel_content/content_stack_panel/offset_tick_delay" | "left_scroll_panel_content/content_stack_panel/option_label_tick_delay" | "left_scroll_panel_content/content_stack_panel/tick_delay_text" | "left_scroll_panel_content/content_stack_panel/offset7" | "left_scroll_panel_content/content_stack_panel/cancel" | "left_scroll_panel_content/content_stack_panel/offset8" | "left_divider_content" | "left_divider_content/left_scrolling_panel" | "right_scrolling_panel" | "right_scroll_panel_content" | "right_scroll_panel_content/command_block_commands_panel" | "right_scroll_panel_content/command_block_commands_panel/spacer1" | "right_scroll_panel_content/command_block_commands_panel/centering_panel" | "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label" | "right_scroll_panel_content/command_block_commands_panel/spacer2" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button" | "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button" | "right_scroll_panel_content/switch_warning_panel" | "right_scroll_panel_content/switch_warning_panel/switch_warning_label" | "right_scroll_panel_content/self_label" | "right_scroll_panel_content/self_label_offset" | "right_scroll_panel_content/nearest_player_label" | "right_scroll_panel_content/nearest_player_label_offset" | "right_scroll_panel_content/random_player_label" | "right_scroll_panel_content/random_player_label_offset" | "right_scroll_panel_content/all_players_label" | "right_scroll_panel_content/all_players_label_offset" | "right_scroll_panel_content/all_entities_label" | "right_scroll_panel_content/all_entities_label_offset" | "right_scroll_panel_content/nearest_label" | "right_scroll_panel_content/nearest_label_offset" | "right_scroll_panel_content/command_block_previous_output_panel" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle" | "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label" | "right_scroll_panel_content/command_block_previous_output_panel/spacer" | "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel" | "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text" | "right_scroll_panel_content/previous_block_type_text" | "right_scroll_panel_content/offset4" | "right_scroll_panel_content/previous_conditional_mode_text" | "right_scroll_panel_content/offset5" | "right_scroll_panel_content/previous_redstone_mode_text" | "divider_content" | "divider_content/left_side" | "divider_content/right_side" | "command_block_screen_content" | "command_block_screen_content/background_divider" | "command_block_screen_content/background_divider/bg_image" | "command_block_screen_content/background_divider/dialog_divider" | "command_block_screen_content/background_divider/header_buttons_stack_panel" | "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover" | "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed" | "command_block_screen_content/title" | "command_block_screen_content/content" | "command_block_screen_content/maximized_command_block_text" | "right_divider_content" | "right_divider_content/right_scrolling_panel" | "command_block_screen"; -export type ConfirmDeleteAccount = "horizontal_divider" | "image_panel" | "image_panel/image" | "header_panel" | "header_panel/image_panel" | "header_panel/padding" | "header_panel/text_panel" | "header_panel/text_panel/header_text" | "header_panel/text_panel/padding_2" | "header_panel/text_panel/header_text_2" | "dialog_content" | "dialog_content/body_content" | "dialog_content/padding" | "dialog_content/button_panel" | "dialog_content/button_panel/confirm_delete_account_button" | "dialog_content/button_panel/padding" | "dialog_content/button_panel/cancel_delete_account_button" | "confirm_checkbox" | "confirm_checkbox/check_box_wrapper" | "confirm_checkbox/check_box_wrapper/check_box" | "confirm_checkbox/padding" | "confirm_checkbox/label_wrapper" | "confirm_checkbox/label_wrapper/label" | "scrolling_panel" | "description_label_panel" | "description_label_panel/header_label_wrapper" | "description_label_panel/padding" | "description_label_panel/divider_0" | "description_label_panel/confirm_0" | "description_label_panel/divider_1" | "description_label_panel/confirm_1" | "description_label_panel/divider_2" | "description_label_panel/confirm_2" | "description_label_panel/divider_3" | "description_label_panel/confirm_3" | "confirm_delete_account_screen" | "confirm_delete_account_screen_content" | "confirm_delete_account_screen_content/root_panel" | "confirm_delete_account_screen_content/root_panel/dialog" | "screen_dialog" | "background"; -export type ContentLog = "content_log_label" | "content_log_grid_item" | "content_log_grid_item/content_log_background" | "content_log_grid_item/content_log_background/content_log_text" | "content_log_panel" | "content_log_panel/stack_panel"; -export type ContentLogHistory = "clipboard_icon" | "clipboard_icon_wrapper" | "clipboard_icon_wrapper/stack_panel" | "clipboard_icon_wrapper/stack_panel/icon_panel" | "clipboard_icon_wrapper/stack_panel/icon_panel/icon" | "clipboard_icon_wrapper/stack_panel/offset" | "clipboard_icon_wrapper/stack_panel/label_panel" | "clipboard_icon_wrapper/stack_panel/label_panel/label" | "clipboard_button" | "clear_icon" | "clear_icon_wrapper" | "clear_icon_wrapper/stack_panel" | "clear_icon_wrapper/stack_panel/icon_panel" | "clear_icon_wrapper/stack_panel/icon_panel/icon" | "clear_icon_wrapper/stack_panel/offset" | "clear_icon_wrapper/stack_panel/label_panel" | "clear_icon_wrapper/stack_panel/label_panel/label" | "clear_button" | "horizontal_button_stack_panel" | "horizontal_button_stack_panel/clipboard_button" | "horizontal_button_stack_panel/clear_button" | "content_log_message" | "content_log_message_panel" | "content_log_message_panel/content_log_message" | "content_log_message_panel_panel" | "content_log_message_panel_panel/content_log_message_panel" | "messages_stack_panel" | "messages_scrolling_panel" | "main_stack_panel" | "main_stack_panel/messages_scrolling_panel" | "content_log_history_panel" | "content_log_history_panel/content_log_history_dialog" | "content_log_history_screen"; -export type CrafterPocket = "generic_label" | "header_panel" | "header_panel/header_background" | "header_panel/title_label" | "header_area" | "header_area/x" | "header_area/inventory_header" | "header_area/container_header" | "dark_bg" | "panel_outline" | "background_panel" | "inventory_panel" | "inventory_panel/scrolling_panel" | "left_screen" | "left_screen/inventory_panel" | "crafter_input_grid" | "crafter_disabled_slot" | "crafter_disabled_slot/default" | "crafter_disabled_slot/hover" | "crafter_disabled_slot/pressed" | "cell_image" | "crafter_highlight_slot" | "crafter_container_slot_button_prototype" | "crafter_highlight_slot_panel" | "crafter_highlight_slot_panel/highlight" | "crafter_highlight_slot_panel/highlight/hover_text" | "crafter_highlight_slot_panel/white_border" | "crafter_enabled_slot_template" | "output_slot_hover_info" | "output_slot_hover_info/hover" | "output_slot_hover_info/output_slot" | "output_slot_hover_info/output_slot_border" | "output_slot_hover_info/output_count" | "panel_crafter" | "panel_crafter/item_lock_notification_factory" | "panel_crafter/root_panel" | "panel_crafter/root_panel/disabled_slot_0_button" | "panel_crafter/root_panel/disabled_slot_1_button" | "panel_crafter/root_panel/disabled_slot_2_button" | "panel_crafter/root_panel/disabled_slot_3_button" | "panel_crafter/root_panel/disabled_slot_4_button" | "panel_crafter/root_panel/disabled_slot_5_button" | "panel_crafter/root_panel/disabled_slot_6_button" | "panel_crafter/root_panel/disabled_slot_7_button" | "panel_crafter/root_panel/disabled_slot_8_button" | "panel_crafter/root_panel/redstone_screen_inventory" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon" | "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line" | "panel_crafter/root_panel/redstone_screen_inventory/crafter_output" | "panel_crafter/root_panel/red_icon" | "right_screen_background" | "right_screen" | "right_screen/right_screen_bg" | "right_screen/right_screen_bg/inventory_panel" | "panel" | "panel/container_gamepad_helpers" | "panel/header" | "panel/bg" | "panel/inventory" | "panel/container" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/gamepad_cursor" | "panel/flying_item_renderer" | "crafter"; -export type CreateWorldUpsell = "world_icon" | "realms_icon" | "dark_banner" | "grey_banner" | "checkmark" | "largex" | "realms_art_icon" | "new_world_button" | "new_realm_button" | "remove_trial_button" | "button_content" | "button_content/padding_0" | "button_content/icon_panel" | "button_content/padding_1" | "button_content/label_panel" | "realm_button_content" | "world_button_content" | "realms_button_text_panel" | "realms_button_text_panel/new_realm_label" | "realms_button_text_panel/new_realm_trial_label" | "price_label" | "new_realm_label" | "new_realm_trial_label" | "new_world_label" | "button_and_price_panel" | "button_and_price_panel/padding" | "button_and_price_panel/price_label_panel" | "button_and_price_panel/price_label_panel/price" | "border_shell" | "head_banner_panel" | "create_new_realm_content" | "create_new_realm_content/head_banner_panel" | "create_new_realm_content/head_banner_panel/realm_button_price" | "create_new_realm_content/realm_grid" | "create_world_upsell_grid_item" | "create_world_upsell_grid_item/db" | "create_world_upsell_grid_item/gb" | "create_world_upsell_grid_item/gp" | "grid_panel" | "grid_panel/padding" | "grid_panel/upsell_text_panel" | "grid_panel/upsell_text_panel/upsell_label" | "create_new_world_content" | "create_new_world_content/head_banner_panel" | "create_new_world_content/head_banner_panel/world_button_price" | "create_new_world_content/world_grid" | "new_world_or_realm_scroll" | "create_new_world_or_realm_content" | "create_new_world_or_realm_content/world" | "create_new_world_or_realm_content/padding" | "create_new_world_or_realm_content/realm_content" | "new_realm_scroll" | "new_realm_content_panel" | "new_realm_content_panel/key_art_panel" | "new_realm_content_panel/key_art_panel/realms_art_icon" | "new_realm_content_panel/padding_hack" | "new_realm_content_panel/padding_0" | "new_realm_content_panel/new_realm_scroll" | "new_realm_content_panel/padding_1" | "create_realm_upsell_content" | "create_realm_upsell_content/realm_content" | "create_realm_upsell_content/padding_0" | "create_realm_upsell_content/remove_trial_button" | "create_realm_upsell_content/padding_1" | "realm_content" | "create_world_upsell" | "create_world_upsell_realms" | "main_panel" | "variable_screen_size_panel" | "variable_screen_size_panel/dialog_0" | "variable_screen_size_panel/dialog_1" | "main_panel_realms_only"; -export type Credits = "fade_in_image" | "fade_out_image" | "skip_panel" | "skip_panel/skip_button" | "skip_panel/exit_credits_input_panel" | "credits_renderer" | "credits_screen_content" | "credits_screen_content/credits_renderer" | "credits_screen_content/vignette_renderer" | "credits_screen_content/fade_in_image" | "credits_screen_content/credits_factory" | "credits_screen_content/whole_screen_input_panel" | "background" | "credits_screen"; -export type CsbPurchaseError = "csb_purchase_error_screen" | "purchase_error_screen_content" | "purchase_error_screen_content/main_panel" | "purchase_error_modal_main_panel" | "purchase_error_modal_main_panel/text_panel" | "purchase_error_modal_main_panel/text_panel/text" | "purchase_error_modal_main_panel/padding_1" | "purchase_error_modal_main_panel/art_panel" | "purchase_error_modal_main_panel/art_panel/art" | "purchase_error_modal_main_panel/padding_2" | "purchase_error_modal_main_panel/error_panel" | "purchase_error_modal_main_panel/error_panel/error_code" | "purchase_error_modal_main_panel/error_panel/correlation_id" | "purchase_error_modal_back_button"; -export type Csb = "csb_pdp_screen" | "csb_upgrade_notice_screen" | "csb_background" | "gradient_image_stack" | "gradient_image_stack/gradient" | "gradient_content_panel" | "gradient_content_panel/gradient" | "gradient_content_panel/particles" | "gradient_content_panel/content_panel" | "csb_screen_main_panel" | "csb_main_panel" | "csb_main_panel/root_panel" | "csb_main_panel/root_panel/main_panel" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/padding_1" | "dialog_content/allow_divider_offset_panel" | "dialog_content/allow_divider_offset_panel/left_right_pane_divider" | "dialog_content/padding_2" | "dialog_content/content_area" | "dialog_content/padding_3" | "selector_area" | "selector_area/scrolling_panel" | "scrollable_selector_area_content" | "scrollable_selector_area_content/focus_reset_input_panel" | "scrollable_selector_area_content/csb_toggle" | "scrollable_selector_area_content/content_toggle" | "scrollable_selector_area_content/faq_toggle" | "scrollable_selector_area_content/toggle_section_divider" | "scrollable_selector_area_content/buy_now_toggle" | "scrollable_selector_area_content/xbl_btn_panel" | "scrollable_selector_area_content/xbl_btn_panel/xbl_btn" | "section_toggle_base" | "tab_button_text" | "toggle_base" | "toggle_base/toggle" | "toggle_base/padding" | "csb_toggle" | "content_toggle" | "faq_toggle" | "buy_now_toggle" | "left_right_pane_divider" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel_csb" | "section_content_panels" | "vertical_padding_4px" | "section_base" | "buy_now_content_section" | "buy_now_content_section/vertical_padding" | "buy_now_content_section/content" | "markdown_background_animated" | "markdown_background_animated/csb_chevron" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_stack_panel" | "markdown_background/banner_panel/banner/banner_stack_panel/0" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "empty_label" | "full_width_section_divider"; -export type CsbContent = "csb_content_section" | "csb_content_section/content_section_vertical_padding_1" | "csb_content_section/popular_packs_label_panel" | "csb_content_section/popular_packs_label_panel/label_with_gradient" | "csb_content_section/popular_packs_label_panel/tts_border" | "csb_content_section/content_section_vertical_padding_2" | "csb_content_section/content_pack_types" | "csb_content_section/content_packs_included" | "csb_content_section/content_section_vertical_padding_3" | "content_pack_types_section" | "content_pack_types_section/pack_types" | "content_pack_types_section/padding" | "content_packs_included_section" | "content_packs_included_section/popular_packs" | "content_packs_included_section/section_divider" | "pack_types" | "pack_types/padding_01" | "pack_types/pack_types_1" | "pack_types/padding_02" | "pack_types/pack_types_2" | "pack_types/padding_03" | "pack_types_1" | "pack_types_1/worlds" | "pack_types_1/padding_01" | "pack_types_1/textures" | "pack_types_1/padding_02" | "pack_types_1/persona" | "pack_types_2" | "pack_types_2/padding_1" | "pack_types_2/skins" | "pack_types_2/padding_2" | "pack_types_2/mashups" | "pack_types_2/padding_3" | "pack_type_description" | "pack_type_description/image_nesting_panel" | "pack_type_description/image_nesting_panel/texture" | "pack_type_description/padding_0" | "pack_type_description/description_nesting_panel" | "pack_type_description/description_nesting_panel/description_label" | "pack_type_description/description_nesting_panel/tts_border" | "pack_type_description/padding_1" | "popular_packs" | "popular_packs/padding_0" | "popular_packs/pack_grid" | "popular_packs/view_all_packs_panel" | "popular_packs/view_all_packs_panel/view_all_packs_button" | "popular_packs/view_all_packs_panel/padding" | "popular_packs/view_all_packs_panel/view_character_creator_items" | "popular_packs/padding_1" | "popular_packs_label" | "packs_collection" | "packs_collection/row_1" | "packs_collection/row_1/pack_image_grid_item_0" | "packs_collection/row_1/padding" | "packs_collection/row_1/pack_image_grid_item_1" | "packs_collection/padding_1" | "packs_collection/row_2" | "packs_collection/row_2/pack_image_grid_item_0" | "packs_collection/row_2/padding" | "packs_collection/row_2/pack_image_grid_item_1" | "packs_collection/padding_2" | "pack_image_grid_item" | "pack_image_grid_item/bg" | "pack_image_grid_item/bg/featured_key_art" | "pack_image_grid_item/bg/progress_loading" | "pack_image_grid_item/offer_button" | "pack_image_grid_item/offer_button/default" | "pack_image_grid_item/offer_button/hover" | "pack_image_grid_item/offer_button/pressed"; -export type CsbBanner = "csb_banner" | "csb_banner/static_button" | "csb_banner/animated_button" | "csb_banner_slim" | "csb_banner_slim/banner_button" | "csb_banner_portal" | "csb_banner_portal/banner_button" | "promo_banner_csb_button" | "promo_banner_csb_button/default" | "promo_banner_csb_button/hover" | "csb_banner_slim_content" | "csb_banner_slim_content/banner_content" | "csb_banner_portal_content" | "csb_banner_portal_content/banner_content" | "slim_logo_panel" | "slim_logo_panel/mpp_logo" | "portal_logo_panel" | "portal_logo_panel/mpp_logo" | "csb_banner_new_content" | "csb_banner_new_content/text" | "csb_banner_new_content/text/logo_panel" | "csb_banner_new_content/text/offer_panel" | "csb_banner_new_content/text/offer_panel/upsell_text" | "csb_banner_new_content/text/pixel_art" | "sdl_upsell_text_component_factory" | "csb_banner_content" | "csb_banner_content/banner" | "csb_banner_content/text" | "csb_banner_content/text/logo_panel" | "csb_banner_content/text/logo_panel/logo" | "csb_banner_content/text/offer_panel" | "csb_banner_content/text/offer_panel/offer" | "csb_banner_content/text/learn_more_panel" | "csb_banner_content/text/learn_more_panel/learn_more" | "csb_banner_content/text/learn_more_panel/learn_more/more" | "csb_banner_content/text/learn_more_panel/learn_more/more_chevron" | "animated_promo_banner_csb_button" | "animated_promo_banner_csb_button/default" | "animated_promo_banner_csb_button/hover" | "animated_csb_banner_content" | "animated_csb_banner_content/banner" | "animated_csb_banner_content/text" | "animated_csb_banner_content/text/logo_panel" | "animated_csb_banner_content/text/logo_panel/logo" | "animated_csb_banner_content/text/offer_panel" | "animated_csb_banner_content/text/offer_panel/offer" | "animated_csb_banner_content/text/learn_more_panel" | "animated_csb_banner_content/text/learn_more_panel/learn_more" | "animated_csb_banner_content/text/learn_more_panel/learn_more/more" | "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron" | "still_pixel_art_panel" | "still_pixel_art_panel/banner" | "animated_pixel_art_panel" | "animated_pixel_art_panel/mygif" | "image_component_factory" | "image_asset_factory"; -export type CsbBuy = "buy_now_content" | "buy_now_content/description_stack" | "buy_now_content/terms_and_conditions" | "buy_now_content/padding_2" | "buy_now_content/button_panel" | "buy_now_content/button_panel/buy_button" | "buy_now_content/button_panel/icon_panel" | "buy_now_content/padding_3" | "buy_now_content/terms" | "content_text_section" | "content_text_section/text_description" | "content_text_section/padding" | "content_description" | "content_description/content_description_label" | "content_description/tts_hover" | "trial_image_and_description" | "trial_image_and_description/image_border" | "trial_image_and_description/padding" | "trial_image_and_description/description_text" | "trial_image_and_description/description_text/descriptions_label" | "trial_image_and_description/description_text/tts_hover" | "title_text" | "title_text/inner_text" | "title_text/tts_hover" | "description_stack" | "description_stack/title_with_gradient" | "description_stack/padding" | "description_stack/image_and_description" | "terms_and_conditions" | "terms_and_conditions/terms_panel" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "button_text" | "mcten_text_centering_panel" | "mcten_text_centering_panel/button_text" | "view_terms_button" | "privacy_policy_button" | "buy_button_panel" | "buy_button_panel/buy_button" | "tool_tip_icon_panel" | "tool_tip_icon_panel/issue_icon" | "tool_tip_icon_panel/issue_icon/info_icon" | "tool_tip_icon_panel/issue_icon/default" | "tool_tip_icon_panel/issue_icon/hover" | "tool_tip_icon_panel/issue_icon/pressed" | "buy_button_content" | "buy_button_content/button_chevron_panel" | "buy_button_content/button_chevron_panel/buy_button_chevron" | "buy_button_content/button_text_centering_panel" | "info_icon" | "info_icon/panel_icon"; -export type CommonCsb = "csb_expiration_banner" | "csb_expiration_banner/background" | "csb_expiration_banner/icon" | "csb_expiration_banner/text" | "csb_icon_large" | "csb_header" | "csb_header/label_a_text_csb" | "csb_header/label_space_text_csb" | "csb_header/label_b_text_pass" | "csb_header_two_lines" | "csb_header_two_lines/top_header" | "csb_header_two_lines/panel_centre_second_line" | "csb_header_two_lines/panel_centre_second_line/sub_header" | "csb_gold_button" | "csb_gold_text_button"; -export type CsbPurchaseAmazondevicewarning = "csb_purchase_amazondevicewarning_screen" | "screen_content" | "screen_content/main_panel" | "main_panel" | "main_panel/text_panel_1" | "main_panel/text_panel_1/text" | "main_panel/art_panel" | "main_panel/art_panel/art" | "main_panel/padding" | "main_panel/text_panel_2" | "main_panel/text_panel_2/text" | "back_button"; -export type CsbPurchaseWarning = "csb_purchase_warning_screen" | "purchase_warning_screen_content" | "purchase_warning_screen_content/main_panel" | "warning_modal_main_panel" | "warning_modal_main_panel/text_panel_1" | "warning_modal_main_panel/text_panel_1/text" | "warning_modal_main_panel/padding_1" | "warning_modal_main_panel/art_panel" | "warning_modal_main_panel/art_panel/art" | "warning_modal_main_panel/padding_2" | "warning_modal_main_panel/text_panel_2" | "warning_modal_main_panel/text_panel_2/text" | "warning_modal_back_button"; -export type CsbSubscriptionPanel = "csb_container" | "csb_container/fill" | "csb_container/border" | "csb_container/panel_contents" | "csb_container/panel_contents/content_container" | "csb_container/panel_contents/content_container/side_image_stack_left" | "csb_container/panel_contents/content_container/side_image_stack_left/csb_image" | "csb_container/panel_contents/content_container/padding_02" | "csb_container/panel_contents/content_container/side_stack_right" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container" | "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02" | "csb_container/panel_contents/button_panel_spacer" | "csb_container/panel_contents/csb_buttons" | "csb_container/panel_contents/csb_buttons/button_panel_padding" | "csb_container/panel_contents/csb_buttons/padding_01" | "csb_container/panel_contents/csb_buttons/csb_info_button" | "csb_marketplace_benefit" | "csb_marketplace_benefit/bullet_holder_01" | "csb_marketplace_benefit/bullet_holder_01/bullet_spacer" | "csb_marketplace_benefit/bullet_holder_01/bullet_01" | "csb_marketplace_benefit/panel_details_ln1" | "csb_buy_container" | "csb_buy_container/csb_buy_button" | "csb_buy_button_text" | "csb_cancel_button"; -export type CsbUpsell = "csb_upsell_screen" | "csb_upsell_compare_dialog" | "csb_upsell_compare_dialog/csb_upsell_compare_main_screen" | "csb_upsell_popup_content" | "csb_upsell_popup_content/two_side_panels" | "csb_upsell_popup_content/two_side_panels/border_panel_left" | "csb_upsell_popup_content/two_side_panels/border_panel_left/border" | "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering" | "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left" | "csb_upsell_popup_content/two_side_panels/middle_spacer" | "csb_upsell_popup_content/two_side_panels/border_panel_right" | "csb_upsell_popup_content/two_side_panels/border_panel_right/border" | "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel" | "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering" | "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right" | "csb_upsell_left_side_panel" | "csb_upsell_left_side_panel/upper_half" | "csb_upsell_left_side_panel/upper_half/header_panel" | "csb_upsell_left_side_panel/upper_half/header_panel/blank_space" | "csb_upsell_left_side_panel/upper_half/header_panel/top_header" | "csb_upsell_left_side_panel/upper_half/header_panel/price_amount" | "csb_upsell_left_side_panel/middle_spacer" | "csb_upsell_left_side_panel/bottom_half" | "csb_upsell_left_side_panel/bottom_half/padding_b" | "csb_upsell_left_side_panel/bottom_half/bullet_one" | "csb_upsell_left_side_panel/bottom_half/padding_0" | "csb_upsell_left_side_panel/bottom_half/bullet_two" | "csb_upsell_left_side_panel/bottom_half/padding_1" | "csb_upsell_left_side_panel/bottom_half/bullet_three" | "csb_upsell_right_side_panel" | "csb_upsell_right_side_panel/upper_half" | "csb_upsell_right_side_panel/upper_half/marketing_banner" | "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color" | "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label" | "csb_upsell_right_side_panel/upper_half/header_panel" | "csb_upsell_right_side_panel/upper_half/header_panel/top_header" | "csb_upsell_right_side_panel/upper_half/header_panel/price_amount" | "csb_upsell_right_side_panel/middle_spacer" | "csb_upsell_right_side_panel/bottom_half" | "csb_upsell_right_side_panel/bottom_half/padding_b" | "csb_upsell_right_side_panel/bottom_half/bullet_one" | "csb_upsell_right_side_panel/bottom_half/padding_1" | "csb_upsell_right_side_panel/bottom_half/bullet_two" | "csb_upsell_right_side_panel/bottom_half/padding_0" | "csb_upsell_right_side_panel/bottom_half/bullet_three" | "csb_big_padding" | "csb_bullet_padding" | "csb_bullet_padding/desktop" | "csb_bullet_padding/pocket" | "csb_bullet_desktop_padding" | "csb_bullet_pocket_padding" | "csb_bullet" | "csb_bullet/padding_icon_left" | "csb_bullet/padding_icon_vertical" | "csb_bullet/padding_icon_vertical/padding_vertical" | "csb_bullet/padding_icon_vertical/label_icon" | "csb_bullet/padding_icon_right" | "csb_bullet_point" | "csb_bullet_point/bullet_icon" | "csb_bullet_point/label_text" | "csb_bullet_split_point" | "csb_bullet_split_point/bullet_icon" | "csb_bullet_split_point/label_text" | "csb_bullet_split_point/space" | "csb_bullet_split_point/space/label_text_csb" | "csb_bullet_split_point/csb_name" | "csb_bullet_split_point/csb_name/csb_name_string" | "csb_price" | "csb_price/price_details" | "csb_price_details" | "csb_price_details/price_panel_1" | "csb_price_details/price_panel_1/amount" | "csb_price_details/price_panel_first_period" | "csb_price_details/price_panel_first_period/second_line" | "csb_learn_more" | "csb_learn_more/learn_more"; -export type CsbPacks = "view_all_packs_screen" | "view_packs_screen_content" | "view_packs_screen_content/main_panel" | "csb_view_packs_screen_main_panel" | "main_panel" | "main_panel/offers" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/padding_0" | "scrolling_content_stack/store_factory"; -export type CsbWelcome = "csb_welcome_screen" | "welcome_screen_content" | "welcome_screen_content/main_panel" | "welcome_modal_main_panel" | "welcome_modal_main_panel/art_panel" | "welcome_modal_main_panel/art_panel/art" | "welcome_modal_main_panel/padding" | "welcome_modal_main_panel/text_panel" | "welcome_modal_main_panel/text_panel/text" | "welcome_modal_continue_button"; -export type CsbFaq = "faq_bottom_button" | "faq_image_section" | "faq_image_section/faq_image" | "faq_text_section_body" | "faq_text_question" | "faq_text_section" | "faq_text_section/faq_text_question" | "faq_text_section/faq_text_answer" | "faq_price_bound_text_section" | "faq_price_bound_text_section/faq_text_question" | "faq_price_bound_text_section/faq_text_answer" | "faq_question_body" | "faq_question_body/0" | "faq_question_body_stack" | "faq_question_body_horz_padding" | "image_left_faq_question_body" | "image_right_faq_question_body" | "image_left_faq_price_bound" | "image_right_faq_price_bound" | "faq_section_header_space" | "faq_section_divider" | "faq_content_section" | "faq_content_section/faq_section_vertical_padding_1" | "faq_content_section/faq_header" | "faq_content_section/faq_section_vertical_padding_2" | "faq_content_section/faq_question_1" | "faq_content_section/faq_question_1_divider" | "faq_content_section/faq_question_2" | "faq_content_section/faq_question_2_divider" | "faq_content_section/faq_question_3" | "faq_content_section/faq_question_3_divider" | "faq_content_section/faq_question_4" | "faq_content_section/faq_question_4_divider" | "faq_content_section/faq_question_5" | "faq_content_section/faq_question_5_divider" | "faq_content_section/faq_question_6" | "faq_content_section/faq_question_6_divider" | "faq_content_section/faq_question_7" | "faq_content_section/faq_question_7_divider" | "faq_content_section/faq_question_8" | "faq_content_section/faq_question_8_divider" | "faq_content_section/faq_question_9" | "faq_content_section/faq_question_9_divider" | "faq_content_section/faq_question_10" | "faq_content_section/faq_question_10_divider" | "faq_content_section/faq_button" | "faq_content_section/faq_bottom_padding" | "faq_content_section/faq_bottom_padding/bottom_left_particles"; -export type CsbLanding = "landing_content_section" | "landing_content_section/landing_section_vertical_padding" | "landing_content_section/landing_content" | "landing_content_section/landing_content/title_stack" | "landing_content_section/landing_content/vertical_small_spacer_0" | "landing_content_section/landing_content/vertical_small_spacer_1" | "landing_content_section/landing_content/info_stack" | "landing_content_section/landing_content/vertical_small_spacer_2" | "horizontal_small_spacer" | "vertical_small_spacer" | "vertical_large_spacer" | "title_stack" | "title_stack/title_image_panel" | "title_stack/title_space" | "title_stack/action_button" | "title_stack/sign_in_button" | "title_stack/vertical_space2" | "title_stack/gradient_panel" | "title_stack/gradient_panel/label_with_gradient" | "title_stack/gradient_panel/tts_hover" | "title_stack/gradient_panel2" | "title_stack/gradient_panel2/label_with_gradient2" | "title_stack/gradient_panel2/tts_hover" | "subscription_includes_text" | "free_trial_text" | "title_space" | "title_image_panel" | "title_image_panel/vertical_small_spacer_1" | "title_image_panel/title_image_container" | "title_image_panel/title_image_container/title_image" | "title_image_panel/vertical_small_spacer_2" | "info_stack" | "info_stack/info_section_image" | "info_stack/info_description_stack_retail" | "info_description_stack_retail" | "info_description_stack_retail/info_section_stack_1" | "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_1/info_section_text_1" | "info_section_stack" | "info_section_image_with_border" | "info_section_text_1" | "info_section_text_1/info_section_text" | "info_section_text_1/vertical_small_spacer_0" | "info_section_text_1/info_text_bullet_1" | "info_section_text_1/vertical_small_spacer_1" | "info_section_text_1/info_text_bullet_2" | "info_section_text_1/vertical_small_spacer_2" | "info_section_text_1/info_text_bullet_3" | "info_section_text_1/vertical_small_spacer_3" | "info_section_text_1/info_text_bullet_4" | "info_section_text_1/vertical_small_spacer_4" | "info_section_text_1/info_text_bullet_5" | "info_section_text_1/vertical_small_spacer_5" | "info_section_text_1/info_text_bullet_6" | "info_section_text_1/vertical_large_spacer_6" | "info_section_text_2" | "info_section_text_2/info_text_bullet_1" | "info_section_text_2/vertical_small_spacer_0" | "info_section_text_2/info_text_bullet_2" | "info_section_text_2/vertical_small_spacer_1" | "info_section_text_2/info_text_bullet_4" | "info_section_text_2/vertical_small_spacer_3" | "info_section_text_2/info_text_bullet_5" | "info_section_text" | "info_text_bullet" | "info_text_bullet/info_text_bullet_bullet" | "info_text_bullet/bullet_spacer" | "info_text_bullet/info_text_bullet_body" | "info_text_bullet/bullet_spacer_end" | "info_text_unbulletted" | "info_text_unbulletted/info_text_bullet_body" | "info_text_body" | "info_text_body/text_body" | "info_text_body/tts_border"; -export type CustomTemplates = "lock_icon" | "templates_scroll_content" | "templates_scroll_content/scrolling_panel" | "templates_scroll_panel" | "templates_scroll_panel/templates_stack_panel" | "templates_scroll_panel/templates_stack_panel/templates_item_grid" | "templates_item_grid" | "templates_item" | "templates_item/template_item_button" | "template_item_button" | "template_content_panel" | "template_content_panel/template_screenshot" | "template_content_panel/template_text_panel" | "template_content_panel/lock_panel" | "template_content_panel/lock_panel/lock_icon" | "template_screenshot" | "template_screenshot/picture" | "template_text_panel" | "template_text_panel/text_indent" | "template_text_panel/text_indent/top_side" | "template_text_panel/text_indent/top_side/template_name" | "template_text_panel/text_indent/top_side/download_text_label" | "template_text_panel/text_indent/bottom_side" | "template_text_panel/text_indent/bottom_side/template_description" | "template_text_panel/text_indent/bottom_side/template_version" | "template_name" | "template_download_text" | "template_list_text" | "template_description" | "template_version" | "main_panel" | "main_panel/templates_scroll_content" | "custom_templates_screen" | "custom_templates_screen_content" | "custom_templates_screen_content/dialog" | "background"; -export type WorldConversionComplete = "background" | "prompt_text" | "prompt_text/message" | "converted_world_preview_name" | "converted_world_preview_date" | "converted_world_preview_game_mode" | "converted_world_preview_filesize" | "converted_world_preview_text_panel" | "converted_world_preview_text_panel/text_indent" | "converted_world_preview_text_panel/text_indent/top_side" | "converted_world_preview_text_panel/text_indent/top_side/converted_world_name" | "converted_world_preview_text_panel/text_indent/top_side/converted_world_date" | "converted_world_preview_text_panel/text_indent/bottom_side" | "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode" | "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize" | "converted_world_preview_panel" | "converted_world_preview_panel/world_preview_content" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content" | "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture" | "converted_world_preview_panel/world_preview_content/converted_world_text_panel" | "main_panel" | "main_panel/padding_0" | "main_panel/prompt_1" | "main_panel/world_entry_container" | "main_panel/world_entry_container/world_entry_sizer" | "main_panel/world_entry_container/world_entry_sizer/world_entry" | "main_panel/buttons_panel_sizer" | "main_panel/buttons_panel_sizer/buttons_panel" | "main_panel/buttons_panel_sizer/buttons_panel/load_game_button" | "main_panel/buttons_panel_sizer/buttons_panel/padding" | "main_panel/buttons_panel_sizer/buttons_panel/return_button" | "world_conversion_complete_screen_content" | "world_conversion_complete_screen_content/dialog" | "world_conversion_complete_screen"; -export type DayOneExperienceIntro = "padding_horizontal" | "padding_vertical" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/padding_00" | "text_panel/tab_content_description_panel" | "text_panel/padding_01" | "dialog_image" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/welcome_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/realms_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/villagers_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper" | "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tab_header_image_panel" | "tab_header_image_panel/welcome_tab_content" | "tab_header_image_panel/marketplace_tab_content" | "tab_header_image_panel/cross_platform_tab_content" | "tab_header_image_panel/realms_tab_content" | "tab_header_image_panel/villager_tab_content" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/welcome_tab_content" | "tabbed_tab_content_panel_layout/marketplace_tab_content" | "tabbed_tab_content_panel_layout/cross_platform_tab_content" | "tabbed_tab_content_panel_layout/realms_tab_content" | "tabbed_tab_content_panel_layout/villager_tab_content" | "common_tab_header_image_panel" | "common_tab_header_image_panel/header_image" | "common_tab_content_panel" | "common_tab_content_panel/content" | "welcome_tab_header_image_panel" | "welcome_tab_content_panel" | "marketplace_tab_header_image_panel" | "marketplace_tab_content_panel" | "cross_platform_tab_header_image_panel" | "cross_platform_tab_content_panel" | "realms_tab_header_image_panel" | "realms_tab_content_panel" | "villager_tab_header_image_panel" | "villager_tab_content_panel" | "tab_panel" | "tab_panel/tab_header_image" | "tab_panel/padding_00" | "tab_panel/tab_navigation_panel" | "tab_panel/tab_content_panel" | "tab_panel/padding_4" | "tab_panel/continue_button_panel" | "tab_panel/continue_button_panel/continue_button" | "day_one_experience_intro_screen" | "day_one_experience_intro_screen_content" | "day_one_experience_intro_screen_content/welcome_dialog"; -export type DayOneExperience = "alpha_scroll_background" | "tip_text" | "tip_arrow_base" | "tip_arrow_left" | "tip_arrow_right" | "import_time" | "skins_tip_image" | "skins_tip_image/arrows" | "skins_tip_image/arrows/right_arrow" | "skins_tip_image/arrows/padding" | "skins_tip_image/arrows/left_arrow" | "skins_tip_top_text" | "skins_tip_panel" | "skins_tip_panel/top_text_sizer" | "skins_tip_panel/top_text_sizer/settings_and_skin_text" | "skins_tip_panel/top_text_sizer/settings_text" | "skins_tip_panel/image_sizer" | "skins_tip_panel/image_sizer/image_section" | "skins_tip_panel/bottom_text_sizer" | "skins_tip_panel/bottom_text_sizer/bottom_text" | "skin_viewer_panel_text" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_container" | "skin_viewer_panel/paper_doll_container/paper_doll" | "skin_viewer_panel/legacy_skin_loading_panel" | "skin_viewer_panel/bottom_skin_text" | "skin_viewer_panel/bottom_skin_text/current_skin_text" | "skin_viewer_panel/bottom_skin_text/default_skin_text" | "skin_tip_screen" | "skin_tip_screen/primary_content" | "skin_tip_screen/primary_content/skin_viewer_panel" | "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer" | "skin_tip_screen/primary_content/padding" | "skin_tip_screen/primary_content/skins_tip_panel_container" | "skin_tip_screen/primary_content/skins_tip_panel_container/background" | "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel" | "skin_tip_screen/no_network_message" | "legacy_world_item" | "legacy_world_item/header_button_panel" | "legacy_world_item_grid" | "world_picker_scrolling_content" | "world_picker_scrolling_content/padding_0" | "world_picker_scrolling_content/skip_button" | "world_picker_scrolling_content/padding_1" | "world_picker_scrolling_content/loading_legacy_worlds_panel" | "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "world_picker_scrolling_content/loading_legacy_worlds_panel/padding" | "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars" | "world_picker_scrolling_content/padding_2" | "world_picker_scrolling_content/world_item_grid" | "world_picker_content" | "world_picker_content/scrolling_panel" | "advanced_worlds_screen" | "advanced_worlds_screen/world_picker" | "advanced_worlds_screen/padding_1" | "advanced_worlds_screen/import_time_container" | "advanced_worlds_screen/import_time_container/import_time_label" | "next_screen_button_content" | "next_screen_button_content/arrow_panel" | "next_screen_button_content/arrow_panel/label_panel" | "next_screen_button_content/arrow_panel/label_panel/label" | "next_screen_button_content/arrow_panel/image" | "next_screen_button_content/loading_panel" | "next_screen_button" | "next_panel" | "next_panel/next_button" | "common_scrolling_panel" | "skin_tip_scroll_panel" | "skin_tip_scroll_panel/skin_tip_screen" | "worlds_import_scroll_panel" | "worlds_import_scroll_panel/advanced_screen" | "common_content" | "skin_tip_scroll_content" | "skin_tip_scroll_content/scrolling_panel" | "world_import_scroll_content" | "world_import_scroll_content/scrolling_panel" | "default_tab_content_panel_layout" | "default_tab_content_panel_layout/skin_tip_tab_content" | "default_tab_content_panel_layout/world_import_tab_content" | "default_wizard_screen" | "default_wizard_screen/tab_content_panel" | "wizard_screen" | "wizard_screen_content" | "wizard_screen_content/main_control" | "wizard_screen_content/next_button"; -export type Death = "a_button_panel" | "a_button_panel/gamepad_helper_a" | "you_died_panel" | "you_died_panel/you_died_label" | "death_reason_panel" | "death_reason_panel/death_reason_label" | "labels_panel" | "labels_panel/fill_1" | "labels_panel/you_died" | "labels_panel/padd_1" | "labels_panel/death_reason" | "labels_panel/padd_2" | "buttons_panel" | "buttons_panel/padd_0" | "buttons_panel/respawn_button" | "buttons_panel/padd_1" | "buttons_panel/main_menu_button" | "buttons_panel/fill_2" | "buttons_panel/select_button" | "death_screen_content" | "death_screen_content/death_screen_buttons_and_stuff" | "death_screen_content/death_screen_buttons_and_stuff/labels_panel" | "death_screen_content/death_screen_buttons_and_stuff/buttons_panel" | "death_screen_content/loading_label" | "background_gradient" | "death_screen"; -export type DebugScreen = "access_button" | "special_render" | "content_panel" | "content_panel/access_button" | "content_panel/special_render" | "debug_screen"; -export type DevConsole = "keyboard_button_content" | "keyboard_button_content/keyboard_image" | "keyboard_button" | "button_content" | "button_content/image" | "up_arrow" | "down_arrow" | "send_button" | "sent_message_up_button" | "sent_message_down_button" | "chat_stack_panel" | "chat_stack_panel/text_box" | "chat_stack_panel/send_button" | "chat_stack_panel/sent_message_up_button" | "chat_stack_panel/sent_message_down_button" | "main_stack_panel" | "main_stack_panel/messages_scrolling_panel" | "main_stack_panel/chat_stack_panel" | "main_with_intellisense" | "main_with_intellisense/main_stack" | "main_with_intellisense/commands_panel" | "dev_console_dialog" | "dev_console_screen"; -export type Disconnect = "disconnect_screen_text" | "disconnect_text" | "disconnect_title_text" | "title_panel" | "title_panel/disconnect_title_text" | "title_panel/disconnect_text" | "menu_button_template" | "continue_button" | "check_store_button" | "exit_button" | "ok_button" | "open_uri_button" | "cancel_button" | "button_panel" | "button_panel/open_uri_button_panel" | "button_panel/open_uri_button_panel/open_uri_button" | "button_panel/open_button_panel" | "button_panel/open_button_panel/ok_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "disconnect_screen" | "disconnect_screen_content" | "disconnect_screen_content/title_panel" | "disconnect_screen_content/gamepad_helpers" | "spacing_gap" | "realms_disconnect_screen" | "realms_disconnect_button_panel" | "realms_disconnect_button_panel/open_uri_button_panel" | "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button" | "realms_disconnect_button_panel/realm_buttons_panel" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap" | "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button" | "realms_warning_screen" | "realms_warning_button_panel" | "realms_warning_button_panel/continue_button_panel" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap" | "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button" | "realms_warning_button_panel/realms_warning_button_gap" | "realms_warning_button_panel/cancel_button_panel" | "realms_warning_button_panel/cancel_button_panel/cancel_button" | "open_account_setting_button"; -export type DisplayLoggedError = "display_logged_error_screen" | "factory_panel" | "factory_panel/error_dialog_factory" | "display_logged_error_modal" | "error_message_stack" | "error_message_stack/error_message" | "error_message_stack/error_count" | "input_blocking_button_base" | "details_button" | "dismiss_button" | "error_details_modal" | "copy_path_button" | "hide_error_details_button" | "error_stack_scrolling_panel" | "error_stack" | "error_controller_panel" | "error_controller_panel/error_message" | "error_controller_panel/controller_button" | "error_controller_panel/controller_button/hover" | "error_controller_panel/controller_button/pressed" | "error_base" | "error_base/error_message" | "error_base/expand_button" | "error_short" | "error_expanded"; -export type DiscoveryDialog = "service_body_label" | "service_button" | "service_buttons" | "content" | "content/body_text" | "content/text_to_button_padding" | "content/buttons" | "service_dialog" | "discovery_dialog_factory"; -export type EduFeatured = "featured_button_content" | "featured_button_content/button_label" | "featured_button"; -export type EduQuitButton = "quit_button"; -export type PersonaEmote = "emote_wheel_screen" | "emote_wheel_touch_zone" | "emote_wheel_screen_content" | "emote_wheel_screen_content/top_padding" | "emote_wheel_screen_content/root_panel" | "emote_wheel_screen_content/root_panel/emotes_panel" | "emote_wheel_screen_content/instruction_padding" | "emote_wheel_screen_content/instruction_panel" | "emote_wheel_screen_content/instruction_panel/instruction_background" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel" | "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit" | "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard" | "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch" | "emote_wheel_screen_content/dressing_room_button_panel" | "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button" | "emote_wheel_screen_content/bottom_padding" | "swap_emote_button"; -export type Enchanting = "enchanting_image" | "lapis_image" | "dust_image" | "dust_image_selectable" | "dust_image_unselectable" | "dust_template" | "dust_template/dust_image_selectable" | "dust_template/dust_image_unselectable" | "dust_panel" | "dust_panel/a" | "dust_panel/b" | "dust_panel/c" | "background_with_hover_text" | "background_with_hover_text/hover_text" | "dark_background" | "dark_background_with_hover_text" | "active_background" | "active_background_with_hover_text" | "enchant_runes" | "enchant_cost" | "success_runes" | "fail_runes" | "success_cost" | "fail_cost" | "enchanting_label" | "base_button" | "unselectable_button" | "unselectable_button/default" | "unselectable_button/hover" | "unselectable_button/pressed" | "unselectable_button/rune_text" | "unselectable_button/enchant_cost" | "selectable_button" | "selectable_button/default" | "selectable_button/hover" | "selectable_button/pressed" | "selectable_button/rune_text" | "selectable_button/enchant_cost" | "enchant_button_panel" | "enchant_button_panel/dark_background" | "enchant_button_panel/unselectable_button" | "enchant_button_panel/selectable_button" | "enchanting_panel_top_half" | "enchanting_panel_top_half/enchanting_label" | "enchanting_panel_top_half/enchanting_book_panel" | "enchanting_panel_top_half/enchanting_book_panel/enchanting_book" | "enchanting_panel_top_half/item_grid" | "enchanting_panel_top_half/item_grid/item_slot" | "enchanting_panel_top_half/lapis_grid" | "enchanting_panel_top_half/lapis_grid/lapis" | "enchanting_panel_top_half/grid_panel" | "enchanting_panel_top_half/grid_panel/indent" | "enchanting_panel_top_half/grid_panel/dust_panel" | "enchanting_panel_top_half/grid_panel/enchantments_grid" | "enchanting_panel" | "enchanting_panel/container_gamepad_helpers" | "enchanting_panel/selected_item_details_factory" | "enchanting_panel/item_lock_notification_factory" | "enchanting_panel/root_panel" | "enchanting_panel/root_panel/common_panel" | "enchanting_panel/root_panel/enchanting_screen_inventory" | "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half" | "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label" | "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid" | "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button" | "enchanting_panel/root_panel/inventory_selected_icon_button" | "enchanting_panel/root_panel/gamepad_cursor" | "enchanting_panel/flying_item_renderer" | "enchanting_screen"; -export type EnchantingPocket = "generic_label" | "background_image" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "lapis_image" | "enchanting_slots_panel" | "enchanting_slots_panel/input_slot" | "enchanting_slots_panel/lapis_slot" | "enchant_text_runes" | "show_highlighted_slot_control" | "show_highlighted_hover_slot_control" | "inactive_background" | "unselectable_button" | "unselectable_button/default" | "unselectable_button/hover" | "unselectable_button/pressed" | "unselectable_button/enchant_cost" | "selectable_button" | "selectable_button/default" | "selectable_button/hover" | "selectable_button/pressed" | "selectable_button/enchant_cost" | "enchant_button_panel" | "enchant_button_panel/inactive_background" | "enchant_button_panel/unselectable_button" | "enchant_button_panel/selectable_button" | "enchant_button_panel/dust" | "enchant_button_panel/rune_text" | "enchant_button_panel/highlight" | "enchant_selection_panel" | "enchant_selection_panel/grid" | "enchant_selection_panel/grid/button1" | "enchant_selection_panel/grid/button2" | "enchant_selection_panel/grid/button3" | "item_renderer" | "confirm_default_control" | "enchanting_confirm_button" | "enchanting_confirm_button/default" | "enchanting_confirm_button/hover" | "enchanting_confirm_button/pressed" | "enchanting_confirm_button/arrow_active" | "enchanting_confirm_button/arrow_inactive" | "enchanting_confirm_button/input_item_renderer" | "enchanting_confirm_button/output_item_renderer" | "enchanting_confirm_panel" | "enchanting_confirm_panel/confirm" | "enchanting_confirm_panel/enchantment_hint_text" | "enchanting_book_contents_panel" | "enchanting_book_contents_panel/enchanting_book" | "enchanting_book_contents_panel/player_level_label" | "enchanting_book_contents_panel/level_label" | "enchanting_book_panel" | "enchanting_book_panel/enchanting_slots_panel" | "enchanting_slots_and_selection" | "enchanting_slots_and_selection/enchanting_slots_panel" | "enchanting_slots_and_selection/pad1" | "enchanting_slots_and_selection/enchant_selection_panel" | "enchanting_contents_panel" | "enchanting_contents_panel/fill1" | "enchanting_contents_panel/enchanting_book_panel" | "enchanting_contents_panel/pad1" | "enchanting_contents_panel/enchanting_slots_and_selection" | "enchanting_contents_panel/pad2" | "enchanting_contents_panel/enchanting_confirm_panel" | "enchanting_contents_panel/fill2" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_enchanting_panel" | "inventory_and_enchanting_panel/inventory_half_screen" | "inventory_and_enchanting_panel/inventory_half_screen/inventory_content" | "inventory_and_enchanting_panel/enchanting_half_screen" | "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_enchanting_panel" | "error_text_panel" | "error_text_panel/item_text_label" | "enchanting_panel" | "enchanting_panel/bg" | "enchanting_panel/root_panel" | "enchanting_panel/header_and_content_stack_panel" | "enchanting_panel/container_gamepad_helpers" | "enchanting_panel/inventory_selected_icon_button" | "enchanting_panel/hold_icon" | "enchanting_panel/selected_item_details_factory" | "enchanting_panel/item_lock_notification_factory" | "enchanting_panel/flying_item_renderer"; -export type Encyclopedia = "encyclopedia_screen" | "encyclopedia_selector_stack_panel" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button" | "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button" | "encyclopedia_section_content_panels" | "encyclopedia_section_content_panels/general_tips_sections" | "encyclopedia_section_content_panels/general_tips_sections/section_contents_header" | "encyclopedia_section_content_panels/general_tips_sections/armor_section" | "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section" | "encyclopedia_section_content_panels/general_tips_sections/banners_section" | "encyclopedia_section_content_panels/general_tips_sections/beacons_section" | "encyclopedia_section_content_panels/general_tips_sections/beds_section" | "encyclopedia_section_content_panels/general_tips_sections/blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section" | "encyclopedia_section_content_panels/general_tips_sections/chests_section" | "encyclopedia_section_content_panels/general_tips_sections/conduits_section" | "encyclopedia_section_content_panels/general_tips_sections/dyes_section" | "encyclopedia_section_content_panels/general_tips_sections/farming_section" | "encyclopedia_section_content_panels/general_tips_sections/fireworks_section" | "encyclopedia_section_content_panels/general_tips_sections/fishing_section" | "encyclopedia_section_content_panels/general_tips_sections/jigsaw" | "encyclopedia_section_content_panels/general_tips_sections/mounts_section" | "encyclopedia_section_content_panels/general_tips_sections/navigation_section" | "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section" | "encyclopedia_section_content_panels/general_tips_sections/pets_section" | "encyclopedia_section_content_panels/general_tips_sections/raids_section" | "encyclopedia_section_content_panels/general_tips_sections/ranching_section" | "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section" | "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/tools_section" | "encyclopedia_section_content_panels/general_tips_sections/transportation_section" | "encyclopedia_section_content_panels/general_tips_sections/trading_section" | "encyclopedia_section_content_panels/general_tips_sections/weapons_section" | "encyclopedia_section_content_panels/general_tips_sections/anvil_section" | "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section" | "encyclopedia_section_content_panels/general_tips_sections/cauldron_section" | "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section" | "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section" | "encyclopedia_section_content_panels/general_tips_sections/furnace_section" | "encyclopedia_section_content_panels/general_tips_sections/loom_section" | "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section" | "encyclopedia_section_content_panels/general_tips_sections/droppers_section" | "encyclopedia_section_content_panels/general_tips_sections/dispensers_section" | "encyclopedia_section_content_panels/general_tips_sections/hoppers_section" | "encyclopedia_section_content_panels/general_tips_sections/jukebox_section" | "encyclopedia_section_content_panels/general_tips_sections/redstone_section" | "encyclopedia_section_content_panels/general_tips_sections/the_end_section" | "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section" | "encyclopedia_section_content_panels/general_tips_sections/end_cities_section" | "encyclopedia_section_content_panels/general_tips_sections/elytra_section" | "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section" | "encyclopedia_section_content_panels/general_tips_sections/game_settings_section" | "encyclopedia_section_content_panels/general_tips_sections/difficulty_section" | "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section" | "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section" | "encyclopedia_section_content_panels/general_tips_sections/commands_section" | "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section" | "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section" | "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section" | "encyclopedia_section_content_panels/general_tips_sections/minecoins_section" | "encyclopedia_section_content_panels/general_tips_sections/addons_section" | "encyclopedia_section_content_panels/general_tips_sections/worlds_section" | "encyclopedia_section_content_panels/general_tips_sections/textures_section" | "encyclopedia_section_content_panels/general_tips_sections/skins_section" | "encyclopedia_section_content_panels/general_tips_sections/mashups_section" | "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer" | "adventure_mode_button" | "adventure_mode_section" | "adventure_mode_section/paragraph_1" | "adventure_mode_section/padding_1" | "adventure_mode_section/paragraph_2" | "anvil_button" | "anvil_section" | "anvil_section/paragraph_1" | "anvil_section/padding_1" | "anvil_section/header_1" | "anvil_section/paragraph_2" | "anvil_section/padding_2" | "anvil_section/header_2" | "anvil_section/paragraph_3" | "anvil_section/padding_3" | "anvil_section/paragraph_4" | "anvil_section/padding_4" | "anvil_section/paragraph_5" | "armor_button" | "armor_section" | "armor_section/paragraph_1" | "armor_section/padding_1" | "armor_section/header_1" | "armor_section/paragraph_2" | "armor_section/padding_2" | "armor_section/paragraph_3" | "armor_section/padding_3" | "armor_section/paragraph_4" | "armor_section/padding_4" | "armor_section/header_2" | "armor_section/paragraph_5_keyboard" | "armor_section/paragraph_5_gamepad" | "armor_section/paragraph_5a_touch" | "armor_section/padding_5a_touch" | "armor_section/paragraph_5b_touch" | "armor_section/padding_5b_touch" | "armor_section/paragraph_5c_touch" | "armor_section/padding_5" | "armor_section/paragraph_6" | "armor_section/padding_6" | "armor_section/header_3" | "armor_section/paragraph_7" | "armor_stand_button" | "armor_stand_section" | "armor_stand_section/paragraph_1" | "armor_stand_section/padding_1" | "armor_stand_section/header_1" | "armor_stand_section/paragraph_2_keyboard" | "armor_stand_section/paragraph_2_gamepad" | "armor_stand_section/paragraph_2_touch" | "armor_stand_section/padding_2" | "armor_stand_section/paragraph_3_keyboard" | "armor_stand_section/paragraph_3_gamepad" | "armor_stand_section/paragraph_3_touch" | "armor_stand_section/padding_3" | "armor_stand_section/header_2" | "armor_stand_section/paragraph_4_keyboard" | "armor_stand_section/paragraph_4_gamepad" | "armor_stand_section/paragraph_4_touch" | "armor_stand_section/padding_4" | "armor_stand_section/header_3" | "armor_stand_section/paragraph_5" | "banners_button" | "banners_section" | "banners_section/paragraph_1" | "banners_section/padding_1" | "banners_section/paragraph_2" | "banners_section/padding_2" | "banners_section/header_1" | "banners_section/paragraph_3" | "banners_section/padding_3" | "banners_section/paragraph_4" | "banners_section/padding_4" | "banners_section/paragraph_5" | "banners_section/padding_5" | "banners_section/paragraph_6" | "banners_section/padding_6" | "banners_section/paragraph_7" | "banners_section/padding_7" | "banners_section/header_2" | "banners_section/paragraph_8" | "banners_section/padding_8" | "banners_section/header_3" | "banners_section/paragraph_9" | "beacons_button" | "beacons_section" | "beacons_section/paragraph_1" | "beacons_section/padding_1" | "beacons_section/paragraph_2" | "beacons_section/padding_2" | "beacons_section/header_1" | "beacons_section/paragraph_3" | "beacons_section/padding_3" | "beacons_section/paragraph_4" | "beacons_section/padding_4" | "beacons_section/header_2" | "beacons_section/paragraph_5" | "beacons_section/padding_5" | "beacons_section/paragraph_6" | "beacons_section/padding_6" | "beacons_section/paragraph_7" | "beacons_section/padding_7" | "beacons_section/paragraph_8" | "conduits_button" | "conduits_section" | "conduits_section/paragraph_1" | "conduits_section/padding_1" | "conduits_section/paragraph_2" | "conduits_section/padding_2" | "conduits_section/header_1" | "conduits_section/paragraph_3" | "conduits_section/padding_3" | "conduits_section/paragraph_4" | "beds_button" | "beds_section" | "beds_section/paragraph_1" | "beds_section/padding_1" | "beds_section/paragraph_2_keyboard" | "beds_section/paragraph_2_gamepad" | "beds_section/paragraph_2_touch" | "beds_section/padding_2" | "beds_section/paragraph_3" | "beds_section/padding_3" | "beds_section/paragraph_4" | "beds_section/padding_4" | "beds_section/paragraph_5" | "blocks_button" | "blocks_section" | "blocks_section/paragraph_1" | "blocks_section/padding_1" | "blocks_section/paragraph_2" | "blocks_section/padding_2" | "blocks_section/header_1" | "blocks_section/paragraph_3" | "blocks_section/padding_3" | "blocks_section/header_2" | "blocks_section/paragraph_4" | "blocks_section/padding_4" | "blocks_section/paragraph_5" | "blocks_section/padding_5" | "blocks_section/paragraph_6" | "blocks_section/padding_6" | "blocks_section/paragraph_7" | "blocks_section/padding_7" | "blocks_section/paragraph_8" | "blocks_section/padding_8" | "blocks_section/paragraph_9" | "book_and_quill_button" | "book_and_quill_section" | "book_and_quill_section/paragraph_1" | "brewing_stand_button" | "brewing_stand_section" | "brewing_stand_section/paragraph_1" | "brewing_stand_section/padding_1" | "brewing_stand_section/header_1" | "brewing_stand_section/paragraph_2" | "brewing_stand_section/padding_2" | "brewing_stand_section/header_2" | "brewing_stand_section/paragraph_3" | "brewing_stand_section/padding_3" | "brewing_stand_section/paragraph_4" | "cauldron_button" | "cauldron_section" | "cauldron_section/paragraph_1" | "cauldron_section/padding_1" | "cauldron_section/header_1" | "cauldron_section/paragraph_2_keyboard" | "cauldron_section/paragraph_2_gamepad" | "cauldron_section/paragraph_2_touch" | "cauldron_section/padding_2" | "cauldron_section/paragraph_3" | "cauldron_section/padding_3" | "cauldron_section/header_2" | "cauldron_section/paragraph_4_keyboard" | "cauldron_section/paragraph_4_gamepad" | "cauldron_section/paragraph_4_touch" | "cauldron_section/padding_4" | "cauldron_section/header_3" | "cauldron_section/paragraph_5_keyboard" | "cauldron_section/paragraph_5_gamepad" | "cauldron_section/paragraph_5_touch" | "cauldron_section/padding_5" | "cauldron_section/paragraph_6" | "chests_button" | "chests_section" | "chests_section/paragraph_1_keyboard" | "chests_section/paragraph_1_gamepad" | "chests_section/paragraph_1_touch" | "chests_section/padding_1" | "chests_section/paragraph_2" | "chests_section/padding_2" | "chests_section/paragraph_3" | "command_blocks_button" | "command_blocks_section" | "command_blocks_section/paragraph_1" | "command_blocks_section/padding_1" | "command_blocks_section/paragraph_2" | "command_blocks_section/padding_2" | "command_blocks_section/paragraph_3" | "command_blocks_section/padding_3" | "command_blocks_section/paragraph_4" | "command_blocks_section/padding_4" | "command_blocks_section/paragraph_5" | "command_blocks_section/paragraph_5_1" | "command_blocks_section/paragraph_5_2" | "command_blocks_section/paragraph_5_3" | "command_blocks_section/padding_5" | "command_blocks_section/paragraph_6" | "command_blocks_section/paragraph_6_1" | "command_blocks_section/paragraph_6_2" | "command_blocks_section/padding_6" | "command_blocks_section/paragraph_7" | "command_blocks_section/paragraph_7_1" | "command_blocks_section/paragraph_7_2" | "command_blocks_section/padding_7" | "command_blocks_section/paragraph_8" | "commands_button" | "commands_section" | "commands_section/paragraph_1" | "commands_section/padding_1" | "commands_section/paragraph_2" | "crafting_table_button" | "crafting_table_section" | "crafting_table_section/paragraph_1" | "crafting_table_section/padding_1" | "crafting_table_section/paragraph_2_keyboard" | "crafting_table_section/paragraph_2_gamepad" | "crafting_table_section/paragraph_2_touch" | "creative_mode_button" | "creative_mode_section" | "creative_mode_section/paragraph_1" | "creative_mode_section/padding_1" | "creative_mode_section/header_1" | "creative_mode_section/paragraph_2" | "creative_mode_section/padding_2" | "creative_mode_section/paragraph_3" | "creative_mode_section/padding_3" | "creative_mode_section/header_2" | "creative_mode_section/paragraph_4_keyboard" | "creative_mode_section/paragraph_4_gamepad" | "creative_mode_section/paragraph_4a_touch_joystick_tap" | "creative_mode_section/paragraph_4a_touch_classic_dpad" | "creative_mode_section/paragraph_4a_touch_joystick_crosshair" | "creative_mode_section/padding_4a_touch" | "creative_mode_section/paragraph_4b_touch_joystick_tap" | "creative_mode_section/paragraph_4b_touch_classic_dpad" | "creative_mode_section/paragraph_4b_touch_joystick_crosshair" | "difficulty_button" | "difficulty_section" | "difficulty_section/paragraph_1" | "difficulty_section/padding_1" | "difficulty_section/header_1" | "difficulty_section/paragraph_2" | "difficulty_section/padding_2" | "difficulty_section/header_2" | "difficulty_section/paragraph_3" | "difficulty_section/padding_3" | "difficulty_section/header_3" | "difficulty_section/paragraph_4" | "difficulty_section/padding_4" | "difficulty_section/header_4" | "difficulty_section/paragraph_5" | "dispensers_button" | "dispensers_section" | "dispensers_section/paragraph_1" | "dispensers_section/padding_1" | "dispensers_section/paragraph_2_keyboard" | "dispensers_section/paragraph_2_gamepad" | "dispensers_section/paragraph_2_touch" | "dispensers_section/padding_2" | "dispensers_section/header_1" | "dispensers_section/paragraph_3" | "dispensers_section/padding_3" | "dispensers_section/paragraph_4" | "droppers_button" | "droppers_section" | "droppers_section/paragraph_1_keyboard" | "droppers_section/paragraph_1_gamepad" | "droppers_section/paragraph_1_touch" | "droppers_section/padding_1" | "droppers_section/header_1" | "droppers_section/paragraph_2" | "dyes_button" | "dyes_section" | "dyes_section/paragraph_1" | "dyes_section/padding_1" | "dyes_section/paragraph_2" | "dyes_section/padding_2" | "dyes_section/paragraph_3" | "dyes_section/padding_3" | "dyes_section/paragraph_4" | "dyes_section/padding_4" | "dyes_section/paragraph_5" | "dyes_section/padding_5" | "dyes_section/paragraph_6" | "dyes_section/padding_6" | "dyes_section/paragraph_7" | "elytra_button" | "elytra_section" | "elytra_section/paragraph_1" | "elytra_section/padding_1" | "elytra_section/paragraph_2" | "elytra_section/padding_2" | "elytra_section/header_1" | "elytra_section/paragraph_3_keyboard" | "elytra_section/paragraph_3_gamepad" | "elytra_section/paragraph_3_touch" | "elytra_section/padding_3" | "elytra_section/paragraph_4" | "elytra_section/paragraph_4_touch" | "elytra_section/padding_4" | "elytra_section/paragraph_5" | "elytra_section/padding_5" | "elytra_section/header_2" | "elytra_section/paragraph_6" | "enchanting_table_button" | "enchanting_table_section" | "enchanting_table_section/paragraph_1" | "enchanting_table_section/padding_1" | "enchanting_table_section/header_1" | "enchanting_table_section/paragraph_2" | "enchanting_table_section/padding_2" | "enchanting_table_section/paragraph_3" | "enchanting_table_section/padding_3" | "enchanting_table_section/header_2" | "enchanting_table_section/paragraph_4" | "enchanting_table_section/padding_4" | "enchanting_table_section/header_3" | "enchanting_table_section/paragraph_5" | "end_cities_button" | "end_cities_section" | "end_cities_section/paragraph_1" | "end_cities_section/padding_1" | "end_cities_section/paragraph_2" | "eye_of_ender_button" | "eye_of_ender_section" | "eye_of_ender_section/paragraph_1" | "eye_of_ender_section/padding_1" | "eye_of_ender_section/paragraph_2" | "farming_button" | "farming_section" | "farming_section/paragraph_1" | "farming_section/padding_1" | "farming_section/header_1" | "farming_section/paragraph_2" | "farming_section/padding_2" | "farming_section/paragraph_3" | "farming_section/padding_3" | "farming_section/header_2" | "farming_section/paragraph_4" | "farming_section/padding_4" | "farming_section/paragraph_5" | "farming_section/padding_5" | "farming_section/paragraph_6" | "farming_section/padding_6" | "farming_section/paragraph_7" | "fireworks_button" | "fireworks_section" | "fireworks_section/paragraph_1" | "fireworks_section/padding_1" | "fireworks_section/paragraph_2" | "fireworks_section/padding_2" | "fireworks_section/header_1" | "fireworks_section/paragraph_3_keyboard" | "fireworks_section/paragraph_3_gamepad" | "fireworks_section/paragraph_3_touch" | "fireworks_section/padding_3" | "fireworks_section/paragraph_4" | "fireworks_section/padding_4" | "fireworks_section/header_2" | "fireworks_section/paragraph_5" | "fireworks_section/padding_5" | "fireworks_section/paragraph_6" | "fireworks_section/padding_5a" | "fireworks_section/paragraph_6_1" | "fireworks_section/padding_5b" | "fireworks_section/paragraph_6_2" | "fireworks_section/padding_5c" | "fireworks_section/paragraph_6_3" | "fireworks_section/padding_5d" | "fireworks_section/paragraph_6_4" | "fireworks_section/padding_5e" | "fireworks_section/paragraph_6_5" | "fireworks_section/padding_5f" | "fireworks_section/paragraph_6_6" | "fireworks_section/padding_6" | "fireworks_section/header_3" | "fireworks_section/paragraph_7" | "jigsaw_blocks_button" | "jigsaw_blocks_section" | "jigsaw_blocks_section/paragraph_1" | "jigsaw_blocks_section/padding_1" | "jigsaw_blocks_section/header_1" | "jigsaw_blocks_section/paragraph_2" | "jigsaw_blocks_section/padding_2" | "jigsaw_blocks_section/header_2" | "jigsaw_blocks_section/paragraph_3" | "jigsaw_blocks_section/padding_3" | "jigsaw_blocks_section/paragraph_4" | "jigsaw_blocks_section/padding_4" | "jigsaw_blocks_section/paragraph_5" | "jigsaw_blocks_section/padding_5" | "jigsaw_blocks_section/paragraph_6" | "jigsaw_blocks_section/padding_6" | "jigsaw_blocks_section/paragraph_7" | "jigsaw_blocks_section/padding_7" | "jigsaw_blocks_section/paragraph_8" | "jigsaw_blocks_section/padding_8" | "jigsaw_blocks_section/paragraph_9" | "fishing_button" | "fishing_section" | "fishing_section/paragraph_1" | "fishing_section/padding_1" | "fishing_section/header_1" | "fishing_section/paragraph_2_keyboard" | "fishing_section/paragraph_2_gamepad" | "fishing_section/paragraph_2_touch" | "fishing_section/padding_2" | "fishing_section/header_2" | "fishing_section/paragraph_3" | "fishing_section/padding_3" | "fishing_section/paragraph_4_keyboard" | "fishing_section/paragraph_4_gamepad" | "fishing_section/paragraph_4_touch" | "furnace_button" | "furnace_section" | "furnace_section/paragraph_1" | "furnace_section/padding_1" | "furnace_section/paragraph_2_keyboard" | "furnace_section/paragraph_2_gamepad" | "furnace_section/paragraph_2_touch" | "furnace_section/padding_2" | "furnace_section/paragraph_3" | "game_settings_button" | "game_settings_section" | "game_settings_section/paragraph_1" | "game_settings_section/padding_1" | "game_settings_section/paragraph_2" | "game_settings_section/padding_2" | "game_settings_section/paragraph_3" | "game_settings_section/padding_3" | "game_settings_section/paragraph_4" | "game_settings_section/padding_4" | "game_settings_section/header_1" | "game_settings_section/paragraph_5" | "game_settings_section/padding_5" | "game_settings_section/paragraph_6" | "game_settings_section/padding_6" | "game_settings_section/paragraph_7" | "game_settings_section/paragraph_7_1" | "game_settings_section/paragraph_7_2" | "game_settings_section/padding_7" | "game_settings_section/paragraph_8" | "game_settings_section/padding_8" | "game_settings_section/header_2" | "game_settings_section/paragraph_9" | "game_settings_section/padding_9" | "game_settings_section/paragraph_10" | "game_settings_section/padding_10" | "game_settings_section/paragraph_11" | "game_settings_section/padding_11" | "game_settings_section/paragraph_12" | "game_settings_section/padding_12" | "game_settings_section/paragraph_13" | "game_settings_section/padding_13" | "game_settings_section/paragraph_14" | "game_settings_section/padding_14" | "game_settings_section/paragraph_15" | "game_settings_section/padding_15" | "game_settings_section/paragraph_16" | "game_settings_section/padding_16" | "game_settings_section/paragraph_17" | "hoppers_button" | "hoppers_section" | "hoppers_section/paragraph_1" | "hoppers_section/padding_1" | "hoppers_section/paragraph_2" | "hoppers_section/padding_2" | "hoppers_section/header_1" | "hoppers_section/paragraph_3" | "hoppers_section/padding_3" | "hoppers_section/paragraph_4" | "host_and_player_options_button" | "host_and_player_options_section" | "host_and_player_options_section/paragraph_1_not_touch" | "host_and_player_options_section/paragraph_1_touch" | "jukebox_button" | "jukebox_section" | "jukebox_section/paragraph_1" | "jukebox_section/padding_1" | "jukebox_section/header_1" | "jukebox_section/paragraph_2_not_touch" | "jukebox_section/paragraph_2_touch" | "jukebox_section/padding_2" | "jukebox_section/header_2" | "jukebox_section/paragraph_3" | "jukebox_section/padding_3" | "jukebox_section/paragraph_4" | "jukebox_section/padding_4" | "jukebox_section/paragraph_5" | "jukebox_section/padding_5" | "jukebox_section/paragraph_6" | "jukebox_section/padding_6" | "jukebox_section/header_3" | "jukebox_section/paragraph_7" | "jukebox_section/padding_7" | "jukebox_section/paragraph_8" | "loom_button" | "loom_section" | "loom_section/paragraph_1" | "loom_section/padding_1" | "loom_section/header_1" | "loom_section/paragraph_2" | "loom_section/padding_2" | "loom_section/paragraph_3" | "loom_section/padding_3" | "loom_section/header_2" | "loom_section/paragraph_4" | "realms_stories_button" | "realms_stories_section" | "realms_stories_section/paragraph_1" | "realms_stories_section/padding_1" | "realms_stories_section/header_1" | "realms_stories_section/paragraph_2" | "realms_stories_section/padding_2" | "realms_stories_section/header_2" | "realms_stories_section/paragraph_3" | "realms_stories_section/padding_3" | "realms_stories_section/header_3" | "realms_stories_section/paragraph_4" | "realms_stories_section/padding_4" | "realms_stories_section/header_4" | "realms_stories_section/paragraph_5" | "realms_stories_section/padding_5" | "realms_stories_section/header_5" | "realms_stories_section/paragraph_6" | "smithing_table_button" | "smithing_table_section" | "smithing_table_section/paragraph_1" | "smithing_table_section/padding_1" | "smithing_table_section/paragraph_2" | "smithing_table_section/padding_2" | "smithing_table_section/header_1" | "smithing_table_section/paragraph_3" | "smithing_table_section/padding_3" | "smithing_table_section/paragraph_4" | "smithing_table_section/padding_4" | "smithing_table_section/paragraph_5" | "smithing_table_section/padding_5" | "smithing_table_section/paragraph_6" | "smithing_table_section/padding_6" | "smithing_table_section/header_2" | "smithing_table_section/paragraph_7" | "smithing_table_section/padding_7" | "smithing_table_section/paragraph_8" | "smithing_table_section/padding_8" | "smithing_table_section/paragraph_9" | "mounts_button" | "mounts_section" | "mounts_section/paragraph_1" | "mounts_section/padding_1" | "mounts_section/paragraph_2" | "mounts_section/padding_2" | "mounts_section/header_1" | "mounts_section/paragraph_3_not_touch" | "mounts_section/paragraph_3_touch" | "mounts_section/padding_3" | "mounts_section/paragraph_4" | "mounts_section/padding_4" | "mounts_section/header_2" | "mounts_section/paragraph_5" | "mounts_section/padding_5" | "mounts_section/paragraph_6" | "mounts_section/padding_6" | "mounts_section/paragraph_6b" | "mounts_section/padding_6b" | "mounts_section/paragraph_7" | "mounts_section/padding_7" | "mounts_section/paragraph_8" | "mounts_section/padding_8" | "mounts_section/header_3" | "mounts_section/paragraph_9" | "mounts_section/padding_9" | "mounts_section/paragraph_10" | "mounts_section/padding_10" | "mounts_section/paragraph_11" | "mounts_section/padding_11" | "mounts_section/paragraph_12" | "mounts_section/padding_12" | "mounts_section/header_4" | "mounts_section/paragraph_13" | "mounts_section/padding_13" | "mounts_section/paragraph_14" | "mounts_section/padding_14" | "mounts_section/header_5" | "mounts_section/paragraph_15_not_touch" | "mounts_section/paragraph_15a_touch" | "mounts_section/padding_15" | "mounts_section/paragraph_15b_touch" | "navigation_button" | "navigation_section" | "navigation_section/paragraph_1" | "navigation_section/padding_1" | "navigation_section/paragraph_2" | "navigation_section/padding_2" | "navigation_section/header_1" | "navigation_section/paragraph_3" | "navigation_section/padding_3" | "navigation_section/paragraph_4" | "navigation_section/padding_4" | "navigation_section/paragraph_5" | "navigation_section/padding_5" | "navigation_section/paragraph_6" | "navigation_section/padding_6" | "navigation_section/paragraph_7" | "navigation_section/padding_7" | "navigation_section/header_2" | "navigation_section/paragraph_8" | "navigation_section/padding_8" | "navigation_section/paragraph_9" | "navigation_section/padding_9" | "navigation_section/header_3" | "navigation_section/paragraph_10" | "nether_portals_button" | "nether_portals_section" | "nether_portals_section/paragraph_1" | "nether_portals_section/padding_1" | "nether_portals_section/paragraph_2" | "nether_portals_section/padding_2" | "nether_portals_section/paragraph_3" | "nether_portals_section/padding_3" | "nether_portals_section/image_1" | "pets_button" | "pets_section" | "pets_section/header_1" | "pets_section/paragraph_1_not_touch" | "pets_section/paragraph_1_touch" | "pets_section/padding_1" | "pets_section/header_2" | "pets_section/paragraph_2" | "pets_section/padding_2" | "pets_section/header_3" | "pets_section/paragraph_3" | "pets_section/padding_3" | "pets_section/header_4" | "pets_section/paragraph_4" | "raids_button" | "raids_section" | "raids_section/paragraph_1" | "raids_section/padding_1" | "raids_section/paragraph_2" | "raids_section/padding_2" | "raids_section/header_1" | "raids_section/paragraph_3" | "ranching_button" | "ranching_section" | "ranching_section/paragraph_1" | "ranching_section/padding_1" | "ranching_section/header_1" | "ranching_section/paragraph_2" | "ranching_section/padding_2" | "ranching_section/paragraph_3" | "ranching_section/padding_3" | "ranching_section/header_2" | "ranching_section/paragraph_4" | "ranching_section/padding_4" | "ranching_section/paragraph_5" | "redstone_button" | "redstone_section" | "redstone_section/paragraph_1" | "redstone_section/padding_1" | "redstone_section/header_1" | "redstone_section/paragraph_2" | "redstone_section/padding_2" | "redstone_section/paragraph_3" | "redstone_section/padding_3" | "redstone_section/paragraph_4" | "redstone_section/padding_4" | "redstone_section/paragraph_5" | "scaffolding_button" | "scaffolding_section" | "scaffolding_section/header_1" | "scaffolding_section/paragraph_1_keyboard" | "scaffolding_section/paragraph_1_gamepad" | "scaffolding_section/paragraph_1a_touch" | "scaffolding_section/padding_1a_touch" | "scaffolding_section/paragraph_1b_touch" | "scaffolding_section/padding_1b_touch" | "scaffolding_section/paragraph_1c_touch" | "scaffolding_section/padding_1" | "scaffolding_section/header_2" | "scaffolding_section/paragraph_2" | "scaffolding_section/image_1" | "scaffolding_section/padding_2" | "scaffolding_section/header_3" | "scaffolding_section/paragraph_3" | "scaffolding_section/padding_3" | "structure_blocks_button" | "structure_blocks_section" | "structure_blocks_section/paragraph_1" | "structure_blocks_section/padding_1" | "structure_blocks_section/header_1" | "structure_blocks_section/paragraph_2" | "structure_blocks_section/padding_2" | "structure_blocks_section/header_2" | "structure_blocks_section/paragraph_3" | "structure_blocks_section/padding_3" | "structure_blocks_section/paragraph_4" | "structure_blocks_section/padding_4" | "structure_blocks_section/paragraph_5" | "structure_blocks_section/padding_5" | "structure_blocks_section/paragraph_6" | "structure_blocks_section/padding_6" | "structure_blocks_section/paragraph_7" | "structure_blocks_section/padding_7" | "structure_blocks_section/header_3" | "structure_blocks_section/paragraph_8" | "structure_blocks_section/padding_8" | "structure_blocks_section/paragraph_9_keyboard" | "structure_blocks_section/paragraph_9_gamepad" | "structure_blocks_section/paragraph_9_touch" | "structure_blocks_section/padding_9" | "structure_blocks_section/header_4" | "structure_blocks_section/paragraph_10" | "structure_blocks_section/padding_10" | "structure_blocks_section/header_5" | "structure_blocks_section/paragraph_11" | "structure_blocks_section/padding_11" | "structure_blocks_section/paragraph_12" | "structure_blocks_section/padding_12" | "structure_blocks_section/paragraph_13" | "structure_blocks_section/padding_13" | "structure_blocks_section/header_6" | "structure_blocks_section/paragraph_14" | "structure_blocks_section/padding_14" | "structure_blocks_section/paragraph_15" | "structure_blocks_section/padding_15" | "structure_blocks_section/header_7" | "structure_blocks_section/paragraph_16" | "structure_blocks_section/padding_16" | "structure_blocks_section/paragraph_17" | "shulker_boxes_button" | "shulker_boxes_section" | "shulker_boxes_section/paragraph_1" | "the_end_button" | "the_end_section" | "the_end_section/paragraph_1" | "the_end_section/padding_1" | "the_end_section/paragraph_2" | "the_end_section/padding_2" | "the_end_section/header_1" | "the_end_section/paragraph_3" | "the_end_section/padding_3" | "the_end_section/paragraph_4" | "the_end_section/padding_4" | "the_end_section/paragraph_5" | "tools_button" | "tools_section" | "tools_section/paragraph_1" | "tools_section/padding_1" | "tools_section/paragraph_2" | "tools_section/padding_2" | "tools_section/header_1" | "tools_section/paragraph_3" | "tools_section/padding_3" | "tools_section/paragraph_4" | "tools_section/padding_4" | "tools_section/paragraph_5_not_touch" | "tools_section/paragraph_5_touch" | "tools_section/padding_5" | "tools_section/paragraph_6_not_touch" | "tools_section/paragraph_6_touch" | "tools_section/padding_6" | "tools_section/paragraph_7" | "tools_section/padding_7" | "tools_section/header_2" | "tools_section/paragraph_8" | "tools_section/padding_8" | "tools_section/paragraph_9" | "tools_section/padding_9" | "tools_section/paragraph_10" | "tools_section/padding_10" | "tools_section/paragraph_11" | "tools_section/padding_11" | "tools_section/paragraph_12" | "trading_button" | "trading_section" | "trading_section/paragraph_1" | "trading_section/padding_1" | "trading_section/header_1" | "trading_section/paragraph_2" | "trading_section/padding_2" | "trading_section/paragraph_3" | "trading_section/padding_3" | "trading_section/paragraph_4" | "transportation_button" | "transportation_section" | "transportation_section/paragraph_1" | "transportation_section/padding_1" | "transportation_section/header_1" | "transportation_section/paragraph_2" | "transportation_section/paragraph_2_touch" | "transportation_section/padding_2" | "transportation_section/paragraph_3_keyboard" | "transportation_section/paragraph_3_gamepad" | "transportation_section/paragraph_3a_touch" | "transportation_section/padding_3a" | "transportation_section/paragraph_3b_touch" | "transportation_section/padding_3b" | "transportation_section/paragraph_3c_touch" | "transportation_section/padding_3" | "transportation_section/header_2" | "transportation_section/paragraph_4" | "transportation_section/paragraph_4_touch" | "transportation_section/padding_4" | "transportation_section/paragraph_5_keyboard" | "transportation_section/paragraph_5_gamepad" | "transportation_section/paragraph_5a_touch" | "transportation_section/padding_5a" | "transportation_section/paragraph_5b_touch" | "transportation_section/padding_5b" | "transportation_section/paragraph_5c_touch" | "weapons_button" | "weapons_section" | "weapons_section/header_1" | "weapons_section/paragraph_1" | "weapons_section/padding_1" | "weapons_section/paragraph_2_not_touch" | "weapons_section/paragraph_2_touch" | "weapons_section/padding_2" | "weapons_section/header_2" | "weapons_section/paragraph_3_not_touch" | "weapons_section/paragraph_3_touch" | "weapons_section/padding_3" | "weapons_section/paragraph_4" | "weapons_section/padding_5" | "weapons_section/header_3" | "weapons_section/paragraph_5_not_touch" | "weapons_section/paragraph_5a_touch" | "weapons_section/padding_5a_touch" | "weapons_section/paragraph_5b_touch" | "weapons_section/padding_5b_touch" | "weapons_section/paragraph_5c_touch" | "weapons_section/padding_5c_touch" | "weapons_section/paragraph_5d_touch" | "weapons_section/padding_6" | "weapons_section/header_4" | "weapons_section/paragraph_6_not_touch" | "weapons_section/paragraph_6_touch" | "weapons_section/padding_7" | "weapons_section/header_5" | "weapons_section/paragraph_7" | "minecoins_button" | "minecoins_section" | "minecoins_section/paragraph_1" | "minecoins_section/padding_1" | "minecoins_section/paragraph_2" | "minecoins_section/padding_2" | "minecoins_section/get_minecoins_button" | "minecoins_section/padding_3" | "minecoins_section/header_1" | "minecoins_section/paragraph_3" | "addons_button" | "addons_section" | "addons_section/paragraph_1" | "addons_section/padding_1" | "addons_section/paragraph_2" | "addons_section/padding_2" | "addons_section/header_1" | "addons_section/paragraph_3" | "addons_section/padding_3" | "addons_section/paragraph_4" | "addons_section/padding_4" | "addons_section/paragraph_5" | "addons_section/addons_faq_button" | "worlds_button" | "worlds_section" | "worlds_section/paragraph_1" | "worlds_section/padding_1" | "worlds_section/paragraph_2" | "worlds_section/padding_2" | "worlds_section/paragraph_3" | "worlds_section/padding_3" | "worlds_section/paragraph_4" | "worlds_section/padding_4" | "worlds_section/header_1" | "worlds_section/paragraph_5" | "worlds_section/padding_5" | "worlds_section/paragraph_6" | "worlds_section/padding_6" | "worlds_section/header_2" | "worlds_section/paragraph_7" | "worlds_section/padding_7" | "worlds_section/paragraph_8" | "worlds_section/padding_8" | "worlds_section/header_3" | "worlds_section/paragraph_9" | "worlds_section/padding_9" | "worlds_section/paragraph_10" | "worlds_section/padding_10" | "worlds_section/header_4" | "worlds_section/paragraph_11" | "worlds_section/padding_11" | "worlds_section/paragraph_12" | "worlds_section/padding_12" | "textures_button" | "textures_section" | "textures_section/paragraph_1" | "skins_button" | "skins_section" | "skins_section/paragraph_1" | "mashups_button" | "mashups_section" | "mashups_section/paragraph_1"; -export type ExpandedSkinPack = "banner_fill" | "title_label" | "label" | "undo_image" | "lock_icon" | "skin_button" | "skin_button/hover" | "skin_button/pressed" | "skin_rotation_arrows" | "skin_viewer_panel" | "skin_viewer_panel/skin_model_panel" | "skin_viewer_panel/skin_model_panel/skin_model" | "skin_viewer_panel/lock" | "undo_skin_button" | "confirm_skin_button" | "stack_item" | "accept_skin_panel" | "accept_skin_panel/stack_item_0" | "accept_skin_panel/stack_item_0/undo_btn" | "accept_skin_panel/stack_item_1" | "accept_skin_panel/stack_item_1/confirm_button" | "preview_skin_panel" | "preview_skin_panel/preview" | "preview_skin_panel/button_frame" | "preview_skin_panel/button_frame/stack_item_0" | "preview_skin_panel/button_frame/stack_item_0/rotation" | "preview_skin_panel/button_frame/stack_item_1" | "preview_skin_panel/button_frame/stack_item_1/accept" | "skin_model" | "scrolling_content" | "scrolling_content/padding_0" | "scrolling_content/pack_info_panel" | "scrolling_content/pack_info_panel/pack_info_panel" | "scrolling_content/skin_grid_panel" | "scrolling_content/skin_grid_panel/skins_grid" | "pack_info_panel" | "pack_info_panel/lock_icon_panel" | "pack_info_panel/lock_icon_panel/lock_icon" | "pack_info_panel/pack_info_panel" | "pack_info_panel/pack_info_panel/pack_name" | "pack_info_panel/pack_info_panel/creator_name" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "select_skin_button" | "select_skin_button/default" | "select_skin_button/hover" | "select_skin_button/pressed" | "all_skins_content" | "all_skins_content/scrolling_frame" | "all_skins_content/scrolling_frame/change_skin_scroll" | "all_skins_frame" | "all_skins_frame/all_skins_content" | "title_bar" | "title_bar/padding_0" | "title_bar/fill_panel" | "title_bar/fill_panel/title_holder" | "title_bar/fill_panel/title_holder/change_skin_title" | "title_bar/padding_1" | "title_bar/skin_name_holder" | "title_bar/skin_name_holder/preview_skin_name" | "title_bar/padding_2" | "content" | "content/title" | "content/selector_area" | "content/content_area" | "content/section_divider" | "expanded_skin_pack_screen" | "skin_picker_screen_content" | "skin_picker_screen_content/bg" | "skin_picker_screen_content/container" | "skin_picker_screen_content/container/content" | "scrollable_selector_area_content" | "selector_area" | "selector_area/all_skins" | "selector_area/inactive_modal_pane_fade" | "content_area" | "content_area/preview_skin" | "content_area/inactive_modal_pane_fade" | "section_divider"; -export type FeedCommon = "top_bar_gradient" | "label" | "smooth_label" | "share_label" | "title_label" | "feed_label" | "item_label" | "return_label" | "prev_label" | "next_label" | "delete_label" | "report_to_club_label" | "report_to_xbox_label" | "new_post_header_text" | "feed_button" | "return_button" | "prev_button" | "prev_panel" | "prev_panel/padding_1" | "prev_panel/lab_panel" | "prev_panel/lab_panel/vert_pad" | "prev_panel/lab_panel/prevlab" | "next_button" | "next_panel" | "next_panel/lab_panel2" | "next_panel/lab_panel2/vert_pad2" | "next_panel/lab_panel2/nextlab" | "next_panel/padding_2" | "like_button" | "delete_button" | "report_to_xbox_button" | "report_to_club_button" | "options_button" | "options_close_button_high_contrast" | "options_close_button_high_contrast/background" | "options_close_button_high_contrast/default" | "options_close_button_high_contrast/hover" | "options_close_button_high_contrast/pressed" | "share_button" | "spacing_gap" | "platform_icon" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "account_link_image" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_02" | "player_pic_bevel" | "no_feed_item_content" | "gamepad_helpers" | "share_text_box" | "progress_loading_bars" | "popup_dialog_bg" | "pagination_panel" | "pagination_panel/prev_button" | "pagination_panel/page_text" | "pagination_panel/next_button" | "pagination_panel_gamepad" | "pagination_panel_gamepad/prev_panel" | "pagination_panel_gamepad/page_text" | "pagination_panel_gamepad/next_panel" | "like_image" | "like_image_default" | "like_image_panel" | "like_image_panel/like_image_instance" | "like_image_panel/like_image_default" | "feed_like_content_panel" | "feed_like_content_panel/like_image_panel" | "feed_like_content_panel/like_label" | "white_banner" | "page_text" | "options_icon" | "transparent_background" | "black_arrow" | "faded_background_image" | "unviewed_post_badge" | "unviewed_post_badge/unviewed_post_text"; -export type FileUpload = "empty_progress_bar_icon" | "full_progress_bar_icon" | "progress_bar_nub" | "progress_bar_icon" | "progress_bar_icon/empty_progress_bar_icon" | "progress_bar_icon/progress_percent_panel" | "progress_bar_icon/progress_percent_panel/full_progress_bar_icon" | "progress_bar_icon/progress_percent_panel/progress_bar_nub" | "common_label" | "progress_text_panel" | "progress_text_panel/progress" | "progress_text_panel/total" | "message_text_panel" | "message_text_panel/message_text" | "button_common" | "lets_go_button" | "cancel_button" | "continue_button" | "continue_or_cancel_button" | "continue_or_cancel_button/continue" | "continue_or_cancel_button/cancel" | "single_title_panel" | "single_title_panel/center" | "dual_title_panel" | "dual_title_panel/left" | "dual_title_panel/right" | "upload_title_panel" | "upload_title_panel/single_label" | "upload_title_panel/dual_label" | "content_panel" | "content_panel/stack_panel_0" | "content_panel/stack_panel_1" | "content_stack_panel" | "content_stack_panel/message" | "content_stack_panel/description" | "content_stack_panel/progress" | "warning_content_panel" | "warning_content_panel/message" | "button_panel" | "button_panel/play" | "button_panel/cancel" | "button_panel/continue_cancel" | "file_upload_content" | "file_upload_content/title_panel_content" | "file_upload_content/content" | "file_upload_content/content/background" | "file_upload_content/content/title" | "file_upload_content/content/content" | "file_upload_content/content/buttons" | "file_transmission_screen"; -export type Furnace = "flame_panel" | "flame_panel/flame_empty_image" | "flame_panel/flame_full_image" | "furnace_arrow_empty_image" | "furnace_arrow_full_image" | "flame_empty_image" | "flame_full_image" | "furnace_label" | "furnace_input_panel" | "furnace_input_panel/panel" | "furnace_input_panel/panel/furnace_ingredient_panel" | "furnace_input_panel/panel/flame_panel" | "furnace_input_panel/panel/furnace_fuel_panel" | "furnace_ingredient_panel" | "furnace_ingredient_panel/ingredient_item" | "furnace_fuel_panel" | "furnace_fuel_panel/fuel_item" | "furnace_output_panel" | "furnace_output_panel/output_item" | "furnace_panel_top_half" | "furnace_panel_top_half/furnace_label" | "furnace_panel_top_half/input" | "furnace_panel_top_half/furnace_arrow_empty_image" | "furnace_panel_top_half/furnace_arrow_full_image" | "furnace_panel_top_half/output" | "furnace_panel" | "furnace_panel/container_gamepad_helpers" | "furnace_panel/selected_item_details_factory" | "furnace_panel/item_lock_notification_factory" | "furnace_panel/root_panel" | "furnace_panel/root_panel/common_panel" | "furnace_panel/root_panel/furnace_screen_inventory" | "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half" | "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label" | "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid" | "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button" | "furnace_panel/root_panel/inventory_selected_icon_button" | "furnace_panel/root_panel/gamepad_cursor" | "furnace_panel/flying_item_renderer" | "furnace_screen"; -export type FurnacePocket = "generic_label" | "background_image" | "empty_arrow" | "full_arrow" | "flame_empty" | "flame_full" | "input_label" | "fuel_label" | "result_label" | "result_name_label" | "furnace_content" | "furnace_content/input_panel" | "furnace_content/input_panel/input_label" | "furnace_content/input_panel/ingredient_item" | "furnace_content/flame_empty" | "furnace_content/flame_full" | "furnace_content/fuel_panel" | "furnace_content/fuel_panel/fuel_label" | "furnace_content/fuel_panel/fuel_item" | "furnace_content/empty_arrow" | "furnace_content/full_arrow" | "furnace_content/output_panel" | "furnace_content/output_panel/result_label" | "furnace_content/output_panel/result_name_label" | "furnace_content/output_panel/output_item" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "header" | "header/header_background" | "header/close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_furnace_panel" | "inventory_and_furnace_panel/inventory_half_screen" | "inventory_and_furnace_panel/inventory_half_screen/inventory_content" | "inventory_and_furnace_panel/furnace_half_screen" | "inventory_and_furnace_panel/furnace_half_screen/furnace_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_furnace_panel" | "furnace_panel" | "furnace_panel/bg" | "furnace_panel/root_panel" | "furnace_panel/header_and_content_stack_panel" | "furnace_panel/container_gamepad_helpers" | "furnace_panel/inventory_selected_icon_button" | "furnace_panel/hold_icon" | "furnace_panel/selected_item_details_factory" | "furnace_panel/item_lock_notification_factory" | "furnace_panel/flying_item_renderer"; -export type GameTip = "game_tip_animation" | "game_tip_animation_panel" | "game_tip_animation_panel/animated_icon" | "game_tip_label" | "game_tip_text_panel" | "game_tip_text_panel/upper_padding" | "game_tip_text_panel/label" | "game_tip_text_panel/lower_padding" | "game_tip_arrow_image" | "game_tip_arrow_panel" | "game_tip_arrow_panel/tip_arrow" | "game_tip_panel" | "game_tip_panel/animated_panel" | "game_tip_panel/middle_padding" | "game_tip_panel/label" | "game_tip_panel/right_padding" | "game_tip_item_background" | "game_tip_item_background/horizontal_container" | "game_tip_item_background/arrow_panel" | "chat_stack_game_tip_panel" | "chat_stack_game_tip_panel/top_padding" | "chat_stack_game_tip_panel/game_tip_background" | "game_tip_factory" | "game_tip_chat_stack_factory"; -export type GamepadDisconnected = "gamepad_disconnected_modal" | "gamepad_disconnected_modal/dialog_background_hollow_3" | "gamepad_disconnected_modal/dialog_background_hollow_3/control" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1" | "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description" | "gamepad_disconnected_screen"; -export type Gameplay = "bundle_selected_item_icon" | "bundle_open_icon_back" | "bundle_open_icon_front" | "bundle_selected_item_background" | "bundle_selected_item_background/bundle_selected_item_background_colour_green" | "bundle_selected_item_background/bundle_selected_item_background_colour" | "bundle_selected_item_background/bundle_selected_item_frame" | "bundle_selected_item_panel" | "bundle_selected_item_panel/bundle_selected_item_background" | "bundle_selected_item_panel/bundle_open_icon_back" | "bundle_selected_item_panel/bundle_selected_item_icon" | "bundle_selected_item_panel/bundle_open_icon_front" | "bundle_selected_item_panel/storage_bar" | "bundle_slot_panel" | "bundle_slot_panel/bundle_selected_item_panel" | "bundle_cell_image" | "bundle_cell_image/background_panel" | "bundle_cell_image/background_panel/item_background" | "bundle_cell_image/highlight_panel" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white" | "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue" | "bundle_tooltip_slot_button" | "bundle_tooltip_slot_pocket" | "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket" | "bundle_tooltip_slot_pocket/more_hidden_items_label" | "bundle_tooltip_slot_classic" | "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket" | "bundle_tooltip_slot_classic/more_hidden_items_label" | "bundle_tooltip" | "bundle_tooltip/background" | "bundle_tooltip/background/empty_button" | "bundle_tooltip/background/empty_button/default" | "bundle_tooltip/background/empty_button/hover" | "bundle_tooltip/background/empty_button/pressed" | "bundle_tooltip/background/selected_item_tooltip" | "bundle_tooltip/background/selected_item_tooltip/item_text_label" | "bundle_tooltip/header_stack" | "bundle_tooltip/header_stack/bundle_label" | "bundle_tooltip/header_stack/close_button" | "bundle_tooltip/header_stack/close_button/default" | "bundle_tooltip/header_stack/close_button/hover" | "bundle_tooltip/header_stack/close_button/pressed" | "bundle_tooltip/wrapper" | "bundle_tooltip/wrapper/vertical_layout_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/header_padding" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label" | "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border" | "bundle_touch_tooltip" | "bundle_tooltip_factory_wrapper" | "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip" | "bundle_cursor_tooltip" | "bundle_cursor_tooltip/tooltip"; -export type GatheringInfo = "gathering_info_screen" | "info_content" | "info_content/header" | "info_content/left_panel" | "info_content/left_panel/stack" | "info_content/left_panel/stack/event_image" | "info_content/left_panel/stack/pad_2" | "info_content/left_panel/stack/button_and_caption" | "info_content/left_panel/stack/button_and_caption/caption" | "info_content/left_panel/stack/button_and_caption/action_button" | "info_content/left_panel/stack/pad_3" | "info_content/left_panel/stack/info_button" | "info_content/left_panel/stack/pad_4" | "info_content/left_panel/stack/gamepad_helper_panel" | "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers" | "info_content/left_panel/stack/pad_fill" | "info_content/left_panel/stack/gathering_id_label" | "info_content/left_panel/stack/pad_5" | "info_content/section_divider" | "info_content/right_panel" | "info_content/right_panel/scroll" | "right_panel_content" | "right_panel_content/pad" | "right_panel_content/sign_in_panel" | "right_panel_content/sign_in_panel/sign_in_image" | "right_panel_content/sign_in_panel/horizontal_pad" | "right_panel_content/sign_in_panel/text_stack" | "right_panel_content/sign_in_panel/text_stack/sign_in_title" | "right_panel_content/sign_in_panel/text_stack/text_pad" | "right_panel_content/sign_in_panel/text_stack/sign_in_body" | "right_panel_content/sign_in_pad" | "right_panel_content/qr_panel" | "right_panel_content/qr_panel/qr_background" | "right_panel_content/qr_panel/qr_background/qr_image" | "right_panel_content/qr_panel/horizontal_pad" | "right_panel_content/qr_panel/text_stack" | "right_panel_content/qr_panel/text_stack/qr_title" | "right_panel_content/qr_panel/text_stack/text_pad" | "right_panel_content/qr_panel/text_stack/qr_body" | "right_panel_content/qr_pad" | "right_panel_content/title" | "right_panel_content/pad_1" | "right_panel_content/body" | "right_panel_content/pad_2" | "right_panel_content/body_image" | "right_panel_content/footer" | "tts_label" | "tts_label_title" | "sign_in_title" | "sign_in_body" | "qr_title" | "qr_body" | "title_panel" | "body_panel" | "section_divider" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "gamepad_helpers/gamepad_helper_b"; -export type Globalpause = "message" | "quit_button" | "globalpause_screen" | "pause_screen_content" | "pause_screen_content/transparentFill" | "pause_screen_content/message" | "pause_screen_content/quit_button"; -export type Grindstone = "title_label" | "arrow_icon" | "cross_out_icon" | "grindstone_output_slot_button" | "grindstone_item_slot" | "grindstone_item_slot/container_item" | "grindstone_middle_panel" | "grindstone_middle_panel/input_item_slot" | "grindstone_middle_panel/additional_item_slot" | "grindstone_slots_panel" | "grindstone_slots_panel/grindstone_middle_panel" | "grindstone_slots_panel/yields" | "grindstone_slots_panel/yields/arrow_icon" | "grindstone_slots_panel/yields/cross_out_icon" | "grindstone_slots_panel/result_item_slot" | "top_half_panel" | "top_half_panel/title_label" | "top_half_panel/grindstone_slots_panel" | "grindstone_panel" | "grindstone_panel/container_gamepad_helpers" | "grindstone_panel/selected_item_details_factory" | "grindstone_panel/item_lock_notification_factory" | "grindstone_panel/root_panel" | "grindstone_panel/root_panel/common_panel" | "grindstone_panel/root_panel/grindstone_screen_inventory" | "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel" | "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label" | "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid" | "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button" | "grindstone_panel/root_panel/inventory_selected_icon_button" | "grindstone_panel/root_panel/gamepad_cursor" | "grindstone_panel/flying_item_renderer" | "grindstone_screen"; -export type GrindstonePocket = "background_image" | "repair_title_label" | "grindstone_middle_panel" | "grindstone_middle_panel/input_slot" | "grindstone_middle_panel/additional_slot" | "slots_panel" | "slots_panel/grindstone_middle_panel" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "slots_panel/result_slot" | "grindstone_contents_panel" | "grindstone_contents_panel/repair_title_label" | "grindstone_contents_panel/slots_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "header" | "header/header_background" | "header/legacy_pocket_close_button" | "header/panel" | "header/panel/title_label" | "inventory_and_grindstone_panel" | "inventory_and_grindstone_panel/inventory_half_screen" | "inventory_and_grindstone_panel/inventory_half_screen/inventory_content" | "inventory_and_grindstone_panel/grindstone_half_screen" | "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_grindstone_panel" | "grindstone_panel" | "grindstone_panel/bg" | "grindstone_panel/root_panel" | "grindstone_panel/header_and_content_stack_panel" | "grindstone_panel/container_gamepad_helpers" | "grindstone_panel/inventory_selected_icon_button" | "grindstone_panel/hold_icon" | "grindstone_panel/selected_item_details_factory" | "grindstone_panel/item_lock_notification_factory" | "grindstone_panel/flying_item_renderer"; -export type GammaCalibration = "stack_panel_centering_panel" | "stack_panel_centering_panel/child" | "stack_panel_align_left_panel" | "stack_panel_align_left_panel/child" | "stack_panel_align_right_panel" | "stack_panel_align_right_panel/child" | "image_panel" | "image_panel/padding" | "image_panel/image" | "horizontal_padding" | "image_stack" | "image_stack/not_visible_image" | "image_stack/padding_0" | "image_stack/barely_visible_image" | "image_stack/padding_1" | "image_stack/easily_visible_image" | "button_stack" | "button_stack/continue_button_panel" | "button_stack/padding" | "button_stack/reset_button_panel" | "message_panel" | "message_panel/message_label" | "calibration_slider" | "calibration_slider/slider" | "continue_button" | "reset_button" | "main_panel" | "main_panel/hdr_message_panel" | "main_panel/image_stack_panel" | "main_panel/padding_0" | "main_panel/slider_panel" | "main_panel/padding_1" | "main_panel/button_stack_panel" | "gamma_calibration_screen"; -export type Horse = "renderer_bg" | "overlay_image" | "saddle_image" | "horse_armor_image" | "carpet_image" | "nautilus_armor_image" | "horse_label" | "equip_grid" | "inv_grid" | "inv_bg_panel" | "inv_bg_panel/cell_image" | "equip_panel" | "equip_panel/equip_grid" | "equip_panel/saddle" | "equip_panel/horse_armor_0" | "equip_panel/carpet_0" | "equip_panel/nautilus_armor_0" | "equip_panel/horse_armor_1" | "equip_panel/carpet_1" | "equip_panel/nautilus_armor_1" | "inv_panel" | "inv_panel/inv_bg_panel" | "inv_panel/inv_grid" | "horse_renderer" | "horse_renderer/renderer_bg" | "horse_renderer/horse_custom_panel" | "horse_renderer/horse_custom_panel/horse_custom" | "horse_panel" | "horse_panel/container_gamepad_helpers" | "horse_panel/selected_item_details_factory" | "horse_panel/item_lock_notification_factory" | "horse_panel/root_panel" | "horse_panel/root_panel/common_panel" | "horse_panel/root_panel/horse_section_label" | "horse_panel/root_panel/inv_panel" | "horse_panel/root_panel/equipment" | "horse_panel/root_panel/renderer" | "horse_panel/root_panel/inventory_panel_bottom_half_with_label" | "horse_panel/root_panel/hotbar_grid_template" | "horse_panel/root_panel/inventory_selected_icon_button" | "horse_panel/root_panel/gamepad_cursor" | "horse_panel/flying_item_renderer" | "horse_screen"; -export type HorsePocket = "horse_panel" | "horse_panel/gamepad_helpers" | "horse_panel/inventory_selected_icon_button" | "horse_panel/gamepad_cursor" | "horse_panel/selected_item_details_factory" | "horse_panel/item_lock_notification_factory" | "horse_panel/base_panel" | "horse_panel/base_panel/root_panel" | "horse_panel/base_panel/hold_icon" | "horse_panel/base_panel/bg" | "horse_panel/base_panel/interactive_tabs" | "horse_panel/base_panel/close_button" | "horse_panel/base_panel/inventory" | "horse_panel/base_panel/equipment" | "horse_panel/base_panel/chest_tab" | "horse_panel/base_panel/chest_tab/visual_tabs_chest" | "horse_panel/base_panel/chest_tab/chest" | "horse_panel/base_panel/renderer_tab" | "horse_panel/base_panel/renderer_tab/visual_tabs_equip" | "horse_panel/base_panel/renderer_tab/renderer" | "horse_panel/flying_item_renderer" | "background_image" | "dark_bg" | "renderer_bg" | "saddle_image" | "horse_armor_image" | "carpet_image" | "nautilus_armor_image" | "panel_outline" | "close_button_default" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "base_grid" | "inventory_grid" | "chest_grid" | "base_grid_panel" | "base_grid_panel/panel_outline" | "base_grid_panel/dark_bg" | "base_grid_panel/scrolling_panel" | "inventory_panel" | "chest_panel" | "half_screen" | "middle_screen" | "half_screen_inventory" | "half_screen_inventory/inventory_panel" | "half_screen_chest" | "half_screen_chest/chest_panel" | "horse_renderer" | "horse_renderer/horse_custom" | "half_screen_renderer" | "half_screen_renderer/renderer_bg" | "half_screen_renderer/horse_custom_panel" | "half_screen_renderer/camel_custom_panel" | "equip_item_panel" | "equip_item_panel/equip_container_item" | "equip_grid" | "equip_middle_screen" | "equip_middle_screen/equip_grid_panel" | "equip_middle_screen/equip_grid_panel/equip_grid" | "equip_middle_screen/equip_grid_panel/centered_0" | "equip_middle_screen/equip_grid_panel/offset" | "equip_middle_screen/equip_grid_panel/centered_1" | "equip_middle_screen/equip_grid_panel/centered_2" | "equip_middle_screen/equip_grid_panel/horse_armor_image" | "equip_middle_screen/equip_grid_panel/carpet_image" | "horse_screen_tab_toggle" | "interactive_tabs" | "interactive_tabs/renderer_tab_interactive" | "interactive_tabs/chest_tab_interactive" | "tab_front" | "tab_back" | "close_tab" | "item_icon_renderer" | "saddle_icon_front" | "chest_icon_front" | "visual_tabs_equip" | "visual_tabs_equip/close_tab" | "visual_tabs_equip/close_tab/nodrop_zone" | "visual_tabs_equip/chest" | "visual_tabs_equip/chest/chest_icon" | "visual_tabs_equip/equip" | "visual_tabs_equip/equip/equip_icon" | "visual_tabs_chest" | "visual_tabs_chest/close_tab" | "visual_tabs_chest/chest" | "visual_tabs_chest/chest/chest_icon" | "visual_tabs_chest/equip" | "visual_tabs_chest/equip/equip_icon"; -export type HowToPlayCommon = "dynamic_dialog_screen" | "screen_background" | "top_bar" | "button_panel" | "light_text_button" | "action_button" | "topic_category" | "topic_category/top_padding" | "topic_category/category_text" | "toggle_button_control" | "toggle_button_control/tab_button_text" | "glyph_button_control" | "glyph_button_control/tab_button_text" | "glyph_button_control/glyph" | "section_toggle_button" | "section_toggle_button/section_toggle_button" | "edu_section_toggle_button" | "padding" | "touch_padding" | "small_padding" | "large_padding" | "section_contents_header" | "section_contents_footer" | "main_sections" | "splitscreen_only_content" | "splitscreen_only_content/0" | "tts_focus_border" | "header_tts_focus_border" | "header_background" | "header_background/header_label" | "header_background/focus_border" | "header" | "header/header" | "paragraph_panel" | "paragraph_label" | "paragraph_tts_focus_border" | "paragraph" | "paragraph/label" | "paragraph/focus_border" | "paragraph_with_icons" | "paragraph_with_icons/label" | "paragraph_with_icons/focus_border" | "input_conditional_paragraph" | "input_conditional_paragraph_with_icons" | "paragraph_keyboard" | "paragraph_gamepad" | "paragraph_gamepad_no_icons" | "paragraph_touch" | "paragraph_touch_classic_dpad_spacing" | "paragraph_touch_no_icons" | "paragraph_touch_joystick_tap" | "paragraph_touch_classic_dpad" | "paragraph_touch_joystick_crosshair" | "paragraph_not_touch" | "image" | "how_to_play_header" | "how_to_play_header/top_bar" | "how_to_play_header/top_bar/back_button" | "how_to_play_header/top_bar/how_to_play_title" | "how_to_play_header/top_bar/gamepad_bumper_helpers" | "how_to_play_content" | "how_to_play_content/header" | "how_to_play_content/container" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/section_divider" | "scrollable_selector_area_content" | "selector_area" | "selector_area/scrolling_panel" | "section_divider" | "content_area_wrapper" | "content_area_wrapper/content_area" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel" | "screen_base" | "gamepad_bumper_helper_description" | "gamepad_bumper_helpers" | "gamepad_bumper_helpers/gamepad_helper_left_bumper" | "gamepad_bumper_helpers/padding" | "gamepad_bumper_helpers/gamepad_helper_right_bumper"; -export type HowToPlay = "how_to_play_screen" | "how_to_play_selector_stack_panel" | "how_to_play_selector_stack_panel/how_to_play_selector_pane" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button" | "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button" | "how_to_play_section_content_panels" | "how_to_play_section_content_panels/general_tips_sections" | "how_to_play_section_content_panels/general_tips_sections/section_contents_header" | "how_to_play_section_content_panels/general_tips_sections/moving_around_section" | "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section" | "how_to_play_section_content_panels/general_tips_sections/selecting_items_section" | "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section" | "how_to_play_section_content_panels/general_tips_sections/inventory_section" | "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section" | "how_to_play_section_content_panels/general_tips_sections/recipe_book_section" | "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section" | "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section" | "how_to_play_section_content_panels/general_tips_sections/mining_section" | "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section" | "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section" | "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section" | "how_to_play_section_content_panels/general_tips_sections/food_section" | "how_to_play_section_content_panels/general_tips_sections/beds_new_section" | "how_to_play_section_content_panels/general_tips_sections/improved_tools_section" | "how_to_play_section_content_panels/general_tips_sections/world_builder_section" | "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section" | "how_to_play_section_content_panels/general_tips_sections/chalkboard_section" | "how_to_play_section_content_panels/general_tips_sections/chemistry_section" | "how_to_play_section_content_panels/general_tips_sections/npc_section" | "how_to_play_section_content_panels/general_tips_sections/camera_section" | "how_to_play_section_content_panels/general_tips_sections/portfolio_section" | "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section" | "how_to_play_section_content_panels/general_tips_sections/code_builder_section" | "how_to_play_section_content_panels/general_tips_sections/playing_together_section" | "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section" | "how_to_play_section_content_panels/general_tips_sections/section_contents_footer" | "moving_around_button" | "moving_around_section" | "moving_around_section/paragraph_1" | "moving_around_section/padding_1" | "moving_around_section/paragraph_2_keyboard" | "moving_around_section/paragraph_2_gamepad" | "moving_around_section/paragraph_touch_joystick_tap" | "moving_around_section/padding_2" | "moving_around_section/paragraph_3a_keyboard" | "moving_around_section/paragraph_3b_keyboard" | "moving_around_section/paragraph_3a_gamepad" | "moving_around_section/paragraph_3b_gamepad" | "moving_around_section/paragraph_3_touch_joystick_tap" | "moving_around_section/paragraph_3a_touch_classic_dpad" | "moving_around_section/paragraph_3b_touch_classic_dpad" | "moving_around_section/paragraph_3c_touch_classic_dpad" | "moving_around_section/paragraph_3d_touch_classic_dpad" | "moving_around_section/paragraph_3e_touch_classic_dpad" | "moving_around_section/paragraph_3_touch_joystick_crosshair" | "moving_around_section/image_1" | "gathering_resources_button" | "gathering_resources_section" | "gathering_resources_section/paragraph_1" | "gathering_resources_section/padding_1" | "gathering_resources_section/paragraph_2_keyboard" | "gathering_resources_section/paragraph_2_gamepad" | "gathering_resources_section/paragraph_2_touch_joystick_tap" | "gathering_resources_section/paragraph_2_touch_classic_dpad" | "gathering_resources_section/paragraph_2_touch_joystick_crosshair" | "gathering_resources_section/padding_2" | "gathering_resources_section/paragraph_3" | "selecting_items_button" | "selecting_items_section" | "selecting_items_section/paragraph_1" | "selecting_items_section/padding_1" | "selecting_items_section/paragraph_2_keyboard" | "selecting_items_section/paragraph_2_gamepad" | "selecting_items_section/paragraph_touch_joystick_tap" | "selecting_items_section/padding_2" | "selecting_items_section/paragraph_3_keyboard" | "selecting_items_section/paragraph_3_gamepad" | "selecting_items_section/paragraph_3_touch_joystick_tap" | "selecting_items_section/paragraph_3_touch_classic_dpad" | "selecting_items_section/paragraph_3_touch_joystick_crosshair" | "selecting_items_section/padding_3" | "selecting_items_section/header_1" | "selecting_items_section/image_1_not_touch" | "selecting_items_section/image_1_touch" | "placing_blocks_button" | "placing_blocks_section" | "placing_blocks_section/paragraph_1" | "placing_blocks_section/padding_1" | "placing_blocks_section/paragraph_2_keyboard" | "placing_blocks_section/paragraph_2_gamepad" | "placing_blocks_section/paragraph_2_touch_joystick_tap" | "placing_blocks_section/paragraph_2_touch_classic_dpad" | "placing_blocks_section/paragraph_2_touch_joystick_crosshair" | "placing_blocks_section/padding_2" | "placing_blocks_section/paragraph_3" | "inventory_button" | "inventory_section" | "inventory_section/image_1_not_touch" | "inventory_section/image_1_touch" | "inventory_section/header_1" | "inventory_section/paragraph_1_keyboard" | "inventory_section/paragraph_1_gamepad" | "inventory_section/paragraph_1_touch" | "inventory_section/padding_2" | "inventory_section/header_2" | "inventory_section/paragraph_2_keyboard" | "inventory_section/paragraph_2_gamepad" | "inventory_section/paragraph_2_touch" | "your_first_craft_button" | "your_first_craft_section" | "your_first_craft_section/image_1_not_touch" | "your_first_craft_section/image_1_touch" | "your_first_craft_section/header_1" | "your_first_craft_section/paragraph_1" | "your_first_craft_section/padding_2" | "your_first_craft_section/paragraph_2" | "your_first_craft_section/padding_3" | "your_first_craft_section/paragraph_3_touch" | "your_first_craft_section/paragraph_3_keyboard" | "your_first_craft_section/paragraph_3_gamepad" | "your_first_craft_section/padding_4" | "your_first_craft_section/header_2" | "your_first_craft_section/paragraph_4" | "your_first_craft_section/padding_5" | "your_first_craft_section/paragraph_5" | "recipe_book_button" | "recipe_book_section" | "recipe_book_section/paragraph_1_keyboard" | "recipe_book_section/paragraph_1_gamepad" | "recipe_book_section/paragraph_1_touch" | "recipe_book_section/padding_1" | "recipe_book_section/paragraph_2_keyboard" | "recipe_book_section/paragraph_2_gamepad" | "recipe_book_section/paragraph_2_touch" | "the_crafting_table_button" | "the_crafting_table_section" | "the_crafting_table_section/image_1" | "the_crafting_table_section/paragraph_1" | "the_crafting_table_section/padding_2" | "the_crafting_table_section/paragraph_2_keyboard" | "the_crafting_table_section/paragraph_2_gamepad" | "the_crafting_table_section/paragraph_2_touch" | "crafting_a_tool_button" | "crafting_a_tool_section" | "crafting_a_tool_section/paragraph_1" | "crafting_a_tool_section/padding_1" | "crafting_a_tool_section/paragraph_2_keyboard" | "crafting_a_tool_section/paragraph_2_gamepad" | "crafting_a_tool_section/paragraph_2_touch" | "mining_button" | "mining_section" | "mining_section/image_1" | "mining_section/paragraph_1" | "mining_section/padding_2" | "mining_section/paragraph_2" | "mining_section/padding_3" | "mining_section/paragraph_3" | "nightfall_new_button" | "nightfall_new_section" | "nightfall_new_section/paragraph_1" | "nightfall_new_section/padding_1" | "nightfall_new_section/paragraph_2" | "nightfall_new_section/padding_2" | "nightfall_new_section/paragraph_3" | "nightfall_new_section/padding_3" | "nightfall_new_section/paragraph_4_keyboard" | "nightfall_new_section/paragraph_4_gamepad" | "nightfall_new_section/paragraph_4_touch_joystick_tap" | "nightfall_new_section/paragraph_4_touch_classic_dpad" | "nightfall_new_section/paragraph_4_touch_joystick_crosshair" | "building_a_shelter_button" | "building_a_shelter_section" | "building_a_shelter_section/image_1" | "building_a_shelter_section/paragraph_1" | "building_a_shelter_section/padding_2" | "building_a_shelter_section/paragraph_2" | "building_a_shelter_section/padding_3" | "building_a_shelter_section/paragraph_3" | "death_and_respawn_button" | "death_and_respawn_section" | "death_and_respawn_section/paragraph_1" | "death_and_respawn_section/padding_1" | "death_and_respawn_section/paragraph_2" | "food_button" | "food_section" | "food_section/paragraph_1" | "food_section/padding_1" | "food_section/paragraph_2_keyboard" | "food_section/paragraph_2_gamepad" | "food_section/paragraph_2_touch" | "food_section/padding_2" | "food_section/paragraph_3" | "beds_new_button" | "beds_new_section" | "beds_new_section/paragraph_1" | "beds_new_section/padding_1" | "beds_new_section/paragraph_2" | "beds_new_section/padding_2" | "beds_new_section/paragraph_3" | "improved_tools_button" | "improved_tools_section" | "improved_tools_section/paragraph_1" | "improved_tools_section/padding_1" | "improved_tools_section/paragraph_2" | "world_builder_button" | "world_builder_section" | "world_builder_section/paragraph_1" | "world_builder_section/padding_1" | "world_builder_section/paragraph_2" | "world_builder_section/padding_2" | "world_builder_section/paragraph_3" | "world_builder_section/padding_3" | "world_builder_section/paragraph_4" | "world_builder_section/padding_4" | "world_builder_section/paragraph_5" | "world_builder_section/padding_5" | "world_builder_section/paragraph_6" | "world_builder_section/paragraph_7" | "world_builder_section/padding_7" | "world_builder_section/paragraph_8" | "world_builder_section/padding_8" | "world_builder_section/paragraph_9" | "permission_blocks_button" | "permission_blocks_section" | "permission_blocks_section/paragraph_1" | "permission_blocks_section/padding_1" | "permission_blocks_section/header_1" | "permission_blocks_section/paragraph_2" | "permission_blocks_section/padding_3" | "permission_blocks_section/paragraph_3" | "permission_blocks_section/padding_4" | "permission_blocks_section/paragraph_4" | "permission_blocks_section/padding_5" | "permission_blocks_section/paragraph_5" | "permission_blocks_section/padding_7" | "permission_blocks_section/header_2" | "permission_blocks_section/paragraph_6" | "chalkboard_button" | "chalkboard_section" | "chalkboard_section/paragraph_1_keyboard" | "chalkboard_section/paragraph_1_gamepad" | "chalkboard_section/paragraph_1_touch" | "chemistry_button" | "chemistry_section" | "chemistry_section/paragraph_1" | "chemistry_section/padding_1" | "chemistry_section/paragraph_2" | "npc_button" | "npc_section" | "npc_section/paragraph_1" | "npc_section/padding_1" | "npc_section/paragraph_2" | "npc_section/padding_2" | "npc_section/paragraph_3" | "camera_button" | "camera_section" | "camera_section/paragraph_1" | "camera_section/padding_1" | "camera_section/paragraph_2_keyboard" | "camera_section/paragraph_2_gamepad" | "camera_section/paragraph_2_touch" | "camera_section/padding_2" | "camera_section/paragraph_3_keyboard" | "camera_section/paragraph_3_gamepad" | "camera_section/paragraph_3_touch" | "camera_section/padding_3" | "camera_section/paragraph_4" | "portfolio_button" | "portfolio_section" | "portfolio_section/paragraph_1_keyboard" | "portfolio_section/paragraph_1_gamepad" | "portfolio_section/paragraph_1_touch" | "classroom_mode_button" | "classroom_mode_section" | "classroom_mode_section/paragraph_1" | "classroom_mode_section/padding_1" | "classroom_mode_section/paragraph_2" | "code_builder_button" | "code_builder_section" | "code_builder_section/paragraph_1" | "code_builder_section/padding_1" | "code_builder_section/paragraph_2_keyboard" | "code_builder_section/paragraph_2_gamepad" | "code_builder_section/paragraph_2_touch" | "playing_together_button" | "playing_together_section" | "playing_together_section/paragraph_1" | "playing_together_section/padding_1" | "playing_together_section/header_1" | "playing_together_section/paragraph_2" | "playing_together_section/padding_2" | "playing_together_section/header_2" | "playing_together_section/paragraph_3" | "playing_together_section/padding_3" | "playing_together_section/paragraph_4" | "playing_together_section/padding_4" | "playing_together_section/paragraph_5" | "playing_together_section/padding_5" | "playing_together_section/header_3" | "playing_together_section/paragraph_6" | "playing_together_section/padding_6" | "playing_together_section/paragraph_7" | "playing_together_section/padding_7" | "playing_together_section/paragraph_8" | "playing_together_section/realms_button" | "playing_together_section/sign_in_button" | "playing_together_section/padding_8" | "playing_together_section/header_4" | "playing_together_section/paragraph_9" | "playing_together_section/padding_9" | "playing_together_section/paragraph_10" | "try_realms_action_button" | "encyclopedia_button" | "encyclopedia_section" | "encyclopedia_section/paragraph_1"; -export type Hud = "hud_player_renderer" | "hud_player_renderer/hud_player" | "hotbar_renderer" | "hotbar_renderer/hotbar_slot_image" | "cooldown_renderer" | "heart_renderer" | "horse_heart_renderer" | "armor_renderer" | "exp_progress_bar_and_hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend/hotbar" | "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar" | "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label" | "exp_progress_bar_and_hotbar/item_text_factory" | "exp_progress_bar_and_hotbar_pocket" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub" | "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar" | "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label" | "exp_progress_bar_and_hotbar_pocket/hotbar_panel" | "exp_progress_bar_and_hotbar_pocket/item_text" | "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory" | "exp_progress_bar_and_hotbar_pocket/horse_jump_rend" | "exp_progress_bar_and_hotbar_pocket/dash_rend" | "full_progress_bar" | "empty_progress_bar" | "progress_bar_nub" | "progress_text_label" | "horse_jump_renderer" | "dash_renderer" | "locator_bar" | "hunger_renderer" | "bubbles_renderer" | "mob_effects_renderer" | "vignette_renderer" | "editor_gizmo_renderer" | "cursor_renderer" | "progress_indicator_renderer" | "camera_renderer" | "editor_volume_highlight_renderer" | "editor_compass_renderer" | "hotbar_hud_item_icon" | "elipses_image" | "bound_button_label" | "default_borderless_button_layout" | "hover_borderless_button_layout" | "pressed_borderless_button_layout" | "borderless_button" | "borderless_button/default" | "borderless_button/hover" | "borderless_button/pressed" | "borderless_button/elipses" | "hotbar_elipses_button" | "start_cap_image" | "end_cap_image" | "hotbar_start_cap" | "hotbar_start_cap/start_cap_image" | "hotbar_end_cap" | "hotbar_end_cap/end_cap_image" | "heart_image" | "hotbar_slot_image" | "hotbar_slot_selected_image" | "gui_hotbar_slot_button_prototype" | "player_position" | "player_position/player_position_text" | "number_of_days_played" | "number_of_days_played/number_of_days_played_text" | "chat_label" | "chat_grid_item" | "chat_grid_item/chat_background" | "chat_grid_item/chat_background/chat_text" | "chat_panel" | "chat_panel/stack_panel" | "item_durability" | "item_storage" | "container_item_lock_overlay" | "item_lock_cell_image" | "gui_hotbar_grid_item" | "gui_hotbar_grid_item/hotbar_slot_selected_image" | "gui_hotbar_grid_item/hotbar_renderer" | "gui_hotbar_grid_item/hotbar_parent" | "gui_hotbar_grid_item/hotbar_parent/item_icon" | "gui_hotbar_grid_item/hotbar_parent/item_count" | "gui_hotbar_grid_item/hotbar_parent/hotbar_hint" | "gui_hotbar_grid_item/hotbar_parent/item_dura" | "gui_hotbar_grid_item/hotbar_parent/item_store" | "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay" | "gui_hotbar_grid_item/cooldown_renderer" | "gui_hotbar_grid_item/hotbar_slot_button" | "gui_hotbar_grid_item_pocket" | "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image" | "gui_hotbar_grid_item_pocket/hotbar_renderer" | "gui_hotbar_grid_item_pocket/hotbar_parent" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_count" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura" | "gui_hotbar_grid_item_pocket/hotbar_parent/item_store" | "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay" | "gui_hotbar_grid_item_pocket/cooldown_renderer" | "gui_hotbar_grid_item_pocket/hotbar_slot_button" | "centered_gui_elements" | "centered_gui_elements/hud_player_rend_desktop" | "centered_gui_elements_at_bottom_middle" | "centered_gui_elements_at_bottom_middle/heart_rend" | "centered_gui_elements_at_bottom_middle/horse_heart_rend_0" | "centered_gui_elements_at_bottom_middle/horse_heart_rend_1" | "centered_gui_elements_at_bottom_middle/armor_rend" | "centered_gui_elements_at_bottom_middle/hunger_rend" | "centered_gui_elements_at_bottom_middle/bubbles_rend_0" | "centered_gui_elements_at_bottom_middle/bubbles_rend_1" | "centered_gui_elements_at_bottom_middle/exp_rend" | "centered_gui_elements_at_bottom_middle_touch" | "centered_gui_elements_at_bottom_middle_touch/heart_rend" | "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0" | "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1" | "centered_gui_elements_at_bottom_middle_touch/armor_rend" | "centered_gui_elements_at_bottom_middle_touch/hunger_rend" | "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0" | "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1" | "centered_gui_elements_at_bottom_middle_touch/exp_rend" | "not_centered_gui_elements" | "not_centered_gui_elements/heart_rend" | "not_centered_gui_elements/horse_heart_rend" | "not_centered_gui_elements/hunger_rend" | "not_centered_gui_elements/armor_rend" | "not_centered_gui_elements/hud_player_rend_pocket" | "not_centered_gui_elements/bubbles_rend_0" | "not_centered_gui_elements/bubbles_rend_1" | "hotbar_chooser" | "hotbar_chooser/desktop_hotbar" | "hotbar_chooser/pocket_hotbar" | "hotbar_elipses_panel_right_content" | "hotbar_elipses_panel_right_content/elipses_content" | "hotbar_elipses_panel_right_art" | "hotbar_elipses_panel_right_art/slot" | "hotbar_elipses_panel_right_art/button" | "hotbar_elipses_panel_left_content" | "hotbar_elipses_panel_left_content/button" | "hotbar_elipses_panel_left_art" | "hotbar_elipses_panel_left_art/slot" | "hotbar_elipses_panel_left_art/button" | "hotbar_panel" | "hotbar_panel/hotbar_start_cap" | "hotbar_panel/hotbar_elipses_panel_left" | "hotbar_panel/hotbar_grid" | "hotbar_panel/hotbar_elipses_panel_right" | "hotbar_panel/hotbar_end_cap" | "hotbar_panel_pocket" | "hotbar_panel_pocket/hotbar_start_cap_frame" | "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap" | "hotbar_panel_pocket/hotbar_elipses_panel_left" | "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left" | "hotbar_panel_pocket/hotbar_grid" | "hotbar_panel_pocket/hotbar_elipses_panel_right" | "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right" | "hotbar_panel_pocket/hotbar_end_cap_frame" | "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap" | "hotbar_grid" | "edu_hotbar_grid" | "item_name_text_root" | "item_name_text_root/item_text_aligner" | "item_name_text_root/item_text_aligner/item_text_control" | "item_name_text_root/item_text_aligner/item_text_control/item_text_background" | "item_name_text_root/item_text_aligner/item_text_control/item_text_label" | "item_name_text_root/item_text_aligner/interact_padding" | "item_name_text_root/item_text_aligner/survival_buffer" | "item_name_text" | "jukebox_popup_text" | "hud_tip_text" | "hud_tip_text/item_text_label" | "auto_save" | "hud_actionbar_text" | "hud_actionbar_text/actionbar_message" | "hud_title_text" | "hud_title_text/title_frame" | "hud_title_text/title_frame/title_background" | "hud_title_text/title_frame/title" | "hud_title_text/subtitle_frame" | "hud_title_text/subtitle_frame/subtitle_background" | "hud_title_text/subtitle_frame/subtitle" | "boss_name_panel" | "boss_name_panel/boss_name" | "tooltip_helper_icon_description" | "tooltip_helper_icon_description/label_background" | "tooltip_helper" | "tooltip_helper/icon" | "tooltip_helper/padding" | "tooltip_helper/centerer" | "tooltip_helper/centerer/desc" | "tooltip_helper_form_fitting" | "tooltip_helper_form_fitting/icon" | "tooltip_helper_form_fitting/padding" | "tooltip_helper_form_fitting/centerer" | "tooltip_helper_form_fitting/centerer/desc" | "keyboard_tooltip_helper" | "keyboard_tooltip_helper_form_fitting" | "mixed_tooltip_helper" | "mixed_tooltip_helper/gamepad_tooltip" | "mixed_tooltip_helper/keyboard_tooltip" | "mixed_tooltip_helper_form_fitting" | "mixed_tooltip_helper_form_fitting/gamepad_tooltip" | "mixed_tooltip_helper_form_fitting/keyboard_tooltip" | "base_icon_image" | "base_icon_image/icon" | "base_icon_image/postfix_label_wrapper" | "base_icon_image/postfix_label_wrapper/label" | "base_keyboard_icon" | "base_keyboard_icon/icon" | "base_keyboard_icon/icon/key_backing" | "base_keyboard_icon/icon/key_backing/key_label" | "base_keyboard_icon/icon/mouse_buttons" | "left_helpers_edu" | "left_helpers_edu/tip_window" | "left_helpers_edu/tip_window/stack_panel" | "left_helpers_edu/tip_paddding" | "left_helpers_edu/controls_toggle_label" | "left_helpers_edu/controls_toggle_label/tip" | "left_helpers_edu/controls_inventory_label" | "left_helpers_edu/controls_inventory_label/tip" | "left_helpers_edu/controls_menu_label" | "left_helpers_edu/controls_menu_label/tip" | "left_helpers" | "left_helpers/stack_panel" | "emote_label_background" | "emote_tip" | "emote_tip/emote_keyboard_centerer" | "emote_tip/emote_keyboard_centerer/emote_keyboard_helper" | "emote_tip/emote_gamepad_helper" | "emote_expediate_helpers" | "emote_expediate_helpers/stack_panel" | "emote_expediate_helpers/stack_panel/emote_tip_0" | "emote_expediate_helpers/stack_panel/emote_tip_1" | "emote_expediate_helpers/stack_panel/emote_tip_2" | "emote_expediate_helpers/stack_panel/emote_tip_3" | "right_helpers" | "right_helpers/stack_panel" | "boss_health_panel" | "boss_health_panel/boss_name" | "boss_health_panel/progress_bar_for_collections" | "boss_health_grid" | "wysiwyg_reset_modal_ok" | "wysiwyg_reset_modal_cancel" | "wysiwyg_close_without_saving_modal_ok" | "wysiwyg_close_without_saving_modal_cancel" | "root_panel" | "root_panel/layout_customization_reset" | "root_panel/layout_customization_reset/layout_customization_reset_modal" | "root_panel/layout_customization_close_without_saving" | "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal" | "root_panel/layout_customization_main_panel" | "root_panel/layout_customization_sub_panel" | "root_panel/layout_customization_hint_drag_frame" | "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag" | "root_panel/layout_customization_hint_deselect_frame" | "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect" | "root_panel/layout_customization_hint_saved" | "root_panel/layout_customization_hint_saved/layout_customization_hint_saved" | "root_panel/left_helpers" | "root_panel/right_helpers" | "root_panel/emote_expediate_helpers" | "root_panel/centered_gui_elements" | "root_panel/centered_gui_elements_at_bottom_middle" | "root_panel/centered_gui_elements_at_bottom_middle_touch" | "root_panel/not_centered_gui_elements" | "root_panel/gamertag_label_for_splitscreen" | "root_panel/exp_rend" | "root_panel/exp_rend_resizable" | "root_panel/hud_tip_text_factory" | "root_panel/hud_actionbar_text_area" | "root_panel/hud_title_text_area" | "root_panel/mob_effects_renderer" | "root_panel/vignette_rend" | "root_panel/curor_rend" | "root_panel/game_tip" | "root_panel/sidebar" | "root_panel/progress_rend" | "root_panel/chat_stack" | "root_panel/chat_stack/paper_doll_padding" | "root_panel/chat_stack/non_centered_gui_padding" | "root_panel/chat_stack/player_position" | "root_panel/chat_stack/number_of_days_played" | "root_panel/chat_stack/game_tip" | "root_panel/chat_stack/chat_panel" | "root_panel/boss_health_panel" | "root_panel/boss_health_panel/boss_hud_padding" | "root_panel/boss_health_panel/boss_hud_touch_padding" | "root_panel/boss_health_panel/boss_hud_panel" | "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid" | "root_panel/save_icon" | "hud_screen" | "hud_content" | "hud_content/root_panel" | "hud_content/editor_gizmo_renderer" | "hud_content/editor_compass_renderer" | "hud_content/editor_volume_highlight_renderer" | "hud_content/camera_renderer" | "layout_customization_main_panel_button" | "layout_customization_main_panel_button/button" | "layout_customization_main_panel" | "layout_customization_main_panel/main_panel_frame" | "layout_customization_main_panel/main_panel_frame/main_panel_content" | "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button" | "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button" | "layout_customization_option_slider" | "layout_customization_option_slider/slider" | "layout_customization_option_slider/reset" | "layout_customization_option_slider/reset/reset_button" | "layout_customization_option_slider/reset/reset_button/default" | "layout_customization_option_slider/reset/reset_button/hover" | "layout_customization_option_slider/reset/reset_button/pressed" | "layout_customization_option_content" | "layout_customization_option_content/scale_option" | "layout_customization_option_content/opacity_option" | "layout_customization_option_content/apply_to_all_toggle" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked" | "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked" | "layout_customization_option_content/apply_to_all_toggle/caption_frame" | "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption" | "layout_customization_option" | "layout_customization_option/content" | "layout_customization_sub_panel" | "layout_customization_sub_panel/background" | "layout_customization_sub_panel/background/sub_panel_content"; -export type HostOptions = "button_label" | "host_image_panel" | "host_image_panel/host_image" | "host_glyph_panel" | "scrollable_selector_area" | "host_main_button" | "scrolling_panel" | "scrolling_panel/background" | "scrolling_panel/scrollable_tab" | "button_content" | "button_content/button_label" | "button_content/image" | "main_light_button" | "main_dark_button" | "host_grid" | "host_sub_command_grid_item" | "host_sub_command_grid_item/host_option_banner" | "return_from_sub_command_button" | "platform_icon_panel" | "gamertag_wrapper" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_gamertag" | "player_button_content/platform_icon" | "player_grid_item" | "player_grid_item/player_banner" | "host_friends_tab" | "host_friends_tab/players_grid" | "host_teleport_grid_item" | "host_teleport_grid_item/host_option_toggle" | "host_teleport_grid_item/host_option_button" | "host_teleport_buttons" | "host_teleport_buttons/return" | "host_teleport_buttons/sub_tab" | "host_teleport_buttons/sub_tab/host_main_grid" | "host_teleport_player_list_buttons" | "host_teleport_player_list_buttons/toggle" | "host_teleport_player_list_buttons/toggle/host_time_panel" | "host_teleport_player_buttons" | "host_time_buttons" | "host_time_buttons/return" | "host_time_buttons/sub_tab" | "host_time_buttons/sub_tab/scrolli_scrolli_ravioli" | "host_weather_buttons" | "host_weather_buttons/return" | "host_weather_buttons/sub_tab" | "host_weather_buttons/sub_tab/host_main_grid" | "host_menu_grid_item" | "host_menu_grid_item/host_option_banner" | "host_main_buttons" | "host_main_buttons/host_main_grid" | "host_panel" | "host_panel/host_main_panel" | "host_panel/host_teleport_panel" | "host_panel/host_teleport_player_panel" | "host_panel/host_time_panel" | "host_panel/host_weather_panel"; -export type Bed = "in_bed_screen" | "in_bed_screen_content" | "in_bed_screen_content/wake_up_button_panel" | "in_bed_screen_content/wake_up_button_panel/wake_up_button" | "in_bed_screen_content/wake_up_button_panel/spacer" | "in_bed_screen_content/wake_up_button_panel/chat_button" | "in_bed_screen_content/wake_up_label_panel" | "in_bed_screen_content/select_button" | "background"; -export type ImReader = "reader_button_contents" | "reader_button" | "webview" | "loading" | "loading/animation_item" | "loading/animation_item/animation" | "loading/loading_text_item" | "loading/loading_text_item/loading_text" | "loading/bottom_padding" | "loading/cancel_button" | "no_retry_error_button" | "retry_error_buttons" | "retry_error_buttons/try_again" | "retry_error_buttons/middle_padding" | "retry_error_buttons/cancel" | "error" | "error/error_text" | "error/error_buttons" | "error/error_buttons/retry" | "error/error_buttons/no_retry" | "loading_and_error_panel" | "loading_and_error_panel/loading" | "loading_and_error_panel/error" | "immersive_reader_screen_content" | "immersive_reader_screen_content/loading_and_error" | "immersive_reader_screen_content/webview" | "immersive_reader_screen"; -export type Crafting = "inventory_x_gamepad_helper" | "inventory_y_gamepad_helper" | "inventory_a_gamepad_helper" | "inventory_b_gamepad_helper" | "gamepad_helper_bumpers" | "gamepad_helper_bumpers/gamepad_helper_left_bumper" | "gamepad_helper_bumpers/gamepad_helper_right_bumper" | "gamepad_helper_left_trigger" | "gamepad_helper_right_trigger" | "container_gamepad_helpers_second_row" | "container_gamepad_helpers_second_row/buffer_panel_left" | "container_gamepad_helpers_second_row/left_thumbstick_visibility" | "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left" | "container_gamepad_helpers_second_row/fill_panel" | "container_gamepad_helpers_second_row/right_thumbstick_visibility" | "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right" | "container_gamepad_helpers_second_row/buffer_panel_right" | "crafting_root_panel" | "drop_item_panel" | "inventory_container_slot_button" | "creative_hotbar_container_slot_button" | "no_coalesce_container_slot_button" | "creative_no_coalesce_container_slot_button" | "output_no_coalesce_container_slot_button" | "tab_image" | "item_renderer" | "inventory_icon" | "recipe_book_icon" | "creative_icon" | "icon_image" | "tab_front" | "tab_back" | "equipment_icon" | "construction_icon" | "nature_icon" | "search_icon" | "miscellaneous_icon" | "empty_tab_panel" | "empty_tab_panel/img" | "top_tab" | "search_tab" | "construction_tab" | "equipment_tab" | "nature_tab" | "items_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel" | "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory" | "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative" | "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival" | "tab_content_padding" | "tab_content" | "tab_content/tab_content_search_bar_panel" | "tab_content/tab_content_search_bar_panel/vertical_padding_1" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle" | "tab_content/tab_content_search_bar_panel/vertical_padding_2" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder" | "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle" | "tab_content/tab_content_search_bar_panel/vertical_padding_3" | "tab_content/tab_content_search_bar_panel/scroll_pane" | "tab_content/nodrop_zone" | "armor_overlay" | "offhand_overlay" | "armor_overlay_helmet" | "armor_overlay_chest" | "armor_overlay_legs" | "armor_image_feet" | "armor_overlay_shield" | "player_armor_panel" | "player_armor_panel/player_bg" | "player_armor_panel/player_bg/player_renderer_panel" | "player_armor_panel/player_bg/player_renderer_panel/player_renderer" | "player_armor_panel/player_preview_border" | "player_armor_panel/armor_grid" | "player_armor_panel/armor_grid/head_grid_item" | "player_armor_panel/armor_grid/chest_grid_item" | "player_armor_panel/armor_grid/legs_grid_item" | "player_armor_panel/armor_grid/feet_grid_item" | "player_armor_panel/offhand_grid" | "player_armor_panel/offhand_grid/offhand_grid_item" | "crafting_label" | "inventory_label" | "crafting_arrow" | "crafting_arrow_large" | "crafting_input_grid_item" | "crafting_grid_3x3" | "crafting_grid_3x3/crafting_input_item_top_left" | "crafting_grid_3x3/crafting_input_item_top_mid" | "crafting_grid_3x3/crafting_input_item_top_right" | "crafting_grid_3x3/crafting_input_item_mid_left" | "crafting_grid_3x3/crafting_input_item_middle" | "crafting_grid_3x3/crafting_input_item_mid_right" | "crafting_grid_3x3/crafting_input_item_bot_left" | "crafting_grid_3x3/crafting_input_item_bot_mid" | "crafting_grid_3x3/crafting_input_item_bot_right" | "crafting_grid_2x2" | "crafting_grid_2x2/crafting_input_item_top_left" | "crafting_grid_2x2/crafting_input_item_top_right" | "crafting_grid_2x2/crafting_input_item_bot_left" | "crafting_grid_2x2/crafting_input_item_bot_right" | "output_grid_3x3" | "output_grid_3x3/work_bench_output" | "output_grid_2x2" | "output_grid_2x2/work_bench_output" | "work_bench_panel_3x3" | "work_bench_panel_3x3/inventory_label" | "work_bench_panel_3x3/crafting_arrow_large" | "work_bench_panel_3x3/crafting_grid_3x3_with_label_0" | "work_bench_panel_3x3/work_bench_output_grid" | "crafting_grid_3x3_with_label" | "crafting_grid_3x3_with_label/crafting_label" | "crafting_grid_3x3_with_label/crafting_grid_3x3" | "crafting_grid_2x2_with_label" | "crafting_grid_2x2_with_label/crafting_label" | "crafting_grid_2x2_with_label/crafting_grid_2x2" | "crafting_panel_2x2" | "crafting_panel_2x2/crafting_arrow" | "crafting_panel_2x2/crafting_table" | "crafting_panel_2x2/crafting_grid_2x2" | "crafting_panel_2x2/survival_crafting_output_grid" | "survival_panel_top_half" | "survival_panel_top_half/player_armor_panel" | "survival_panel_top_half/crafting_panel" | "crafting_panel_top_half" | "crafting_panel_top_half/crafting_panel" | "recipe_container_cell_images" | "cell_image_recipe_default" | "cell_image_recipe_group_head_collapsed" | "cell_image_recipe_group_head_expanded" | "cell_image_recipe_group_item" | "cell_image_recipe_selected" | "cell_image_recipe_default_red" | "container_cell_images" | "container_cell_images/cell_classic" | "container_cell_images/cell_normal" | "container_cell_images/cell_invert" | "container_cell_images/cell_red" | "container_cell_images/cell_selected" | "container_cell_images/cell_darkgrey" | "crafting_container_cell_images" | "cell_image" | "cell_image_classic" | "cell_image_normal" | "cell_image_invert" | "cell_image_red" | "cell_image_selected" | "cell_image_darkgrey" | "container_overlay_images" | "container_overlay_images/expand" | "container_overlay_images/contract" | "item_overlay_image" | "item_overlay_contract" | "item_overlay_expand" | "inventory_container_item" | "inventory_container_item/item_cell" | "inventory_container_item/item_cell/item" | "inventory_container_item/item_cell/item/stack_count_label" | "inventory_container_item/item_cell/durability_bar" | "inventory_container_item/item_cell/storage_bar" | "inventory_container_item/item_cell_overlay_ref" | "inventory_container_item/item_selected_image" | "inventory_container_item/item_button_ref" | "inventory_container_item/container_item_lock_overlay" | "inventory_container_item/item_lock_cell_image" | "inventory_container_item/bundle_slot_panel" | "grid_item_for_recipe_book" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_grid" | "scroll_panel" | "recipe_book_scroll_panel" | "creative_label" | "filter_toggle" | "toolbar_background" | "layout_toggle_content" | "layout_toggle_content/image" | "layout_toggle_content/icon" | "layout_template_toggle" | "layout_toggle" | "creative_layout_toggle" | "recipe_book_layout_toggle" | "survival_layout_toggle" | "help_button" | "help_button/default" | "help_button/hover" | "help_button/pressed" | "player_inventory" | "player_inventory/common_panel" | "player_inventory/inventory_panel_top_half" | "player_inventory/inventory_panel_bottom_half" | "player_inventory/hotbar_grid" | "recipe_book" | "recipe_book/gamepad_helper_bumpers" | "recipe_book/tab_navigation_panel" | "recipe_book/bg" | "recipe_book/tab_content_panel" | "recipe_book/creative_hotbar_panel" | "creative_hotbar_panel" | "creative_hotbar_panel/creative_hotbar_background" | "creative_hotbar_panel/creative_hotbar_background/hotbar_grid" | "center_fold" | "center_fold/center_bg" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor" | "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0" | "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative" | "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4" | "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor" | "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger" | "inventory_screen_base" | "crafting_screen" | "inventory_screen" | "recipe_book_toggle_image" | "recipe_inventory_screen_content" | "recipe_inventory_screen_content/content_stack_panel" | "recipe_inventory_screen_content/content_stack_panel/recipe_book" | "recipe_inventory_screen_content/content_stack_panel/center_fold" | "recipe_inventory_screen_content/content_stack_panel/survival_padding" | "recipe_inventory_screen_content/content_stack_panel/player_inventory" | "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor" | "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel" | "recipe_inventory_screen_content/inventory_take_progress_icon_button" | "recipe_inventory_screen_content/inventory_selected_icon_button" | "recipe_inventory_screen_content/hold_icon" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row" | "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers" | "recipe_inventory_screen_content/selected_item_details_factory" | "recipe_inventory_screen_content/item_lock_notification_factory" | "recipe_inventory_screen_content/flying_item_renderer"; -export type CraftingPocket = "survival_icon" | "full_screen_icon" | "crafting_icon" | "armor_icon" | "crafting_arrow_down" | "empty_tab_panel" | "left_tab" | "right_tab" | "full_screen_tab" | "crafting_tab" | "armor_tab" | "search_tab" | "construction_tab" | "equipment_tab" | "items_tab" | "nature_tab" | "inventory_tab" | "left_tab_navigation_panel_pocket" | "left_tab_navigation_panel_pocket/content" | "left_tab_navigation_panel_pocket/content/search_tab_panel" | "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab" | "left_tab_navigation_panel_pocket/content/construction_tab_panel" | "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory" | "left_tab_navigation_panel_pocket/content/equipment_tab_panel" | "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory" | "left_tab_navigation_panel_pocket/content/items_tab_panel" | "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory" | "left_tab_navigation_panel_pocket/content/nature_tab_panel" | "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory" | "left_tab_navigation_panel_pocket/content/fill" | "left_tab_navigation_panel_pocket/content/inventory_tab" | "right_tab_navigation_panel_pocket" | "right_tab_navigation_panel_pocket/content" | "right_tab_navigation_panel_pocket/content/close" | "right_tab_navigation_panel_pocket/content/close/nodrop_zone" | "right_tab_navigation_panel_pocket/content/close/close_button" | "right_tab_navigation_panel_pocket/content/fill" | "right_tab_navigation_panel_pocket/content/full_screen_tab" | "right_tab_navigation_panel_pocket/content/crafting_tab" | "right_tab_navigation_panel_pocket/content/armor_tab" | "recipe_book_tab_content" | "inventory_tab_content" | "right_tab_content" | "right_tab_content/bg" | "right_tab_content/content" | "crafting_input_grid_item" | "crafting_grid_3x3" | "crafting_grid_2x2" | "output_grid_and_label" | "output_grid_and_label/recipe_item_label" | "output_grid_and_label/output_grid" | "output_grid" | "output_grid/work_bench_output" | "crafting_grid_3x3_with_label" | "crafting_grid_3x3_with_label/crafting_label" | "crafting_grid_3x3_with_label/crafting_grid_3x3" | "crafting_grid_2x2_with_label" | "crafting_grid_2x2_with_label/crafting_label" | "crafting_grid_2x2_with_label/crafting_grid_2x2" | "scroll_background_image" | "grid_item_for_inventory" | "survival_inventory_grid" | "scroll_panel_pocket" | "recipe_book_scroll_panel_pocket" | "survival_scroll_panel" | "pocket_armor_tab_content" | "pocket_armor_tab_content/label_and_renderer" | "pocket_armor_tab_content/label_and_renderer/label_panel" | "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label" | "pocket_armor_tab_content/label_and_renderer/renderer_panel" | "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer" | "pocket_armor_tab_content/equipment_and_renderer" | "pocket_armor_tab_content/equipment_and_renderer/equipment" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid" | "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel" | "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer" | "hotbar_panel" | "hotbar_panel/bg" | "hotbar_panel/hotbar_grid" | "hotbar_grid_item" | "survival_panel_pocket" | "survival_panel_pocket/crafting_panel" | "survival_panel_pocket/crafting_arrow_down" | "survival_panel_pocket/crafting_table" | "survival_panel_pocket/output" | "survival_panel_crafting_pocket" | "survival_panel_crafting_pocket/crafting_panel" | "survival_panel_crafting_pocket/crafting_arrow_down" | "survival_panel_crafting_pocket/output" | "inventory_screen_pocket_base" | "crafting_screen_pocket" | "inventory_screen_pocket" | "left_panel" | "left_panel/left_background" | "left_panel/recipe_book_tab_content" | "left_panel/inventory_tab_content" | "right_panel" | "right_panel/right_background" | "right_panel/help_button" | "right_panel/crafting_tab_content" | "right_panel/armor_tab_content" | "both_panels" | "both_panels/left_tab_navigation_panel_pocket" | "both_panels/left_panel" | "both_panels/offset_panel" | "both_panels/offset_panel/center_bg" | "both_panels/right_panel" | "both_panels/right_tab_navigation_panel_pocket" | "gamepad_helper_border" | "gamepad_helper_border/left_gamepad_panel" | "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper" | "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger" | "gamepad_helper_border/both_panels" | "gamepad_helper_border/right_gamepad_panel" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper" | "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger" | "hotbar_and_panels" | "hotbar_and_panels/padding_1" | "hotbar_and_panels/gamepad_helper_border" | "hotbar_and_panels/hotbar_section_panel" | "hotbar_and_panels/hotbar_section_panel/hotbar" | "recipe_inventory_screen_content_pocket" | "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket" | "recipe_inventory_screen_content_pocket/toast_screen_content" | "recipe_inventory_screen_content_pocket/selected_item_details_factory" | "recipe_inventory_screen_content_pocket/item_lock_notification_factory" | "recipe_inventory_screen_content_pocket/base_panel" | "recipe_inventory_screen_content_pocket/base_panel/root_panel" | "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button" | "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor" | "recipe_inventory_screen_content_pocket/base_panel/hold_icon" | "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels" | "recipe_inventory_screen_content_pocket/flying_item_renderer"; -export type Invite = "black_border" | "black_border_hover" | "platform_icon" | "grey_borderless_locked" | "checked_locked_image" | "unchecked_locked_image" | "left_arrow_image" | "right_arrow_image" | "account_link_image" | "panel_text" | "loading_friends" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_03" | "gamerpic" | "third_party_profile_pic" | "gamerpic_panel" | "gamerpic_panel/black_border" | "gamerpic_panel/gamerpic" | "gamerpic_panel/online_indication_positioner" | "gamerpic_panel/online_indication_positioner/indicator_images" | "third_party_profile_pic_panel" | "third_party_profile_pic_panel/black_border" | "third_party_profile_pic_panel/third_party_profile_pic" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "status_image" | "online_image" | "offline_image" | "online_indicator" | "online_indicator/online_image" | "checkbox_panel" | "checked_panel" | "checked_panel/checked_image" | "unchecked_panel" | "unchecked_panel/unchecked_image" | "checked_locked_panel" | "checked_locked_panel/checked_image" | "unchecked_locked_panel" | "unchecked_locked_panel/unchecked_image" | "checked_hover_panel" | "checked_hover_panel/checked_hover_image" | "unchecked_hover_panel" | "unchecked_hover_panel/unchecked_hover_image" | "friend_label" | "friend_grid_xbl_gamertag" | "friend_grid_current_game_label" | "friend_grid_third_party_tag" | "friend_background" | "friend_background_hover" | "friend_background_borderless" | "hover_friend_button" | "hover_friend_button/friend_button_layout" | "hover_friend_button/hover_text" | "linked_hover_friend_button" | "linked_hover_friend_button/hover_text" | "msa_friend_button_layout" | "msa_friend_button_layout/spacer01" | "msa_friend_button_layout/platform_icon_spacer" | "msa_friend_button_layout/spacer_02" | "msa_friend_button_layout/friend_grid_label_layout" | "msa_friend_button_layout/friend_grid_label_layout/spacer_01" | "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag" | "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label" | "platform_friend_button_layout" | "platform_friend_button_layout/spacer01" | "platform_friend_button_layout/platform_icon_spacer" | "platform_friend_button_layout/third_party_pic_panel_positioner" | "platform_friend_button_layout/third_party_pic_panel_positioner/pp" | "platform_friend_button_layout/spacer_02" | "platform_friend_button_layout/friend_grid_label_layout" | "platform_friend_button_layout/friend_grid_label_layout/spacer_01" | "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag" | "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label" | "platform_friend_button_layout/platform_icon_positioner" | "platform_friend_button_layout/platform_icon_positioner/platform_icon" | "platform_friend_button_layout/online_indication_positioner" | "platform_friend_button_layout/online_indication_positioner/indicator_images" | "linked_friend_button_layout" | "linked_friend_button_layout/spacer01" | "linked_friend_button_layout/platform_icon_positioner" | "linked_friend_button_layout/platform_icon_positioner/platform_icon" | "linked_friend_button_layout/spacer02" | "linked_friend_button_layout/platform_profile_pictures" | "linked_friend_button_layout/platform_profile_pictures/spacer_01" | "linked_friend_button_layout/platform_profile_pictures/pp2" | "linked_friend_button_layout/platform_profile_pictures/account_link" | "linked_friend_button_layout/platform_profile_pictures/pp1" | "linked_friend_button_layout/platform_profile_pictures/spacer_03" | "linked_friend_button_layout/spacer03" | "linked_friend_button_layout/platform_profile_names" | "linked_friend_button_layout/platform_profile_names/spacer_01" | "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag" | "linked_friend_button_layout/platform_profile_names/spacer_02" | "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag" | "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label" | "linked_friend_button_layout/online_indication_positioner" | "linked_friend_button_layout/online_indication_positioner/indicator_images" | "template_msa_friend_button_layout" | "template_msa_friend_button_layout/friend_background" | "template_msa_friend_button_layout/friend_button_layout" | "template_msa_friend_button_layout/unchecked" | "template_platform_friend_button_layout" | "template_platform_friend_button_layout/friend_background" | "template_platform_friend_button_layout/friend_button_layout" | "template_platform_friend_button_layout/unchecked" | "template_linked_friend_button_layout" | "template_linked_friend_button_layout/friend_background" | "template_linked_friend_button_layout/horizontal_spacer_panel" | "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked" | "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout" | "msa_friend_button" | "msa_friend_button/checked" | "msa_friend_button/unchecked" | "msa_friend_button/checked_hover" | "msa_friend_button/unchecked_hover" | "msa_friend_button/checked_locked" | "msa_friend_button/unchecked_locked" | "msa_friend_button/checked_locked_hover" | "msa_friend_button/unchecked_locked_hover" | "platform_friend_button" | "platform_friend_button/checked" | "platform_friend_button/unchecked" | "platform_friend_button/checked_hover" | "platform_friend_button/unchecked_hover" | "platform_friend_button/checked_locked" | "platform_friend_button/unchecked_locked" | "platform_friend_button/checked_locked_hover" | "platform_friend_button/unchecked_locked_hover" | "linked_friend_button" | "linked_friend_button/checked" | "linked_friend_button/unchecked" | "linked_friend_button/checked_hover" | "linked_friend_button/unchecked_hover" | "linked_friend_button/checked_locked" | "linked_friend_button/unchecked_locked" | "linked_friend_button/checked_locked_hover" | "linked_friend_button/unchecked_locked_hover" | "msa_friend_grid_item_template" | "msa_friend_grid_item_template/friend_button_Panel" | "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner" | "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp" | "msa_friend_grid_item_template/friend_button_Panel/friend_button" | "msa_friend_grid_item_template/profile_button_pannel" | "msa_friend_grid_item_template/profile_button_pannel/view_profile_button" | "msa_friend_grid_item_template/spacer_03" | "platform_friend_grid_item_template" | "platform_friend_grid_item_template/friend_button" | "friend_linked_account_grid_item_template" | "friend_linked_account_grid_item_template/friend_button" | "online_xbox_live_friend_grid_item" | "offline_xbox_live_friend_grid_item" | "online_linked_account_friend_grid_item" | "offline_linked_account_friend_grid_item" | "online_platform_friend_grid_item" | "offline_platform_friend_grid_item" | "online_xbox_live_friend_list_grid" | "offline_xbox_live_friend_list_grid" | "online_platform_friend_list_grid" | "offline_platform_friend_list_grid" | "online_linked_account_friend_list_grid" | "offline_linked_account_friend_list_grid" | "friends_pagination_controls" | "friends_pagination_controls/previous_button" | "friends_pagination_controls/center_panel" | "friends_pagination_controls/center_panel/page_counter" | "friends_pagination_controls/next_button" | "friends_category" | "friends_category/friends_grid" | "friends_category/pagination_stack_panel" | "friends_category/pagination_stack_panel/padding_1" | "friends_category/pagination_stack_panel/pagination_controls" | "friends_category/pagination_stack_panel/padding_2" | "friends_category/pagination_stack_panel/divider" | "friends_category/padding" | "frame_label" | "friend_panel" | "scrolling_content_stack" | "scrolling_content_stack/message" | "scrolling_content_stack/message/frame_label" | "scrolling_content_stack/online_platform" | "scrolling_content_stack/online_platform/frame_label" | "scrolling_content_stack/vertical_padding_0" | "scrolling_content_stack/online_platform_friend_list_category" | "scrolling_content_stack/crossplatform_disabled_panel" | "scrolling_content_stack/crossplatform_disabled_panel/disable_text" | "scrolling_content_stack/crossplatform_disable_spacer" | "scrolling_content_stack/online_cross_platform" | "scrolling_content_stack/online_cross_platform/frame_label" | "scrolling_content_stack/vertical_padding_1" | "scrolling_content_stack/online_linked_account_friend_list_category" | "scrolling_content_stack/online_xbox_live_friend_list_category" | "scrolling_content_stack/offline_platform" | "scrolling_content_stack/offline_platform/frame_label" | "scrolling_content_stack/vertical_padding_2" | "scrolling_content_stack/offline_platform_friend_list_category" | "scrolling_content_stack/no_platform_friends" | "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper" | "scrolling_content_stack/offline_cross_platform" | "scrolling_content_stack/offline_cross_platform/frame_label" | "scrolling_content_stack/vertical_padding_3" | "scrolling_content_stack/offline_linked_account_friend_list_category" | "scrolling_content_stack/offline_xbox_live_friend_list_category" | "scrolling_content_stack/no_xbox_live_friends" | "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper" | "progress_bar_and_scrolling_content_panel" | "progress_bar_and_scrolling_content_panel/progress_loading_bars" | "progress_bar_and_scrolling_content_panel/invite_scrolling_area" | "no_xbox_live_friends_frame_label" | "no_platform_friends_frame_label" | "horizontal_invite_panel" | "vertical_invite_panel" | "scrolling_area" | "invite_button_content" | "invite_button_content/gameplay_helper" | "invite_button_content/button_label" | "invite_button_content_hover" | "invite_button_content_pressed" | "invite_button_content_locked" | "add_friend_button" | "profile_button_content" | "profile_button_content/button_label" | "profile_button_content_hover" | "profile_button_content_pressed" | "profile_button_content_locked" | "add_member_button" | "send_button" | "profile_button" | "horizontal_button_stack_panel" | "horizontal_button_stack_panel/add_friend_button" | "horizontal_button_stack_panel/add_member_button" | "horizontal_button_stack_panel/padding" | "horizontal_button_stack_panel/send_button" | "vertical_buttons_top_panel" | "vertical_buttons_top_panel/add_friend_button" | "vertical_buttons_top_panel/add_member_button" | "vertical_buttons_bottom_panel" | "vertical_buttons_bottom_panel/send_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "invite_screen" | "invite_screen_content" | "invite_screen_content/gamepad_helpers" | "invite_screen_content/invite_panel"; -export type JigsawEditor = "horizontal_buffer" | "vertical_buffer" | "common_text_label" | "text_edit_box" | "help_icon" | "toggle_with_label" | "toggle_with_label/toggle" | "toggle_with_label/toggle_label_padding" | "toggle_with_label/toggle_label_wrapper" | "toggle_with_label/toggle_label_wrapper/toggle_label" | "toggle_with_label/toggle_label_wrapper/toggle_label_disabled" | "data_item_title_and_edit" | "data_item_title_and_edit/data_title" | "data_item_title_and_edit/data_text_edit" | "data_item_title_and_edit_fill" | "data_item_title_and_toggle" | "data_item_title_and_toggle/data_title" | "data_item_title_and_toggle/toggle" | "exit_buttons" | "exit_buttons/done_button" | "exit_buttons/buffer" | "exit_buttons/help_button" | "scrolling_panel_wrapper" | "scrolling_panel_wrapper/scrolling_panel" | "scrolling_panel" | "scroll_panel_content" | "scroll_panel_content/target_pool_title_and_edit" | "scroll_panel_content/buffer_1" | "scroll_panel_content/name_title_and_edit" | "scroll_panel_content/buffer_2" | "scroll_panel_content/target_title_and_edit" | "scroll_panel_content/buffer_3" | "scroll_panel_content/final_block_title_and_edit" | "scroll_panel_content/buffer_4" | "scroll_panel_content/selection_and_placement_priority" | "scroll_panel_content/buffer_5" | "scroll_panel_content/joint_type_title_and_toggle" | "scroll_panel_content/buffer_6" | "selection_and_placement_priority" | "selection_and_placement_priority/selection_priority_title_and_edit" | "selection_and_placement_priority/buffer_1" | "selection_and_placement_priority/placement_priority_title_and_edit" | "button_panel_wrapper" | "button_panel_wrapper/exit_buttons" | "jigsaw_editor_panel" | "jigsaw_editor_panel/scrolling_panel" | "jigsaw_editor_panel/button_wrapper" | "jigsaw_editor_panel/button_wrapper/buttons" | "jigsaw_editor_content" | "jigsaw_editor_content/background_panel" | "jigsaw_editor_content/title" | "jigsaw_editor_content/jigsaw_editor_panel" | "jigsaw_editor_screen"; -export type LateJoin = "animation_panel" | "animation_panel/stacked_column" | "animation_panel/stacked_column/waiting_animating_text" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b_and_padding" | "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b" | "late_join_pregame_screen" | "late_join_screen_content" | "late_join_screen_content/animation_panel" | "late_join_screen_content/gamepad_helpers"; -export type LibraryModal = "modal_button" | "modal_text_content" | "modal_ok" | "modal_cancel" | "in_game_prompt" | "fetch_error" | "content" | "content/fetch" | "content/ingame" | "content_wrapper" | "content_wrapper/content" | "background" | "library_modal_screen" | "text_panel" | "edu_icon" | "continue_button" | "paragraph" | "welcome_text_panel" | "welcome_text_panel/padding_1" | "welcome_text_panel/paragraph_1_wrapper" | "welcome_text_panel/paragraph_1_wrapper/edu_icon" | "welcome_text_panel/paragraph_1_wrapper/stack_buffer1" | "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel" | "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1" | "welcome_text_panel/padding_2" | "welcome_text_panel/paragraph_two" | "welcome_text_panel/padding_3" | "welcome_text_panel/paragraph_three" | "welcome_scrolling_panel" | "welcome_panel_content" | "welcome_panel_content/background_panel" | "welcome_panel_content/welcome_scrolling_panel" | "welcome_panel_content/continue_button" | "welcome_panel" | "welcome_panel/welcome"; -export type LocalWorldPicker = "local_world_picker_screen" | "local_world_picker_content" | "local_world_picker_content/background" | "local_world_picker_content/panel_label" | "local_world_picker_content/content"; -export type Loom = "loom_label" | "arrow_icon" | "pattern_cell_image" | "container_cell_image" | "banner_outline" | "item_empty_image" | "banner_empty_image" | "dye_empty_image" | "pattern_item_empty_image" | "toolbar_background" | "highlight_slot_panel" | "highlight_slot_panel/highlight" | "highlight_slot_panel/white_border" | "pattern_slot_button" | "pattern_slot_button/hover" | "banner_pattern" | "pattern_button" | "pattern_button/banner_pattern" | "pattern_button/item_button_ref" | "scroll_grid" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_panel" | "pattern_book_panel" | "pattern_book_panel/bg" | "pattern_book_panel/scroll_panel" | "result_slot_button" | "input_item_slot" | "dye_item_slot" | "material_item_slot" | "result_item_slot" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots_stack_panel/padding_1" | "input_slots_stack_panel/dye_item_slot" | "input_slots_stack_panel/padding_2" | "input_slots_stack_panel/material_item_slot" | "result_banner_renderer" | "top_half_stack_panel" | "top_half_stack_panel/input_slots_holder" | "top_half_stack_panel/input_slots_holder/input_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/arrow_holder" | "top_half_stack_panel/arrow_holder/arrow_icon" | "top_half_stack_panel/padding_2" | "top_half_stack_panel/result_item_slot_holder" | "top_half_stack_panel/result_item_slot_holder/result_item_slot" | "top_half_stack_panel/padding_3" | "top_half_stack_panel/result_banner_outline" | "top_half_stack_panel/result_banner_outline/result_banner_renderer" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "right_panel" | "right_panel/common_panel" | "right_panel/loom_screen_inventory" | "right_panel/loom_screen_inventory/loom_label" | "right_panel/loom_screen_inventory/top_half_panel" | "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/loom_screen_inventory/hotbar_grid" | "help_button" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/pattern_book_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "loom_panel" | "loom_panel/screen_stack_panel" | "loom_panel/container_gamepad_helpers" | "loom_panel/selected_item_details_factory" | "loom_panel/item_lock_notification_factory" | "loom_panel/inventory_selected_icon_button" | "loom_panel/inventory_take_progress_icon_button" | "loom_panel/flying_item_renderer" | "loom_screen"; -export type LoomPocket = "vertical_arrow_icon" | "banner_empty_image" | "dye_empty_image" | "pattern_item_empty_image" | "chest_item_renderer" | "banner_item_renderer" | "loom_item_renderer" | "input_item_slot" | "dye_item_slot" | "material_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/loom_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_loom" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_loom" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "input_slots_stack_panel/padding_1" | "input_slots_stack_panel/dye_item_slot" | "input_slots_stack_panel/padding_2" | "input_slots_stack_panel/material_item_slot" | "result_banner_outline" | "result_banner_outline/result_banner_renderer" | "loom_content_stack_panel" | "loom_content_stack_panel/label_holder" | "loom_content_stack_panel/label_holder/loom_label" | "loom_content_stack_panel/padding_1" | "loom_content_stack_panel/input_slots_holder" | "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel" | "loom_content_stack_panel/padding_2" | "loom_content_stack_panel/banner_pattern_holder" | "loom_content_stack_panel/banner_pattern_holder/result_banner_outline" | "loom_content_stack_panel/padding_3" | "loom_content_stack_panel/arrow_holder" | "loom_content_stack_panel/arrow_holder/vertical_arrow_icon" | "loom_content_stack_panel/padding_4" | "loom_content_stack_panel/result_item_slot_holder" | "loom_content_stack_panel/result_item_slot_holder/result_item_slot" | "loom_content_stack_panel/padding_5" | "inventory_scroll_panel" | "pattern_button" | "banner_pattern" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "left_panel/content/pattern_scroll_panel" | "left_tab_patterns" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_patterns" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "loom_panel" | "loom_panel/pocket_hotbar_and_content_panels" | "loom_panel/container_gamepad_helpers" | "loom_panel/selected_item_details_factory" | "loom_panel/item_lock_notification_factory" | "loom_panel/inventory_selected_icon_button" | "loom_panel/inventory_take_progress_icon_button" | "loom_panel/flying_item_renderer"; -export type ManageFeed = "manage_feed_item_scrolling_panel" | "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content" | "manage_feed_item_scrolling_panel_content" | "grid_panel" | "grid_panel/top_spacing_gap" | "grid_panel/manage_feed_loading_grid_item" | "grid_panel/manage_feed_grid" | "grid_panel/spacing_gap2" | "grid_panel/pagination_panel" | "pagination_panel" | "manage_feed_grid" | "manage_feed_grid_item" | "manage_feed_grid_item/image_panel_instance" | "manage_feed_grid_item/manage_feed_buttons_panel" | "manage_feed_grid_item/manage_feed_text_instance" | "manage_feed_grid_item/feed_timesince_instance" | "manage_feed_grid_item/nr_of_reports" | "manage_feed_grid_item/manage_player_pic_panel" | "manage_feed_grid_item/manage_feed_gamertag_instance" | "manage_feed_buttons_panel" | "manage_feed_buttons_panel/ignore_button" | "manage_feed_buttons_panel/delete_button" | "manage_feed_loading_grid_item" | "manage_feed_loading_grid_item/loading_image_panel" | "feed_buttons_panel_loading" | "feed_buttons_panel_loading/like_button_loading" | "feed_buttons_panel_loading/spacing_gap1" | "feed_buttons_panel_loading/comment_button_loading" | "feed_buttons_panel_loading/spacing_gap2" | "feed_buttons_panel_loading/options_button_loading" | "like_button_loading" | "comment_button_loading" | "options_button_loading" | "player_pic_panel_loading" | "player_pic_panel_loading/player_gamer_pic_loading" | "player_gamer_pic_loading" | "loading_image_panel" | "loading_image_panel/progress_loading_bars" | "loading_image_panel/manage_feed_image_loading" | "loading_image_panel/no_feed_item_content" | "manage_feed_image_loading" | "ignore_button" | "ignore_content_panel" | "ignore_content_panel/ignore_label" | "delete_button" | "delete_content_panel" | "delete_content_panel/delete_label" | "manage_feed_image" | "manage_feed_image_content_panel" | "manage_feed_image_content_panel/manage_feed_image" | "manage_feed_image_content_panel/textpost_content" | "textpost_content" | "image_panel" | "image_panel/manage_feed_image_content_panel" | "manage_player_pic_panel" | "manage_player_pic_panel/manage_player_gamer_pic" | "manage_player_gamer_pic" | "content" | "content/top_bar_gradient" | "content/gamepad_helpers" | "content/return_button" | "content/reported_items_label" | "content/manage_feed_item_scrolling_panel_instance" | "manage_feed_screen" | "manage_feed_screen_content" | "manage_feed_screen_content/transparent_background" | "manage_feed_screen_content/container" | "manage_feed_screen_content/container/content"; -export type ManifestValidation = "clipboard_icon" | "clipboard_icon_wrapper" | "clipboard_icon_wrapper/icon" | "trash_icon" | "trash_icon_wrapper" | "trash_icon_wrapper/icon" | "trash_icon_wrapper/progress_loading_bars" | "refresh_icon" | "refresh_icon_wrapper" | "refresh_icon_wrapper/icon" | "refresh_icon_wrapper/progress_loading_bars" | "section_divider" | "section_divider/divider_image" | "text_label" | "icon_image" | "progress_loading_bars" | "background" | "black_background_fill" | "error_pack_secondary_layout" | "error_pack_secondary_layout/black" | "error_pack_secondary_layout/black/stack_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background" | "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete" | "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button" | "error_pack_secondary_layout/black/stack_panel/stack_panel/pad" | "error_pack_secondary_layout/black/stack_panel/secondary_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset" | "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description" | "error_pack_content_layout" | "error_pack_content_layout/black" | "error_pack_content_layout/black/error_panel" | "error_pack_content_layout/black/error_panel/error_header_panel" | "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel" | "error_pack_content_layout/black/error_panel/error_header_panel/button" | "error_pack_content_layout/black/error_panel/padding_0" | "error_pack_content_layout/black/error_panel/error_text_panel" | "error_pack_content_layout/black/error_panel/error_text_panel/error_text" | "error_pack_content_layout/black/error_panel/error_text_panel/space" | "error_pack_content_layout/black/error_panel/error_text_panel/offset" | "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label" | "delete_button" | "delete_text_button" | "clipboard_button" | "refresh_button" | "refresh_text_button" | "pack_secondary_info" | "pack_secondary_info/layout" | "error_content_grid" | "pack_error_item" | "pack_error_item/secondary" | "pack_error_item/error_header" | "pack_error_item/error_header/error_text" | "pack_error_item/error" | "pack_error_group" | "pack_error_group/top_padding" | "pack_error_group/errors" | "pack_error_group/padding" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "manifest_validation_scroll_content" | "manifest_validation_scroll_content/scrolling_panel" | "common_scroll_panel" | "manifest_validation_scroll_panel" | "manifest_validation_scroll_panel/pack_error_group" | "manifest_validation_screen" | "manifest_validation_screen_content" | "manifest_validation_screen_content/background"; -export type SdlLabel = "sdl_label_factory" | "sdl_label" | "sdl_mc_ten_label"; -export type SdlDropdowns = "sdl_dropdown_rows" | "sdl_dropdown_rows/container_panel" | "sdl_dropdown_rows/container_panel/toggle" | "sdl_dropdown_rows/container_panel/pad" | "sdl_rows_toggle"; -export type SdlImageRow = "image_row_factory" | "buffer_panel" | "single_image" | "single_image/image_with_border" | "single_image/image_with_border/screenshot_image" | "single_image/image_with_border/dark_border" | "single_image/image_with_border/progress_loading" | "single_image/image_selector" | "double_image" | "triple_image_with_buffer" | "triple_image_with_buffer/buffer_panel_in_1" | "triple_image_with_buffer/buffer_panel_in_2" | "triple_image_with_buffer/triple_image" | "triple_image_with_buffer/buffer_panel_out_1" | "triple_image_with_buffer/buffer_panel_out_2"; -export type SdlTextRow = "sdl_text_row_factory" | "sdl_header_component_factory" | "label_button" | "sdl_header_component_panel" | "sdl_header_component_panel/header_background" | "sdl_header_component_panel/header_internals" | "sdl_header_component_panel/header_highlight" | "sdl_header_component_panel/text_row_header_text" | "sdl_text_row_component_panel" | "sdl_text_row_component_panel/text_background" | "sdl_text_row_component_panel/text_row_selector" | "sdl_text_row_component_panel/text_row_background" | "sdl_text_row_component_panel/text_row_component_text" | "solo_text_row" | "solo_text_row/buffer_panel_front" | "solo_text_row/headercomp_and_textcomp_panel" | "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel" | "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel" | "solo_text_row/buffer_panel_back"; -export type MobEffect = "effect_background" | "main_background" | "button_background" | "effect_name" | "effect_timer" | "effect_icon" | "mob_effect_grid_panel" | "mob_effect_grid_panel/mob_effect_grid" | "mob_effect_grid" | "mob_effect_grid_item" | "mob_effect_grid_item/bg" | "mob_effect_grid_item/name" | "mob_effect_grid_item/timer" | "mob_effect_grid_item/icon" | "mob_effect_list_content_panel" | "mob_effect_list_content_panel/scrolling_panel" | "mob_effect_screen_close_button" | "close_button_panel" | "close_button_panel/bg" | "close_button_panel/close_button" | "mob_effect_content" | "mob_effect_content/bg" | "mob_effect_content/close_panel" | "mob_effect_content/content_panel" | "main_screen" | "main_screen/main_screen" | "mob_effect_screen"; -export type NonXblUserManagement = "black_tint_image" | "modal_title_text" | "modal_label_text" | "modal_label_text/padding" | "modal_label_text/text" | "modal_label_panel" | "modal_left_button" | "modal_middle_button" | "modal_rightcancel_button" | "three_buttons_panel" | "three_buttons_panel/left" | "three_buttons_panel/middle" | "three_buttons_panel/right" | "two_buttons_panel" | "two_buttons_panel/left" | "two_buttons_panel/right" | "single_button_panel" | "single_button_panel/left" | "modal_dialog_with_buttons" | "modal_dialog_with_buttons/background_with_buttons" | "modal_dialog_with_buttons/title" | "modal_dialog_with_buttons/text_with_buttons" | "modal_dialog_with_buttons/button_panel" | "modal_input_panel" | "modal_input_panel/black_tint_image" | "user_confirm_dialog_screen_content" | "user_confirm_dialog_screen_content/modal_input" | "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons" | "user_confirm_dialog_screen"; -export type NpcInteract = "multiline_text_edit_control" | "text_edit_control" | "label_padding" | "main_stack_panel" | "skin_button" | "skin_model" | "skin_model_clipper" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/button" | "skins_grid_item/selectFrame" | "skins_grid" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "banner_fill" | "skin_picker" | "skin_picker/left" | "skin_picker/sg" | "skin_picker/right" | "name_edit" | "advanced_button" | "advanced_button/button" | "dialog_button" | "dialog_button/button" | "basic_stack_panel" | "basic_stack_panel/top_pad" | "basic_stack_panel/name_label" | "basic_stack_panel/name_padding" | "basic_stack_panel/name_edit" | "basic_stack_panel/dialog_pre_padding" | "basic_stack_panel/dialog_label" | "basic_stack_panel/dialog_post_padding" | "basic_stack_panel/dialog__padding" | "basic_stack_panel/dialog_button" | "basic_stack_panel/appearance_pre_padding" | "basic_stack_panel/appearance_label" | "basic_stack_panel/appearance_post_padding" | "basic_stack_panel/skins" | "basic_stack_panel/advanced_button" | "basic_content" | "basic_content/basic" | "advanced_stack_panel" | "advanced_stack_panel/top_pad" | "advanced_stack_panel/add_help_text" | "advanced_stack_panel/middle_pad" | "advanced_stack_panel/actions" | "advanced_stack_panel/add_buttons" | "advanced_stack_panel/bottom_pad" | "action_title" | "plus_icon" | "plus_button" | "action_text_edit" | "maximized_action_edit" | "action_edit" | "action_edit/text_edit" | "action_edit/expand" | "button_name_edit" | "command_toggle" | "command_toggle_panel" | "command_toggle_panel/command_toggle" | "command_toggle_panel/toggle_label" | "action_mode" | "action_mode/button_mode_toggle_panel" | "action_mode/on_enter_toggle_panel" | "action_mode/on_exit_toggle_panel" | "button_name_label" | "url_notifications" | "url_notifications/empty_uri_warning" | "url_notifications/invalid_uri_warning" | "action_template" | "action_template/title" | "action_template/label_pad" | "action_template/edit" | "action_template/edit_pad" | "action_template/url_warning" | "action_template/url_pad" | "action_template/action_mode" | "action_template/mode_pad" | "action_template/button_name_label" | "action_template/button_name" | "action_command" | "action_url" | "padded_action" | "padded_action/action" | "padded_action/padding" | "action" | "action/trash" | "action/command" | "action/url" | "action_panel" | "add_button" | "help_label" | "add_help_section" | "add_help_section/text_url" | "add_help_section/text_url/tts_border" | "add_help_section/text_url/wrapper_panel_url" | "add_help_section/text_url/wrapper_panel_url/text_url_a" | "add_help_section/text_url/wrapper_panel_url/padding" | "add_help_section/text_url/wrapper_panel_url/text_url_b" | "add_help_section/padding" | "add_help_section/text_command" | "add_help_section/text_command/tts_border" | "add_help_section/text_command/wrapper_panel_command" | "add_help_section/text_command/wrapper_panel_command/text_command_a" | "add_help_section/text_command/wrapper_panel_command/padding" | "add_help_section/text_command/wrapper_panel_command/text_command_b" | "add_help_text" | "add_buttons" | "add_buttons/add_url" | "add_buttons/padding" | "add_buttons/add_command" | "advanced_scrolling_panel" | "advanced_scrolling_content" | "advanced_scrolling_content/advanced" | "message_model" | "message_model/model" | "clipped_message_model" | "clipped_message_model/model" | "message_model_window" | "message_model_window/model" | "message_model_window/immersive_reader_button" | "edit_box_background" | "npc_message" | "npc_message/label" | "npc_message/visibility_panel" | "npc_message/visibility_panel/place_holder" | "npc_message/background" | "text_scroll" | "student_message_bubble" | "student_message_bubble/dialog_panel" | "student_message_bubble/dialog_panel/text_scroll" | "bubble_point" | "student_message_section" | "student_message_section/model" | "student_message_section/point" | "student_message_section/message" | "student_button_label" | "student_button_label_panel" | "student_button_label_panel/url" | "student_button_label_panel/command" | "student_button" | "student_button/button" | "student_buttons" | "student_buttons/buttons" | "student_buttons/buttons/actions" | "student_stack_panel" | "student_stack_panel/top_pad" | "student_stack_panel/message" | "student_stack_panel/message_pad" | "student_stack_panel/buttons" | "student_view_content" | "student_view_content/student" | "student_view_content/close" | "close_button_base" | "close_button_base/default" | "close_button_base/hover" | "close_button_base/pressed" | "x_close_button" | "ignorable_x_close_button" | "ignorable_x_close_button/button" | "close_button_holder" | "close_button_holder/close_basic" | "close_button_holder/close_student_edit" | "close_button_holder/close_student" | "close_button_holder/close_maximized_action_edit" | "close_button_holder/close_advanced" | "main_content" | "main_content/basic" | "main_content/advanced" | "main_content/maximized_action_edit" | "main_content/close" | "root_panel" | "gamepad_helper_exit_text" | "close_text" | "npc_screen_contents" | "npc_screen_contents/teacher" | "npc_screen_contents/student" | "npc_screen_contents/npc_screen_close" | "npc_screen"; -export type OnlineSafety = "online_safety_proceed_button" | "online_safety_back_button" | "online_safety_description" | "ip_safety_description" | "online_safety_label_panel" | "ip_safety_label_panel" | "do_not_show_checkbox" | "do_not_show_checkbox/header_description_stack_panel" | "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals" | "do_not_show_checkbox/header_description_stack_panel/buffer_panel" | "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label" | "do_not_show_checkbox/header_description_stack_panel/another_panel" | "online_safety_dialog" | "ip_safety_dialog" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "online_safety_screen" | "online_safety_screen_content" | "online_safety_screen_content/online_safety_dialog" | "online_safety_screen_content/gamepad_helpers" | "ip_safety_screen" | "ip_safety_screen_content" | "ip_safety_screen_content/ip_safety_dialog" | "ip_safety_screen_content/gamepad_helpers"; -export type PackSettings = "background" | "screen" | "main_screen_content" | "pack_scroll_panel" | "scrolling_content" | "scrolling_content/content_tiering_panel" | "scrolling_content/generated_form" | "content_tiering_panel" | "content_tiering_panel/label_panel" | "content_tiering_panel/label_panel/content_tier_label" | "content_tiering_panel/label_panel/unsupported_content_tier_label" | "content_tiering_panel/slider_panel" | "content_tiering_panel/slider_panel/content_tier_slider" | "content_tiering_panel/incompatible_label_panel" | "content_tiering_panel/incompatible_label_panel/label"; -export type Panorama = "panorama_view" | "panorama_view/pan_left" | "panorama_view/screenshot" | "panorama_view/pan_right" | "panorama_input_panel" | "panorama_input_panel/image_border" | "panorama_input_panel/image_border/panorama_key_art" | "panorama_input_panel/image_border/progress_loading" | "pan_left_button" | "pan_right_button"; -export type PatchNotes = "solid_texture" | "image_with_background" | "image_with_background/image" | "image_with_background/image/loading_animation" | "white_image" | "patch_main_image" | "store_image" | "patch_notes_header_background" | "patch_notes_header_background/black_background" | "patch_notes_header_background/black_background/content" | "button_label_panel" | "button_label_panel/text_label" | "button_content" | "button_content/button_label2" | "patch_image" | "patch_notes_header_content_without_offer" | "patch_notes_header_content_without_offer/patch_image" | "patch_notes_header_content_with_offer" | "patch_notes_header_content_with_offer/patch_image" | "patch_notes_header_content_with_offer/padding" | "patch_notes_header_content_with_offer/store_item_section" | "patch_notes_header_content_with_offer/store_item_section/store_image" | "patch_notes_header_content_with_offer/store_item_section/padding" | "patch_notes_header_content_with_offer/store_item_section/store_button" | "store_button" | "store_button/store_button" | "store_button/loading_animation" | "patch_notes_header" | "patch_notes_header/patch_notes_background" | "scroll_content" | "scroll_content/padding_0" | "scroll_content/patch_notes_header" | "scroll_content/padding_1" | "scroll_content/tts_label_wrapper" | "patch_notes_panel" | "patch_notes_panel/patch_notes_text" | "patch_notes_panel/patch_notes_text/loading_animation" | "patch_notes_content" | "patch_notes_content/scrolling_panel" | "continue_button" | "patch_notes_dialog" | "patch_notes_screen" | "sunsetting_button_panel" | "sunsetting_button_panel/padding_0" | "sunsetting_button_panel/more_info_button" | "sunsetting_button_panel/padding_1" | "sunsetting_button_panel/continue_button" | "sunsetting_button_panel/padding_2" | "sunsetting_button_panel/sunsetting_toggle_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label" | "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel" | "sunsetting_content" | "sunsetting_content/scrolling_panel" | "sunsetting_dialog" | "sunsetting_screen"; -export type Pause = "pause_icon" | "feedback_icon" | "change_skin_icon" | "take_screenshot_icon" | "settings_icon" | "achievements_icon" | "alex_icon" | "profile_gamerpic" | "button_x" | "dressing_room_controller_button_content" | "dressing_room_controller_button_content/button_x" | "dressing_room_controller_button_content/button_label_panel" | "dressing_room_controller_button_content/button_label_panel/button_label_text_left" | "controller_button_label" | "column_frame" | "dressing_room_button_gamepad" | "dressing_room_button" | "profile_button_content" | "profile_button_content/button_offset_wrapper" | "profile_button_content/button_offset_wrapper/button_x" | "profile_button_content/gamerpic_offset_wrapper" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black" | "profile_button_content/padding_middle" | "profile_button_content/vertically_central_text" | "profile_button_content/vertically_central_text/top_padding" | "profile_button_content/vertically_central_text/profile_button_label" | "profile_button_content/padding_right" | "profile_button" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_panel" | "skin_viewer_panel/paper_doll_panel/paper_doll" | "skin_viewer_panel/paper_doll_name_tag" | "skin_panel" | "skin_panel/interior" | "skin_panel_interior" | "skin_panel_interior/offset_panel" | "skin_panel_interior/offset_panel/viewer_panel" | "skin_panel_interior/fill_1" | "skin_panel_interior/change_profile_panel" | "skin_panel_interior/change_profile_panel/centering_panel_1" | "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button" | "skin_panel_interior/change_profile_panel/centering_panel_2" | "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad" | "skin_panel_interior/change_profile_panel/centering_panel_3" | "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button" | "pause_button_template" | "grid_button_template" | "return_to_game_button" | "realms_stories_button_panel" | "realms_stories_button_panel/realms_stories_button" | "realms_stories_button_panel/unread_story_count_panel" | "realms_stories_button" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "store_button_panel" | "store_button_panel/store_button" | "store_button_panel/store_error_button" | "store_button" | "store_error_button" | "store_error_button_content" | "store_error_button_content/marketplace_button_label" | "settings_button" | "how_to_play_button" | "invite_players_button" | "buy_button" | "quit_button" | "feedback_button" | "feedback_icon_button" | "feedback_icon_button/feedback_button" | "take_screenshot_gamepad_button_content" | "take_screenshot_gamepad_button_content/button_y" | "take_screenshot_gamepad_button_content/take_screenshot_icon" | "take_screenshot_gamepad_button" | "achievements_button_small" | "settings_button_small" | "take_screenshot_button" | "pause_screen" | "pause_screen_content" | "pause_screen_content/pause_screen_main_panels" | "pause_screen_content/skin_panel" | "pause_screen_content/friendsdrawer_button_panel" | "pause_screen_content/gamepad_helpers" | "pause_screen_content/keyboard_helpers" | "friendsdrawer_button_panel" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button" | "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup" | "pause_screen_main_panels" | "pause_screen_main_panels/menu" | "left_buttons_panel" | "left_buttons_panel/filler" | "left_buttons_panel/trialTime" | "left_buttons_panel/the_rest_panel" | "smaller_buttons_panel" | "smaller_buttons_panel/stacked_column" | "smaller_buttons_panel/stacked_column/fill_1" | "smaller_buttons_panel/stacked_column/side_padding" | "smaller_buttons_panel/stacked_column/small_settings_button" | "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn" | "smaller_buttons_panel/stacked_column/small_settings_padding" | "smaller_buttons_panel/stacked_column/small_achievements_button" | "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn" | "smaller_buttons_panel/stacked_column/small_achievements_padding" | "smaller_buttons_panel/stacked_column/take_screenshot_btn" | "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button" | "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button" | "smaller_buttons_panel/stacked_column/screenshot_padding" | "smaller_buttons_panel/stacked_column/fill_3" | "smaller_buttons_panel/padding_bottom" | "social_buttons_panel" | "social_buttons_panel/friendsbutton_panel" | "social_buttons_panel/friendsbutton_panel/friendsdrawer_button" | "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup" | "social_buttons_panel/invitebutton_panel" | "social_buttons_panel/invitebutton_panel/invite_button" | "social_buttons_panel/invitebutton_panel/vertical_padding_2" | "the_rest_panel" | "the_rest_panel/fill_1" | "the_rest_panel/pause_menu" | "the_rest_panel/fill_3" | "paused_text" | "green_tag" | "paused_text_panel" | "paused_text_panel/pause" | "paused_text_panel/horizontal_stack" | "paused_text_panel/horizontal_stack/pause_icon" | "paused_text_panel/horizontal_stack/fill_1" | "paused_text_panel/horizontal_stack/pause" | "transparent_background" | "non_transparent_background" | "menu_the_rest_panel" | "menu_the_rest_panel/menu_button_control" | "menu_button_control" | "menu_button_control/menu_background" | "pause_announcement_panel_type" | "pause_announcement_panel_type/horizontal_stack" | "pause_announcement_panel_type/horizontal_stack/fill_1" | "pause_announcement_panel_type/horizontal_stack/pause_text" | "pause_announcement_panel_type/horizontal_stack/fill_2" | "menu_background" | "menu_background/button_panel" | "menu_background/button_panel/title_image" | "menu_background/button_panel/title_image/image" | "menu_background/button_panel/fill_1" | "menu_background/button_panel/return_to_game_button" | "menu_background/button_panel/return" | "menu_background/button_panel/realms_stories_button_panel" | "menu_background/button_panel/realms_stories" | "menu_background/button_panel/buy_button" | "menu_background/button_panel/buy" | "menu_background/button_panel/store_button_panel" | "menu_background/button_panel/store_button_panel_padding" | "menu_background/button_panel/quit_button" | "menu_background/button_panel/smaller_buttons" | "menu_background/button_panel/pause_panel" | "info_panel_content_list" | "info_panel_content_list/player_list_scrolling_panel" | "info_panel_content_list/vertical_padding" | "info_panel_background" | "info_panel" | "info_panel/info_panel_background" | "info_panel/info_panel_list" | "player_panel_background" | "player_panel_background/player_list_scrolling_panel" | "player_list" | "player_list/vertical_padding_0" | "player_list/social_buttons_panel" | "player_list/players_label" | "player_list/vertical_padding_4" | "player_list/players_grid_panel" | "player_list/vertical_padding_5" | "player_list/invite_players_button_panel" | "player_list/vertical_padding_6" | "player_list/disconnected_from_multiplayer_label_panel" | "player_list/vertical_padding_7" | "player_lists" | "player_lists/normal_list" | "player_lists/scoreboard_list" | "player_list_scrolling_panel" | "disconnected_label" | "disconnected_from_multiplayer_label_panel" | "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label" | "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer" | "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer" | "invite_players_button_panel" | "invite_players_button_panel/invite_players_button" | "ip_label" | "players_label" | "players_grid" | "player_grid_item" | "player_grid_item/player_grid_item_content" | "player_grid_item_content" | "player_grid_item_content/player_button_panel" | "player_grid_item_content/player_button_panel/player_button_banner" | "player_grid_item_content/player_button_panel/player_button_banner/player_button" | "player_grid_item_content/player_button_panel/player_button_banner/player_banner" | "player_grid_item_content/player_button_panel/player_permission_button_padding" | "player_grid_item_content/player_permission_button_panel" | "player_grid_item_content/player_permission_button_panel/player_permission_button" | "player_permission_button" | "player_permission_button_content" | "player_permission_button_content/permission_icon_image" | "vertical_padding" | "horizontal_padding" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_gamertag" | "player_button_content/platform_icon" | "player_button" | "player_banner" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "player_local_icon" | "player_gamer_pic" | "player_gamer_pic/player_panel_black_border" | "gametag_wrapper" | "gametag_wrapper/gamertag" | "platform_icon_panel" | "platform_icon_panel/platform_icon" | "player_gamertag" | "platform_icon" | "player_grid_banner_no_focus" | "player_grid_banner" | "player_grid_banner/player_grid_banner_no_focus" | "player_grid_banner/player_grid_banner_no_focus/player_button_content" | "player_grid_banner/focus_border_button" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "focus_border" | "pause_screen_border" | "filler_panel" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_y" | "keyboard_helpers" | "keyboard_helpers/keyboard_helper_keys"; -export type Pdp = "download_progress" | "download_progress/stacker" | "download_progress/stacker/sizer_text" | "download_progress/stacker/sizer_text/download_progress_text" | "download_progress/stacker/sizer_bar" | "download_progress/stacker/sizer_bar/download_progress_bar" | "summary_box_button_panel" | "summary_box_button_panel/buttons_panel" | "summary_box_button_panel/download_buttons_panel" | "summary_box_button_panel/focus_border" | "interaction_button_content" | "interaction_button_content/line1_panel" | "interaction_button_content/line1_panel/upsell_text" | "interaction_button_panel" | "interaction_button_panel/content_action_button" | "interaction_button_panel/progress_bar" | "interaction_button_panel/focus_border" | "download_progress_small" | "download_progress_small/stacker" | "download_progress_small/stacker/sizer_text" | "download_progress_small/stacker/sizer_text/download_progress_text" | "download_progress_small/stacker/sizer_bar" | "download_progress_small/stacker/sizer_bar/download_progress_bar" | "progress_loading_anim" | "focus_border" | "focus_border/default" | "focus_border/default/loading_anim" | "focus_border/hover" | "focus_border/hover/loading_anim" | "focus_border/pressed" | "focus_border/pressed/loading_anim" | "purchase_button_base" | "deactivated_purchase_button_base" | "download_buttons_panel" | "download_buttons_panel/progress_panel" | "download_buttons_panel/progress_panel/progress_bar" | "smooth_purchase_buttons_panel" | "smooth_purchase_buttons_panel/activated_purchase_buttons_panel" | "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel" | "smooth_buttons_panel" | "smooth_buttons_panel/purchase_buttons_panel" | "smooth_buttons_panel/interact_filling_button" | "smooth_buttons_panel/interact_exit_world_filling_button" | "disabled_interact_label_formfitting" | "disabled_interact_label_formfitting/info_icon" | "disabled_interact_label_formfitting/info_icon_pad" | "disabled_interact_label_formfitting/interact_label_panel" | "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left" | "disabled_interact_label_formfitting/pad" | "interact_label_text" | "activated_smooth_purchase_buttons_panel" | "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel" | "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button" | "activated_smooth_purchase_buttons_panel/pad_h1" | "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel" | "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button" | "deactivated_purchase_hover_popup" | "deactivated_smooth_purchase_buttons_panel" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup" | "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content" | "deactivated_smooth_purchase_buttons_panel/pad_h1" | "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel" | "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button" | "smooth_save_share_button_panel" | "smooth_save_share_button_panel/pad_0" | "smooth_save_share_button_panel/share_button" | "smooth_save_share_button_panel/pad_1" | "smooth_save_share_button_panel/save_button" | "currency_purchase_label" | "currency_purchase_label/currency_purchase_label_text" | "coin_image" | "smooth_currency_purchase_label" | "smooth_currency_purchase_label/currency_purchase_label_text" | "discount_label" | "discount_label/label_panel" | "discount_label/label_panel/label" | "discount_label/icon_panel" | "discount_label/icon_panel/icon" | "coin_purchase_label_text" | "smooth_coin_purchase_label_formfitting" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel" | "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "smooth_coin_purchase_label_formfitting/markdown_panel" | "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label" | "smooth_coin_purchase_label_formfitting/fill_pad_left" | "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel" | "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin" | "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel" | "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left" | "smooth_coin_purchase_label_formfitting/pad" | "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel" | "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin" | "smooth_coin_purchase_label_formfitting/fill_pad_right" | "disabled_smooth_coin_purchase_label_formfitting" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel" | "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "disabled_smooth_coin_purchase_label_formfitting/markdown_panel" | "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label" | "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb" | "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin" | "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad" | "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel" | "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left" | "disabled_smooth_coin_purchase_label_formfitting/pad" | "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel" | "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin" | "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right" | "share_icon" | "share_label" | "share_label/share_image_offset_panel" | "share_label/share_image_offset_panel/link_share" | "save_label_panel" | "save_label_panel/heart_image" | "save_label_panel/progress_loading" | "save_label" | "save_label/save_image_offset_panel" | "save_label/save_image_offset_panel/full_heart" | "save_label/save_image_offset_panel/empty_heart" | "large_button_coin_purchase_label" | "large_button_coin_purchase_label/markdown_banner_filler_panel" | "large_button_coin_purchase_label/center_markdown_panel" | "large_button_coin_purchase_label/center_markdown_panel/markdown_banner" | "large_button_coin_purchase_label/sales_padding_0" | "large_button_coin_purchase_label/price_markdown_panel" | "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label" | "large_button_coin_purchase_label/sales_padding_1" | "large_button_coin_purchase_label/left_coin_image_offset_panel" | "large_button_coin_purchase_label/left_coin_image_offset_panel/coin" | "large_button_coin_purchase_label/coin_purchase_label_panel" | "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text" | "large_button_coin_purchase_label/right_coin_image_offset_panel" | "large_button_coin_purchase_label/right_coin_image_offset_panel/coin" | "large_button_coin_purchase_label/fill_padding_1" | "price_markdown_panel" | "price_markdown_panel/offer_price" | "price_markdown_panel/offer_price/text_strike_through" | "vertical_padding_2px" | "vertical_padding_4px" | "vertical_padding_fill" | "horizontal_padding_2px" | "horizontal_padding_4px" | "horizontal_padding_8px" | "horizontal_padding_fill" | "empty_content_panel" | "section_header" | "section_header/header_label" | "content_section_bg" | "content_section_bg/pad" | "content_section_bg/section_header" | "content_section_bg/bg_and_content" | "content_section_bg/bg_and_content/bg" | "content_section_boarder_bg" | "content_section_boarder_bg/pad" | "content_section_boarder_bg/bg_and_content" | "content_section_boarder_bg/bg_and_content/bg" | "content_section_boarder_bg/bg_and_content/bg/inner" | "content_section_boarder_bg/pad_3" | "content_section_boarder_bg/divider_3" | "summary_factory_object" | "summary_factory_object/summary" | "summary_factory_object/navigation_tab_section" | "summary_factory_object/update_notification_section" | "screenshot_carousel_factory_object" | "screenshot_carousel_factory_object/resource_pack_content_panel" | "screenshot_carousel_factory_object/pad_3" | "screenshot_carousel_factory_object/divider_3" | "image_gallery_factory_object" | "image_gallery_factory_object/resource_pack_content_panel" | "left_text_right_image_factory_object" | "left_text_right_image_factory_object/resource_pack_content_panel" | "right_text_left_image_factory_object" | "right_text_left_image_factory_object/resource_pack_content_panel" | "skin_pack_section_factory_object" | "skin_pack_section_factory_object/skin_pack_section_factory_content" | "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel" | "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3" | "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3" | "panorama_view_factory_object" | "panorama_view_factory_object/panorama_view_content_panel" | "panorama_view_factory_object/pad_3" | "panorama_view_factory_object/divider_3" | "ratings_factory_object" | "ratings_factory_object/rating_factory_object_content" | "focus_container_button" | "focus_container_button/default" | "bundle_summary_factory_object" | "bundle_summary_factory_object/bundle_summary_factory_object_content" | "pdp_cycle_offer_row_content" | "pdp_cycle_offer_row_content/store_row_panel" | "pdp_cycle_offer_row_content/pad_3" | "pdp_cycle_offer_row_content/divider_3" | "pdp_cycle_offer_row_section" | "recently_viewed_viewed_factory_object" | "scrolling_content_stack" | "warning_image" | "scaling_rating" | "scaling_rating/empty_rating" | "scaling_rating/empty_rating/full_rating" | "scaling_rating_new" | "scaling_rating_new/empty_rating" | "scaling_rating_new/empty_rating/full_rating" | "chart_section" | "chart_section/stack" | "chart_section/stack/star_number_panel" | "chart_section/stack/star_number_panel/star_number" | "chart_section/stack/star_panel" | "chart_section/stack/star_panel/star_img" | "chart_section/stack/pad_0" | "chart_section/stack/bar_panel" | "chart_section/stack/bar_panel/bar" | "chart_section/stack/bar_panel/bar/full_bar" | "chart_section/stack/pad_1" | "chart_section/stack/percent" | "ratings_chart" | "ratings_chart/5_star" | "ratings_chart/4_star" | "ratings_chart/3_star" | "ratings_chart/2_star" | "ratings_chart/1_star" | "ratings_chart_panel" | "ratings_chart_panel/ratings_chart_content" | "ratings_chart_panel/ratings_chart_content/pad_0" | "ratings_chart_panel/ratings_chart_content/title" | "ratings_chart_panel/ratings_chart_content/title/title_text" | "ratings_chart_panel/ratings_chart_content/pad_1" | "ratings_chart_panel/ratings_chart_content/rating_panel" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar" | "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad" | "ratings_chart_panel/ratings_chart_content/rating_text_panel" | "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text" | "ratings_chart_panel/ratings_chart_content/count_panel" | "ratings_chart_panel/ratings_chart_content/count_panel/count" | "ratings_chart_panel/ratings_chart_content/pad_2" | "ratings_chart_panel/ratings_chart_content/chart" | "ratings_chart_panel/ratings_chart_content/pad_3" | "ratings_box" | "ratings_box/ratings_panel_focus_point" | "ratings_box/ratings_full_panel" | "ratings_box/ratings_full_panel/ratings_chart_and_button" | "ratings_box/ratings_full_panel/ratings_chart_and_button/chart" | "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1" | "ratings_box/divider" | "user_rating_star_button" | "user_rating_star_button/default" | "user_rating_star_button/default/default_user_rating_star" | "user_rating_star_button/hover" | "user_rating_star_button/hover/hover_user_rating_star" | "user_rating_star_list_grid" | "ratings_interact_panel" | "ratings_interact_panel/title_text" | "ratings_interact_panel/pad_vertical_4px" | "ratings_interact_panel/rating_stars_and_button_panel" | "ratings_interact_panel/rating_stars_and_button_panel/fill_stars" | "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons" | "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent" | "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel" | "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit" | "ratings_interact_panel/pad_vertical_8px" | "ratings_interact_panel/fill_pad" | "ratings_interact_panel/fill_pad/text" | "ratings_interact_panel/send_feedback_button" | "ratings_interact_panel/pad_1" | "ratings_info_panel" | "ratings_info_panel/ratings" | "ratings_info_panel/ratings_right" | "ratings_info_panel/ratings_right/ratings_interact_panel" | "ratings_content_panel" | "panorama_view_content" | "panorama_view_content/panorama_panel" | "panorama_view_content/panorama_panel/panorama_content" | "skins" | "skin_pack_content_panel" | "resource_pack_content" | "resource_pack_content/screenshots" | "image_row_left_text_content" | "image_row_left_text_content/buffer_panel_front" | "image_row_left_text_content/text_section" | "image_row_left_text_content/text_section/left_header" | "image_row_left_text_content/text_section/left_text" | "image_row_left_text_content/text_section/buffer_panel_bottom" | "image_row_left_text_content/buffer_panel_mid" | "image_row_left_text_content/screenshots_single" | "image_row_left_text_content/buffer_panel_back" | "image_row_right_text_content" | "image_row_right_text_content/buffer_panel_front" | "image_row_right_text_content/screenshots_single" | "image_row_right_text_content/buffer_panel_mid" | "image_row_right_text_content/text_section" | "image_row_right_text_content/text_section/right_header" | "image_row_right_text_content/text_section/right_text" | "image_row_right_text_content/text_section/buffer_panel_bottom" | "image_row_right_text_content/buffer_panel_back" | "image_row_content" | "image_row_content/screenshots_triple" | "play_button" | "csb_expiration" | "csb_expiration/background" | "csb_expiration/background/content_stack_panel" | "csb_expiration/background/content_stack_panel/icon_wrapper" | "csb_expiration/background/content_stack_panel/icon_wrapper/icon" | "csb_expiration/background/content_stack_panel/text_wrapper" | "csb_expiration/background/content_stack_panel/text_wrapper/text" | "summary_content_left_side" | "summary_content_left_side/pad_left" | "summary_content_left_side/full_content" | "summary_content_left_side/full_content/top" | "summary_content_left_side/full_content/top/image" | "summary_content_left_side/full_content/top/image/key_image" | "summary_content_left_side/full_content/top/image/key_image/border" | "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default" | "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover" | "summary_content_left_side/full_content/top/image/key_image/rtx_label" | "summary_content_left_side/full_content/top/divider" | "summary_content_left_side/full_content/top/info" | "summary_content_left_side/full_content/top/info/summary_title_and_author_panel" | "summary_content_left_side/full_content/top/info/pad_fill" | "summary_content_left_side/full_content/top/info/glyph_section" | "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel" | "summary_content_left_side/full_content/top/info/ratings_summary" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating" | "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button" | "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover" | "summary_content_left_side/full_content/bottom" | "offer_title_label" | "title_and_author_panel" | "title_and_author_panel/title_panel" | "title_and_author_panel/author_button_panel" | "title_and_author_panel/author_button_panel/summary_author_button" | "description_label" | "warning_stack_panel" | "warning_stack_panel/warning_icon" | "warning_stack_panel/pad_0" | "warning_stack_panel/warning_text_panel" | "warning_stack_panel/warning_text_panel/warning_text" | "warning_panel" | "warning_panel/background" | "warning_panel/content_stack_panel" | "description_toggle_show_button_panel" | "description_toggle_show_button_panel/description_bottom_right_button_border" | "description_toggle_show_button_panel/description_toggle_show_button" | "description_toggle_show_button_panel/warning_icon" | "vibrant_visuals_underline_button" | "vibrant_visuals_hover_popup" | "vibrant_visuals_badge_display" | "vibrant_visuals_badge_display/vibrant_visuals_underline_button" | "vibrant_visuals_badge_and_hover" | "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup" | "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display" | "glyph_icon" | "glyph_count_label" | "glyph_count_underline_button" | "glyph_count_hover_underline_button_panel" | "glyph_count_hover_underline_button_panel/glyph_hover_popup" | "glyph_count_hover_underline_button_panel/glyph_count_underline_button" | "glyph_icon_with_count" | "glyph_icon_with_count/glyph_icon" | "glyph_icon_with_count/horizontal_padding" | "glyph_icon_with_count/item_glyph_count_panel_label" | "glyph_panel_hover_popup" | "glyph_panel_mashup_hover_popup" | "mashup_glyph_tooltip_content" | "mashup_glyph_tooltip_content/mashup_text_row" | "mashup_glyph_tooltip_content/mashup_text_row/info_icon" | "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one" | "mashup_glyph_tooltip_content/mashup_line_two" | "mashup_glyph_tooltip_content/offset_panel" | "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel" | "glyph_section_mashup" | "glyph_section_skin" | "glyph_section_resource_pack" | "glyph_section_world" | "glyph_section_addon" | "basic_vertical_glyph_section_panel" | "basic_vertical_glyph_section_panel/glyph_section_skin" | "basic_vertical_glyph_section_panel/glyph_section_world" | "basic_vertical_glyph_section_panel/glyph_section_resource_pack" | "basic_vertical_glyph_section_panel/glyph_section_addon" | "vertical_glyph_section_panel" | "vertical_glyph_section_panel/glyph_section_mashup" | "vertical_glyph_section_panel/basic_vertical_glyph_section_panel" | "summary_text_panel" | "summary_text_panel/top_interact_button_stack" | "summary_text_panel/top_interact_button_stack/top_interact" | "summary_text_panel/apply_to_realm_panel" | "summary_text_panel/apply_to_realm_panel/apply_to_realm_button" | "summary_text_panel/in_csb_panel" | "summary_text_panel/in_csb_panel/in_csb_button" | "summary_text_panel/progress_loading_anim_panel" | "summary_text_panel/progress_loading_anim_panel/progress_loading_anim" | "summary_text_panel/pad_0" | "summary_text_panel/disclaimer_panel" | "summary_text_panel/pad_1" | "summary_text_panel/save_share_button_panel" | "summary_text_panel/pad_2" | "info_bulb_image" | "info_bulb_image_small" | "info_bulb_image_small_centered" | "info_bulb_image_small_centered/top_filler" | "info_bulb_image_small_centered/middle_panel" | "info_bulb_image_small_centered/middle_panel/front_filler" | "info_bulb_image_small_centered/middle_panel/info_bulb" | "info_bulb_image_small_centered/middle_panel/bottom_filler" | "info_bulb_image_small_centered/bottom_filler" | "realms_incompatable_content" | "realms_incompatable_content/realms_content_stack_panel" | "realms_incompatable_content/realms_content_stack_panel/info_bulb_image" | "realms_incompatable_content/realms_content_stack_panel/padding" | "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label" | "apply_to_realm_button" | "in_csb_button" | "read_more_button" | "read_more_button/default" | "read_more_button/hover" | "read_more_button/pressed" | "summary_content_right_side" | "summary_content_right_side/pad_middle" | "summary_content_right_side/text" | "summary_content_right_side/entitlements_progress_panel" | "summary_content_right_side/entitlements_progress_panel/progress_loading" | "summary_content_right_side/pad_right" | "summary_content_whole_stack_panel" | "summary_content_whole_stack_panel/left_side" | "summary_content_whole_stack_panel/divider_panel" | "summary_content_whole_stack_panel/right_side" | "summary_content_panel" | "summary_content_panel/pad_top" | "summary_content_panel/summary_content_whole_stack" | "summary_content_panel/pad_3" | "summary_content_panel/divider_3" | "appearance_status_image_panel" | "appearance_status_image_panel/limited_status_image" | "appearance_status_image_panel/no_restrictions_status_image" | "appearance_status_content" | "appearance_status_content/appearance_status_image_panel" | "appearance_status_content/last_update_panel" | "appearance_status_content/last_update_panel/last_update_label" | "dynamic_tooltip_notification_panel" | "dynamic_tooltip_notification_panel/default" | "dynamic_tooltip_notification_panel/hover" | "dynamic_tooltip_notification_panel/pressed" | "update_notification_content" | "update_notification_content/dynamic_tooltip_notification_panel" | "update_notification_content/status" | "update_notification_stack_panel" | "update_notification_stack_panel/pad_0" | "update_notification_stack_panel/content" | "update_notification_stack_panel/pad_1" | "tag_base" | "tag_button_panel" | "tag_button_panel/button" | "tag_button_panel/button/default" | "tag_button_panel/button/hover" | "tag_button_panel/button/pressed" | "tag_button_panel/button/label" | "tag_row_factory" | "player_count_button_panel" | "player_count_button_panel/player_count_button" | "player_count_button_panel/comma" | "player_count_factory" | "language_button_panel" | "language_button_panel/language_button" | "language_button_panel/comma" | "language_row_factory" | "description_inner_panel" | "description_inner_panel/description_stack_panel" | "description_inner_panel/description_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label" | "description_inner_panel/description_stack_panel/title_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel" | "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider" | "description_inner_panel/description_stack_panel/title_stack_panel/pad_1" | "description_inner_panel/description_stack_panel/description_text_panel_full" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0" | "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel" | "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed" | "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel" | "description_inner_panel/description_stack_panel/pad_1" | "description_inner_panel/description_stack_panel/divider_panel" | "description_inner_panel/description_stack_panel/divider_panel/divider" | "description_inner_panel/description_stack_panel/pad_2" | "description_inner_panel/description_stack_panel/tags_panel" | "description_inner_panel/description_stack_panel/tags_panel/label_text_panel" | "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text" | "description_inner_panel/description_stack_panel/tags_panel/pad" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows" | "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory" | "description_inner_panel/description_stack_panel/genre_panel" | "description_inner_panel/description_stack_panel/genre_panel/label_text" | "description_inner_panel/description_stack_panel/genre_panel/pad" | "description_inner_panel/description_stack_panel/genre_panel/text_panel" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider" | "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button" | "description_inner_panel/description_stack_panel/players_panel" | "description_inner_panel/description_stack_panel/players_panel/label_text" | "description_inner_panel/description_stack_panel/players_panel/pad" | "description_inner_panel/description_stack_panel/players_panel/text_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel/player_count_range_text" | "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text" | "description_inner_panel/description_stack_panel/languages_panel" | "description_inner_panel/description_stack_panel/languages_panel/label_text_panel" | "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text" | "description_inner_panel/description_stack_panel/languages_panel/pad" | "description_inner_panel/description_stack_panel/languages_panel/languages_factory" | "description_inner_panel/description_stack_panel/pad_3" | "description_inner_panel/description_stack_panel/show_less_button_panel" | "description_section" | "changelog_section" | "bundle_thumbnail" | "bundle_thumbnail_section_content" | "bundle_thumbnail_section_content/bundle_thumbnail_grid" | "bundle_thumbnail_section" | "price_panel" | "price_panel/coin_non_sale_price_label" | "price_panel/price_padding" | "price_panel/offer_prompt_panel" | "price_panel/offer_prompt_panel/offer_status_text" | "price_panel/padding_3" | "price_panel/coin_panel" | "price_panel/coin_panel/offer_coin_icon" | "rating_and_coins_panel" | "rating_and_coins_panel/rating_panel" | "rating_and_coins_panel/rating_padding_coin" | "rating_and_coins_panel/price_panel" | "bundle_offer_texture" | "bundle_offer_texture/texture" | "bundle_offer_texture/texture/border" | "bundle_offer_info" | "bundle_offer_info/top_padding" | "bundle_offer_info/offer_title_and_author_panel" | "bundle_offer_info/glyph_section" | "bundle_offer_info/glyph_description_padding" | "bundle_offer_info/description_panel" | "bundle_offer_info/description_padding" | "bundle_offer_info/description_padding_bottom" | "bundle_offer_info/rating_and_price_panel" | "bundle_offer_info/bottom_padding" | "bundle_offer_summary_grid_item_content" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info" | "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding" | "bundle_offer_summary_grid_item" | "bundle_offer_summary_grid_item/bundle_offer_summary_button" | "bundle_offer_content_section" | "bundle_offer_content_section/bundle_grid" | "bundle_summary_section_panel" | "bundle_summary_section_panel/bundle_summary_section" | "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section" | "bundle_summary_section_panel/bundle_summary_section/mid_padding" | "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section" | "bundle_summary_section_panel/bundle_summary_section/mid_padding_2" | "bundle_summary_section_panel/bundle_summary_section/interact_panel" | "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact" | "bundle_summary_section_panel/divider_3" | "pdp_screen" | "mashup_screen_content" | "mashup_screen_content/header" | "mashup_screen_content/popup_dialog_factory" | "mashup_screen_main" | "mashup_screen_main/pack_content" | "mashup_screen_main/progress_loading"; -export type PdpScreenshots = "banner_empty" | "screenshot_carousel" | "screenshot_carousel/screenshot_carousel_content" | "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button" | "screenshot_carousel/screenshot_carousel_content/screenshots_grid" | "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button" | "screenshots_grid" | "screenshots_grid/left_image_panel" | "screenshots_grid/middle_image_panel" | "screenshots_grid/right_image_panel" | "screenshots_grid_item" | "screenshots_grid_item/frame" | "screenshots_grid_item/frame/screenshot_button" | "screenshots_grid_item/frame/screenshot_button/hover" | "screenshots_grid_item/frame/screenshot_button/pressed" | "screenshots_grid_item/screenshot_image" | "screenshots_grid_item/progress_loading"; -export type Permissions = "permissions_screen" | "permissions_screen_content" | "permissions_screen_content/top_bar_panel" | "permissions_screen_content/content_panel" | "top_bar_panel" | "top_bar_panel/top_bar" | "top_bar_panel/back_button" | "top_bar_panel/gamepad_helper_b" | "top_bar_panel/title_label" | "content_panel" | "content_panel/content_stack_panel" | "content_panel/content_stack_panel/content_padding_1" | "content_panel/content_stack_panel/ip_label" | "content_panel/content_stack_panel/world_label" | "content_panel/content_stack_panel/content_padding_2" | "content_panel/content_stack_panel/player_and_permissions_panel" | "player_and_permissions_panel" | "player_and_permissions_panel/selector_area" | "player_and_permissions_panel/content_area" | "selector_area" | "selector_area/player_scrolling_panel" | "content_area" | "content_area/permissions_options_background" | "content_area/permissions_options_background/permissions_options_background_image" | "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel" | "content_area/inactive_modal_pane_fade" | "kick_button" | "ban_button" | "players_grid_panel" | "players_grid_panel/players_grid" | "players_grid" | "player_grid_item" | "player_grid_item/player_toggle" | "player_grid_item/inactive_modal_pane_fade" | "permissions_options_scrolling_panel" | "permissions_options_panel" | "permissions_options_panel/inner_permissions_options_panel" | "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel" | "permissions_options_stack_panel" | "permissions_options_stack_panel/permissions_padding_0" | "permissions_options_stack_panel/world_template_option_lock_panel" | "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label" | "permissions_options_stack_panel/permissions_padding_1" | "permissions_options_stack_panel/permission_level_dropdown" | "permissions_options_stack_panel/permissions_padding_2" | "permissions_options_stack_panel/permissions_options_grid" | "permissions_options_stack_panel/permissions_padding_3" | "permissions_options_stack_panel/permissions_kick_button_panel" | "permissions_options_stack_panel/permissions_padding_4" | "permissions_options_stack_panel/permissions_ban_button_panel" | "permissions_options_stack_panel/permissions_padding_5" | "permissions_options_grid" | "permissions_options_grid_item" | "permissions_options_grid_item/option_label_panel" | "permissions_options_grid_item/option_label_panel/option_label" | "permissions_options_grid_item/option_state_label_panel" | "permissions_options_grid_item/option_state_label_panel/option_state_label" | "permissions_options_grid_item/option_toggle" | "permissions_kick_button_panel" | "permissions_kick_button_panel/kick_button" | "permissions_ban_button_panel" | "permissions_ban_button_panel/ban_button" | "title_label" | "ip_label" | "world_label" | "gamertag_label" | "option_state_label" | "option_label" | "top_bar" | "banner_background" | "player_local_icon" | "player_gamer_pic" | "player_gamer_pic/player_panel_black_border" | "back_button" | "back_button_content" | "back_button_content/chevron_panel" | "back_button_content/chevron_panel/left_chevron" | "back_button_content/back_button_padding" | "back_button_content/label_panel" | "back_button_content/label_panel/label" | "player_toggle" | "player_button_content" | "player_button_content/player_pic_panel" | "player_button_content/player_button_padding_1" | "player_button_content/gamertag_panel" | "player_button_content/gamertag_panel/gamertag_label" | "player_button_content/icon_panel" | "player_button_content/icon_panel/dropdown_icon_image" | "player_button_content/player_button_padding_2" | "player_pic_panel" | "player_pic_panel/player_gamer_pic" | "player_pic_panel/player_local_icon" | "option_toggle" | "permission_level_dropdown" | "radio_title_and_icon" | "radio_title_and_icon/radio_icon" | "radio_title_and_icon/radio_title" | "radio_content_with_title_bar" | "radio_content_with_title_bar/title_and_icon" | "radio_content_with_title_bar/helper_text" | "radio_content_with_title_bar/bottom_padding" | "radio_visuals_with_title" | "radio_visuals_with_title/radio_content" | "radio_visuals_with_title_hover" | "radio_visuals_with_title_hover/radio_content" | "permissions_visitor_visuals_with_title_normal" | "permissions_visitor_visuals_with_title_hover" | "permissions_member_visuals_with_title_normal" | "permissions_member_visuals_with_title_hover" | "permissions_op_visuals_with_title_normal" | "permissions_op_visuals_with_title_hover" | "permissions_visitor_radio_visuals_normal" | "permissions_visitor_radio_visuals_hover" | "permissions_member_radio_visuals_normal" | "permissions_member_radio_visuals_hover" | "permissions_op_radio_visuals_normal" | "permissions_op_radio_visuals_hover" | "permissions_custom_radio_visuals_normal" | "permissions_custom_radio_visuals_hover" | "permission_level_radio" | "permission_level_radio/radio_with_label_core" | "permission_level_dropdown_content" | "permission_level_dropdown_state_content" | "permission_level_dropdown_state_content/icon_panel" | "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image" | "permission_level_dropdown_state_content/dropdown_label_padding" | "permission_level_dropdown_state_content/label_panel" | "permission_level_dropdown_state_content/label_panel/label" | "permission_level_dropdown_state_content/arrow_panel" | "permission_level_dropdown_state_content/arrow_panel/arrow_image"; -export type PersonaCastCharacterScreen = "cast_modal_bottom_bar" | "cast_modal_bottom_bar/0" | "cast_common_dialog_background" | "cast_common_dialog_background/top_bar" | "cast_common_dialog_background/popup_inner_contents" | "cast_common_dialog_background/cast_modal_bottom_bar" | "cast_modal_panel" | "cast_modal_panel/cast_preview_modal_content" | "popup_dialog__cast_character_select" | "popup_dialog__cast_character_select/background" | "popup_dialog__cast_character_select/popup_background" | "common_dcast_popup_framework" | "common_cast_modal_top_bar" | "common_cast_modal_top_bar/title_panel" | "common_cast_modal_top_bar/close_button_holder" | "cast_character_select_main" | "cast_character_select_main/modal_inner_background" | "cast_character_select_main/main_content_horizontal_stack" | "cast_character_select_main/main_content_horizontal_stack/cast_grid" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill" | "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding" | "cast_scroll_view_panel" | "cast_grid_with_buttons" | "cast_grid_with_buttons/top_spacing" | "cast_grid_with_buttons/cast_grid" | "cast_grid_with_buttons/bottom_spacing" | "cast_grid_panel" | "cast_grid_panel/cast_grid" | "cast_single_character_button_panel" | "cast_single_character_button_panel/cast_character_button" | "cast_single_character_button_panel/cast_character_button/background_image" | "cast_single_character_button_panel/cast_character_button/selected" | "cast_single_character_button_panel/cast_character_button/default" | "cast_single_character_button_panel/cast_character_button/hover" | "cast_single_character_button_panel/cast_character_button/pressed" | "cast_single_character_button_panel/cast_character_button/button_outline" | "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content" | "cast_character_button_content_panel" | "cast_character_button_content_panel/cast_single_character_content_visible_panel" | "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content" | "in_use_grid_item" | "persona_cast_paper_doll_panel" | "persona_cast_paper_doll_panel/preset_input_panel" | "character_loading_anim" | "character_loading_anim_panel" | "character_loading_anim_panel/character_loading_anim" | "skin_viewer_panel_skin_model" | "skin_viewer_panel_skin_model/skin_model" | "cast_character_screen_right_side_model" | "cast_character_screen_right_side_model/skin_model_panel" | "cast_character_screen_right_side_model/skin_model_loading_anim" | "cast_character_screen_right_side_model/skin_model_label" | "common_background_blocker" | "common_background_blocker/modal_background_button" | "common_preview_page_framework" | "common_preview_page_framework/background" | "common_preview_page_framework/cast_preview_modal" | "cast_preview_page_one" | "cast_preview_page_two" | "cast_preview_page_one_inner_section" | "cast_preview_page_one_inner_section/modal_inner_background" | "cast_preview_page_one_inner_section/cast_content" | "cast_preview_page_one_inner_section/cast_content/cast_image_cycler" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel" | "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel" | "chevron_image_panel" | "chevron_image_panel/chevron_image" | "chevron_button" | "shift_page_panel" | "shift_page_panel/centering_panel" | "shift_page_panel/centering_panel/0" | "shift_page_left_panel" | "shift_page_right_panel" | "horizontal_8px_padding" | "horizontal_20px_padding" | "ftue_subpage_indicator_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel" | "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding" | "individaul_cast_page_indicator" | "individaul_cast_page_indicator/panel_when_current_page" | "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding" | "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot" | "individaul_cast_page_indicator/panel_when_not_current_page" | "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding" | "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot" | "how_to_section" | "how_to_section/how_to_image" | "how_to_section/how_to_label_section" | "how_to_section/how_to_label_section/how_to_label" | "cast_preview_page_two_inner_section" | "cast_preview_page_two_inner_section/how_to_section_stack" | "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left" | "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel" | "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider" | "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right"; -export type PersonaCommon = "icon_image" | "mashup_world" | "mashup_hangar" | "mashup_paintbrush" | "info_bulb_icon" | "green_checkmark_icon" | "persona_screen_background_content" | "loading_icon" | "focus_border" | "selected_border" | "equipped_border" | "progress_loading" | "progress_loading/progress_loading" | "title_rarity_positionable_title" | "generic_title_panel" | "generic_title_panel/title_label" | "rarity_bar" | "item_rarity_color_background" | "piece_item_display" | "piece_item_display/item_renderer" | "piece_item_display/item_renderer/background" | "piece_item_display/item_renderer/item_image" | "piece_item_display/item_renderer/rarity_bar_panel" | "piece_item_display/item_renderer/extra_control" | "piece_item_display/item_renderer/extra_control/control_instance" | "piece_item_display/loading_progress_spinner" | "wheel_state" | "emote_label" | "touch_name_label" | "emote_image" | "emote_image/empty" | "emote_image/emote_preview" | "emote_image/emote_preview/valid" | "emote_image/emote_preview/valid_no_image" | "emote_image/emote_preview/valid_no_image/valid_text" | "keyboard_hotkey_helpers" | "keyboard_hotkey_helpers/keyboard_1" | "keyboard_hotkey_helpers/keyboard_2" | "keyboard_hotkey_helpers/keyboard_3" | "keyboard_hotkey_helpers/keyboard_4" | "gamepad_hotkey_helpers" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a" | "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x" | "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel" | "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper" | "emote_wheel_slot_content" | "emote_wheel_slot_content/image_0" | "emote_wheel_slot_content/touch_label_0" | "selection_wheel" | "emote_selection_wheel" | "emote_selection_wheel/default_state" | "emote_selection_wheel/emote_slot_0_content" | "emote_selection_wheel/emote_slot_1_content" | "emote_selection_wheel/emote_slot_2_content" | "emote_selection_wheel/emote_slot_3_content" | "emote_wheel_panel" | "emote_wheel_panel/emote_name" | "emote_wheel_panel/emote_wheel_content_panel" | "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers" | "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers" | "emote_wheel_panel/emote_wheel_content_panel/emote_wheel"; -export type PersonaPopups = "no_content_panel" | "common_image" | "common_icon" | "create_persona_choice_checked_image" | "create_persona_choice_unchecked_image" | "modal_window_input_blocker" | "modal_popup_background" | "general_text_field" | "title_text" | "popup_title" | "popup_content" | "popup_ok_button" | "popup_frame" | "popup_frame/title_label" | "popup_frame/close_button" | "popup_frame/content" | "popup_frame/ok_button" | "popup_info_panel" | "popup_info_panel/background" | "popup_info_panel/frame" | "common_dialog" | "common_dialog/background" | "common_dialog/panel" | "popup_dialog_bg" | "popup_dialog_bg/background_image" | "popup_dialog_bg/title_panel" | "popup_dialog_bg/title_panel/title" | "popup_dialog_bg/popup_content" | "icon_title_bar" | "icon_title_bar/icon" | "icon_title_bar/padding" | "icon_title_bar/text_title_panel" | "popup_common" | "popup_common/background" | "popup_common/background/text_stack_panel" | "popup_dialog__difference_information" | "differences_left_details" | "differences_left_section" | "differences_left_section/title_bar" | "differences_left_section/padding_1" | "differences_left_section/details" | "differences_detail_image" | "differences_title_card_display" | "differences_title_card_display/left" | "differences_title_card_display/padding_1" | "differences_title_card_display/right" | "differences_persona_detail_section" | "differences_classic_skin_detail_section" | "different_info_panel_contents" | "different_info_panel_contents/character_display" | "different_info_panel_contents/item_1_padding" | "different_info_panel_contents/divider" | "different_info_panel_contents/item_2_padding" | "different_info_panel_contents/classic_skin_display" | "popup_dialog__preview_difference_information" | "popup_dialog__delete_persona" | "popup_dialog__delete_persona/popup_dialog_bg" | "popup_dialog_delete_persona_content" | "popup_dialog_delete_persona_content/image" | "popup_dialog_delete_persona_content/message" | "popup_dialog_delete_persona_content/buttons" | "alex_warning" | "delete_popup_dialog_message" | "delete_persona_button_stack" | "delete_persona_button_stack/left_button" | "delete_persona_button_stack/padding" | "delete_persona_button_stack/right_button" | "delete_persona_left_button" | "delete_persona_right_button" | "popup_dialog__create_persona" | "create_persona_display" | "create_persona_display/vertical_padding_2px" | "create_persona_display/stack_content" | "create_persona_choice_stack" | "create_persona_choice_stack/background1" | "create_persona_choice_stack/background2" | "create_persona_choice_character" | "create_persona_choice_character/create_persona_choice_character" | "select_default_character_button_vertical_panel" | "select_default_character_button_vertical_panel/padding" | "select_default_character_button_vertical_panel/select_default_character_button_panel" | "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button" | "select_default_character_button" | "create_persona_choice_classic_skin" | "create_persona_choice_button" | "create_persona_choice_button/choice_toggle" | "create_persona_choice_background" | "create_persona_choice_background/choice_title_bar" | "create_persona_choice_background/choice_details_body" | "create_persona_choice_background/choice_bottom_content" | "create_persona_choice_title_bar" | "create_persona_choice_title_bar/checkbox" | "create_persona_choice_title_bar/spacing" | "create_persona_choice_title_bar/icon_title" | "create_persona_choice_check_positioning" | "create_persona_choice_check_positioning/toggle_image" | "create_persona_choice_icon_title" | "create_persona_choice_detail_panel" | "create_persona_choice_detail_panel/spacing" | "create_persona_choice_detail_panel/choice_details_body" | "create_persona_choice_detail" | "popup_dialog__invalid_custom_skin" | "popup_dialog__invalid_custom_skin/popup_dialog_bg" | "popup_dialog_invalid_custom_skin_content" | "popup_dialog_invalid_custom_skin_content/popup_dialog_message" | "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button" | "popup_dialog__upsell_without_store" | "popup_dialog__choose_skin_type" | "popup_dialog__choose_skin_type/popup_dialog_bg" | "popup_dialog_choose_skin_type_content" | "popup_dialog_choose_skin_type_content/popup_dialog_message" | "popup_dialog_choose_skin_type_content/left" | "popup_dialog_choose_skin_type_content/right" | "popup_dialog_choose_skin_type_panel" | "popup_dialog_choose_skin_type_panel/choose_skin_type_button" | "popup_dialog_skin_model" | "popup_dialog_skin_model/paper_doll" | "popup_dialog__custom_skin_info" | "popup_dialog__custom_skin_info/background_image" | "popup_dialog__custom_skin_info/popup_dialog_bg" | "custom_skin_info_panel_text" | "custom_skin_info_panel" | "custom_skin_info_panel/message" | "custom_skin_info_panel/button_group" | "custom_skin_info_button_collection" | "custom_skin_info_button_collection/settings" | "custom_skin_info_button_collection/vertical_4_padding" | "custom_skin_info_button_collection/close" | "popup_dialog_close_button" | "usage_limited_settings_profile_button" | "custom_skin_popup_dialog_bg" | "custom_skin_popup_dialog_bg/background_image" | "custom_skin_popup_dialog_bg/vertical_align_title" | "custom_skin_popup_dialog_bg/vertical_align_title/title" | "custom_skin_popup_dialog_bg/popup_content" | "popup_dialog__emote_equip_slot_editor" | "popup_dialog__emote_equip_slot_editor/background_image" | "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog" | "popup_emote_wheel_dialog" | "popup_emote_wheel_dialog/popup_background" | "emote_equip_slot_content" | "emote_equip_slot_content/close" | "emote_equip_slot_content/emote_wheel_content_panel" | "emote_equip_slot_content/emote_wheel_content_panel/cancel" | "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content" | "close_emote_popup_controller" | "close_emote_popup_controller/close_ui" | "emote_wheel_content" | "popup_dialog__realms_plus_extra_info" | "popup_dialog__realms_plus_extra_info/background_image" | "popup_dialog__realms_plus_extra_info/dialog_bg" | "realms_plus_extra_info_popup_dialog_bg" | "realms_plus_extra_info_popup_dialog_bg/background_image" | "realms_plus_extra_info_popup_dialog_bg/title" | "realms_plus_extra_info_popup_dialog_bg/popup_content" | "realms_extra_info_panel_text" | "realms_extra_info_panel" | "realms_extra_info_panel/realms_extra" | "realms_extra_info_panel/button_group" | "realms_extra_info_button_collection" | "realms_extra_info_button_collection/close" | "realms_extra_info_content" | "realms_extra_info_content/the_spread" | "realms_extra_info_content/the_spread/pack_image" | "realms_extra_info_content/the_spread/horizontal_6_padding" | "realms_extra_info_content/the_spread/the_info_stack" | "realms_extra_info_content/the_spread/the_info_stack/skins_and_world" | "realms_extra_info_content/the_spread/the_info_stack/padding" | "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage" | "pack_information_textures_and_usage_tooltip" | "pack_information_textures_and_usage_tooltip/textures" | "pack_information_textures_and_usage_tooltip/mid_padding" | "pack_information_textures_and_usage_tooltip/appearance_status" | "roamable_status_notification_panel" | "roamable_status_notification_panel/appearance_status_notification" | "roamable_status_notification_panel/roamable_status" | "appearance_status_image_panel" | "appearance_status_image_panel/usage_limited" | "appearance_status_image_panel/usage_not_limited" | "pack_information_skins_and_world" | "pack_information_skins_and_world/skins" | "pack_information_skins_and_world/mid_padding" | "pack_information_skins_and_world/worlds" | "skin_info_label_and_image" | "skin_info_label_and_image/content_stack" | "skin_info_image_panel" | "skin_info_image_panel/image" | "skin_info_label_panel_label" | "skin_info_label_panel" | "skin_info_label_panel/label" | "skin_info_content_stack" | "skin_info_content_stack/image_panel" | "skin_info_content_stack/horizontal_2_padding" | "skin_info_content_stack/label_panel" | "realms_extra_info_pack_info" | "popup_toast"; -export type Play = "label_background" | "dark_label_background" | "world_screenshot_base" | "collection_world_screenshot" | "collection_world_screenshot/screenshot_picture" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired" | "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark" | "world_item_grid_base" | "edit_icon" | "realms_stories_icon" | "realms_stories_icon_animated" | "realms_slots_edit_icon" | "worlds_icon" | "realms_icon" | "realms_chevron" | "friends_icon_1" | "friends_icon_2" | "bell_icon" | "invite_icon" | "delete_icon" | "world_download_icon" | "third_party_servers_icon" | "lan_icon" | "friends_server_icon" | "cross_platform_friends_server_icon" | "realms_remove_icon" | "game_online_icon" | "game_offline_icon" | "game_unavailable_icon" | "import_icon" | "add_server_icon" | "server_tab_icon" | "realms_art_icon" | "realms_text_background" | "connected_storage" | "feedback_icon" | "local_only_storage" | "local_and_cloud_storage" | "cloud_only_storage" | "left_arrow_icon" | "right_arrow_icon" | "small_progress_panel" | "sign_in_realms_image" | "sign_in_realms_image/chevron" | "sign_in_realms_image/portal" | "realms_sign_in_prompt_label" | "realms_sign_in_prompt" | "realms_sign_in_prompt/realms_sign_in_prompt_label" | "realms_sign_in_prompt_friends" | "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends" | "sign_in_to_view_realms_content_panel" | "sign_in_to_view_realms_content_panel/sign_in_realms_image" | "sign_in_to_view_realms_content_panel/realms_sign_in_prompt" | "sign_in_to_view_realms_content_panel_friends" | "sign_in_to_view_realms_button" | "sign_in_to_view_realms_button_friends" | "realms_list_text" | "realms_world_header" | "realms_world_details" | "realms_world_type" | "realms_world_player_count" | "realms_world_game_status_icon" | "realms_world_game_status_icon/game_online_icon" | "realms_world_game_status_icon/game_unavailable_icon" | "realms_world_game_status_icon/game_offline_icon" | "realms_world_text_panel" | "realms_world_text_panel/realms_world_header" | "realms_world_text_panel/realms_world_details" | "realms_world_trial_text_panel" | "realms_world_trial_text_panel/realms_world_header_text" | "realms_world_trial_text_panel/realms_world_details" | "realms_world_content_text_area_panel" | "realms_world_content_text_area_panel/realms_world_text_panel" | "realms_trial_content_text_area_panel" | "realms_trial_content_text_area_panel/realms_world_trial_text_panel" | "realms_world_content_status_area_panel" | "realms_world_content_status_area_panel/world_player_count_text_panel" | "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count" | "realms_world_content_status_area_panel/padding" | "realms_world_content_status_area_panel/realms_world_game_status_icon" | "realms_world_content_status_area_panel_container" | "realms_world_content_status_area_panel_container/realms_world_status_panel" | "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel" | "realms_world_content_status_area_panel_container/realms_world_type" | "realms_world_content_panel" | "realms_world_content_panel/realm_screenshot" | "realms_world_content_panel/padding" | "realms_world_content_panel/realms_world_content_text_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel" | "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container" | "realms_trial_content_panel" | "realms_trial_content_panel/realm_screenshot" | "realms_trial_content_panel/padding" | "realms_trial_content_panel/realms_trial_content_text_area_panel" | "realms_world_item_button" | "realms_world_edit_button" | "realms_feed_button_content" | "realms_feed_button_content/default_icon" | "realms_feed_button_content/unread_icon_active" | "persistent_realms_feed_button_control" | "realms_feed_button" | "leave_friends_realm_button" | "unread_story_count_text" | "unread_story_count_text_background" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "realms_world_item" | "realms_world_item/realms_button_panel" | "realms_world_item/realms_button_panel/realms_world_item_button" | "realms_world_item/realms_button_panel/tts_border" | "realms_world_item/edit_panel" | "realms_world_item/edit_panel/realms_world_edit_button" | "realms_world_item/edit_panel/realms_world_expiry_notification_image" | "realms_world_item/feed_panel_with_unread_count" | "realms_world_item/feed_panel_with_unread_count/feed_panel" | "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button" | "realms_world_item/feed_panel_with_unread_count/unread_story_count" | "realms_world_item/leave_realm_panel" | "realms_world_item/leave_realm_panel/leave_friends_realm_button" | "realms_world_item_grid" | "network_world_header" | "network_world_header/network_world_header_icon" | "network_world_header/spacer" | "network_world_header/header_panel" | "network_world_header/header_panel/network_world_header_text" | "network_world_details" | "network_world_player_count" | "network_world_player_count/count" | "network_world_game_status_icon" | "network_world_game_status_icon/game_online_icon" | "network_world_game_status_icon/game_unavailable_icon" | "network_world_game_status_icon/game_offline_icon" | "network_world_text_panel" | "network_world_text_panel/network_world_header" | "network_world_text_panel/network_world_details" | "network_world_content_text_area_panel" | "network_world_content_text_area_panel/network_world_text_panel" | "network_world_content_status_area_panel" | "network_world_content_status_area_panel/network_player_count_text_panel" | "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count" | "network_world_content_status_area_panel/padding" | "network_world_content_status_area_panel/network_world_game_status_icon" | "network_world_content_status_area_panel_container" | "network_world_content_status_area_panel_container/network_world_status_panel" | "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel" | "network_world_content_status_area_panel_container/network_world_type" | "network_world_type" | "network_world_type/type" | "network_world_item_button_content" | "network_world_item_button_content/network_world_content_text_area_panel" | "network_world_item_button_content/network_status_area_panel" | "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container" | "network_world_item_button_content/network_world_type_icon" | "network_world_item_button_content/network_world_type_icon/padding" | "network_world_item_button" | "network_server_world_edit_button" | "network_world_item" | "network_world_item/network_world_item_button" | "network_world_item/tts_border" | "network_world_item_grid" | "network_world_item_ignore_crossplay" | "network_world_item_ignore_crossplay/network_world_item_button" | "label_content_template" | "label_content_template/label_panel" | "label_content_template/label_panel/label_panel_layout" | "label_content_template/label_panel/label_panel_layout/label" | "label_content_template/content" | "information_panel" | "information_panel/background" | "information_panel/background/label_panel_layout" | "information_panel/background/label_panel_layout/label" | "information_panel/focus_button" | "blocked_multiplayer_privileges_panel" | "blocked_multiplayer_privileges_panel/background" | "blocked_multiplayer_privileges_panel/background/label_panel_layout" | "blocked_multiplayer_privileges_panel/background/label_panel_layout/label" | "more_servers_grid" | "additional_server_toggle_content" | "additional_server_toggle_content/network_world_content_text_area_panel" | "more_servers_label_panel" | "more_servers_label_panel/list_label" | "more_servers_world_item" | "more_servers_world_item/additional_server_toggle_base" | "more_servers_world_item/network_server_world_edit_button" | "additional_server_info_panel" | "additional_server_info_panel/server_info_stack_panel" | "additional_server_info_panel/server_info_stack_panel/padding_1" | "additional_server_info_panel/server_info_stack_panel/server_name" | "additional_server_info_panel/server_info_stack_panel/padding_2" | "additional_server_info_panel/server_info_stack_panel/player_count" | "additional_server_info_panel/server_info_stack_panel/padding_3" | "additional_server_info_panel/server_info_stack_panel/ping" | "additional_server_info_panel/server_info_stack_panel/padding_4" | "additional_server_info_panel/server_info_stack_panel/join_server_button" | "ping_rate_icon" | "ping_rate_panel" | "ping_rate_panel/concurrency_stack" | "ping_rate_panel/concurrency_stack/player_count" | "ping_rate_panel/concurrency_stack/padding_0" | "ping_rate_panel/concurrency_stack/ping_rate_icon" | "add_server_info_panel" | "add_server_info_panel/server_info_stack_panel" | "add_server_info_panel/server_info_stack_panel/padding_0" | "add_server_info_panel/server_info_stack_panel/add_server_title" | "add_server_info_panel/server_info_stack_panel/padding_1" | "add_server_info_panel/server_info_stack_panel/add_server_description" | "third_party_featured_server_grid" | "featured_server_world_item" | "featured_server_world_item/server_button" | "server_button_content_panel" | "server_button_content_panel/top_panel" | "server_button_content_panel/top_panel/third_party_server_screenshot" | "server_button_content_panel/top_panel/padding_0" | "server_button_content_panel/top_panel/title_panel" | "server_button_content_panel/top_panel/title_panel/third_party_server_name" | "server_button_content_panel/top_panel/title_panel/progress" | "server_button_content_panel/padding" | "server_button_content_panel/bottom_panel" | "server_button_content_panel/bottom_panel/third_party_server_message" | "third_party_server_content_panel" | "third_party_server_content_panel/ping_rate_panel" | "loading_featured_servers_panel" | "loading_featured_servers_panel/load_bars" | "loading_featured_servers_panel/load_bars/progress_loading_bars" | "third_party_server_screenshot" | "third_party_server_screenshot/picture" | "third_party_server_info_panel" | "third_party_server_info_panel/server_info_stack_panel" | "third_party_server_info_panel/server_info_stack_panel/padding_0" | "third_party_server_info_panel/server_info_stack_panel/server_screenshot" | "third_party_server_info_panel/server_info_stack_panel/padding_1" | "third_party_server_info_panel/server_info_stack_panel/server_name" | "third_party_server_info_panel/server_info_stack_panel/padding_2" | "third_party_server_info_panel/server_info_stack_panel/player_count" | "third_party_server_info_panel/server_info_stack_panel/padding_3" | "third_party_server_info_panel/server_info_stack_panel/ping" | "third_party_server_info_panel/server_info_stack_panel/padding_4" | "third_party_server_info_panel/server_info_stack_panel/join_server_button" | "third_party_server_info_panel/server_info_stack_panel/view_offers_button" | "third_party_server_info_panel/server_info_stack_panel/padding_5" | "third_party_server_info_panel/server_info_stack_panel/screenshots_section" | "third_party_server_info_panel/server_info_stack_panel/description_section" | "third_party_server_info_panel/server_info_stack_panel/games_section" | "third_party_server_info_panel/server_info_stack_panel/news_section" | "third_party_server_info_panel/progress" | "text_icon_number_panel" | "text_icon_number_panel/text" | "text_icon_number_panel/padding_0" | "text_icon_number_panel/stack_panel" | "text_icon_number_panel/stack_panel/icon_panel" | "text_icon_number_panel/stack_panel/icon_panel/icon" | "text_icon_number_panel/stack_panel/padding_1" | "text_icon_number_panel/stack_panel/number" | "grey_bar_panel" | "grey_bar_panel/grey_bar" | "grey_bar_panel/green_bar" | "grey_bar_panel/padding" | "screenshots_section_panel" | "screenshots_section_panel/divider_0" | "screenshots_section_panel/padding_0" | "screenshots_section_panel/screenshots_label" | "screenshots_section_panel/padding_1" | "screenshots_section_panel/screenshots" | "screenshots_section_panel/padding_2" | "screenshots_section_panel/navigation_panel" | "screenshots_section_panel/navigation_panel/left_arrow_button" | "screenshots_section_panel/navigation_panel/padding_0" | "screenshots_section_panel/navigation_panel/navigation_bar" | "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar" | "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel" | "screenshots_section_panel/navigation_panel/padding_1" | "screenshots_section_panel/navigation_panel/right_arrow_button" | "screenshots_section_panel/padding_3" | "description_text_panel" | "description_text_panel/contents_description" | "description_section_panel" | "description_section_panel/divider_0" | "description_section_panel/padding_0" | "description_section_panel/description_label" | "description_section_panel/padding_1" | "description_section_panel/read_more_panel" | "description_section_panel/read_more_panel/description_text_small" | "description_section_panel/read_more_panel/description_text_full" | "description_section_panel/read_more_panel/description_read_more_button_panel" | "description_section_panel/read_more_panel/description_read_less_button_panel" | "description_section_panel/padding_3" | "games_factory_object" | "games_factory_object/games_factory_panel" | "games_factory_object/games_factory_panel/top_panel" | "games_factory_object/games_factory_panel/top_panel/game_image_panel" | "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image" | "games_factory_object/games_factory_panel/top_panel/padding" | "games_factory_object/games_factory_panel/top_panel/game_title_panel" | "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title" | "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle" | "games_factory_object/games_factory_panel/bottom_panel" | "games_factory_object/games_factory_panel/bottom_panel/bottom_panel" | "games_factory_object/padding" | "games_section_panel" | "games_section_panel/divider_0" | "games_section_panel/padding_0" | "games_section_panel/description_label" | "games_section_panel/padding_1" | "games_section_panel/games_factory_panel" | "games_section_panel/padding_3" | "news_text_panel" | "news_text_panel/contents_news" | "news_section_panel" | "news_section_panel/divider_0" | "news_section_panel/padding_0" | "news_section_panel/news_label" | "news_section_panel/padding_1" | "news_section_panel/read_more_panel" | "news_section_panel/read_more_panel/text_stack_panel" | "news_section_panel/read_more_panel/text_stack_panel/news_title_text" | "news_section_panel/read_more_panel/text_stack_panel/divider_panel" | "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0" | "news_section_panel/read_more_panel/text_stack_panel/news_text_small" | "news_section_panel/read_more_panel/text_stack_panel/news_text_full" | "news_section_panel/read_more_panel/news_read_more_button_panel" | "news_section_panel/read_more_panel/news_read_less_button_panel" | "news_section_panel/padding_3" | "divider" | "blue_diskspace_bar" | "green_diskspace_bar" | "empty_diskspace_bar" | "legacy_world_content_status_area_panel" | "legacy_world_content_status_area_panel/world_storage_content_panel" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar" | "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar" | "world_list_text" | "realm_screenshot" | "realm_screenshot/picture" | "local_world_name" | "legacy_world_name" | "world_lock" | "local_world_game_mode" | "legacy_world_game_mode" | "local_world_date" | "legacy_world_date" | "local_world_filesize" | "legacy_world_filesize" | "local_world_connected_storage" | "local_world_connected_storage/local_and_cloud" | "local_world_connected_storage/local_only" | "local_world_connected_storage/cloud_only" | "local_world_lock_panel" | "local_world_lock_panel/lock" | "realms_plus_banner" | "realms_plus_banner/realms_banner" | "local_world_text_panel" | "local_world_text_panel/text_indent" | "local_world_text_panel/text_indent/top_side" | "local_world_text_panel/text_indent/top_side/local_world_name" | "local_world_text_panel/text_indent/top_side/lock_1" | "local_world_text_panel/text_indent/top_side/local_world_date" | "local_world_text_panel/text_indent/bottom_side" | "local_world_text_panel/text_indent/bottom_side/realms_plus_icon" | "local_world_text_panel/text_indent/bottom_side/pad" | "local_world_text_panel/text_indent/bottom_side/local_world_game_mode" | "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage" | "local_world_text_panel/text_indent/bottom_side/local_world_filesize" | "legacy_world_text_panel" | "legacy_world_text_panel/text_indent" | "legacy_world_text_panel/text_indent/top_side" | "legacy_world_text_panel/text_indent/top_side/legacy_world_name" | "legacy_world_text_panel/text_indent/top_side/legacy_world_date" | "legacy_world_text_panel/text_indent/bottom_side" | "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode" | "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize" | "beta_retail_world_text_panel" | "beta_retail_world_text_panel/text_indent" | "beta_retail_world_text_panel/text_indent/top_side" | "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name" | "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date" | "beta_retail_world_text_panel/text_indent/bottom_side" | "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode" | "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize" | "world_content_panel" | "world_content_panel/world_screenshot" | "world_content_panel/world_text_panel" | "ownership_verification_in_progress_content" | "ownership_verification_in_progress_content/top_padding" | "ownership_verification_in_progress_content/loading_bar_panel" | "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation" | "ownership_verification_in_progress_content/mid_padding" | "ownership_verification_in_progress_content/loading_label" | "ownership_verification_in_progress_content/bottom_padding" | "ownership_verification_in_progress_panel" | "ownership_verification_in_progress_panel/ownership_verification_in_progress_content" | "local_world_item_button" | "legacy_world_item_button" | "beta_retail_world_item_button" | "local_world_edit_button" | "legacy_world_delete_button" | "legacy_world_migrate_button" | "local_world_item" | "local_world_item/header_button_panel" | "local_world_item/signin_in_progress_panel" | "legacy_world_item" | "legacy_world_item/header_button_panel_with_delete" | "legacy_world_item/header_button_panel_with_migrate" | "legacy_world_item/header_button_panel_no_delete" | "beta_retail_world_item" | "local_world_item_grid" | "legacy_world_item_grid" | "beta_retail_local_world_item_grid" | "beta_retail_legacy_world_item_grid" | "common_button_template" | "common_button_text" | "add_friend_and_invite_panel" | "add_friend_and_invite_panel/add_friend_button" | "add_friend_and_invite_panel/padding_1" | "add_friend_and_invite_panel/join_by_code_button" | "add_friend_and_invite_panel/padding_2" | "add_friend_and_invite_panel/notification_button_panel" | "add_friend_and_invite_panel/notification_button_panel/notification_button" | "add_friend_button" | "join_by_code_button" | "add_server_toggle_button" | "server_toggle_base" | "quick_play_button" | "create_new_world_button" | "create_on_realms_button_panel" | "create_on_realms_button_panel/create_on_realms_button" | "import_world_button" | "sync_legacy_worlds_button" | "notification_button_text_layout" | "notification_button_text_layout/image1" | "notification_button_text_layout/image2" | "notification_button_text_layout/count" | "notification_button_label_panel" | "notification_button_label_panel/notification_button_label" | "notification_content" | "notification_button" | "header_button_panel" | "header_button_panel/buttons" | "header_button_panel/buttons/primary_panel" | "header_button_panel/buttons/primary_panel/primary" | "header_button_panel/buttons/secondary" | "header_button_panel_opt_in" | "header_button_panel_opt_in/buttons" | "header_button_panel_opt_in/buttons/primary_panel" | "header_button_panel_opt_in/buttons/primary_panel/primary" | "header_button_panel_opt_in/buttons/secondary" | "header_button_panel_opt_in/buttons/ternary" | "header_single_button_panel" | "header_single_button_panel/buttons" | "header_single_button_panel/buttons/primary" | "open_account_setting_button_gamecore" | "common_scroll_pane" | "worlds_scroll_panel" | "worlds_scroll_panel/worlds_list_stack_panel" | "game_tip_item_panel" | "game_tip_item_panel/info_bulb" | "game_tip_item_panel/padding_1" | "game_tip_item_panel/label_panel" | "game_tip_item_panel/label_panel/padding_vertical" | "game_tip_item_panel/label_panel/realms_warning_text" | "game_tip_item_panel/label_panel/padding_vertical_1" | "game_tip_item_panel/more_info_button" | "realm_warning_tip" | "realm_warning_tip/padding_vertical" | "realm_warning_tip/info_panel" | "new_ui_switch_button_options_panel" | "new_ui_switch_button_options_panel/unlock_template_options_button" | "new_ui_servers_switch_button_options_panel" | "new_ui_servers_switch_button_options_panel/unlock_template_options_button" | "new_ui_servers_switch_button_options_panel/padding_0" | "worlds_stack_panel" | "worlds_stack_panel/padding_0" | "worlds_stack_panel/play_screen_warning" | "worlds_stack_panel/header_button" | "worlds_stack_panel/header_button/quick_play" | "worlds_stack_panel/header_button/buttons" | "worlds_stack_panel/worlds_crossplatform_disabled_panel" | "worlds_stack_panel/worlds_crossplatform_disable_spacer" | "worlds_stack_panel/realms_panel" | "worlds_stack_panel/realms_panel/realms_label" | "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button" | "worlds_stack_panel/realms_panel/realms_previews_panel" | "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon" | "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/create_on_realms_button_panel" | "worlds_stack_panel/realms_panel/personal_realms" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding" | "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars" | "worlds_stack_panel/realms_panel/realms_trial_panel" | "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel" | "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button" | "worlds_stack_panel/realms_panel/padding_1" | "worlds_stack_panel/realms_multiplayer_blocked_panel" | "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel" | "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button" | "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore" | "worlds_stack_panel/worlds_label" | "worlds_stack_panel/grid" | "worlds_stack_panel/no_local_worlds_label" | "worlds_stack_panel/no_local_worlds_switch_setting" | "worlds_stack_panel/beta_retail_local_padding" | "worlds_stack_panel/beta_retail_local_worlds_label" | "worlds_stack_panel/beta_retail_local_grid" | "worlds_stack_panel/loading_legacy_worlds_panel_padding" | "worlds_stack_panel/legacy_worlds_button" | "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label" | "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel" | "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button" | "worlds_stack_panel/loading_legacy_worlds_panel" | "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "worlds_stack_panel/loading_legacy_worlds_panel/padding" | "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars" | "worlds_stack_panel/padding_2" | "worlds_stack_panel/upgrade_legacy_worlds_label" | "worlds_stack_panel/legacy_world_item_grid" | "worlds_stack_panel/beta_retail_legacy_padding" | "worlds_stack_panel/beta_retail_legacy_worlds_label" | "worlds_stack_panel/beta_retail_legacy_grid" | "worlds_stack_panel/pad_hack_panel" | "no_local_worlds_switch_setting" | "no_local_worlds_switch_setting/bg" | "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting" | "no_local_worlds_switch_setting/bg/no_local_worlds_get_help" | "no_local_worlds_launch_help" | "storage_location_dropdown_panel" | "storage_location_dropdown_panel/padding1" | "storage_location_dropdown_panel/storage_location_dropdown" | "storage_location_dropdown" | "switch_storage_type_content" | "light_centered_loading_label" | "light_loading_label" | "loading_label" | "progress_loading_bars" | "world_list_label_panel" | "world_list_label_panel/list_label" | "world_list_label_with_color_panel" | "world_list_label_with_color_panel/colored_square_sizer" | "world_list_label_with_color_panel/colored_square_sizer/colored_square" | "world_list_label_with_color_panel/padding" | "world_list_label_with_color_panel/list_label" | "empty_panel" | "empty_grid" | "lan_servers_scroll_content" | "friends_scroll_panel" | "friends_scroll_panel/stack_panel" | "friends_scroll_panel/stack_panel/padding_0" | "friends_scroll_panel/stack_panel/friends_screen_warning" | "friends_scroll_panel/stack_panel/header_button" | "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel" | "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel" | "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer" | "friends_scroll_panel/stack_panel/joinable_realms_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends" | "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding" | "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover" | "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed" | "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid" | "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1" | "friends_scroll_panel/stack_panel/friends_grid" | "friends_scroll_panel/stack_panel/pad_hack_panel" | "friends_scroll_panel/stack_panel/no_friends_grid_message" | "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button" | "friends_scroll_panel/stack_panel/add_friend_button_padding" | "friends_scroll_panel/stack_panel/cross_platform_friends_grid" | "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message" | "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message" | "friends_scroll_panel/stack_panel/lan_grid" | "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore" | "manually_added_servers_scrolling_content" | "manually_added_servers_scrolling_content/padding_0" | "manually_added_servers_scrolling_content/more_servers_label" | "manually_added_servers_scrolling_content/padding_1" | "manually_added_servers_scrolling_content/more_servers_grid" | "manually_added_servers_scrolling_content/padding_3" | "servers_content_panel" | "servers_content_panel/new_ui_servers_switch_button_options_panel" | "servers_content_panel/featured_servers_panel" | "servers_content_panel/featured_servers_panel/loading_featured_panel" | "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label" | "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel" | "servers_content_panel/featured_servers_panel/padding_1" | "servers_content_panel/featured_servers_panel/featured_servers_label" | "servers_content_panel/featured_servers_panel/padding_2" | "servers_content_panel/featured_servers_panel/third_party_featured_grid" | "servers_content_panel/featured_servers_panel/padding_3" | "servers_content_panel/more_servers_divider" | "servers_content_panel/more_servers_panel" | "server_scroll_panel" | "server_scroll_panel/stack_panel" | "server_scroll_panel/stack_panel/padding_0" | "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel" | "server_scroll_panel/stack_panel/no_featured_server_connection" | "server_scroll_panel/stack_panel/more_servers_blocked_panel" | "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked" | "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button" | "server_scroll_panel/stack_panel/padding_1" | "server_scroll_panel/stack_panel/server_content" | "server_scroll_panel/stack_panel/add_server_button" | "crossplatform_disabled_panel" | "crossplatform_disable_spacer" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "worlds_scroll_content" | "worlds_scroll_content/worlds_stack_panel" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer" | "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel" | "friends_scroll_content" | "friends_scroll_content/scrolling_panel" | "show_servers_panel" | "show_servers_panel/left_panel" | "show_servers_panel/left_panel/scrolling_panel" | "show_servers_panel/divider_panel" | "show_servers_panel/divider_panel/main_divider" | "show_servers_panel/right_panel" | "server_scroll_content" | "server_scroll_content/severs_panel" | "server_scroll_content/severs_panel/offset_panel" | "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning" | "server_scroll_content/severs_panel/show_servers_panel" | "server_scroll_content/feature_server_message_panel" | "server_scroll_content/feature_server_message_panel/featured_servers_label" | "server_scroll_content/feature_server_message_panel/pad" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout" | "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label" | "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore" | "server_content_area" | "server_content_area/third_party_scrolling_panel" | "server_content_area/additional_server_scrolling_panel" | "server_content_area/add_server_pane" | "tab_front" | "tab_front_middle" | "tab_back" | "X_tab_back" | "tab_text_stack_panel" | "tab_text_stack_panel/padding" | "tab_text_stack_panel/text_section" | "tab_text_stack_panel/text_section/text" | "tab_text_stack_panel/count_section" | "tab_text_stack_panel/count_section/count_background_image" | "tab_text_stack_panel/count_section/count_background_image/count" | "common_navigation_tab_content" | "common_navigation_tab_content/padding_0" | "common_navigation_tab_content/icon_section" | "common_navigation_tab_content/icon_section/icon" | "common_navigation_tab_content/padding_1" | "common_navigation_tab_content/count_text" | "friends_navigation_tab_content" | "friends_navigation_tab_content/padding" | "friends_navigation_tab_content/icon_section" | "friends_navigation_tab_content/icon_section/icon" | "friends_navigation_tab_content/icon_section_2" | "friends_navigation_tab_content/icon_section_2/icon" | "friends_navigation_tab_content/icon_section_nobounce" | "friends_navigation_tab_content/icon_section_nobounce/icon" | "friends_navigation_tab_content/icon_section_nobounce_2" | "friends_navigation_tab_content/icon_section_nobounce_2/icon" | "friends_navigation_tab_content/icon_section_notification" | "friends_navigation_tab_content/icon_section_notification/icon1" | "friends_navigation_tab_content/icon_section_notification/icon2" | "friends_navigation_tab_content/count_text" | "top_tab" | "world_navigation_tab" | "friends_navigation_tab" | "server_navigation_tab" | "close_navigation_tab" | "close_navigation_tab/background" | "close_navigation_tab/x_image" | "common_tab_content_panel" | "common_tab_content_panel/background" | "common_tab_content_panel/content" | "worlds_tab_content_panel" | "friends_tab_content_panel" | "server_tab_content_panel" | "common_tab_content_panel_type" | "edu_tab_content_panel_layout" | "edu_tab_content_panel_layout/worlds_tab_content" | "edu_tab_content_panel_layout/friends_tab_content" | "edu_tab_content_panel_layout/server_tab_content_panel" | "trial_tab_content_panel_layout" | "trial_tab_content_panel_layout/worlds_tab_content" | "default_tab_content_panel_layout" | "default_tab_content_panel_layout/worlds_tab_content" | "default_tab_content_panel_layout/friends_tab_content" | "default_tab_content_panel_layout/server_tab_content_panel" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "tab_navigation_panel_layout/close_navigation_tab" | "tab_navigation_panel_layout/close_navigation_tab/close_button" | "common_tab_navigation_panel_layout" | "edu_tab_navigation_panel_layout" | "edu_tab_navigation_panel_layout/world_navigation_tab" | "edu_tab_navigation_panel_layout/friends_navigation_tab" | "edu_tab_navigation_panel_layout/server_navigation_tab" | "trial_tab_navigation_panel_layout" | "trial_tab_navigation_panel_layout/world_navigation_tab" | "default_tab_navigation_panel_layout" | "default_tab_navigation_panel_layout/world_navigation_tab" | "default_tab_navigation_panel_layout/friends_navigation_tab" | "default_tab_navigation_panel_layout/server_navigation_tab" | "common_play_screen_panel" | "play_screen_panel" | "play_screen_panel/tab_navigation_panel" | "play_screen_panel/tab_content_panel" | "play_screen_panel/gamepad_helper_left_bumper" | "play_screen_panel/gamepad_helper_right_bumper" | "play_screen_panel/keyboard_helper_left_bracket" | "play_screen_panel/keyboard_helper_right_bracket" | "default_play_screen_panel" | "trial_play_screen_panel" | "edu_play_screen_panel" | "play_screen" | "play_screen_content" | "play_screen_content/main_control" | "play_screen_content/editor_text_panel" | "play_screen_content/popup_dialog_factory" | "popup_dialog_join_by_code" | "popup_dialog_join_by_code/join_by_code_popup_background" | "popup_dialog_join_by_code/join_by_code_popup_content" | "popup_dialog_join_by_code/gamepad_helpers" | "join_by_code_popup_background" | "join_by_code_popup_content" | "join_by_code_popup_content/popup_dialog_bg" | "join_by_code_popup_content/popup_stack_panel" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header" | "join_by_code_popup_content/popup_stack_panel/spacing_1" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body" | "join_by_code_popup_content/popup_stack_panel/spacing_2" | "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body" | "join_by_code_popup_dialog_header" | "join_by_code_popup_dialog_header/join_by_code_popup_header_text" | "join_by_code_popup_dialog_header/close_button" | "join_by_code_popup_header_text" | "join_by_code_popup_dialog_upper_body" | "join_by_code_popup_dialog_upper_body/margin1" | "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field" | "join_by_code_popup_dialog_upper_body/spacing" | "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button" | "join_by_code_popup_dialog_upper_body/margin2" | "join_by_code_popup_code_text_field" | "join_by_code_popup_join_button" | "join_by_code_popup_help_text" | "lower_body_default_content" | "lower_body_default_content/info_text" | "join_by_code_popup_dialog_lower_body" | "join_by_code_popup_dialog_lower_body/default" | "open_account_setting_button" | "popup_dialog_high_ping" | "popup_dialog_high_ping/high_ping_popup_background" | "popup_dialog_high_ping/high_ping_popup_content" | "popup_dialog_high_ping/gamepad_helpers" | "popup_two_buttons" | "popup_two_buttons/common_panel" | "popup_two_buttons/title_label" | "popup_two_buttons/panel_indent" | "popup_two_buttons/panel_indent/inside_header_panel" | "popup_two_buttons/button_panel" | "popup_two_buttons/button_panel/left_button_panel" | "popup_two_buttons/button_panel/pad" | "popup_two_buttons/button_panel/right_button_panel" | "high_ping_popup_content_stack_panel" | "high_ping_popup_content_stack_panel/pad_0" | "high_ping_popup_content_stack_panel/ping_images_panel" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad" | "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection" | "high_ping_popup_content_stack_panel/pad_1" | "high_ping_popup_content_stack_panel/text_line_1" | "high_ping_popup_content_stack_panel/pad_2" | "high_ping_popup_content_stack_panel/text_line_2" | "high_ping_popup_content_stack_panel/pad_3" | "high_ping_popup_join_button" | "high_ping_popup_cancel_button" | "copyright" | "development_version" | "version" | "editor_text_panel" | "editor_text_panel/copyright" | "editor_text_panel/development_version" | "editor_text_panel/version" | "editor_settings_image_content" | "editor_settings_menu_button" | "editor_server_content_panel" | "editor_server_content_panel/more_servers_panel" | "editor_tab_content_panel_layout" | "editor_tab_content_panel_layout/worlds_tab_content" | "editor_tab_content_panel_layout/friends_tab_content" | "editor_tab_content_panel_layout/server_tab_content_panel" | "editor_play_screen_panel"; -export type PerfTurtle = "perf_turtle_panel" | "perf_turtle_panel/perf_turtle_background" | "perf_turtle_panel/stack_panel" | "perf_turtle_panel/stack_panel/turtle" | "perf_turtle_panel/stack_panel/turtle_text"; -export type PocketContainers = "generic_label" | "header_panel" | "header_panel/header_background" | "header_panel/title_label" | "header_area" | "header_area/x" | "header_area/inventory_header" | "header_area/container_header" | "dark_bg" | "panel_outline" | "background_panel" | "inventory_grid" | "inventory_panel" | "inventory_panel/scrolling_panel" | "half_screen" | "half_screen/inventory_panel" | "panel" | "panel/container_gamepad_helpers" | "panel/header" | "panel/bg" | "panel/inventory" | "panel/container" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/gamepad_cursor" | "panel/inventory_selected_icon_button" | "panel/hold_icon" | "panel/flying_item_renderer" | "small_chest_panel" | "large_chest_panel" | "hopper_panel" | "dispenser_panel" | "dropper_panel" | "ender_chest_panel" | "shulker_box_panel" | "barrel_panel"; -export type PopupDialog = "popup_dialog_bg" | "popup_dialog_message" | "popup_dialog_button" | "popup_dialog_button_with_binding" | "popup_dialog_left_button" | "popup_dialog_middle_button" | "popup_dialog_right_button" | "popup_dialog" | "modal_background_image" | "black_tint_image" | "modal_title_text" | "modal_label_text" | "modal_label_text/padding" | "modal_label_text/text" | "modal_checkbox_button" | "modal_checkbox_button/header_description_stack_panel" | "modal_checkbox_button/header_description_stack_panel/checkbox_visuals" | "modal_checkbox_button/header_description_stack_panel/buffer_panel" | "modal_checkbox_button/header_description_stack_panel/buffer_panel/label" | "modal_checkbox_button/header_description_stack_panel/padding_panel" | "dialog_text_wrapper" | "modal_label_panel" | "modal_left_button" | "modal_middle_button" | "modal_rightcancel_button" | "three_buttons_panel" | "three_buttons_panel/left" | "three_buttons_panel/middle" | "three_buttons_panel/right" | "two_buttons_checkbox_panel" | "two_buttons_checkbox_panel/left" | "two_buttons_checkbox_panel/middle" | "two_buttons_checkbox_panel/checkbox" | "destructive_three_buttons_panel" | "destructive_three_buttons_panel/left" | "destructive_three_buttons_panel/middle" | "destructive_three_buttons_panel/right" | "two_buttons_panel" | "two_buttons_panel/left" | "two_buttons_panel/right" | "destructive_two_buttons_panel" | "destructive_two_buttons_panel/left" | "destructive_two_buttons_panel/right" | "single_button_panel" | "single_button_panel/left" | "single_button_checkbox_panel" | "single_button_checkbox_panel/left" | "single_button_checkbox_panel/checkbox" | "modal_dialog_base" | "modal_dialog_with_buttons" | "modal_dialog_with_buttons/background_with_buttons" | "modal_dialog_with_buttons/title" | "modal_dialog_with_buttons/text" | "modal_dialog_with_buttons/button_panel" | "modal_input_panel" | "modal_input_panel/black_tint_image" | "modal_dialog_popup" | "modal_dialog_popup/modal_input" | "modal_dialog_popup/modal_input/modal_bg_buttons" | "modal_dialog_popup/modal_input/black_background" | "hollow_2_bottom_button_panel" | "hollow_2_bottom_button_panel/lower_button_controls" | "form_fit_screen_with_title_and_close_and_bottom_buttons" | "form_fit_screen_with_title_and_close" | "form_fit_screen_with_title_and_close/panel_background" | "form_fit_screen_with_title_and_close/panel_content" | "form_fit_screen_with_title_and_close/panel_content/header" | "form_fit_screen_with_title_and_close/panel_content/header/header_content" | "form_fit_screen_with_title_and_close/panel_content/close_button_panel" | "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close" | "form_fit_screen_with_title_and_close/panel_content/contents" | "form_fit_screen_with_title_and_close/panel_content/contents/contents" | "form_fit_screen_with_title_and_close/panel_content/contents/content_padding" | "form_fit_screen_with_title_and_close/panel_content/lower_contents" | "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents" | "form_fit_modal_dialog_popup" | "form_fit_modal_dialog_popup/background" | "form_fit_modal_dialog_popup/content" | "progress_dialog_popup" | "progress_dialog_popup/background" | "progress_dialog_popup/title" | "progress_dialog_popup/progress_content" | "progress_dialog_popup/button" | "progress_content" | "progress_content/progress_titles" | "progress_content/progress_titles/current_progress_label" | "progress_content/progress_titles/total_progress_label" | "progress_content/progress_bar" | "progress_label" | "current_progress_label" | "total_progress_label" | "progress_bar_icon" | "progress_bar_icon/full_progress_bar_icon" | "progress_bar_icon/empty_progress_bar_icon" | "progress_bar_icon/progress_bar_nub" | "empty_progress_bar_icon" | "full_progress_bar_icon" | "progress_bar_nub"; -export type Portfolio = "screenshot" | "screenshot_frame" | "trash_default" | "trash_hover" | "trash_pressed" | "photo_trash_button_left" | "photo_trash_button_left/default" | "photo_trash_button_left/hover" | "photo_trash_button_left/pressed" | "photo_trash_button_right" | "photo_trash_button_right/default" | "photo_trash_button_right/hover" | "photo_trash_button_right/pressed" | "photo_number" | "photo_number_left" | "photo_number_right" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl" | "page_photo" | "page_photo/screenshot" | "page_photo/screenshot_frame" | "page_photo/photo_corner_bl" | "page_photo/photo_corner_br" | "page_photo/photo_corner_tl" | "page_photo/photo_corner_tr" | "pick_item" | "pick_item/photo" | "pick_item/button" | "header" | "screenshot_grid" | "text_centering_panel" | "text_centering_panel/header" | "pick_scrolling_content" | "pick_scrolling_content/header" | "pick_scrolling_content/portfolio_grid" | "no_pick_photos_alert_label" | "pick_panel" | "pick_panel/scroll" | "pick_panel/close_button" | "pick_panel/no_pick_photos_alert_label" | "text_edit_box_default_indent" | "text_edit_box_hover_indent" | "text_edit_box_hover_indent/focus_border_white" | "text_edit_control" | "text_edit_control/clipper_panel" | "text_edit_control/clipper_panel/display_text" | "text_edit_control/clipper_panel/place_holder_control" | "text_edit_control/locked" | "text_edit_control/locked/edit_box_indent" | "text_edit_control/default" | "text_edit_control/hover" | "text_edit_control/pressed" | "photo_item" | "photo_item/screenshot" | "photo_item/screenshot_frame" | "photo_item/text_edit_control" | "photo_item/photo_corner_bl" | "photo_item/photo_corner_br" | "photo_item/photo_corner_tl" | "photo_item/photo_corner_tr" | "photo_grid_item" | "photo_grid_item/photo_item" | "photo_list_grid" | "prev_button_default" | "prev_button_hover" | "prev_button_pressed" | "photo_page_prev_button" | "photo_page_prev_button/default" | "photo_page_prev_button/hover" | "photo_page_prev_button/pressed" | "next_button_default" | "next_button_hover" | "next_button_pressed" | "photo_page_next_button" | "photo_page_next_button/default" | "photo_page_next_button/hover" | "photo_page_next_button/pressed" | "convert_button_default" | "convert_button_hover" | "convert_button_pressed" | "photo_convert_left_button" | "photo_convert_left_button/default" | "photo_convert_left_button/hover" | "photo_convert_left_button/pressed" | "photo_convert_right_button" | "photo_convert_right_button/default" | "photo_convert_right_button/hover" | "photo_convert_right_button/pressed" | "bottom_button_panel" | "bottom_button_panel/export_button" | "bottom_button_panel/im_content_button" | "bottom_button_panel/add_photo_button" | "im_content_button" | "export_button" | "add_photo_button" | "book_binding" | "book_spine" | "book_background" | "book_background/book_binding" | "book_background/top_spine" | "book_background/bottom_spine" | "header_panel" | "header_panel/header_background" | "close_button_default" | "close_button_hover" | "close_button_pressed" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "no_photos_alert_label" | "book_and_buttons_panel" | "book_and_buttons_panel/book_panel" | "book_and_buttons_panel/book_panel/book_background" | "book_and_buttons_panel/book_panel/close_button" | "book_and_buttons_panel/book_panel/photo_list_grid" | "book_and_buttons_panel/book_panel/photo_number_left" | "book_and_buttons_panel/book_panel/photo_number_right" | "book_and_buttons_panel/book_panel/photo_trash_button_left" | "book_and_buttons_panel/book_panel/photo_trash_button_right" | "book_and_buttons_panel/book_panel/photo_page_prev_button" | "book_and_buttons_panel/book_panel/photo_page_next_button" | "book_and_buttons_panel/book_panel/photo_convert_left_button" | "book_and_buttons_panel/book_panel/photo_convert_right_button" | "book_and_buttons_panel/book_panel/no_photos_alert_label" | "book_and_buttons_panel/bottom_button_panel" | "root_panel" | "portfolio_screen" | "portfolio_screen_content" | "portfolio_screen_content/root_panel" | "portfolio_screen_content/root_panel/book_and_buttons_panel" | "portfolio_screen_content/root_panel/pick_panel"; -export type Progress = "popup_dialog_base" | "popup_dialog_base/background" | "popup_dialog_base/scrolling_panel" | "popup_dialog_base/totalSelected" | "popup_dialog_base/totalSelectedSize" | "popup_dialog_base/left" | "popup_dialog_base/right" | "checkbox_visual" | "checkbox_visual/control" | "checkbox_visuals_unchecked" | "checkbox_visuals_checked" | "checkbox_visuals_unchecked_locked" | "checkbox_visuals_checked_locked" | "checkbox_visuals_unchecked_hover" | "checkbox_visuals_checked_hover" | "checkbox_with_label_core" | "checkbox_with_label" | "checkbox_with_label/checkbox_with_label_core" | "resource_pack_grid_item" | "resource_pack_section" | "resource_pack_section/required_resource_pack_list_grid" | "resource_pack_section/optional_resource_pack_list_grid" | "simple_popup_dialog_base" | "simple_popup_dialog_base/dialog_background_hollow_3" | "simple_popup_dialog_base/dialog_background_hollow_3/control" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5" | "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button" | "resource_pack_download_popup_base" | "resource_pack_download_server_required" | "resource_pack_download_optional_and_required" | "resource_pack_download_optional" | "resource_pack_download_required" | "normal_stroke_button" | "progress_screen_text" | "progress_title_text" | "progress_bar_text" | "code_text" | "code_number" | "progress_loading_bars" | "progress_loading_spinner" | "fancy_progress_loading_bars" | "fancy_progress_loading_bars/full_progress_bar_icon" | "fancy_progress_loading_bars/empty_progress_bar_icon" | "fancy_progress_loading_bars/progress_bar_nub" | "progress_bar" | "progress_bar_nub" | "thick_progress_bar_icon_base" | "thick_progress_bar_icon_empty" | "thick_progress_bar" | "thick_progress_bar/full_progress_bar_icon" | "thick_progress_bar/empty_progress_bar_icon" | "edu_cloud_upload_progress_bar" | "edu_cloud_upload_progress_bar/waveform_loading_bar" | "edu_cloud_upload_progress_bar/determinate_loading_bar" | "cancel_button" | "retry_button" | "abort_button" | "ok_button" | "title_panel" | "title_panel/progress_title_text" | "title_panel/progress_bar_text" | "title_panel/progress_bar" | "button_panel" | "button_panel/cancel_button" | "modal_button_panel" | "modal_button_panel/cancel_button" | "modal_button_panel_with_retry" | "modal_button_panel_with_retry/abort_button" | "modal_button_panel_with_retry/cancel_button" | "modal_button_panel_with_retry/retry_button" | "modal_ok_button_panel" | "modal_ok_button_panel/ok_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "world_image" | "cloud_image" | "server_image" | "edu_cloud_upload_image" | "edu_cloud_upload_image/world_image_wrapper" | "edu_cloud_upload_image/world_image_wrapper/fetch_world_image" | "edu_cloud_upload_image/arrow_image_wrapper" | "edu_cloud_upload_image/arrow_image_wrapper/arrow_image" | "edu_cloud_upload_image/cloud_image_wrapper" | "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image" | "edu_cloud_fetch_image" | "edu_cloud_fetch_image/cloud_image_wrapper" | "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image" | "edu_cloud_fetch_image/spyglass_image_wrapper" | "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image" | "edu_cloud_fetch_image/world_image_wrapper" | "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image" | "edu_cloud_download_image" | "edu_cloud_download_image/cloud_image_wrapper" | "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image" | "edu_cloud_download_image/arrow_image_wrapper" | "edu_cloud_download_image/arrow_image_wrapper/arrow_image" | "edu_cloud_download_image/world_image_wrapper" | "edu_cloud_download_image/world_image_wrapper/download_world_image" | "edu_server_fetch_image" | "edu_server_fetch_image/server_image_wrapper_left" | "edu_server_fetch_image/server_image_wrapper_left/server_image" | "edu_server_fetch_image/spyglass_image_wrapper" | "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image" | "edu_server_fetch_image/server_image_wrapper_right" | "edu_server_fetch_image/server_image_wrapper_right/server_image" | "modal_progress_panel_no_cancel" | "modal_progress_panel_no_cancel/common_panel" | "modal_progress_panel_no_cancel/content" | "modal_progress_panel_no_cancel/content/title_panel" | "modal_progress_panel_no_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel" | "modal_progress_panel_with_cancel/common_panel" | "modal_progress_panel_with_cancel/content" | "modal_progress_panel_with_cancel/content/title_panel" | "modal_progress_panel_with_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel/modal_button_panel" | "progress_panel" | "progress_panel/progress_loading_bars" | "progress_panel/title_panel" | "progress_panel/button_panel" | "modal_progress_screen" | "delete_progress_screen" | "realms_loading_background" | "realms_loading_background/solid_blue" | "realms_loading_background/solid_blue/gradient" | "realms_stories_loading_progress_screen" | "world_loading_progress_screen" | "world_loading_screen_background" | "overworld_loading_background" | "overworld_loading_background/background_gradient" | "overworld_loading_progress_screen" | "nether_loading_background" | "nether_loading_background/background_gradient" | "nether_loading_progress_screen" | "theend_loading_background" | "theend_loading_background/background_gradient" | "theend_loading_progress_screen" | "world_saving_progress_screen" | "fetching_edu_cloud_worlds" | "edu_cloud_download_progress_screen" | "fetching_edu_servers" | "world_convert_modal_progress_screen" | "progress_screen" | "popup_dialog_factory" | "progress_screen_content" | "progress_screen_content/progress_content_panel" | "progress_screen_content/popup_dialog_factory" | "progress_content_panel" | "progress_content_panel/progress_panel" | "progress_content_panel/gamepad_helpers" | "modal_screen_content" | "modal_screen_content/modal_progress_panel" | "world_modal_progress_panel" | "world_modal_progress_panel/common_panel" | "world_modal_progress_panel/base_content" | "world_modal_progress_panel/base_content/progress_title_text" | "world_modal_progress_panel/base_content/progress_bar_text" | "world_modal_progress_panel/inside_content" | "world_modal_progress_panel/inside_content/loading_bar_panel" | "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars" | "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars" | "world_modal_progress_panel/inside_content/vertical_padding" | "world_modal_progress_panel/inside_content/modal_button_panel" | "world_modal_progress_panel/inside_content/vertical_padding_2" | "cloud_upload_panel" | "cloud_upload_panel/common_panel" | "cloud_upload_panel/base_content" | "cloud_upload_panel/base_content/progress_title_text" | "cloud_upload_panel/base_content/progress_text" | "cloud_upload_panel/base_content/edu_cloud_upload_image" | "cloud_upload_panel/base_content/loading_bar_panel" | "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars" | "cloud_error_panel" | "cloud_error_panel/common_panel" | "cloud_error_panel/content_wrapper" | "cloud_error_panel/content_wrapper/title_wrapper" | "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon" | "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon" | "cloud_error_panel/content_wrapper/button_content" | "cloud_error_panel/content_wrapper/button_content/modal_button_panel" | "cloud_error_panel/content_wrapper/error_button_content" | "cloud_error_panel/content_wrapper/error_button_content/download_ok_button" | "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button" | "cloud_fetch_panel" | "cloud_fetch_panel/common_panel" | "cloud_fetch_panel/base_content" | "cloud_fetch_panel/base_content/progress_title_text" | "cloud_fetch_panel/base_content/progress_text" | "cloud_fetch_panel/base_content/edu_cloud_fetch_image" | "cloud_fetch_panel/base_content/loading_bar_panel" | "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars" | "server_fetch_panel" | "server_fetch_panel/common_panel" | "server_fetch_panel/base_content" | "server_fetch_panel/base_content/progress_title_text" | "server_fetch_panel/base_content/progress_text" | "server_fetch_panel/base_content/edu_server_fetch_image" | "server_fetch_panel/base_content/loading_bar_panel" | "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars" | "cloud_download_panel" | "cloud_download_panel/common_panel" | "cloud_download_panel/base_content" | "cloud_download_panel/base_content/progress_title_text" | "cloud_download_panel/base_content/progress_bar_text" | "cloud_download_panel/base_content/edu_cloud_download_image" | "cloud_download_panel/loading_bar_panel" | "cloud_download_panel/loading_bar_panel/progress_loading_bars" | "world_convert_modal_progress_screen_content" | "world_convert_modal_progress_screen_content/mobile_data_icon" | "world_convert_modal_progress_screen_content/title_panel_content" | "world_convert_modal_progress_screen_content/world_modal_progress_panel" | "world_convert_modal_progress_screen_content/popup_dialog_factory" | "realms_loading_world_modal_progress_screen_content" | "realms_loading_world_modal_progress_screen_content/mobile_data_icon" | "realms_loading_world_modal_progress_screen_content/realms_title_image" | "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel" | "realms_loading_world_modal_progress_screen_content/popup_dialog_factory" | "realms_loading_world_modal_progress_screen_content/server_region_connected" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text" | "realms_loading_world_modal_progress_screen_content/server_region_connected/padding" | "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon" | "world_save_modal_progress_screen_content" | "world_save_modal_progress_screen_content/title_panel_content" | "world_save_modal_progress_screen_content/world_modal_progress_panel" | "world_save_modal_progress_screen_content/save_icon" | "world_save_modal_progress_screen_content/popup_dialog_factory" | "cloud_upload_screen_content" | "cloud_upload_screen_content/title_panel_content" | "cloud_upload_screen_content/cloud_upload_panel" | "cloud_upload_screen_content/cloud_upload_error_panel" | "cloud_upload_screen_content/popup_dialog_factory" | "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory" | "edu_cloud_fetch_screen_content" | "edu_cloud_fetch_screen_content/cloud_fetch_panel" | "edu_cloud_fetch_screen_content/popup_dialog_factory" | "edu_server_fetch_screen_content" | "edu_server_fetch_screen_content/server_fetch_panel" | "edu_server_fetch_screen_content/popup_dialog_factory" | "cloud_download_screen_content" | "cloud_download_screen_content/background" | "cloud_download_screen_content/cloud_download_panel" | "cloud_download_screen_content/cloud_download_error_panel" | "cloud_download_screen_content/popup_dialog_factory" | "auto_save" | "mobile_data_ios_icon" | "mobile_data_android_icon" | "mobile_data_icon_text" | "mobile_data_icon" | "mobile_data_icon/icon_android" | "mobile_data_icon/icon_ios" | "mobile_data_icon/text"; -export type RatingPrompt = "padding_horizontal" | "padding_vertical" | "rating_prompt_yes_label" | "rating_prompt_yes_label/button_label" | "rating_prompt_no_label" | "rating_prompt_no_label/button_label" | "rating_prompt_yes_button" | "rating_prompt_no_button" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "button_panel" | "button_panel/padding_3" | "button_panel/yes_button" | "button_panel/no_button" | "image_panel" | "image_panel/padding_2" | "image_panel/dialog_image_with_border" | "main_panel" | "main_panel/padding_0" | "main_panel/image_panel" | "main_panel/padding_1" | "main_panel/button_panel" | "rating_prompt_screen" | "rating_prompt_screen_content"; -export type RealmsCommon = "pending_invites_icon" | "dark_banner" | "dark_banner_hover" | "legacy_banner" | "main_banner" | "hollow_banner" | "popup_dialog_bg" | "popup_dialog__play_on_realm" | "popup_dialog__play_on_realm/play_on_realm_popup_background" | "popup_dialog__play_on_realm/gamepad_helpers" | "popup_dialog__play_on_realm/play_on_realm_popup_content" | "play_on_realm_popup_background" | "play_on_realm_popup_content" | "play_on_realm_popup_content/popup_dialog_bg" | "play_on_realm_popup_content/play_on_realm_popup_dialog_header" | "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body" | "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body" | "play_on_realm_popup_dialog_header" | "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text" | "play_on_realm_popup_dialog_header/close_button" | "play_on_realm_popup_dialog_header_text" | "play_on_realm_popup_dialog_upper_body" | "play_on_realm_popup_dialog_upper_body/play_on_realm_banner" | "play_on_realm_popup_dialog_upper_body/play_on_realm_panel" | "play_on_realm_popup_dialog_upper_body/background_panel" | "play_on_realm_popup_dialog_upper_body/background_panel/black_background" | "play_on_realm_panel" | "play_on_realm_panel/play_on_realm_content_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image" | "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2" | "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2" | "play_on_realm_popup_dialog_lower_body" | "play_on_realm_popup_dialog_lower_body/button_panel" | "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button" | "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1" | "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button" | "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2" | "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button"; -export type RealmsCreate = "title_label" | "label" | "enter_name_panel" | "enter_name_panel/name_label_0" | "enter_name_panel/name_edit" | "selected_option_checkbox" | "selected_option_checkbox_empty" | "selected_option_checkbox_filled" | "checkbox_panel" | "checkbox_panel/selected_option_checkbox_empty" | "checkbox_panel/selected_option_checkbox_filled" | "checkbox_panel/button_label" | "realms_option_button" | "choose_duration_panel" | "choose_duration_panel/name_label" | "choose_duration_panel/choose_duration_stack_panel" | "choose_duration_panel/choose_duration_stack_panel/short" | "choose_duration_panel/choose_duration_stack_panel/long" | "choose_tier_panel" | "choose_tier_panel/name_label" | "choose_tier_panel/choose_tier_stack_panel" | "choose_tier_panel/choose_tier_stack_panel/player_count_2" | "view_terms_button" | "privacy_policy_button" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "confirmation_panel" | "confirmation_panel/create_realms_button" | "create_realms_stack_panel" | "create_realms_stack_panel/padding_0" | "create_realms_stack_panel/create_realms_text_panel" | "create_realms_text_panel" | "create_realms_text_panel/create" | "stack_item" | "scroll_stack_panel" | "scroll_stack_panel/name" | "scroll_stack_panel/name/enter_name_panel" | "scroll_stack_panel/padding_0" | "scroll_stack_panel/duration" | "scroll_stack_panel/duration/choose_duration_panel" | "scroll_stack_panel/tier" | "scroll_stack_panel/tier/choose_tier_panel" | "scroll_stack_panel/toc" | "scroll_stack_panel/toc/terms_and_conditions_panel" | "scroll_stack_panel/padding_1" | "scroll_stack_panel/realms_terms_info" | "scroll_stack_panel/realms_terms_info/label_panel" | "scroll_stack_panel/realms_terms_info/label_panel/padding_1" | "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper" | "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra" | "scroll_stack_panel/realms_terms_info/label_panel/padding_2" | "scroll_stack_panel/realms_switch_nso_info" | "terms_section" | "terms_section/terms_section_label" | "terms_section_extra" | "terms_section_extra/terms_section_label" | "main_panel" | "main_panel/scrolling_panel" | "main_panel/padding_0" | "main_panel/confirmation_panel" | "main_panel/padding_1" | "content" | "content/main_panel" | "realms_create_screen" | "realms_create_content_and_factory" | "realms_create_content_and_factory/realms_create_content" | "realms_create_content_and_factory/popup_dialog_factory"; -export type RealmsPendingInvitations = "panel_text" | "banner_panel_base" | "banner_panel_base/background" | "banner_panel_base/indent_panel" | "banner_panel_base/indent_panel/content" | "banner_panel" | "banner_panel_hover" | "realm_invite_button" | "realm_name_label" | "realm_owner_label" | "tts_gamertag_item_info_wrapper" | "gamertag_item_info" | "gamertag_item_info/rnl" | "gamertag_item_info/rol" | "accept_button_content" | "decline_button_content" | "realm_accept_button" | "realm_decline_button" | "realm_accepted_panel" | "gamertag_item_content" | "gamertag_item_content/lb" | "gamertag_item_content/a" | "gamertag_item_content/d" | "gamertag_item_content/ap" | "gamertag_item" | "gamertag_item_grid" | "show_friends_only_toggle_state_content" | "show_friends_only_toggle_state_content/checkbox_holding_panel" | "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites" | "show_friends_only_toggle_state_content/hide_invites_text_panel" | "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text" | "show_friends_only_toggle_on_state_content" | "show_friends_only_toggle_on_state" | "show_friends_only_toggle_off_state_content" | "show_friends_only_toggle_off_state" | "show_friends_only_toggle_on_hover_state_content" | "show_friends_only_toggle_on_hover_state" | "show_friends_only_toggle_off_hover_state_content" | "show_friends_only_toggle_off_hover_state" | "show_friends_only_toggle_on_locked_state_content" | "show_friends_only_toggle_on_locked_state" | "show_friends_only_toggle_off_locked_state_content" | "show_friends_only_toggle_off_locked_state" | "show_friends_only_toggle" | "gamepad_helpers" | "gamepad_helpers/a" | "gamepad_helpers/b" | "no_invites_label_wrapper" | "no_invites_label" | "no_invites_label/label" | "realms_pending_invitation_list" | "realms_pending_invitation_list/upper_padding" | "realms_pending_invitation_list/sfop" | "realms_pending_invitation_list/gig" | "realms_pending_invitation_list/lower_padding" | "realms_pending_invitation_list/nil" | "content_panel" | "realms_pending_invitations_screen" | "realms_invitation_screen_content" | "realms_invitation_screen_content/root_panel" | "realms_invitation_screen_content/root_panel/main_panel" | "realms_invitation_screen_content/root_panel/sgh"; -export type RealmsSlots = "vertical_padding" | "horizontal_padding" | "horizontal_padding_sibling_height" | "realms_background" | "realms_background/gradient" | "realms_background/particle_1" | "realms_background/particle_2" | "plus" | "check" | "world_thumbnail" | "realms_stories_icon_glyph" | "realms_stories_icon_glyph/realms_stories_icon" | "play_button" | "edit_realm_button" | "realms_feed_button" | "unread_story_count_text" | "unread_story_count_text_background" | "unread_story_count_panel" | "unread_story_count_panel/text" | "unread_story_count_panel/text/background" | "edit_world_button_panel" | "edit_world_button_panel/edit_world_button" | "edit_world_button_panel/padding" | "edit_world_button_panel/activate_world_button" | "world_slot_button" | "world_slot_button_content" | "world_slot_button_content/world_slot_top" | "world_slot_button_content/world_slot_top/background" | "world_slot_button_content/world_slot_top/add_world_image_panel" | "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image" | "world_slot_button_content/world_slot_top/world_thumbnail_image_panel" | "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail" | "world_slot_button_content/world_slot_top/edit_world_button_panel" | "world_slot_button_content/world_slot_top/foreground" | "world_slot_button_content/world_slot_top/check_image" | "world_slot_button_content/world_slot_bottom" | "world_slot_button_content/world_slot_bottom/divider_line_black" | "world_slot_button_content/world_slot_bottom/divider_line_white" | "world_slot_button_content/world_slot_bottom/add_world_text_panel" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green" | "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text" | "world_slot_button_content/world_slot_bottom/world_info_panel" | "world_slot_button_content/world_slot_bottom/world_info_panel/background" | "world_slot_button_content/world_slot_bottom/world_info_panel/background_green" | "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel" | "world_info_stack_panel" | "world_info_stack_panel/world_name_panel" | "world_info_stack_panel/world_name_panel/world_name" | "world_info_stack_panel/world_type_panel" | "world_info_stack_panel/world_type_panel/world_type" | "world_info_stack_panel/bottom_padding" | "main_stack_panel" | "main_stack_panel/padding_0" | "main_stack_panel/button_panel" | "main_stack_panel/button_panel/play_button" | "main_stack_panel/button_panel/left_padding" | "main_stack_panel/button_panel/edit_realm_button" | "main_stack_panel/button_panel/right_padding" | "main_stack_panel/button_panel/feed_panel_with_unread_count" | "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel" | "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button" | "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count" | "main_stack_panel/padding_1" | "main_stack_panel/text_panel_0" | "main_stack_panel/text_panel_0/text" | "main_stack_panel/padding_2" | "main_stack_panel/worlds_panel" | "main_stack_panel/worlds_panel/world_slot_1" | "main_stack_panel/worlds_panel/padding_0" | "main_stack_panel/worlds_panel/world_slot_2" | "main_stack_panel/worlds_panel/padding_1" | "main_stack_panel/worlds_panel/world_slot_3" | "main_stack_panel/padding_3" | "main_stack_panel/text_panel_1" | "main_stack_panel/text_panel_1/text" | "realms_slots_screen" | "realms_slots_screen_content" | "realms_slots_screen_content/background" | "realms_slots_screen_content_panel" | "realms_slots_screen_content_panel/main_scroll_panel"; -export type RealmsSettings = "settings_screen" | "generic_section" | "generic_section_wrapper" | "generic_section_wrapper/generic_section" | "checkbox_image" | "checkbox_unchecked_state" | "checkbox_checked_state" | "checkbox_unchecked_hover_state" | "checkbox_checked_hover_state" | "checkbox_unchecked_locked_state" | "checkbox_checked_locked_state" | "player_count_label" | "realm_duration_label" | "realm_subscription_origin_label" | "realm_consumable_to_subscription_info_label" | "manage_subscriptions_button" | "delete_realm_button" | "open_realm_button" | "close_realm_button" | "subscriptions_section" | "subscriptions_section/loading_view" | "subscriptions_section/loading_failed_view" | "subscriptions_section/loaded_view" | "subscriptions_section/loaded_view/player_count_label" | "subscriptions_section/loaded_view/realm_duration_label" | "subscriptions_section/loaded_view/possible_store_mismatch" | "subscriptions_section/loaded_view/realm_subscription_origin_label" | "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label" | "subscriptions_section/loaded_view/_0" | "subscriptions_section/loaded_view/delete_realm_button" | "subscriptions_section/loaded_view/open_realm_button" | "subscriptions_section/loaded_view/close_realm_button" | "subscriptions_section/loaded_view/_1" | "subscriptions_section/loaded_view/manage_subscriptions_button" | "invite_link_item_content" | "invite_link_item_content/invite_link_item_name_and_expiry_text" | "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text" | "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap" | "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text" | "invite_link_item_content/invite_link_item_state_text" | "invite_link_item_content/invite_link_item_state_text/state_text" | "invite_link_item_content/spacing_gap" | "invite_link_item_template" | "invite_link_item_template/invite_link_item_button" | "invite_links_section" | "invite_links_section/loading_view" | "invite_links_section/loading_failed_view" | "invite_links_section/loaded_view" | "invite_links_section/loaded_view/spacing_gap_0" | "invite_links_section/loaded_view/invite_links_info" | "invite_links_section/loaded_view/invite_links_grid" | "invite_links_section/loaded_view/spacing_gap_1" | "invite_links_section/loaded_view/add_invite_link_button" | "advanced_section" | "advanced_section/loading_view" | "advanced_section/loading_failed_view" | "advanced_section/loaded_view" | "advanced_section/loaded_view/spacing_gap_0" | "advanced_section/loaded_view/server_preference" | "advanced_section/loaded_view/set_region_content" | "advanced_section/loaded_view/changes_not_applied_panel" | "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label" | "advanced_section/loaded_view/spacing_gap_1" | "advanced_section/loaded_view/region_help_button" | "set_region_dropdown" | "region_dropdown_content" | "region_dropdown_radio" | "region_help_button_content" | "region_help_button_content/external_link_icon" | "region_help_button_content/spacing_gap_1" | "region_help_button_content/help_text" | "tts_focus_border" | "saves_section" | "saves_section/padding_saves_section_top" | "saves_section/loaded_view" | "saves_section/loaded_view/storage_bar_header_panel" | "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header" | "saves_section/loaded_view/storage_bar_header_panel/focus_border" | "saves_section/loaded_view/padding3" | "saves_section/loaded_view/save_active_world_button" | "saves_section/loaded_view/padding4" | "saves_section/loaded_view/active_world_info" | "saves_section/loaded_view/padding5" | "saves_section/loaded_view/storage_warning" | "saves_section/loaded_view/storage_warning/warning_text_panel" | "saves_section/loaded_view/storage_warning/focus_border" | "saves_section/loaded_view/padding6" | "saves_section/loaded_view/save_list_container" | "saves_section/loaded_view/save_list_container/tab_buttons" | "saves_section/loaded_view/save_list_container/tab_content_panel" | "saves_section/loaded_view/padding_loaded_view_bottom" | "saves_section/loaded_view/restore_info" | "saves_section/loaded_view/saves_help_panel" | "saves_section/loading_indicator" | "saves_section/loading_indicator/restore_info" | "saves_section/loading_indicator/loading_text_panel" | "saves_section/loading_indicator/loading_text_panel/loading_text" | "saves_section/loading_indicator/loading_text_panel/loading_text_padding" | "saves_section/loading_indicator/loading_bars" | "saves_section/loading_indicator/loading_bars/progress_loading_bars" | "saves_section/loading_failed_panel" | "saves_section/loading_failed_panel/restore_info" | "saves_section/loading_failed_panel/saves_help_panel" | "saves_section/loading_failed_panel/loading_failed_message" | "saves_help_panel" | "saves_help_panel/padding_help_button_top" | "saves_help_panel/saves_help_button" | "saves_help_panel/padding_help_button_bottom" | "saves_help_button_content" | "saves_help_button_content/external_link_icon" | "saves_help_button_content/spacing_gap_1" | "saves_help_button_content/help_text" | "storage_bar_label_stack_panel" | "storage_bar_label_stack_panel/text_left" | "storage_bar_label_stack_panel/padding" | "storage_bar_label_stack_panel/text_right" | "storage_bar_panel_with_header" | "storage_bar_panel_with_header/label_panel" | "storage_bar_panel_with_header/label_panel/heading_label" | "storage_bar_panel_with_header/padding2" | "storage_bar_panel_with_header/storage_bar_panel" | "realm_storage_heading_label" | "storage_bar_panel" | "storage_bar_panel/storage_bar_label" | "storage_bar_panel/padding" | "storage_bar_panel/storage_bar" | "storage_bar_panel_with_tts_focus_border" | "storage_bar_panel_with_tts_focus_border/storage_bar_panel" | "storage_bar_panel_with_tts_focus_border/focus_border" | "storage_bar" | "storage_bar/empty_progress_bar_beveled" | "storage_bar/storage_fill" | "storage_bar/storage_bar_beveled_overlay" | "active_world_info_panel" | "active_world_info_panel/active_world_info_label_stack_panel" | "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label" | "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label" | "active_world_info_panel/focus_border" | "warning_text_panel" | "warning_text_panel/warning_panel" | "warning_text_panel/warning_panel/padding1" | "warning_text_panel/warning_panel/warning_image" | "warning_text_panel/warning_panel/padding2" | "warning_text_panel/padding1" | "warning_text_panel/text_label" | "popup_dialog_background" | "popup_dialog_label" | "delete_selected_saves_button" | "cancel_popup_button" | "free_up_space_popup_content" | "free_up_space_popup_content/common_panel" | "free_up_space_popup_content/title_label" | "free_up_space_popup_content/panel_indent" | "free_up_space_popup_content/panel_indent/inside_header_panel" | "free_up_space_popup_content/button_panel" | "free_up_space_popup_content/button_panel/left_button_panel" | "free_up_space_popup_content/button_panel/pad" | "free_up_space_popup_content/button_panel/right_button_panel" | "free_up_space_popup_scrolling_panel" | "free_up_space_text_description" | "free_up_space_popup_content_stack_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel" | "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border" | "free_up_space_popup_content_stack_panel/padding_1" | "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel" | "popup_dialog__free_up_space" | "popup_dialog__free_up_space/free_up_space_popup_background" | "popup_dialog__free_up_space/free_up_space_popup_content" | "top_tab" | "tab_content" | "tab_content/text" | "manual_navigation_tab" | "automatic_navigation_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/content" | "button_tabs_container" | "button_tabs_container/manual_navigation_tab" | "button_tabs_container/automatic_navigation_tab" | "tab_content_panel" | "tab_content_panel/background" | "tab_content_panel/background/manual_save_list" | "tab_content_panel/background/automatic_save_list" | "save_list_panel" | "save_list_panel/save_list" | "manual_save_list_panel" | "manual_tab_info_panel" | "manual_tab_info_panel/info_label" | "manual_save_list_stack_panel" | "manual_save_list_stack_panel/padding1" | "manual_save_list_stack_panel/save_tab_info_label" | "manual_save_list_stack_panel/padding2" | "manual_save_list_stack_panel/stack_panel" | "manual_save_list_stack_panel/padding3" | "automatic_save_list_panel" | "automatic_tab_info_panel" | "automatic_tab_info_panel/info_label" | "automatic_save_list_stack_panel" | "automatic_save_list_stack_panel/padding1" | "automatic_save_list_stack_panel/save_tab_info_label" | "automatic_save_list_stack_panel/padding2" | "automatic_save_list_stack_panel/stack_panel" | "automatic_save_list_stack_panel/padding3" | "options_icon" | "saves_info_accordian" | "saves_info_accordian/main_content_panel" | "saves_info_accordian/main_content_panel/checkbox_button" | "saves_info_accordian/main_content_panel/main_item_toggle" | "saves_info_accordian/main_content_panel/options_button" | "saves_info_accordian/sub_content_panel" | "saves_info_accordian/sub_content_panel/saves_content" | "saves_info_accordion_checkbox" | "saves_info_accordion_checkbox/unchecked_control" | "saves_info_accordion_checkbox/checked_control" | "saves_info_accordion_checkbox/unchecked_hover_control" | "saves_info_accordion_checkbox/checked__hover_control" | "main_item_content" | "main_item_content/date_and_name" | "main_item_content/date_and_name/date_saved_label" | "main_item_content/date_and_name/world_name_label" | "main_item_content/time_and_size" | "main_item_content/time_and_size/save_data_time_label" | "main_item_content/time_and_size/save_data_size_label" | "main_item_content/padding_left_down_icon" | "main_item_content/down_icon" | "main_item_content/down_icon/options_icon" | "main_item_content/padding_right_down_icon" | "option_saves_info_label" | "saves_info_container" | "saves_info_container/saves_info_content" | "saves_info_content" | "saves_info_content/version_panel" | "saves_info_content/pack_header_panel" | "saves_info_content/world_packs_label" | "version_panel" | "version_panel/left_content" | "version_panel/left_content/save_version_label" | "pack_header_panel" | "pack_header_panel/left_content" | "pack_header_panel/left_content/packs_label" | "label_text" | "branch_grid_item_content" | "branch_grid_item_content/branch_text" | "branch_grid_item_content/commit_text" | "matching_item_button_content" | "matching_item_button_content/branch_text" | "matching_item_button_content/commit_text" | "branch_item_template" | "branch_item_template/branch_item_button" | "branches_grid" | "branch_set_panel" | "branch_set_panel/set_branch_id_label" | "version_filter_text_box" | "branch_page_panel" | "branch_page_panel/prev_button" | "branch_page_panel/page_text" | "branch_page_panel/next_button" | "branches_panel" | "branches_panel/branch_label" | "branches_panel/spacing_gap_1" | "branches_panel/set_branch_version_label" | "branches_panel/branch_set_panel" | "branches_panel/spacing_gap_2" | "branches_panel/matching_version_label" | "branches_panel/matching_item_button" | "branches_panel/spacing_gap_3" | "branches_panel/all_commits_label" | "branches_panel/version_filter_text_box" | "branches_panel/branches_grid" | "branches_panel/spacing_gap" | "branches_panel/branch_page_panel" | "branch_section" | "branch_section/branches_panel" | "popup_dialog__backups" | "popup_dialog__backups/transparent_close_button" | "popup_dialog__backups/backup_restore_popup_content" | "backup_restore_popup_content" | "backup_restore_popup_content/popup_dialog_bg" | "backup_restore_popup_content/backup_restore_popup_dialog_header" | "backup_restore_popup_content/backup_restore_popup_dialog_body" | "backup_restore_popup_dialog_header" | "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text" | "backup_restore_popup_dialog_header_text" | "backup_restore_popup_dialog_body" | "backup_restore_popup_dialog_body/backup_restore_loading_panel" | "backup_restore_loading_panel" | "backup_restore_loading_panel/backup_restore_loading_stack_panel" | "backup_restore_loading_stack_panel" | "backup_restore_loading_stack_panel/padding" | "backup_restore_loading_stack_panel/backup_restore_text_panel" | "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel" | "backup_restore_loading_stack_panel/padding2" | "backup_restore_text_panel" | "backup_restore_text_panel/loading_text" | "backup_restore_loading_bar_panel" | "backup_restore_loading_bar_panel/progress_loading_bars" | "backup_replace_icon" | "backup_download_icon" | "backup_grid_item_content" | "backup_grid_item_content/backup_grid_item_icon_panel" | "backup_grid_item_content/backup_grid_item_name_and_time_since" | "backup_grid_item_content/backup_grid_item_date_and_time" | "backup_grid_item_content/spacing_gap" | "backup_grid_item_name_and_time_since" | "backup_grid_item_name_and_time_since/date_text" | "backup_grid_item_name_and_time_since/spacing_gap" | "backup_grid_item_name_and_time_since/version_text" | "backup_grid_item_date_and_time" | "backup_grid_item_date_and_time/time_text" | "backup_grid_item_date_and_time/spacing_gap" | "backup_grid_item_date_and_time/size_text" | "backup_grid_item_icon_panel" | "backup_grid_item_icon_panel/backup_replace_icon" | "backup_item_template" | "backup_item_template/backup_item_button" | "backup_item_template/download_backup_panel" | "backup_item_template/download_backup_panel/download_backup_button" | "download_backup_button" | "backup_grid" | "backup_section" | "backup_section/backup_panel" | "backup_info_label" | "backup_network_error_label" | "backup_panel" | "backup_panel/spacing_gap" | "backup_panel/backup_info_label" | "backup_panel/spacing_gap2" | "backup_panel/progress_panel" | "backup_panel/progress_panel/progress_loading_bars" | "backup_panel/backup_grid" | "backup_panel/backup_network_error_label" | "test_content" | "test_content/realms_allowlist_content_panel" | "test_content/gamepad_helpers" | "selector_panel" | "selector_panel/play_button" | "selector_panel/disabled_play_button" | "selector_panel/expired_play_button" | "selector_panel/padding" | "selector_panel/selector_group_label" | "selector_panel/world_button" | "selector_panel/members_button" | "selector_panel/saves_button" | "selector_panel/subscription_button" | "selector_panel/backup_button" | "selector_panel/dev_options_button" | "selector_panel/invite_links_button" | "selector_panel/advanced_button" | "section_content_panels" | "section_content_panels/world_section" | "section_content_panels/players_section" | "section_content_panels/subscription_section" | "section_content_panels/invite_links_section" | "section_content_panels/advanced_section" | "section_content_panels/dev_options_section" | "section_content_panels/backup_section" | "section_content_panels/saves_section" | "popup_dialog__save_options" | "save_options_popup_content" | "save_options_popup_content/restore_button" | "save_options_popup_content/spacing_1" | "save_options_popup_content/download_button" | "save_options_popup_content/spacing_2" | "save_options_popup_content/save_button_container" | "save_options_popup_content/save_button_container/save_button" | "save_options_popup_content/save_button_container/spacing_3" | "save_options_popup_content/delete_button_container" | "save_options_popup_content/delete_button_container/delete_button" | "standalone_dialog_title" | "standalone_dialog_title/left_padding" | "standalone_dialog_title/dialog_title_label" | "standalone_dialog_title/right_padding" | "standalone_dialog_content" | "standalone_dialog_content/dialog_title" | "standalone_dialog_content/content_area" | "standalone_content_area" | "standalone_content_area/control" | "standalone_content_area/control/scrolling_panel" | "realms_settings_screen_base_no_selector_area" | "screen_realm_hub_manage_members" | "screen_realm_hub_invite_links"; -export type RealmsAllowlist = "spacing_gap" | "friends_containing_panel" | "friends_containing_panel/friends_panel" | "friends_panel" | "friends_panel/add_friends_and_invite_link_panel" | "friends_panel/option_dropdown_permissions" | "friends_panel/player_filter_label" | "friends_panel/player_filter_text_box" | "friends_panel/spacing_gap_members_top" | "friends_panel/lists" | "friends_panel/lists/members_label" | "friends_panel/lists/members_stack" | "friends_panel/lists/spacing_gap_members_bottom" | "friends_panel/lists/members_page_panel" | "friends_panel/lists/invited_friends_label" | "friends_panel/lists/invited_stack" | "friends_panel/lists/spacing_gap_invited_friends" | "friends_panel/lists/invited_friends_page_panel" | "friends_panel/lists/uninvited_friends_label" | "friends_panel/lists/uninvited_stack" | "friends_panel/lists/spacing_gap_uninvited_friends" | "friends_panel/lists/uninvited_friends_page_panel" | "friends_panel/lists/blocked_players_label" | "friends_panel/lists/blocked_players_stack" | "friends_panel/lists/spacing_gap_blocked_players" | "friends_panel/lists/blocked_players_page_panel" | "friends_panel/lists/no_invites_label" | "friends_panel/loading_friends" | "add_friends_and_invite_link_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1" | "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button" | "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2" | "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel" | "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button" | "options_icon" | "account_link_image" | "account_link_icon" | "account_link_icon/space_01" | "account_link_icon/account_link_image" | "account_link_icon/space_03" | "find_friends_button_panel" | "find_friends_button_panel/find_friends_button" | "invited_friends_label" | "invited_friends_label/friend_title" | "player_filter_label" | "player_filter_label/player_filter_title" | "members_label" | "members_label/friend_title" | "members_label/padding_panel" | "members_label/loading_text" | "blocked_players_label" | "blocked_players_label/friend_title" | "uninvited_friends_label" | "uninvited_friends_label/friend_title" | "no_invites_label" | "loading_friends" | "blocked_grid_item" | "blocked_grid_item/blocked_panel" | "factory_stack" | "member_factory_xbl_profile" | "member_factory_linked_account" | "invited_factory_xbl_profile" | "invited_factory_linked_account" | "uninvited_factory_xbl_profile" | "uninvited_factory_linked_account" | "blocked_factory_xbl_profile" | "blocked_factory_linked_account" | "xbl_profile_panel_factory" | "xbl_profile_blocked_panel_factory" | "linked_account_panel_factory" | "linked_account_blocked_panel_factory" | "xbl_profile_panel" | "xbl_profile_panel/player_status_panel" | "xbl_profile_panel/xbl_user_panel" | "xbl_profile_panel/right_controls_panel" | "xbl_profile_panel/progress" | "factory_gap_template" | "factory_gap_template/gapped_control" | "factory_gap_template/spacing1" | "gapped_xbl_profile_panel" | "gapped_linked_account_panel" | "gapped_blocked_xbl_profile_panel" | "gapped_blocked_linked_account_panel" | "blocked_panel" | "blocked_panel/xbl_user_panel" | "blocked_panel/unblock_button" | "linked_account_panel" | "linked_account_panel/linked_account_positioning_panel" | "linked_account_panel/right_controls_panel" | "linked_account_panel/progress" | "linked_account_blocked_panel" | "linked_account_blocked_panel/linked_account_positioning_panel" | "linked_account_blocked_panel/unblock_button" | "linked_account_blocked_panel/progress" | "xbl_user_panel" | "xbl_user_panel/spacing1" | "xbl_user_panel/platform_icon_positioner" | "xbl_user_panel/gamerpic_panel" | "xbl_user_panel/spacing2" | "xbl_user_panel/gamertag_label_panel" | "third_party_user_panel" | "third_party_user_panel/spacing1" | "third_party_user_panel/profile_picture" | "third_party_user_panel/spacing2" | "third_party_user_panel/third_party_profile_label" | "linked_profile_pictures_panel" | "linked_profile_pictures_panel/pp2" | "linked_profile_pictures_panel/account_link" | "linked_profile_pictures_panel/pp1" | "platform_profile_names" | "platform_profile_names/friend_grid_third_party_tag" | "platform_profile_names/spacer_02" | "platform_profile_names/friend_grid_xbl_gamertag" | "platform_profile_names/spacer_03" | "linked_user_stack_panel" | "linked_user_stack_panel/allow_offset_control" | "linked_user_stack_panel/allow_offset_control/player_status_panel" | "linked_user_stack_panel/platform_icon_positioner" | "linked_user_stack_panel/platform_icon_positioner/platform_icon" | "linked_user_stack_panel/spacing1" | "linked_user_stack_panel/profile_picture" | "linked_user_stack_panel/spacing2" | "linked_user_stack_panel/platform_names_label" | "linked_user_stack_panel/spacing3" | "horizontal_indent" | "vertical_indent" | "gamerpic_panel" | "gamerpic_panel/black_border" | "gamerpic_panel/gamer_pic" | "third_party_profile_pic_panel" | "third_party_profile_pic_panel/black_border" | "third_party_profile_pic_panel/third_party_profile_picture" | "gamertag_label_panel" | "gamertag_label_panel/gamertag_label" | "gamertag_label_panel/real_name_label" | "third_party_profile_label" | "third_party_profile_label/profile_name_label" | "panel_text" | "gamertag_label" | "third_party_profile_name_label" | "real_name_label" | "right_settings_panel" | "right_settings_panel/member_settings" | "member_settings" | "member_settings/minus_button" | "member_settings/horizontal_space" | "member_settings/member_permissions" | "member_settings/op_deop_button" | "right_controls_panel" | "right_controls_panel/right_settings_panel" | "right_controls_panel/uninvited_friends_invite_button" | "player_status_panel" | "player_status_panel/player_online_icon" | "player_status_panel/player_offline_icon" | "permissions_dropdown" | "permissions_dropdown/vertical_space" | "permissions_dropdown/option_dropdown_permissions" | "invite_button" | "minus_button" | "unblock_label" | "unblock_button" | "op_deop_button" | "find_friends_button" | "black_border" | "gamer_pic" | "third_party_profile_picture" | "player_online_icon" | "player_offline_icon" | "plus_icon" | "more_icon" | "share_icon" | "minus_icon" | "op_icon" | "deop_icon" | "player_filter_text_box" | "page_panel" | "page_panel/prev_button" | "page_panel/page_text" | "page_panel/next_button" | "realms_allowlist_panel_content" | "realms_allowlist_content_panel" | "realms_allowlist_content_panel_children" | "realms_allowlist_content_panel_children/realms_allowlist_panel_content" | "realms_allowlist_content_panel_children/done_button" | "realms_allowlist_screen" | "realms_allowlist_content" | "realms_allowlist_content/root_panel" | "realms_allowlist_content/root_panel/realms_allowlist_content_panel" | "transparent_close_button"; -export type RealmsInviteLinkSettings = "generic_section_wrapper" | "generic_section_wrapper/generic_section" | "link_banner" | "clipboard_icon" | "description_wrap" | "description_wrap/description" | "invite_link_url" | "link_panel" | "link_panel/invite_link_url_wrapper" | "link_panel/link_copy_container" | "link_panel/link_copy_container/link_copy" | "general_content" | "general_content/spacing_gap_0" | "general_content/invite_link_title" | "general_content/invite_link_description" | "general_content/spacing_gap_1" | "general_content/link_panel" | "general_content/spacing_gap_2" | "general_content/activate_link_toggle" | "general_content/activate_link_description" | "general_content/spacing_gap_3" | "general_content/infinite_link_toggle" | "general_content/spacing_gap_4" | "general_content/share_link_title" | "general_content/share_link_description" | "general_content/spacing_gap_5" | "general_content/share_link_button" | "general_content/spacing_gap_6" | "general_content/remove_link_title" | "general_content/remove_invite_link_button" | "invite_link_expiration" | "advanced_content" | "advanced_content/spacing_gap_0" | "advanced_content/expiry_title" | "advanced_content/spacing_gap_1" | "advanced_content/expiration_description" | "advanced_content/spacing_gap_2" | "advanced_content/expiration_panel" | "advanced_content/expiration_panel/invite_link_expiration_wrapper" | "advanced_content/expiration_dropdown" | "expiration_dropdown_content" | "selector_panel" | "selector_panel/spacing_gap_0" | "selector_panel/general_button" | "selector_panel/advanced_button" | "section_content_panels" | "section_content_panels/general_section" | "section_content_panels/advanced_section"; -export type RealmsPlusEnded = "subscription_ended_screen" | "subscription_ended_screen_content" | "subscription_ended_screen_content/root_panel" | "subscription_ended_screen_content/root_panel/gamepad_helpers" | "subscription_ended_screen_content/root_panel/main_panel" | "main_panel" | "main_panel/dialog" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "content_stack_panel" | "content_stack_panel/pad_0" | "content_stack_panel/main_content" | "content_stack_panel/pad_1" | "content_stack_panel/button_center_panel" | "content_stack_panel/button_center_panel/buttons" | "content_stack_panel/pad_2" | "main_content_panel" | "main_content_panel/main_content_stack_panel" | "main_content_panel/main_content_stack_panel/image_panel" | "main_content_panel/main_content_stack_panel/pad" | "main_content_panel/main_content_stack_panel/text_panel" | "main_content_panel/main_content_stack_panel/text_panel/text" | "buttons_panel" | "buttons_panel/more_info_button" | "buttons_panel/pad" | "buttons_panel/renew_subscription_button"; -export type RealmsPlus = "realms_plus_pdp_screen" | "realms_plus_upgrade_notice_screen" | "purple_background" | "purple_background/bottom_left_particles" | "purple_background/top_right_particles" | "main_background" | "main_background/dark_blue" | "main_background/grey_gradient" | "dark_blue_background" | "gradient_image_stack" | "gradient_image_stack/solid_pink" | "gradient_image_stack/gradient" | "gradient_content_panel" | "gradient_content_panel/gradient" | "gradient_content_panel/content_panel" | "realmsPlus_screen_main_panel" | "realmsPlus_main_panel" | "realmsPlus_main_panel/root_panel" | "realmsPlus_main_panel/root_panel/main_panel" | "realmsPlus_main_panel/popup_dialog_factory" | "dialog_content" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/left_right_pane_divider" | "selector_area" | "selector_area/scrolling_panel" | "scrollable_selector_area_content" | "scrollable_selector_area_content/realmsPlus_toggle" | "scrollable_selector_area_content/content_toggle" | "scrollable_selector_area_content/faq_toggle" | "scrollable_selector_area_content/toggle_section_divider" | "scrollable_selector_area_content/buy_now_toggle" | "scrollable_selector_area_content/xbl_btn_panel" | "scrollable_selector_area_content/xbl_btn_panel/xbl_btn" | "scrollable_selector_area_content/focus_reset_input_panel" | "section_toggle_base" | "tab_button_text" | "toggle_base" | "toggle_base/toggle" | "toggle_base/padding" | "realmsPlus_toggle" | "content_toggle" | "faq_toggle" | "buy_now_toggle" | "left_right_pane_divider" | "content_area" | "content_area/control" | "content_area/control/scrolling_panel" | "section_content_panels" | "content_section_top_padding" | "section_base" | "buy_now_content_section" | "buy_now_content_section/content_section_top_padding" | "buy_now_content_section/content" | "markdown_background_animated" | "markdown_background_animated/realms_banner" | "markdown_background_animated/realms_plus_normal" | "markdown_background_animated/realms_plus_hover" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_stack_panel" | "markdown_background/banner_panel/banner/banner_stack_panel/0" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "empty_label" | "full_width_section_divider"; -export type RealmsPlusContent = "realmsPlus_content_section" | "realmsPlus_content_section/content_section_top_padding" | "realmsPlus_content_section/content_sections" | "realmsPlus_content_section/content_section_bottom_padding" | "content_pack_types_section" | "content_pack_types_section/includes_marketplace_pass_wrapper" | "content_pack_types_section/padding_contentSub" | "content_pack_types_section/pack_types_wrapper" | "content_packs_included_section" | "content_packs_included_section/popular_packs" | "content_packs_included_section/section_divider" | "persona_row" | "persona_row/persona" | "worlds_row" | "pack_types" | "pack_types/middle_row" | "pack_types/middle_row/worlds_contentSub" | "pack_types/middle_row/textures" | "pack_types/bottom_row" | "pack_types/bottom_row/skins_persona_contentSub" | "pack_types/bottom_row/mashups" | "pack_types/bottom_contentSub" | "skins" | "friends_get_access" | "pack_type_row_panel" | "pack_type_description" | "pack_type_description/image_nesting_panel" | "pack_type_description/image_nesting_panel/texture" | "pack_type_description/padding_0" | "pack_type_description/description_nesting_panel" | "pack_type_description/description_nesting_panel/description_label" | "popular_packs" | "popular_packs/padding_0" | "popular_packs/pack_grid" | "popular_packs/view_all_packs_panel" | "popular_packs/view_all_packs_panel/view_all_packs_button" | "popular_packs/padding_1" | "popular_packs/view_character_creator_items_button" | "popular_packs/padding_2" | "popular_packs_label" | "includes_marketplace_pass" | "includes_marketplace_pass_label" | "packs_collection" | "packs_collection/row_1" | "packs_collection/row_1/pack_image_grid_item_0" | "packs_collection/row_1/padding" | "packs_collection/row_1/pack_image_grid_item_1" | "packs_collection/padding_1" | "packs_collection/row_2" | "packs_collection/row_2/pack_image_grid_item_0" | "packs_collection/row_2/padding" | "packs_collection/row_2/pack_image_grid_item_1" | "packs_collection/padding_2" | "pack_image_grid_item" | "pack_image_grid_item/bg" | "pack_image_grid_item/bg/featured_key_art" | "pack_image_grid_item/bg/progress_loading" | "pack_image_grid_item/offer_button" | "pack_image_grid_item/offer_button/default" | "pack_image_grid_item/offer_button/hover" | "pack_image_grid_item/offer_button/pressed"; -export type RealmsPlusFaq = "faq_image_section" | "faq_image_local" | "faq_image_type" | "faq_image_type/0" | "faq_text_section_body" | "faq_text_question" | "faq_text_section" | "faq_text_section/faq_text_question" | "faq_text_section/faq_text_answer" | "faq_price_bound_text_section" | "faq_price_bound_text_section/faq_text_question" | "faq_price_bound_text_section/faq_text_answer" | "faq_question_body" | "faq_question_body/0" | "faq_question_body_stack" | "faq_question_body_horz_padding" | "image_left_faq_question_body" | "image_right_faq_question_body" | "image_left_faq_question_body_flip" | "image_left_faq_question_body_flip/faq_question_left" | "image_right_faq_question_body_flip" | "image_right_faq_question_body_flip/faq_question_right" | "image_left_faq_price_bound" | "faq_section_header_space" | "faq_section_divider" | "faq_content_section" | "faq_content_section/content_section_top_padding_1" | "faq_content_section/faq_header" | "faq_content_section/content_section_top_padding_2" | "faq_content_section/faq_question_1" | "faq_content_section/faq_question_1_divider" | "faq_content_section/faq_question_2" | "faq_content_section/faq_question_2_divider" | "faq_content_section/faq_question_3" | "faq_content_section/faq_question_3_divider" | "faq_content_section/faq_question_4" | "faq_content_section/faq_question_4_divider" | "faq_content_section/faq_question_5" | "faq_content_section/faq_question_5_divider" | "faq_content_section/faq_question_6" | "faq_content_section/faq_question_6_divider" | "faq_content_section/faq_question_7" | "faq_content_section/faq_question_7_divider" | "faq_content_section/faq_question_8" | "faq_content_section/faq_question_8_divider" | "faq_content_section/faq_question_9" | "faq_content_section/faq_question_9_divider" | "faq_content_section/faq_question_10" | "faq_content_section/faq_question_10_divider" | "faq_content_section/faq_question_11" | "faq_content_section/content_section_top_padding_3"; -export type RealmsPlusLanding = "landing_content_section" | "landing_content_section/landing_content" | "landing_content_section/landing_content/title_stack" | "landing_content_section/landing_content/vertical_small_spacer_0" | "landing_content_section/landing_content/divider_panel" | "landing_content_section/landing_content/divider_panel/section_divider" | "landing_content_section/landing_content/vertical_small_spacer_1" | "landing_content_section/landing_content/info_stack" | "landing_content_section/landing_content/vertical_small_spacer_2" | "horizontal_small_spacer" | "vertical_small_spacer" | "vertical_med_spacer" | "vertical_large_spacer" | "title_stack" | "title_stack/title_image_panel" | "title_stack/gradient_panel" | "title_stack/gradient_panel/label_with_gradient_wrapper" | "title_stack/vertical_space" | "title_stack/action_button" | "title_stack/sign_in_button" | "title_stack/vertical_space2" | "label_with_gradient" | "free_trial_text" | "title_image_panel" | "title_image_panel/title_image_container" | "title_image_panel/title_image_container/title_image" | "title_image_panel/title_image_container/title_art_image" | "title_image_panel/title_image_pre_release_container" | "title_image_panel/title_image_pre_release_container/title_image_pre_release" | "info_stack" | "info_stack/info_stack" | "info_stack/info_stack/info_description_stack_retail" | "info_stack/info_stack/info_description_stack_preview" | "info_description_stack_retail" | "info_description_stack_retail/info_section_stack_1" | "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper" | "info_description_stack_retail/vertical_med_spacer0" | "info_description_stack_retail/divider_centering_panel" | "info_description_stack_retail/divider_centering_panel/divider" | "info_description_stack_retail/vertical_med_spacer1" | "info_description_stack_retail/info_section_stack_recently_added" | "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper" | "info_description_stack_retail/vertical_med_spacer2" | "info_description_stack_retail/divider_centering_panel2" | "info_description_stack_retail/divider_centering_panel2/divider2" | "info_description_stack_retail/vertical_med_spacer3" | "info_description_stack_retail/info_section_stack_2" | "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer" | "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper" | "info_description_stack_prerelease" | "info_description_stack_prerelease/info_section_stack" | "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer" | "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper" | "info_section_stack" | "info_section_text_1" | "info_section_text_1/info_text_bullet_1" | "info_section_text_1/vertical_small_spacer_0" | "info_section_text_1/info_text_bullet_2" | "info_section_text_1/vertical_small_spacer_1" | "info_section_text_1/info_text_bullet_3" | "info_section_text_recently_added" | "info_section_text_recently_added/recently_added_header" | "info_section_text_recently_added/info_text_bullet_contentSub" | "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0" | "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0" | "info_section_text_recently_added/vertical_small_spacer_1" | "info_section_text_recently_added/info_text_bullet_1" | "info_section_text_recently_added/vertical_small_spacer_2" | "info_section_text_recently_added/info_text_bullet_2" | "info_section_text_2" | "info_section_text_2/info_text_bullet_2" | "info_section_text_2/vertical_small_spacer_0" | "info_section_text_2/info_text_bullet_3" | "info_section_text_2/vertical_small_spacer_1" | "info_section_text_2/info_text_bullet_4" | "info_section_text_2/info_text_bullet_notFreeTrial" | "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer" | "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4" | "info_section_text_3" | "info_section_text_3/info_text_unbulletted_1" | "info_section_text_3/vertical_large_spacer_0" | "info_section_text_3/info_text_unbulletted_2" | "info_section_text_3/vertical_large_spacer_1" | "info_section_text_3/info_text_unbulletted_3" | "info_section_text_3/vertical_large_spacer_2" | "info_section_text_3/info_text_unbulletted_4" | "info_section_text" | "info_text_bullet" | "info_text_bullet/info_text_bullet_bullet" | "info_text_bullet/info_text_bullet_body" | "info_text_unbulletted" | "info_text_unbulletted/info_text_bullet_body"; -export type RealmsPlusBuy = "buy_now_content" | "buy_now_content/description_stack" | "buy_now_content/realm_name" | "buy_now_content/terms_and_conditions" | "buy_now_content/padding_2" | "buy_now_content/buy_button" | "buy_now_content/padding_3" | "buy_now_content/platform_terms_factory" | "content_text_section" | "content_text_section/text_description_wrapper" | "content_text_section/padding" | "content_description" | "content_description/content_description_label" | "trial_image_and_description" | "trial_image_and_description/realms_image" | "trial_image_and_description/padding" | "trial_image_and_description/description_text_wrapper" | "description_text" | "title_text" | "title_with_gradient" | "description_stack" | "description_stack/title_with_gradient_wrapper" | "description_stack/padding" | "description_stack/image_and_description" | "realm_name_stack" | "realm_name_stack/realm_name_label" | "realm_name_stack/padding_0" | "realm_name_stack/realm_name_text_box" | "terms_and_conditions" | "terms_and_conditions/terms_panel" | "terms_and_conditions_panel" | "terms_and_conditions_panel/name_label" | "terms_and_conditions_panel/terms_string_panel" | "terms_and_conditions_panel/terms_string_panel/banner_fill" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button" | "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button" | "button_text" | "view_terms_button" | "privacy_policy_button" | "buy_button_panel" | "buy_button_panel/buy_button" | "buy_button_content" | "buy_button_content/button_chevron_panel" | "buy_button_content/button_chevron_panel/buy_button_chevron" | "buy_button_content/button_text"; -export type RealmsPlusPacks = "view_all_packs_screen" | "view_packs_screen_content" | "view_packs_screen_content/main_panel" | "realmsPlus_view_packs_screen_main_panel" | "main_panel" | "main_panel/offers" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/padding_0" | "scrolling_content_stack/store_factory"; -export type RealmsPlusPurchaseWarning = "realmsPlus_purchase_warning_screen" | "purchase_warning_screen_content" | "purchase_warning_screen_content/main_panel" | "warning_modal_main_panel" | "warning_modal_main_panel/art_panel" | "warning_modal_main_panel/art_panel/art" | "warning_modal_main_panel/padding" | "warning_modal_main_panel/text_panel" | "warning_modal_main_panel/text_panel/description_panel" | "warning_modal_main_panel/text_panel/description_panel/description_text" | "warning_modal_main_panel/text_panel/padding" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel" | "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text" | "warning_modal_button_panel" | "warning_modal_button_panel/back_button" | "warning_modal_button_panel/padding" | "warning_modal_button_panel/continue_button"; -export type RealmsStoriesTransition = "realms_stories_transition_screen"; -export type Redstone = "item_dropper_label" | "dispenser_label" | "crafter_label" | "dropper_label" | "hopper_label" | "redstone_input_grid" | "redstone_panel_top_half" | "redstone_panel_top_half/redstone_input_grid" | "panel" | "panel/container_gamepad_helpers" | "panel/selected_item_details_factory" | "panel/item_lock_notification_factory" | "panel/root_panel" | "panel/root_panel/common_panel" | "panel/root_panel/redstone_screen_inventory" | "panel/root_panel/redstone_screen_inventory/red_panel" | "panel/root_panel/redstone_screen_inventory/red_bottom_half" | "panel/root_panel/redstone_screen_inventory/hotbar_grid" | "panel/root_panel/redstone_screen_inventory/red_hold_icon" | "panel/root_panel/red_icon" | "panel/root_panel/gamepad_cursor" | "panel/flying_item_renderer" | "crafter_input_grid" | "cell_image" | "crafter_highlight_slot" | "crafter_container_slot_button_prototype" | "crafter_highlight_slot_panel" | "crafter_highlight_slot_panel/highlight" | "crafter_highlight_slot_panel/highlight/hover_text" | "crafter_highlight_slot_panel/white_border" | "crafter_enabled_slot_template" | "crafter_disabled_slot" | "crafter_disabled_slot/default" | "crafter_disabled_slot/hover" | "crafter_disabled_slot/pressed" | "output_slot_hover_info" | "output_slot_hover_info/hover" | "output_slot_hover_info/output_slot" | "output_slot_hover_info/output_slot_border" | "output_slot_hover_info/output_count" | "panel_crafter" | "panel_crafter/container_gamepad_helpers" | "panel_crafter/selected_item_details_factory" | "panel_crafter/item_lock_notification_factory" | "panel_crafter/root_panel" | "panel_crafter/root_panel/common_panel" | "panel_crafter/root_panel/disabled_slot_0_button" | "panel_crafter/root_panel/disabled_slot_1_button" | "panel_crafter/root_panel/disabled_slot_2_button" | "panel_crafter/root_panel/disabled_slot_3_button" | "panel_crafter/root_panel/disabled_slot_4_button" | "panel_crafter/root_panel/disabled_slot_5_button" | "panel_crafter/root_panel/disabled_slot_6_button" | "panel_crafter/root_panel/disabled_slot_7_button" | "panel_crafter/root_panel/disabled_slot_8_button" | "panel_crafter/root_panel/redstone_screen_inventory" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid" | "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half" | "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid" | "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon" | "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line" | "panel_crafter/root_panel/redstone_screen_inventory/crafter_output" | "panel_crafter/root_panel/red_icon" | "panel_crafter/root_panel/gamepad_cursor" | "panel_crafter/flying_item_renderer" | "hopper_screen" | "dispenser_screen" | "crafter_screen" | "dropper_screen"; -export type ResourcePacks = "black_image" | "gray_image" | "yellow_image" | "white_image" | "white_image/border" | "icon_image" | "resource_packs_toggle_button_control" | "resource_packs_toggle_button_control/icon_border" | "resource_packs_toggle_button_control/cycling_icon" | "resource_packs_toggle_button_control/tab_button_text" | "resource_packs_section_toggle_base" | "selected_icon_image" | "available_icon_image" | "realms_icon_image" | "unowned_icon_image" | "invalid_icon_image" | "minus_image" | "plus_image" | "minus_text" | "plus_text" | "store_text" | "error_image" | "error_image_hover" | "error_image_panel" | "error_image_panel/default" | "error_image_panel/hover" | "warning_image" | "warning_image_hover" | "warning_panel" | "warning_panel/default" | "warning_panel/hover" | "no_error_image" | "no_error_image_hover" | "no_error_panel" | "no_error_panel/default" | "no_error_panel/hover" | "up_arrow_image" | "down_arrow_image" | "up_arrow_image_hover" | "down_arrow_image_hover" | "up_arrow_panel" | "up_arrow_panel/default" | "up_arrow_panel/hover" | "up_arrow_wrapper" | "up_arrow_wrapper/down_arrow" | "up_arrow_wrapper/divider_right" | "down_arrow_panel" | "down_arrow_panel/default" | "down_arrow_panel/hover" | "down_arrow_wrapper" | "down_arrow_wrapper/down_arrow" | "down_arrow_wrapper/divider_right" | "progress_loading_bars" | "warning_image_wrapper" | "warning_image_wrapper/error_image" | "warning_image_wrapper/warning_image" | "warning_image_wrapper/no_error_panel" | "warning_image_wrapper/progress_loading_bars" | "tooltip_image_wrapper" | "tooltip_image_wrapper/error_image" | "tooltip_image_wrapper/warning_image" | "options_image" | "options_image_hover" | "options_image_panel" | "options_image_panel/default" | "options_image_panel/hover" | "options_image_panel/hover/image" | "options_image_panel/hover/border" | "options_wrapper" | "options_wrapper/options" | "options_wrapper/divider_right" | "common_pack_button" | "available_text_panel" | "available_text_panel/name_panel" | "available_text_panel/name_panel/available_pack_name_label" | "available_text_panel/name_panel/available_file_size_label" | "available_text_panel/full_panel" | "available_text_panel/full_panel/description_panel" | "available_text_panel/full_panel/description_panel/available_pack_description_label" | "realms_text_panel" | "realms_text_panel/name_panel" | "realms_text_panel/name_panel/realms_pack_name_label" | "realms_text_panel/name_panel/realms_file_size_label" | "realms_text_panel/description_panel" | "realms_text_panel/description_panel/realms_pack_description_label" | "unowned_text_panel" | "unowned_text_panel/name_panel" | "unowned_text_panel/name_panel/unowned_pack_name_label" | "unowned_text_panel/name_panel/unowned_file_size_label" | "unowned_text_panel/description_panel" | "unowned_text_panel/description_panel/unowned_pack_description_label" | "selected_text_panel" | "selected_text_panel/name_panel" | "selected_text_panel/name_panel/selected_pack_name_label" | "selected_text_panel/name_panel/selected_file_size_label" | "selected_text_panel/name_panel/active_dot_panel" | "selected_text_panel/name_panel/active_dot_panel/active_dot" | "selected_text_panel/full_panel" | "selected_text_panel/full_panel/warning_line" | "selected_text_panel/full_panel/warning_line/warning_text" | "selected_text_panel/full_panel/warning_line/warning_number" | "selected_text_panel/full_panel/error_line" | "selected_text_panel/full_panel/error_line/error_text" | "selected_text_panel/full_panel/error_line/error_number" | "selected_text_panel/full_panel/expired_line" | "selected_text_panel/full_panel/expired_line/expired_text" | "selected_text_panel/full_panel/description_panel" | "selected_text_panel/full_panel/description_panel/selected_pack_description_label" | "invalid_text_panel" | "invalid_text_panel/full_panel" | "invalid_text_panel/full_panel/error_line" | "invalid_text_panel/full_panel/error_line/error_text" | "invalid_text_panel/full_panel/error_line/error_number" | "available_pack_button_layout" | "available_pack_button_layout/available_icon_image" | "available_pack_button_layout/text_panel_small" | "available_pack_button_layout/text_panel_full" | "available_pack_button_layout/read_more_button_panel" | "available_pack_button_layout/read_less_button_panel" | "available_pack_button_layout_hover" | "available_pack_button_layout_hover/hover_small" | "available_pack_button_layout_hover/available_icon_image" | "available_pack_button_layout_hover/text_panel_small" | "available_pack_button_layout_hover/text_panel_full_hover" | "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "available_pack_button_layout_hover/read_more_button_panel" | "available_pack_button_layout_hover/read_less_button_panel" | "available_pack_button" | "available_pack_button/default" | "available_pack_button/pressed" | "available_pack_button/hover" | "realms_pack_button_layout" | "realms_pack_button_layout/realms_icon_image" | "realms_pack_button_layout/text_panel_small" | "realms_pack_button_layout/text_panel_full" | "realms_pack_button_layout/read_more_button_panel" | "realms_pack_button_layout/read_less_button_panel" | "realms_pack_button_layout_hover" | "realms_pack_button_layout_hover/hover_small" | "realms_pack_button_layout_hover/realms_icon_image" | "realms_pack_button_layout_hover/text_panel_small" | "realms_pack_button_layout_hover/text_panel_full_hover" | "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "realms_pack_button_layout_hover/read_more_button_panel" | "realms_pack_button_layout_hover/read_less_button_panel" | "realms_pack_button" | "realms_pack_button/default" | "realms_pack_button/pressed" | "realms_pack_button/hover" | "unowned_pack_button_layout" | "unowned_pack_button_layout/unowned_icon_image" | "unowned_pack_button_layout/text_panel_small" | "unowned_pack_button_layout/text_panel_full" | "unowned_pack_button_layout/read_more_button_panel" | "unowned_pack_button_layout/read_less_button_panel" | "unowned_pack_button_layout_hover" | "unowned_pack_button_layout_hover/hover_small" | "unowned_pack_button_layout_hover/unowned_icon_image" | "unowned_pack_button_layout_hover/text_panel_small" | "unowned_pack_button_layout_hover/text_panel_full_hover" | "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "unowned_pack_button_layout_hover/read_more_button_panel" | "unowned_pack_button_layout_hover/read_less_button_panel" | "unowned_pack_button" | "unowned_pack_button/default" | "unowned_pack_button/pressed" | "unowned_pack_button/hover" | "invalid_pack_button_layout" | "invalid_pack_button_layout/invalid_icon_image" | "invalid_pack_button_layout/text_panel" | "invalid_pack_button_layout_hover" | "invalid_pack_button_layout_hover/hover_small" | "invalid_pack_button_layout_hover/invalid_icon_image" | "invalid_pack_button_layout_hover/text_panel_full_hover" | "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel" | "invalid_pack_button" | "invalid_pack_button/default" | "invalid_pack_button/pressed" | "invalid_pack_button/hover" | "empty_resource_pack_button" | "resource_pack_button_padding" | "input_button_panel" | "input_button_panel/border_image" | "input_button_panel/border_image/button_panel" | "input_button_panel/border_image/button_panel/padding_0" | "input_button_panel/border_image/button_panel/padding_1" | "input_button_panel/border_image/button_panel/padding_2" | "input_button_panel/border_image/button_panel/padding_3" | "input_button_panel/border_image/button_panel/padding_4" | "input_button_panel/background" | "selected_pack_button_layout" | "selected_pack_button_layout/selected_icon_image" | "selected_pack_button_layout/text_panel_small" | "selected_pack_button_layout/text_panel_full" | "selected_pack_button_layout/read_more_button_panel" | "selected_pack_button_layout/read_less_button_panel" | "selected_pack_button_layout_hover" | "selected_pack_button_layout_hover/hover_small" | "selected_pack_button_layout_hover/selected_icon_image" | "selected_pack_button_layout_hover/text_panel_small" | "selected_pack_button_layout_hover/text_panel_full_hover" | "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full" | "selected_pack_button_layout_hover/read_more_button_panel" | "selected_pack_button_layout_hover/read_less_button_panel" | "selected_pack_button" | "selected_pack_button/default" | "selected_pack_button/pressed" | "selected_pack_button/hover" | "selected_pack_movement_button" | "selected_pack_transparent_movement_button" | "selected_pack_minus_button" | "selected_pack_plus_button" | "selected_pack_store_button" | "selected_pack_store_button_fill" | "selected_pack_up_button" | "selected_pack_down_button" | "selected_pack_warning_button" | "selected_pack_options_button" | "white_label" | "gray_label" | "suggested_content_offers_title_label" | "available_packs_title_content" | "realms_packs_title_content" | "unowned_packs_title_content" | "selected_packs_title_content" | "selected_packs_title_content/selected_packs_title_label" | "selected_packs_title_content/fill_pad" | "selected_packs_title_content/icon_panel" | "selected_packs_title_content/icon_panel/block_icon" | "selected_packs_title_content/pad_0" | "selected_packs_title_content/count" | "selected_packs_title_content/pad_1" | "selected_packs_title_content/plus_panel" | "selected_packs_title_content/plus_panel/plus" | "selected_packs_title_content/minus_panel" | "selected_packs_title_content/minus_panel/minus" | "available_packs_title_button" | "realms_packs_title_button" | "unowned_packs_title_button" | "selected_packs_title_button" | "name_label" | "size_label" | "description_label" | "pack_label" | "selected_pack_description_label" | "available_pack_description_label" | "realms_pack_description_label" | "unowned_pack_description_label" | "selected_pack_name_label" | "selected_file_size_label" | "available_pack_name_label" | "available_file_size_label" | "realms_pack_name_label" | "realms_file_size_label" | "unowned_pack_name_label" | "unowned_file_size_label" | "invalid_pack_name_label" | "invalid_pack_description_label" | "available_panel" | "available_panel/selected_packs" | "checkbox_visuals" | "header_control" | "header_control/header_description_stack_panel" | "header_control/header_description_stack_panel/checkbox_visuals" | "header_control/header_description_stack_panel/buffer_panel" | "header_control/header_description_stack_panel/buffer_panel/label" | "addon_header_control" | "addon_header_control/header_description_stack_panel" | "addon_header_control/header_description_stack_panel/padding_0" | "addon_header_control/header_description_stack_panel/description_center_panel" | "addon_header_control/header_description_stack_panel/description_center_panel/label" | "addon_header_control/header_description_stack_panel/padding_1" | "addon_header_control/header_description_stack_panel/link_center_panel" | "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button" | "addon_header_control/header_description_stack_panel/padding_2" | "panel_bg" | "panel_bg/black_background" | "panel_bg/gray" | "addon_panel_bg" | "addon_panel_bg/black_background" | "addon_panel_bg/yellow" | "error_panel" | "error_panel/black_background" | "error_panel/black_background/gray" | "error_panel/black_background/gray/panel" | "error_panel/black_background/gray/panel/error_label" | "selected_stack_panel" | "selected_stack_panel/world_template_option_lock_panel" | "selected_stack_panel/world_template_option_lock_panel/option_info_label" | "selected_stack_panel/top_panel" | "selected_stack_panel/top_panel/panel_bg" | "selected_stack_panel/top_panel/header_control" | "selected_stack_panel/offset_0" | "selected_stack_panel/addon_stacking_warning_panel" | "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg" | "selected_stack_panel/addon_stacking_warning_panel/header_control" | "selected_stack_panel/offset_1" | "selected_stack_panel/selected_packs_title_panel" | "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button" | "selected_stack_panel/selected_packs_title_panel/tooltip" | "selected_stack_panel/selected_packs_title_panel/tooltip/button" | "selected_stack_panel/selected_pack_section" | "selected_stack_panel/selected_pack_section/offset" | "selected_stack_panel/selected_pack_section/selected_pack_grid" | "selected_stack_panel/selected_pack_section/default_item" | "selected_stack_panel/selected_pack_section/default_item/icon_image" | "selected_stack_panel/selected_pack_section/default_item/name_panel" | "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label" | "selected_stack_panel/selected_pack_section/default_item/description_panel" | "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label" | "selected_stack_panel/selected_pack_section/filler_panel" | "selected_stack_panel/selected_pack_section/filler_panel/description_label" | "selected_stack_panel/offset_2" | "selected_stack_panel/available_packs_title_panel" | "selected_stack_panel/available_packs_title_panel/available_packs_title_button" | "selected_stack_panel/available_packs_title_panel/tooltip" | "selected_stack_panel/available_packs_title_panel/tooltip/button" | "selected_stack_panel/available_packs_section" | "selected_stack_panel/available_packs_section/offset" | "selected_stack_panel/available_packs_section/empty_panel" | "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel" | "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text" | "selected_stack_panel/available_packs_section/empty_panel/to_store_button" | "selected_stack_panel/available_packs_section/available_pack_grid" | "selected_stack_panel/available_packs_section/invalid_pack_grid" | "selected_stack_panel/offset_3" | "selected_stack_panel/realms_packs_title_button" | "selected_stack_panel/realms_packs_section" | "selected_stack_panel/realms_packs_section/offset" | "selected_stack_panel/realms_packs_section/realms_pack_grid" | "selected_stack_panel/realms_packs_section/offset_4" | "selected_stack_panel/offset_4" | "selected_stack_panel/unowned_packs_title_button" | "selected_stack_panel/unowned_packs_section" | "selected_stack_panel/unowned_packs_section/offset" | "selected_stack_panel/unowned_packs_section/unowned_pack_grid" | "selected_stack_panel/unowned_packs_section/to_store_button" | "selected_stack_panel/unowned_packs_section/offset_4" | "available_stack_panel" | "available_stack_panel/available_packs_title_button" | "available_stack_panel/available_pack_grid" | "pack_background" | "pack_background/white_image" | "pack_background/gray_image" | "selected_pack_panel" | "selected_pack_panel/selected_pack_button" | "selected_pack_panel/pad_0" | "selected_pack_panel/center_panel" | "selected_pack_panel/center_panel/visibility_panel" | "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons" | "selected_pack_panel/divider" | "selected_pack_panel/pad_1" | "available_pack_panel" | "available_pack_panel/available_pack_button" | "available_pack_panel/pad_0" | "available_pack_panel/center_panel" | "available_pack_panel/center_panel/available_pack_direction_buttons" | "available_pack_panel/divider" | "available_pack_panel/pad_1" | "realms_pack_panel" | "realms_pack_panel/realms_pack_button" | "realms_pack_panel/pad_0" | "realms_pack_panel/center_panel" | "realms_pack_panel/center_panel/realms_pack_direction_buttons" | "realms_pack_panel/divider" | "realms_pack_panel/pad_1" | "unowned_pack_panel" | "unowned_pack_panel/unowned_pack_button" | "unowned_pack_panel/pad_0" | "unowned_pack_panel/center_panel" | "unowned_pack_panel/center_panel/realms_pack_direction_buttons" | "unowned_pack_panel/divider" | "unowned_pack_panel/pad_1" | "invalid_pack_panel" | "invalid_pack_panel/invalid_pack_button" | "invalid_pack_panel/pad_0" | "invalid_pack_panel/divider" | "invalid_pack_panel/pad_1" | "selected_pack_grid" | "available_pack_grid" | "realms_pack_grid" | "unowned_pack_grid" | "invalid_pack_grid"; -export type SafeZone = "corner_image_common" | "corner_bl" | "corner_br" | "corner_tr" | "corner_tl" | "confirm_button" | "title_text" | "instructions_text" | "instructions_text/inner_label" | "label_button" | "label_button_hover" | "label_button_hover/hover" | "label_button_hover/hover/button_hover_text" | "content_panel" | "content_panel/safe_zone_slider_all" | "content_panel/safe_zone_slider_x" | "content_panel/safe_zone_slider_y" | "content_panel/screen_position_slider_x" | "content_panel/screen_position_slider_y" | "content_panel/instruction_text_button" | "content_panel/instruction_text_button/default" | "content_panel/instruction_text_button/pressed" | "content_panel/instruction_text_button/hover" | "safe_zone_screen" | "safe_zone_screen/safe_zone_bounds_markers" | "safe_zone_screen/safe_zone_bounds_markers/top_left_marker" | "safe_zone_screen/safe_zone_bounds_markers/top_right_marker" | "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker" | "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker" | "safe_zone_screen/main_content_panel" | "safe_zone_screen/main_content_panel/common_panel" | "safe_zone_screen/main_content_panel/title_text" | "safe_zone_screen/main_content_panel/scrolling_panel" | "safe_zone_screen/main_content_panel/confirm_button"; -export type StorageMigrationCommon = "progress_panel" | "progress_panel/common_panel" | "progress_panel/base_content" | "progress_panel/base_content/progress_title_text" | "progress_panel/base_content/progress_bar_text" | "progress_panel/inside_content" | "progress_panel/inside_content/size_label" | "progress_panel/inside_content/padding_1" | "progress_panel/inside_content/loading_bar_panel" | "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars" | "progress_panel/inside_content/loading_bar_panel/progress_loading_bars" | "progress_panel/inside_content/padding_3" | "label" | "base_button" | "retry_button" | "go_to_faq_button" | "next_button" | "get_started_button" | "start_transfer_button" | "finished_main_menu_button" | "start_transfer_out_of_space_button" | "continue_out_of_space_button" | "resume_transfer_button" | "exit_button" | "retry_help_button_panel" | "retry_help_button_panel/retry" | "retry_help_button_panel/padding" | "retry_help_button_panel/help" | "modal_no_buttons" | "modal_one_button" | "modal_two_buttons" | "base_child_control" | "base_child_control/scrolling_panel" | "file_size_description" | "file_size_description/description" | "file_size_description/padding" | "file_size_description/size_stack" | "file_size_description/size_stack/file_text" | "file_size_description/size_stack/padding_1" | "file_size_description/size_stack/file_size_total" | "file_size_description/size_stack/padding_2" | "file_size_description/size_stack/file_size_available" | "file_size_description/file_location" | "error_icon_and_description" | "error_icon_and_description/error_image" | "error_icon_and_description/description" | "file_size_description_with_error" | "file_size_description_with_error/file_size" | "file_size_description_with_error/padding" | "file_size_description_with_error/error_icon_and_description" | "start_transfer" | "start_transfer_content" | "resume_transfer" | "resume_transfer_content" | "resume_transfer_content/file_size" | "transfer_error_out_of_space" | "transfer_error_out_of_space_content"; -export type StorageMigrationGeneric = "storage_migration_generic_screen" | "modal_screen_content" | "modal_screen_content/modal_progress_panel_no_cancel" | "modal_screen_content/popup_dialog_factory" | "start_transfer" | "start_transfer_out_of_space" | "start_transfer_out_of_space_content" | "start_transfer_out_of_space_content/base_start_content" | "start_transfer_out_of_space_content/padding" | "start_transfer_out_of_space_content/error_icon_and_description" | "finished" | "finished_content" | "finished_content/description" | "resume_transfer_out_of_space" | "resume_transfer_out_of_space_content" | "transfer_error" | "transfer_error_content" | "transfer_error_content/description" | "transfer_error_out_of_space"; -export type Scoreboard = "scoreboard_sidebar_score" | "scoreboard_sidebar_player" | "scoreboard_sidebar" | "scoreboard_sidebar/main" | "scoreboard_sidebar/main/displayed_objective" | "scoreboard_sidebar/main/lists" | "scoreboard_sidebar/main/lists/players" | "scoreboard_sidebar/main/lists/horizontal_padding" | "scoreboard_sidebar/main/lists/scores" | "scoreboard_sidebar/displayed_objective_background" | "scoreboard_player_list" | "scoreboard_player_list/vertical_padding_0" | "scoreboard_player_list/social_buttons_panel" | "scoreboard_player_list/vertical_padding_1" | "scoreboard_player_list/permissions_button" | "scoreboard_player_list/vertical_padding_2" | "scoreboard_player_list/players_label" | "scoreboard_player_list/vertical_padding_3" | "scoreboard_player_list/scored_players_grid_panel" | "scoreboard_player_list/vertical_padding_4" | "scoreboard_player_list/unscored_players_grid_panel" | "scoreboard_player_list/vertical_padding_5" | "scoreboard_player_list/invite_players_button_panel" | "scoreboard_player_list/vertical_padding_6" | "scoreboard_player_list/disconnected_from_multiplayer_label_panel" | "scoreboard_player_list/vertical_padding_7" | "list_objective_label" | "player_rank_panel" | "player_rank_panel/player_rank_bg" | "player_rank_panel/player_rank_bg/player_rank" | "player_icon_panel" | "player_icon_panel/player_icon" | "player_icon_panel/player_icon/player_panel_black_border" | "player_icon_panel/permission_icon" | "player_name" | "player_score" | "player_details" | "player_details/name_panel" | "player_details/name_panel/name" | "player_details/score_panel" | "player_details/score_panel/score" | "player_content" | "player_content/icon" | "player_content/padding" | "player_content/details" | "base_player_button" | "player_panel" | "player_panel/rank_base" | "player_panel/rank_base/player_rank" | "player_panel/player_button" | "players_grid_list" | "players_unscored_grid_list" | "players_scored_grid_list"; -export type Screenshot = "screenshot_flash_image" | "screenshot_screen" | "screenshot_screen_content" | "screenshot_screen_content/transparent_background" | "screenshot_screen_content/screenshot_flash"; -export type SelectWorld = "popup_dialog__add_on_common" | "popup_dialog__add_on_common_no_buttons" | "popup_dialog__add_on_common_no_buttons/popup_dialog_bg" | "popup_dialog__add_on_common_no_buttons/popup_dialog_message" | "popup_dialog__add_on_common_no_buttons/close_button" | "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel" | "popup_dialog__add_on_common_two_buttons" | "popup_dialog__add_on_common_two_buttons/popup_dialog_bg" | "popup_dialog__add_on_common_two_buttons/popup_dialog_message" | "popup_dialog__add_on_common_two_buttons/close_button" | "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel" | "popup_dialog__add_on_common_two_buttons/button_copy" | "popup_dialog__add_on_common_two_buttons/button_continue" | "add_on_button_copy" | "add_on_button_continue" | "add_on_popup_content_panel" | "add_on_popup_content_panel/popup_content" | "popup_dialog__activate_add_on" | "popup_dialog__activate_add_on_select_world" | "popup_dialog__copy_local_world" | "popup_dialog__copy_realms_world" | "copy_local_world_panel" | "copy_local_world_panel/padding_top" | "copy_local_world_panel/text_box" | "copy_local_world_panel/padding_middle" | "copy_local_world_panel/text_box2" | "copy_realms_world_panel" | "copy_realms_world_panel/padding_top" | "copy_realms_world_panel/text_box" | "copy_realms_world_panel/padding_middle" | "copy_realms_world_panel/text_box2" | "new_or_existing_world_panel" | "new_or_existing_world_panel/padding_left" | "new_or_existing_world_panel/world_icon_existing" | "new_or_existing_world_panel/padding_middle" | "new_or_existing_world_panel/world_icon_new" | "new_or_existing_world_panel/padding_right" | "world_icon_with_button" | "world_icon_with_button/padding_top" | "world_icon_with_button/world_icon" | "world_icon_with_button/button" | "world_icon_with_button/padding_bottom" | "world_icon_new" | "world_icon_new/plus_button" | "world_icon_existing" | "select_world_panel" | "select_world_list" | "select_world_list/realms_world_label" | "select_world_list/realms_world_list" | "select_world_list/padding_middle" | "select_world_list/local_world_label" | "select_world_list/local_world_list" | "select_world_list/padding_end" | "local_world_item_button" | "realms_world_item_button" | "select_world_screen_content" | "select_world_screen_content/popup_dialog_factory" | "select_world_popup_screen"; -export type ServerForm = "third_party_server_screen" | "main_screen_content" | "main_screen_content/server_form_factory" | "long_form" | "long_form_panel" | "long_form_panel/scrolling_panel" | "long_form_scrolling_content" | "long_form_scrolling_content/label_offset_panel" | "long_form_scrolling_content/label_offset_panel/main_label" | "long_form_scrolling_content/padding" | "long_form_scrolling_content/wrapping_panel" | "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel" | "long_form_dynamic_buttons_panel" | "dynamic_button" | "dynamic_button/panel_name" | "dynamic_button/panel_name/image" | "dynamic_button/panel_name/progress" | "dynamic_button/form_button" | "dynamic_label" | "dynamic_header" | "custom_form" | "custom_form_panel" | "generated_contents" | "custom_form_scrolling_content" | "custom_form_scrolling_content/generated_form" | "custom_form_scrolling_content/submit_button" | "custom_label" | "custom_header" | "custom_toggle" | "custom_slider" | "custom_step_slider" | "custom_dropdown" | "custom_dropdown/dropdown" | "custom_dropdown_content" | "custom_dropdown_radio" | "custom_input"; -export type Settings = "settings_screen_base" | "screen_world_create" | "screen_template_create" | "screen_world_edit" | "screen_controls_and_settings" | "screen_world_controls_and_settings" | "screen_realm_controls_and_settings" | "screen_realm_member_controls_and_settings" | "screen_realm_settings" | "screen_world_slot_edit" | "screen_realm_manage" | "screen_realm_invite_link_settings" | "selector_stack_panel" | "selector_stack_panel/spacer_0" | "selector_stack_panel/accessibility_button" | "selector_stack_panel/spacer_1" | "selector_stack_panel/how_to_play_button" | "selector_stack_panel/spacer_01" | "selector_stack_panel/world_selector_pane" | "selector_stack_panel/realm_selector_pane" | "selector_stack_panel/controls_and_settings_selector_pane" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_1" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1" | "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_01" | "selector_stack_panel/controls_and_settings_selector_pane/controller_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_02" | "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_03" | "selector_stack_panel/controls_and_settings_selector_pane/touch_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_04" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2" | "selector_stack_panel/controls_and_settings_selector_pane/party_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_05" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3" | "selector_stack_panel/controls_and_settings_selector_pane/general_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_06" | "selector_stack_panel/controls_and_settings_selector_pane/video_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_07" | "selector_stack_panel/controls_and_settings_selector_pane/sound_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_08" | "selector_stack_panel/controls_and_settings_selector_pane/account_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_09" | "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_10" | "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_11" | "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_12" | "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_13" | "selector_stack_panel/controls_and_settings_selector_pane/language_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_14" | "selector_stack_panel/controls_and_settings_selector_pane/creator_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_15" | "selector_stack_panel/controls_and_settings_selector_pane/preview_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_4" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial" | "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4" | "selector_stack_panel/controls_and_settings_selector_pane/debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_16" | "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_17" | "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_18" | "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_19" | "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_20" | "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_21" | "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_22" | "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button" | "selector_stack_panel/controls_and_settings_selector_pane/spacer_23" | "selector_stack_panel/controls_and_settings_selector_pane/automation_button" | "selector_stack_panel/spacer_24" | "selector_stack_panel/addons_selector_panel" | "selector_stack_panel/realms_invite_link_settings_pane" | "section_content_panels" | "section_content_panels/realm_invite_link_settings_content_panels" | "section_content_panels/world_sections" | "section_content_panels/world_sections/game_section" | "section_content_panels/world_sections/classroom_section_panel" | "section_content_panels/world_sections/classroom_section_panel/classroom_section" | "section_content_panels/world_sections/server_section" | "section_content_panels/world_sections/multiplayer_section" | "section_content_panels/world_sections/edu_cloud_section" | "section_content_panels/world_sections/debug_section" | "section_content_panels/packs_sections" | "section_content_panels/packs_sections/level_texture_pack_section" | "section_content_panels/packs_sections/addon_section" | "section_content_panels/section_content_panels" | "section_content_panels/general_and_controls_sections" | "section_content_panels/general_and_controls_sections/accessibility_section" | "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui" | "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section" | "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui" | "section_content_panels/general_and_controls_sections/controller_section" | "section_content_panels/general_and_controls_sections/touch_section" | "section_content_panels/general_and_controls_sections/party_section" | "section_content_panels/general_and_controls_sections/general_tab_section" | "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui" | "section_content_panels/general_and_controls_sections/account_section" | "section_content_panels/general_and_controls_sections/account_section_ore_ui" | "section_content_panels/general_and_controls_sections/global_texture_pack_section" | "section_content_panels/general_and_controls_sections/storage_management_header" | "section_content_panels/general_and_controls_sections/storage_management_section" | "section_content_panels/general_and_controls_sections/edu_cloud_storage_section" | "section_content_panels/general_and_controls_sections/creator_section" | "section_content_panels/general_and_controls_sections/video_section" | "section_content_panels/general_and_controls_sections/video_section_ore_ui" | "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section" | "section_content_panels/general_and_controls_sections/view_subscriptions_section" | "section_content_panels/general_and_controls_sections/sound_section" | "section_content_panels/general_and_controls_sections/sound_section_ore_ui" | "section_content_panels/general_and_controls_sections/language_section" | "section_content_panels/general_and_controls_sections/language_section_ore_ui" | "section_content_panels/general_and_controls_sections/preview_section" | "section_content_panels/general_and_controls_sections/debug_section" | "section_content_panels/general_and_controls_sections/ui_debug_section" | "section_content_panels/general_and_controls_sections/edu_debug_section" | "section_content_panels/general_and_controls_sections/marketplace_debug_section" | "section_content_panels/general_and_controls_sections/gatherings_debug_section" | "section_content_panels/general_and_controls_sections/flighting_debug_section" | "section_content_panels/general_and_controls_sections/realms_debug_section" | "section_content_panels/general_and_controls_sections/automation_section" | "section_content_panels/general_and_controls_sections/discovery_debug_section" | "section_content_panels/general_and_controls_sections/how_to_play_section" | "section_header_panels" | "section_header_panels/world_sections" | "section_header_panels/general_and_controls_sections" | "section_footer_panels" | "section_footer_panels/world_sections" | "section_footer_panels/general_and_controls_sections" | "section_footer_panels/general_and_controls_sections/storage_management_footer"; -export type ControlsSection = "binding_button" | "binding_button_content" | "binding_button_content/default_label" | "image_binding_button" | "image_binding_button_content" | "image_binding_button_content/base_icon_image" | "image_binding_button_content/default_label" | "arrow_reset" | "reset_binding_button" | "keymapping_item_parent" | "keymapping_item_parent/keymapping_row" | "keymapping_item" | "keymapping_item/option_info_label_control" | "keymapping_item/option_info_label_control/keymapping_label_control" | "keymapping_item/keymapping_button_0" | "keymapping_item/keymapping_button_1" | "keymapping_grid" | "full_keymapping_grid" | "gamepad_mapping_item" | "gamepad_mapping_item/option_info_label_control" | "gamepad_mapping_item/option_info_label_control/keymapping_label_control" | "gamepad_mapping_item/keymapping_button_0" | "gamepad_mapping_item/keymapping_button_1" | "gamepad_mapping_grid" | "keyboard_and_mouse_button" | "keyboard_and_mouse_section_ore_ui" | "keyboard_and_mouse_section_ore_ui/spacer_0" | "keyboard_and_mouse_section_ore_ui/generic_label" | "keyboard_and_mouse_section_ore_ui/spacer_1" | "keyboard_and_mouse_section_ore_ui/gamepad_helper_label" | "keyboard_and_mouse_section" | "keyboard_and_mouse_section/option_slider_0" | "keyboard_and_mouse_section/option_slider_damen" | "keyboard_and_mouse_section/option_toggle_0" | "keyboard_and_mouse_section/option_toggle_1" | "keyboard_and_mouse_section/option_toggle_2" | "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay" | "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts" | "keyboard_and_mouse_section/option_toggle_show_learning_prompts" | "keyboard_and_mouse_section/keyboard_section" | "keyboard_and_mouse_section/keyboard_section/option_group_label" | "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label" | "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid" | "keyboard_and_mouse_section/full_keyboard_section" | "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed" | "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label" | "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label" | "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid" | "keyboard_and_mouse_section/reset_button" | "controller_button" | "controller_section" | "controller_section/option_slider_0" | "controller_section/option_slider_damen" | "controller_section/option_toggle_0" | "controller_section/option_toggle_1" | "controller_section/option_toggle9" | "controller_section/option_toggle10" | "controller_section/option_toggle_11" | "controller_section/gamepad_swap_ab" | "controller_section/gamepad_swap_xy" | "controller_section/gamepad_cursor_sensitivity_option_slider" | "controller_section/option_toggle_3" | "controller_section/option_toggle_4" | "controller_section/option_toggle_5" | "controller_section/option_group_label" | "controller_section/gamepad_keymapping_grid" | "controller_section/reset_button" | "touch_button" | "touch_section" | "touch_section/common_touch_settings" | "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button" | "touch_section/common_touch_settings/control_scheme_section" | "touch_section/common_touch_settings/control_scheme_section/section_label" | "touch_section/common_touch_settings/control_scheme_section/padding_0" | "touch_section/common_touch_settings/control_scheme_section/image_and_button" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label" | "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control" | "touch_section/common_touch_settings/control_scheme_section/padding_1" | "touch_section/common_touch_settings/control_scheme_section/select_control_mode" | "touch_section/common_touch_settings/control_scheme_section/padding_2" | "touch_section/common_touch_settings/modify_control_layout_section" | "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button" | "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option" | "touch_section/common_touch_settings/modify_control_layout_section/padding" | "touch_section/common_touch_settings/option_slider_0" | "touch_section/common_touch_settings/option_slider_damen" | "touch_section/common_touch_settings/option_show_action_button" | "touch_section/common_touch_settings/option_show_block_select_button" | "touch_section/common_touch_settings/option_toggle_left_handed" | "touch_section/common_touch_settings/option_toggle_auto_jump" | "touch_section/common_touch_settings/option_bool_sprint_on_movement" | "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button" | "touch_section/common_touch_settings/joystick_visibility_dropdown" | "touch_section/common_touch_settings/top_button_scale" | "touch_section/common_touch_settings/sneak_dropdown" | "touch_section/common_touch_settings/option_toggle_destroy_vibration" | "touch_section/common_touch_settings/option_toggle_split_vibration" | "touch_section/common_touch_settings/option_creative_delayed_block_breaking" | "touch_section/common_touch_settings/option_toggle_invert_y" | "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair" | "touch_section/common_touch_settings/option_toggle_use_touchpad" | "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak" | "touch_section/common_touch_settings/hotbar_only_touch_toggle" | "touch_section/reset_button" | "joystick_visibility_dropdown_content" | "top_button_scale_dropdown_content" | "sneak_dropdown_content" | "customize_tooltip_option_image" | "customize_tooltip_option_popup" | "customize_tooltip_option" | "customize_tooltip_option/customize_tooltip_option_image" | "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel" | "customize_tooltip_option/customize_tooltip_option_popup"; -export type GeneralSection = "general_button" | "general_tab_section_ore_ui" | "general_tab_section_ore_ui/spacer_0" | "general_tab_section_ore_ui/generic_label" | "general_tab_section_ore_ui/spacer_1" | "general_tab_section_ore_ui/gamepad_helper_label" | "general_tab_section" | "general_tab_section/option_toggle_fail_realms_purchase_fulfillment" | "general_tab_section/network_label_header" | "general_tab_section/paddingCrossPlatform" | "general_tab_section/cross_platform_enabled_toggle" | "general_tab_section/paddingCellularData" | "general_tab_section/mobile_data_option_toggle" | "general_tab_section/paddingWebSockets" | "general_tab_section/websockets_enabled_toggle" | "general_tab_section/websocket_encryption_toggle" | "general_tab_section/paddingAutoUpdate" | "general_tab_section/auto_update_mode_dropdown" | "general_tab_section/paddingAutoUpdateToggle" | "general_tab_section/auto_update_enabled_toggle" | "general_tab_section/paddingGameTipsFeature" | "general_tab_section/tutorial_toggle" | "general_tab_section/tutorial_animation_toggle" | "general_tab_section/tutorial_restart_button" | "general_tab_section/paddingTrustedSkins" | "general_tab_section/only_allow_trusted_skins_toggle" | "general_tab_section/paddingFilterProfanity" | "general_tab_section/filter_profanity_toggle" | "general_tab_section/filter_profanity_toggle/option_generic_core" | "general_tab_section/pause_label_header" | "general_tab_section/paddingPauseFeature" | "general_tab_section/pause_toggle" | "general_tab_section/paddingLinkEduSupport" | "general_tab_section/link_button" | "general_tab_section/paddingDividerSustainability" | "general_tab_section/ecomode_label_header" | "general_tab_section/paddingEcoMode" | "general_tab_section/ecomode_enabled_toggle" | "general_tab_section/paddingDividerTermsCreditsAttribution" | "general_tab_section/dividerTermsCreditsAttribution" | "general_tab_section/dividerTermsCreditsAttribution/section_divider" | "general_tab_section/paddingDividerTermsCreditsAttributionAfter" | "general_tab_section/paddingTermsNConditions" | "general_tab_section/terms_and_conditions_link_button" | "general_tab_section/paddingCreditsButton" | "general_tab_section/credits_button" | "general_tab_section/paddingAttribution" | "general_tab_section/attribution_link_button" | "general_tab_section/paddingfeedback" | "general_tab_section/feedback_link_button" | "general_tab_section/paddingLicenses" | "general_tab_section/dividerLicenses" | "general_tab_section/dividerLicenses/section_divider" | "general_tab_section/paddingLicensesAfter" | "general_tab_section/paddingLicensesHeader" | "general_tab_section/licenses_label_header" | "general_tab_section/paddingLicensedContent" | "general_tab_section/licensed_content_link_button" | "general_tab_section/paddingFontLicense" | "general_tab_section/font_license_popup_button" | "general_tab_section/third_party_copyright_info_label_panel" | "general_tab_section/third_party_copyright_info_label_panel/spacer_0" | "general_tab_section/third_party_copyright_info_label_panel/copyright_label" | "general_tab_section/third_party_copyright_info_label_panel/spacer_1" | "general_tab_section/third_party_copyright_info_label_panel/copyright_icon" | "general_tab_section/paddingSectionDividerContentLog" | "general_tab_section/build_info_label_panel" | "general_tab_section/build_info_label_panel/build_info_label" | "general_tab_section/paddingSectionDividerBuildInfo" | "general_tab_section/treatment_ids_label" | "account_section_ore_ui" | "account_section_ore_ui/spacer_0" | "account_section_ore_ui/generic_label" | "account_section_ore_ui/spacer_1" | "account_section_ore_ui/gamepad_helper_label" | "account_button" | "view_account_errors_button_content" | "switch_accounts_button_content" | "switch_accounts_button_content/padded_icon" | "switch_accounts_button_content/padded_icon/icon" | "switch_accounts_button_content/padded_label" | "switch_accounts_button_content/padded_label/label" | "sign_out_button_content" | "sign_out_button_content/padded_label" | "sign_out_button_content/padded_label/label" | "switch_accounts_panel" | "switch_accounts_panel/name_label" | "switch_accounts_panel/paddingSwitchAccounts" | "switch_accounts_panel/switch_accounts" | "sign_out_panel" | "sign_out_panel/sign_out" | "sign_out_fail_popup" | "sign_out_fail_body_panel" | "sign_out_fail_body_content_stack" | "sign_out_fail_body_content_stack/body_text_centering_panel1" | "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1" | "sign_out_fail_body_content_stack/body_text_centering_panel2" | "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2" | "sign_out_fail_body_content_stack/padding1" | "sign_out_fail_body_content_stack/learn_more_button" | "sign_out_fail_body_content_stack/padding2" | "sign_out_fail_body_content_stack/close_button" | "account_section" | "account_section/use_edu_remember_me" | "account_section/paddingUseSSO" | "account_section/switch_accounts" | "account_section/sign_out" | "account_section/paddingNameControls" | "account_section/name_controls" | "account_section/paddingSignInControls" | "account_section/signin_controls" | "account_section/paddingGamerTagControls" | "account_section/gamertag_controls" | "account_section/paddingClearMSAToken" | "account_section/clear_msa_token" | "account_section/clear_msa_token/clear_msa_token_button" | "account_section/paddingUnlinkMSAAccount" | "account_section/unlink_msa_account" | "account_section/unlink_msa_account_nx" | "account_section/paddingDeleteAccount" | "account_section/delete_account" | "account_section/paddingUseRemoteConnect" | "account_section/remote_connect_toggle" | "account_section/paddingInfoLabels" | "account_section/account_info_buttom" | "account_section/account_info_buttom/account_info_label" | "name_controls" | "name_controls/option_text_edit_control" | "signin_controls" | "signin_controls/sign_in" | "signin_controls/sign_in/action_button" | "signin_subscription" | "signin_subscription/sign_in" | "signin_subscription/sign_in/please_signin_label" | "gamertag_controls" | "gamertag_controls/gamertag_label" | "gamertag_controls/gamertag_label/panel_descriptor" | "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor" | "gamertag_controls/gamertag_label/spacer" | "gamertag_controls/gamertag_label/gamerpic" | "gamertag_controls/gamertag_label/spacer_2" | "gamertag_controls/gamertag_label/panel_gamertag" | "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label" | "gamertag_controls/paddingXboxAccountButtons" | "gamertag_controls/xboxlive_deep_link_buttons" | "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button" | "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile" | "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button" | "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile" | "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl" | "gamertag_controls/xboxlive_deep_link_buttons/link_button" | "gamertag_controls/paddingSignOut" | "gamertag_controls/realms_invites" | "gamertag_controls/realms_invites/check_realms_invites_button" | "gamertag_controls/sign_out" | "gamertag_controls/sign_out/action_button" | "gamertag_controls/offline_token_authorization" | "gamertag_controls/offline_token_authorization/request_psn_authorization_button" | "auto_update_mode_dropdown_content" | "global_texture_pack_button" | "global_texture_pack_section" | "storage_management_button" | "storage_management_section" | "storage_management_header" | "storage_management_footer" | "edu_cloud_storage_button" | "edu_cloud_storage_section" | "edu_cloud_storage_section/spacing1" | "edu_cloud_storage_section/edu_cloud_backup_toggle" | "edu_cloud_storage_section/spacing2" | "edu_cloud_storage_section/body_wrapper_panel" | "edu_cloud_storage_section/body_wrapper_panel/tts_border" | "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label" | "edu_cloud_storage_section/spacing3" | "edu_cloud_storage_section/edu_cloud_onedrive_button" | "edu_cloud_storage_section/spacing4" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon" | "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon" | "edu_cloud_onedrive_button_content" | "edu_cloud_onedrive_button_content/padded_label" | "edu_cloud_onedrive_button_content/padded_label/label" | "edu_cloud_onedrive_button_content/padded_icon" | "edu_cloud_onedrive_button_content/padded_icon/icon" | "edu_cloud_onedrive_error_popup" | "edu_cloud_onedrive_error_content" | "edu_cloud_onedrive_error_content/body_text_centering_panel2" | "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2" | "edu_cloud_onedrive_error_content/padding2" | "edu_cloud_onedrive_error_content/learn_more_button" | "edu_cloud_onedrive_error_content/padding3" | "edu_cloud_onedrive_error_content/ok_button" | "creator_button" | "editor_toggle_panel" | "editor_toggle_panel/editor_confirmation_panel" | "editor_toggle_panel/editor_confirmation_panel/editor_active_label" | "editor_toggle_panel/editor_confirmation_panel/toggle_spacer" | "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label" | "editor_toggle_panel/editor_toggle_spacer" | "editor_toggle_panel/editor_image_panel" | "editor_toggle_panel/editor_image_panel/editor_icon" | "creator_toggles_panel" | "creator_toggles_panel/section_panel_1" | "creator_toggles_panel/section_panel_1/section_divider" | "creator_toggles_panel/copy_coordinate_section_stack_panel" | "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label" | "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer" | "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log" | "creator_toggles_panel/creator_setting_button" | "creator_toggles_panel/creator_setting_button/go_to_keybinds" | "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer" | "debugger_toggles_panel" | "debugger_toggles_panel/section_panel_1" | "debugger_toggles_panel/section_panel_1/section_divider" | "debugger_toggles_panel/primary_panel" | "debugger_toggles_panel/primary_panel/heading" | "debugger_toggles_panel/primary_panel/spacer" | "debugger_toggles_panel/primary_panel/passcode_required_toggle" | "debugger_toggles_panel/primary_panel/passcode_input" | "debugger_toggles_panel/primary_panel/auto_attach_toggle" | "debugger_toggles_panel/primary_panel/all_options_panel" | "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer" | "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input" | "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider" | "diagnostics_toggles_panel" | "diagnostics_toggles_panel/section_panel_1" | "diagnostics_toggles_panel/section_panel_1/section_divider" | "diagnostics_toggles_panel/primary_panel" | "diagnostics_toggles_panel/primary_panel/heading" | "diagnostics_toggles_panel/primary_panel/spacer" | "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle" | "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons" | "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files" | "watchdog_toggles_panel" | "watchdog_toggles_panel/section_panel_1" | "watchdog_toggles_panel/section_panel_1/section_divider" | "watchdog_toggles_panel/primary_panel" | "watchdog_toggles_panel/primary_panel/heading" | "watchdog_toggles_panel/primary_panel/spacer" | "watchdog_toggles_panel/primary_panel/hang_threshold_slider" | "watchdog_toggles_panel/primary_panel/spike_warning_toggle" | "watchdog_toggles_panel/primary_panel/spike_threshold_slider" | "watchdog_toggles_panel/primary_panel/slow_warning_toggle" | "watchdog_toggles_panel/primary_panel/slow_threshold_slider" | "device_info_toggles_panel" | "device_info_toggles_panel/section_panel_1" | "device_info_toggles_panel/section_panel_1/section_divider" | "device_info_toggles_panel/primary_panel" | "device_info_toggles_panel/primary_panel/heading" | "device_info_toggles_panel/primary_panel/spacer" | "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle" | "device_info_toggles_panel/device_info_memory_tier_dropdown" | "content_memory_tier_dropdown_content" | "content_log_gui_level_content" | "content_log_panel" | "content_log_panel/section_panel_1" | "content_log_panel/section_panel_1/section_divider" | "content_log_panel/content_log_section_label" | "content_log_panel/content_log_section_label_spacer" | "content_log_panel/option_content_file_log" | "content_log_panel/option_content_gui_log" | "content_log_panel/option_content_gui_log_show_on_errors" | "content_log_panel/option_content_log_gui_level" | "content_log_panel/content_log_buttons" | "content_log_panel/content_log_buttons/open_content_log_history" | "content_log_panel/content_log_buttons/content_log_section_label_spacer" | "content_log_panel/content_log_buttons/clear_content_log_files" | "content_log_panel/content_log_section_label_spacer_2" | "content_log_panel/content_log_location_label_header" | "content_log_panel/content_log_location_label" | "creator_section" | "creator_section/editor_toggle" | "creator_section/creator_toggles" | "creator_section/debugger_toggles_panel" | "creator_section/diagnostics_toggle_panel" | "creator_section/watchdog_toggles_panel" | "creator_section/device_info_toggles_panel" | "creator_section/content_log_panel" | "video_button" | "advanced_video_options_toggle" | "video_section_ore_ui" | "video_section_ore_ui/spacer_0" | "video_section_ore_ui/generic_label" | "video_section_ore_ui/spacer_1" | "video_section_ore_ui/gamepad_helper_label" | "video_menu_slider_step_progress" | "video_menu_slider_progress" | "video_menu_slider_bar_default" | "video_menu_customization_slider_control" | "video_menu_customization_slider_control/slider" | "video_menu_customization_slider_control/slider/slider_box" | "video_menu_customization_slider_control/slider/slider_bar_default" | "video_menu_customization_slider_control/slider/slider_bar_hover" | "video_menu_customization_option_slider" | "video_section" | "video_section/advanced_graphics_options_panel" | "video_section/advanced_graphics_options_panel/graphics_mode" | "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content" | "video_section/advanced_graphics_options_panel/spacer_0" | "video_section/advanced_graphics_options_panel/advanced_graphics_options_button" | "video_section/advanced_graphics_options_panel/advanced_graphics_options_section" | "video_section/spacer_1" | "video_section/graphics_api_dropdown" | "video_section/raytracing_render_distance_slider" | "video_section/raytracing_render_distance_slider/option_generic_core" | "video_section/deferred_render_distance_slider" | "video_section/deferred_render_distance_slider/option_generic_core" | "video_section/render_distance_slider" | "video_section/render_distance_slider/render_distance_warning" | "video_section/render_distance_slider/option_generic_core" | "video_section/render_distance_warning_text" | "video_section/render_distance_warning_text/render_distance_popup" | "video_section/spacer_2" | "video_section/brightness_slider" | "video_section/spacer_3" | "video_section/perspective_dropdown" | "video_section/spacer_4" | "video_section/fullscreen_toggle" | "video_section/spacer_5" | "video_section/option_toggle_hidehand" | "video_section/spacer_6" | "video_section/hide_paperdoll_toggle" | "video_section/spacer_7" | "video_section/option_toggle_hidehud" | "video_section/spacer_8" | "video_section/option_toggle_screen_animations" | "video_section/spacer_9" | "video_section/hud_opacity_slider" | "video_section/spacer_10" | "video_section/splitscreen_hud_opacity_slider" | "video_section/spacer_11" | "video_section/setup_safe_zone" | "video_section/setup_safe_zone/action_button" | "video_section/spacer_12" | "video_section/fov_slider" | "video_section/spacer_13" | "video_section/split_screen_dropdown" | "video_section/spacer_14" | "video_section/auto_save_icon_toggle" | "video_section/spacer_15" | "video_section/outline_selection_toggle" | "video_section/spacer_16" | "video_section/player_names_toggle" | "video_section/spacer_17" | "video_section/splitscreen_player_names_toggle" | "video_section/spacer_18" | "video_section/view_bobbing_toggle" | "video_section/spacer_19" | "video_section/camera_shake_toggle" | "video_section/spacer_20" | "video_section/fancy_leaves_toggle" | "video_section/spacer_21" | "video_section/fancy_bubbles_toggle" | "video_section/spacer_22" | "video_section/render_clouds_toggle" | "video_section/spacer_23" | "video_section/fancy_clouds_toggle" | "video_section/spacer_24" | "video_section/smooth_lighting_toggle" | "video_section/spacer_25" | "video_section/rendering_profile_option_slider" | "video_section/field_of_view_toggle" | "video_section/spacer_26" | "video_section/damage_bob_option_slider" | "video_section/spacer_26.5" | "video_section/super_fancy_panel" | "video_section/super_fancy_panel/super_fancy_section" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle" | "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle" | "video_section/ui_profile_dropdown" | "video_section/spacer_27" | "video_section/gui_scale_slider" | "video_section/gui_scale_slider/option_generic_core" | "video_section/spacer_28" | "video_section/gui_accessibility_scaling_toggle" | "video_section/gui_accessibility_scaling_toggle/option_generic_core" | "video_section/spacer_29" | "video_section/option_toggle_improved_input_response" | "video_section/option_toggle_improved_input_response/option_generic_core" | "video_section/spacer_30" | "video_section/frame_pacing_toggle" | "video_section/frame_pacing_toggle/option_generic_core" | "video_section/spacer_31" | "video_section/graphics_mode_switch_toggle" | "video_section/spacer_32" | "video_section/upscaling_toggle" | "video_section/spacer_33" | "video_section/max_framerate_slider" | "video_section/spacer_34" | "video_section/msaa_slider" | "video_section/spacer_35" | "video_section/texel_anti_aliasing_toggle" | "video_section/spacer_36" | "video_section/reset_button" | "max_framerate_slider" | "max_framerate_slider/option_generic_core" | "msaa_slider" | "upscaling_toggle" | "upscaling_toggle/option_generic_core" | "render_distance_warning_image" | "render_distance_warning" | "render_distance_warning/render_distance_warning_image" | "ui_profile_dropdown_content" | "split_screen_dropdown_content" | "third_person_dropdown_content" | "toast_notification_duration_dropdown_content" | "chat_message_duration_dropdown_content" | "file_storage_location_content" | "background" | "background/fill" | "background/border" | "left_button_label" | "right_button_label" | "realms_button_panel" | "realms_button_panel/pad_0" | "realms_button_panel/left_button_panel" | "realms_button_panel/left_button_panel/left_button" | "realms_button_panel/left_button_panel/left_button_loading" | "realms_button_panel/pad_1" | "realms_button_panel/right_button" | "realms_button_panel/pad_2" | "consumable_not_extendable" | "consumable_not_extendable/panel_content" | "consumable_not_extendable/panel_content/padded_icon_0" | "consumable_not_extendable/panel_content/limited_status_image" | "consumable_not_extendable/panel_content/padded_icon_1" | "consumable_not_extendable/panel_content/label_panel" | "consumable_not_extendable/panel_content/label_panel/name_label2" | "possible_store_mismatch" | "possible_store_mismatch/panel_content" | "possible_store_mismatch/panel_content/padded_icon_0" | "possible_store_mismatch/panel_content/limited_status_image" | "possible_store_mismatch/panel_content/padded_icon_1" | "possible_store_mismatch/panel_content/label_panel" | "possible_store_mismatch/panel_content/label_panel/name_label2" | "realms_subscription_stack" | "realms_subscription_stack/image_panel" | "realms_subscription_stack/image_panel/0" | "realms_subscription_stack/pad" | "realms_subscription_stack/info" | "realms_subscription_stack/info/realm_name" | "realms_subscription_stack/info/realms_desc_label" | "realms_subscription_stack/info/bottom_pad" | "realms_subscription_main" | "realms_subscription_main/black_background" | "realms_subscription_main/realms_plus_subscription_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel" | "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad" | "realms_subscription_panel" | "realms_subscription_panel/top_panel" | "realms_subscription_panel/pad_1" | "realms_subscription_panel/middle_panel" | "realms_subscription_panel/middle_panel/black_background" | "realms_subscription_panel/middle_panel/renews_text" | "realms_subscription_panel/pad_2" | "realms_subscription_panel/lower_panel" | "realms_subscription_panel/lower_panel/black_background" | "realms_subscription_panel/lower_panel/consumable_not_extendable" | "realms_subscription_panel/pad_3" | "realms_subscription_panel/platform_mismatch_container" | "realms_subscription_panel/platform_mismatch_container/black_background" | "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch" | "realms_subscription_panel/pad_4" | "realms_plus_subscription_panel" | "additional_subscription_panel" | "view_subscriptions_button" | "view_subscriptions_prerelease_section" | "view_subscriptions_prerelease_section/black_background" | "view_subscriptions_prerelease_section/renews_text" | "view_subscriptions_section" | "view_subscriptions_section/sunsetting_label" | "view_subscriptions_section/failed_loading_subscriptions_label" | "view_subscriptions_section/loading_subscriptions_label" | "view_subscriptions_section/no_active_subscriptions_panel" | "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions" | "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text" | "view_subscriptions_section/no_active_subscriptions_panel/background_panel" | "view_subscriptions_section/realms_plus_header_my_subscriptions" | "view_subscriptions_section/realms_plus_header_my_subscriptions/text" | "view_subscriptions_section/realms_plus_subscriptions_grid" | "view_subscriptions_section/csb_purchased_with_cancel" | "view_subscriptions_section/csb_purchased_with_buy" | "view_subscriptions_section/csb_purchased_padding" | "view_subscriptions_section/platform_mismatch_container" | "view_subscriptions_section/platform_mismatch_container/black_background" | "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch" | "view_subscriptions_section/csb_expiration_container" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding" | "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration" | "view_subscriptions_section/csb_expiration_container/background_panel" | "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding" | "view_subscriptions_section/additional_realms_subscriptions_grid" | "view_subscriptions_section/settings_additional_subscription_offers_section" | "view_subscriptions_section/pad_3" | "settings_additional_subscription_offers_section" | "settings_additional_subscription_offers_section/active_available_divider" | "settings_additional_subscription_offers_section/realms_plus_header_label" | "settings_additional_subscription_offers_section/pad_0" | "settings_additional_subscription_offers_section/additional_realms_buy_offer" | "settings_additional_subscription_offers_section/pad_8" | "settings_additional_subscription_offers_section/csb_buy_panel" | "accessibility_button" | "toast_notification_duration_label" | "toast_notification_duration_info_label" | "toast_notification_duration_info_edu_label" | "chat_message_duration_label" | "chat_message_duration_info_label" | "accessibility_section" | "accessibility_section/option_toggle0" | "accessibility_section/option_toggle1" | "accessibility_section/option_toggle2" | "accessibility_section/option_slider_0" | "accessibility_section/option_toggle3" | "accessibility_section/hud_text_background_opacity_slider" | "accessibility_section/chat_opacity_slider" | "accessibility_section/actionbar_text_background_opacity_slider" | "accessibility_section/camera_shake_toggle" | "accessibility_section/hide_endflash_toggle" | "accessibility_section/enable_dithering_blocks_toggle" | "accessibility_section/enable_dithering_mobs_toggle" | "accessibility_section/darkness_slider" | "accessibility_section/glint_strength_slider" | "accessibility_section/glint_speed_slider" | "accessibility_section/toast_notification_duration_options_panel" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre" | "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown" | "accessibility_section/chat_message_duration_options_panel" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre" | "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown" | "accessibility_section/gui_scale_slider" | "accessibility_section/gui_scale_slider/option_generic_core" | "accessibility_section/gui_accessibility_scaling_toggle" | "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core" | "accessibility_section/reset_button" | "accessibility_section_ore_ui" | "accessibility_section_ore_ui/spacer_0" | "accessibility_section_ore_ui/generic_label" | "accessibility_section_ore_ui/spacer_1" | "accessibility_section_ore_ui/gamepad_helper_label" | "accessibility_section_ore_ui/accessibility_button" | "sound_button" | "sound_section_ore_ui" | "sound_section_ore_ui/spacer_0" | "sound_section_ore_ui/generic_label" | "sound_section_ore_ui/spacer_1" | "sound_section_ore_ui/gamepad_helper_label" | "sound_section" | "sound_section/paddingMainVolume" | "sound_section/option_slider_0" | "sound_section/paddingDividerAudioSettings" | "sound_section/dividerAudioSettings" | "sound_section/dividerAudioSettings/section_divider" | "sound_section/paddingMusic" | "sound_section/option_slider_1" | "sound_section/paddingSound" | "sound_section/option_slider_2" | "sound_section/paddingAmbient" | "sound_section/option_slider_3" | "sound_section/paddingBlockVolume" | "sound_section/option_slider_4" | "sound_section/paddingHostile" | "sound_section/option_slider_5" | "sound_section/paddingNeutralVolume" | "sound_section/option_slider_6" | "sound_section/paddingPlayervolume" | "sound_section/option_slider_7" | "sound_section/paddingRecordVolume" | "sound_section/option_slider_8" | "sound_section/paddingWeatherVolume" | "sound_section/option_slider_9" | "sound_section/paddingTTSVolume" | "sound_section/option_slider_10" | "sound_section/paddingResetVolumes" | "sound_section/reset_button" | "sound_section/paddingEndOfList" | "language_button" | "language_grid_item" | "language_section" | "language_section/language_list_grid" | "language_section_ore_ui" | "language_section_ore_ui/spacer_0" | "language_section_ore_ui/generic_label" | "language_section_ore_ui/spacer_1" | "language_section_ore_ui/gamepad_helper_label" | "preview_button" | "preview_section" | "preview_section/spacer_0" | "preview_section/generic_label" | "preview_section/preview_store_launch_app1_button" | "preview_section/preview_store_launch_app2_button" | "override_date_panel" | "override_date_panel/year_text_box" | "override_date_panel/year_month_slash" | "override_date_panel/month_text_box" | "override_date_panel/month_day_slash" | "override_date_panel/day_text_box" | "override_date_panel/day_hour_slash" | "override_date_panel/hour_text_box" | "override_date_panel/hour_minute_slash" | "override_date_panel/minute_text_box" | "timezonetype_dropdown_content" | "date_options_panel" | "date_options_panel/padding0" | "date_options_panel/display_override_datetime_option_toggle" | "date_options_panel/option_toggle_date_override" | "date_options_panel/override_date_options_panel" | "override_date_options_panel" | "override_date_options_panel/override_date_options_background_panel" | "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle" | "override_date_options_panel/override_date_options_background_panel/select_dropdown" | "override_date_options_panel/override_date_options_background_panel/override_date_panel" | "override_date_options_panel/override_date_options_background_panel/padding1" | "override_date_options_panel/override_date_options_background_panel/override_time_scale_option" | "override_date_options_panel/override_date_options_background_panel/reset_time_button" | "override_date_options_panel/override_date_options_background_panel/padding2" | "debug_display_logged_error_panel" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other" | "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0" | "xbox_sandbox_panel" | "xbox_sandbox_panel/padding0" | "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows" | "xbox_sandbox_panel/display_override_xbox_sandbox_toggle" | "xbox_sandbox_panel/override_xbox_options_panel" | "override_xbox_options_panel" | "override_xbox_options_panel/override_xbox_options" | "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox" | "override_version_options_panel" | "override_version_options_panel/override_version_panel" | "override_version_options_panel/override_version_button_panel" | "override_version_options_panel/override_version_button_panel/update_override_version_button" | "override_version_options_panel/override_date_panel_bottom_padding" | "override_version_panel" | "override_version_panel/major_version_text_box" | "override_version_panel/first_dot" | "override_version_panel/minor_version_text_box" | "override_version_panel/second_dot" | "override_version_panel/patch_version_text_box" | "dot_label" | "debug_override_treatments_panel" | "debug_override_treatments_panel/override_treatments_panel_background" | "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override" | "debug_override_treatments_panel/override_treatments_panel_background/spacer_0" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default" | "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments" | "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel" | "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1" | "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2" | "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2" | "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid" | "debug_override_treatments_panel/override_treatments_panel_background/spacer_1" | "debug_override_configurations_panel" | "debug_override_configurations_panel/override_configurations_panel_background" | "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override" | "debug_override_configurations_panel/override_configurations_panel_background/spacer_0" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default" | "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations" | "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid" | "debug_override_realms_features_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background" | "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override" | "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default" | "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features" | "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label" | "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label" | "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid" | "configuration_grid_item" | "configuration_grid_item/configuration_id_panel" | "configuration_grid_item/configuration_id_panel/configuration_id" | "configuration_grid_item/remove_button" | "remove_configuration_icon" | "realms_feature_grid_item" | "realms_feature_grid_item/realms_feature_id_panel" | "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id" | "realms_feature_grid_item/disable_button" | "disable_realms_feature_icon" | "unused_realms_feature_grid_item" | "unused_realms_feature_grid_item/unused_realms_feature_id_panel" | "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id" | "unused_realms_feature_grid_item/enable_button" | "enable_realms_feature_icon" | "treatment_grid_item" | "treatment_grid_item/treatment_id_panel" | "treatment_grid_item/treatment_id_panel/treatment_id" | "treatment_grid_item/remove_button" | "remove_treatment_icon" | "unused_treatment_grid_item" | "unused_treatment_grid_item/unused_treatment_id_panel" | "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id" | "unused_treatment_grid_item/add_button" | "add_treatment_icon" | "debug_select_windows_store_panel" | "debug_select_windows_store_panel/select_store_dropdown" | "debug_select_windows_store_panel/stores_label" | "debug_select_windows_store_panel/sandbox_label" | "windows_store_dropdown_content" | "mock_http_panel" | "mock_http_panel/display_mock_http_panel_toggle" | "mock_http_panel/mock_http_panel_content" | "mock_http_panel_content" | "mock_http_panel_content/mock_http_panel_background" | "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button" | "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button" | "mock_http_panel_content/mock_http_panel_background/active_rules_label" | "mock_http_panel_content/mock_http_panel_background/rule_list" | "mock_http_panel_content/mock_http_panel_background/divider" | "mock_http_rule_list" | "mock_http_rule" | "mock_http_rule/rule_details_label" | "mock_http_rule/rule_spacer" | "automation_button" | "automation_section" | "automation_section/automation_tab_label" | "automation_section/padding" | "automation_section/automation_test_asset_sas_text_box" | "automation_section/automation_functional_test_tags_text_box" | "automation_section/automation_server_test_tags_text_box" | "automation_section/automation_unit_test_tags_text_box" | "automation_section/automation_broken_functional_test_tags_text_box" | "automation_section/automation_broken_server_test_tags_text_box" | "automation_section/automation_broken_unit_test_tags_text_box" | "automation_section/automation_repeat_count_text_box" | "automation_section/automation_soak_test_duration_minutes_text_box" | "automation_section/automation_repeat_failures_only_toggle" | "automation_section/automation_run_entire_server_test_group" | "automation_section/automation_testbuild_id_text_box" | "automation_section/automation_functional_test_block_input_toggle" | "automation_section/automation_server_test_assert_on_level_diff_toggle" | "discovery_debug_button" | "discovery_debug_section" | "discovery_debug_section/option_discovery_environment" | "discovery_debug_section/debug_override_discovery_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label" | "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3" | "debug_button" | "feature_toggle" | "debug_section" | "debug_section/options_for_qa_convenience" | "debug_section/options_for_qa_convenience_spacer" | "debug_section/option_toggle_dev_console_button_0" | "debug_section/option_toggle_assertions_debug_break" | "debug_section/option_toggle_assertions_show_dialog" | "debug_section/option_dev_show_display_logged_error" | "debug_section/display_logged_error_panel" | "debug_section/option_dev_force_trial_mode" | "debug_section/option_dev_force_trial_mode_spacer" | "debug_section/debug_overlay_pages_label" | "debug_section/debug_overlay_button_panel" | "debug_section/debug_overlay_button_panel/debug_overlay_previous_button" | "debug_section/debug_overlay_button_panel/debug_overlay_next_button" | "debug_section/pre_feature_toggles_label_spacer" | "debug_section/feature_toggles_label" | "debug_section/feature_toggles_label_spacer" | "debug_section/feature_toggles" | "debug_section/end_of_feature_toggles_label_spacer" | "debug_section/option_toggle_dev_disable_lan_signaling" | "debug_section/option_dropdown_nethernet_logging_verbosity" | "debug_section/option_dropdown_http_logging_verbosity" | "debug_section/option_dropdown_xsapi_logging_verbosity" | "debug_section/option_toggle_remote_imgui" | "debug_section/option_dropdown_0" | "debug_section/option_toggle_extra_debug_hud_info" | "debug_section/option_toggle_0_1" | "debug_section/option_toggle_0_2" | "debug_section/option_slider_0" | "debug_section/option_toggle_3" | "debug_section/option_toggle_4" | "debug_section/option_toggle_5" | "debug_section/option_toggle_6" | "debug_section/option_dropdown_server_chunk_map" | "debug_section/option_toggle_9" | "debug_section/option_toggle_disable_render_terrain" | "debug_section/option_toggle_disable_render_entities" | "debug_section/option_toggle_disable_render_blockentities" | "debug_section/option_toggle_disable_render_particles" | "debug_section/option_toggle_disable_render_sky" | "debug_section/option_toggle_disable_render_weather" | "debug_section/option_toggle_disable_render_hud" | "debug_section/option_toggle_disable_render_item_in_hand" | "debug_section/option_toggle_disable_render_main_menu_cubemap" | "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation" | "debug_section/leak_memory" | "debug_section/log_area" | "debug_section/log_priority" | "debug_section/option_toggle_build_info" | "debug_section/option_perf_turtle" | "debug_section/option_default_profiling_option" | "debug_section/option_toggle_7" | "debug_section/option_toggle_8" | "debug_section/option_toggle_game_tip" | "debug_section/option_toggle_10" | "debug_section/dev_disable_client_blob_cache_toggle" | "debug_section/dev_force_client_blob_cache_toggle" | "debug_section/devquality_dropdown" | "debug_section/dev_add_http_delay_seconds" | "debug_section/dev_show_latency_graph_toggle" | "debug_section/xbox_sandbox_panel" | "debug_section/multithreaded_rendering_toggle" | "debug_section/filewatcher_rendering_toggle" | "debug_section/enable_texture_hot_reloader_toggle" | "debug_section/mock_http_panel" | "debug_section/vsync_dropdown" | "debug_section/sunsetting_use_overrides_toggle" | "debug_section/padding_sunsetting" | "debug_section/sunseting_state_toggle" | "debug_section/sunsetting_tier_dropdown" | "debug_section/padding_sunsetting_2" | "debug_section/padding1" | "debug_section/copy_internal_settings_folder_to_external" | "debug_section/padding_reset_day_one" | "debug_section/reset_new_player_flow" | "debug_section/reset_day_one_experience" | "debug_section/option_text_edit_1" | "debug_section/option_text_edit_2" | "debug_section/option_text_edit_3" | "debug_section/reset_report_timer_option" | "debug_section/reset_online_safety_option" | "debug_section/reset_ip_safety_option" | "debug_section/padding_graphics_options" | "debug_section/option_shadersdk_service_ip" | "debug_section/option_shadersdk_service_port" | "debug_section/option_shadersdk_target_port" | "debug_section/padding_graphics_buttons" | "debug_section/trigger_graphics_device_loss" | "debug_section/allocate_texture_handles" | "debug_section/padding_deferred_debug" | "debug_section/deferred_platform_override" | "realms_debug_button" | "realms_debug_section" | "realms_debug_section/realms_menu_title" | "realms_debug_section/realms_title_spacer" | "realms_debug_section/feature_toggles_label" | "realms_debug_section/feature_toggles_label_spacer" | "realms_debug_section/feature_toggles" | "realms_debug_section/end_of_feature_toggles_label_spacer" | "realms_debug_section/realms_dev_toggles_title" | "realms_debug_section/realms_dev_toggle_spacer" | "realms_debug_section/realms_without_purchase_toggle" | "realms_debug_section/realms_debug_options_title" | "realms_debug_section/realms_debug_options_spacer" | "realms_debug_section/option_dropdown_1" | "realms_debug_section/option_dropdown_2" | "realms_debug_section/option_text_edit_0" | "realms_debug_section/realms_features_override_panel" | "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override" | "realms_debug_section/realms_features_override_panel/override_realms_features_panel" | "realms_debug_section/realms_debug_options_spacer_2" | "realms_feature_toggle" | "marketplace_debug_button" | "marketplace_debug_section" | "marketplace_debug_section/marketplace_feature_toggles_label" | "marketplace_debug_section/marketplace_feature_toggles_label_spacer" | "marketplace_debug_section/marketplace_feature_toggles" | "marketplace_debug_section/playfab_token_refresh_threshold" | "marketplace_debug_section/option_dropdown_skin_rotation_speed" | "marketplace_debug_section/option_toggle_all_skins_rotate" | "marketplace_debug_section/option_toggle_display_marketplace_document_id" | "marketplace_debug_section/option_toggle_display_platform_offer_check" | "marketplace_debug_section/version_options_panel" | "marketplace_debug_section/version_options_panel/option_version_override" | "marketplace_debug_section/version_options_panel/override_version_options_panel" | "marketplace_debug_section/select_windows_store_panel" | "marketplace_debug_section/date_options_panel" | "marketplace_debug_section/option_clear_store_cache_button" | "marketplace_debug_section/option_clear_all_cache_button" | "marketplace_debug_section/option_delete_all_personas_button" | "marketplace_debug_section/option_delete_legacy_personas_button" | "marketplace_debug_section/padding2" | "marketplace_debug_section/enable_coin_debug_switch_toggle" | "marketplace_debug_section/add_500_coins" | "marketplace_debug_section/add_100000_coins" | "marketplace_debug_section/padding3" | "marketplace_debug_section/reset_entitlements" | "marketplace_debug_section/reset_wallet" | "marketplace_feature_toggle" | "gatherings_debug_button" | "gatherings_debug_section" | "gatherings_debug_section/refresh_gatherings_button" | "gatherings_debug_section/spacer_1" | "gatherings_debug_section/clear_system_service_pack_cache_button" | "gatherings_debug_section/spacer_2" | "gatherings_debug_section/active_gathering_label" | "gatherings_debug_section/spacer_3" | "gatherings_debug_section/text_edit_filter_gatherings" | "gatherings_debug_section/spacer_4" | "gatherings_debug_section/available_gatherings_section" | "gathering_grid_item_content" | "gathering_grid_item_content/gathering_name" | "gathering_grid_item_content/gathering_uuid" | "gathering_item_template" | "gathering_item_template/gathering_item_button" | "available_gatherings_grid" | "available_gatherings_panel" | "available_gatherings_panel/available_label" | "available_gatherings_panel/gatherings_grid" | "available_gatherings_panel/spacing_gap" | "available_gatherings_section" | "available_gatherings_section/available_gatherings_panel" | "ui_debug_button" | "ui_feature_toggle" | "edu_debug_button" | "edu_feature_toggle" | "new_create_world_grid_item" | "new_edu_create_world_screen_grid_item" | "new_play_screen_grid_item" | "new_edit_world_screen_grid_item" | "new_player_permissions_screen_grid_item" | "new_send_invites_screen_grid_item" | "new_death_grid_item" | "new_bed_grid_item" | "ore_ui_gameplay_ui_grid_item" | "new_settings_screen_grid_item" | "ui_debug_section" | "ui_debug_section/ui_feature_toggles_label" | "ui_debug_section/ui_feature_toggles_info_label" | "ui_debug_section/ui_feature_toggles_label_spacer" | "ui_debug_section/ui_feature_toggles" | "ui_debug_section/end_of_ui_feature_toggles_label_divider" | "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider" | "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer" | "ui_debug_section/end_of_ui_feature_toggles_label_spacer" | "ui_debug_section/screen_override_label" | "ui_debug_section/screen_override_info_label" | "ui_debug_section/screen_override_label_spacer" | "ui_debug_section/new_edu_create_world_screen_radio_label" | "ui_debug_section/new_edu_create_world_screen_radio_label_spacer" | "ui_debug_section/new_edu_create_world_screen_radio_button" | "ui_debug_section/new_edu_create_world_screen_radio_button_spacer" | "ui_debug_section/new_play_screen_radio_label" | "ui_debug_section/new_play_screen_radio_label_spacer" | "ui_debug_section/new_play_screen_radio_button" | "ui_debug_section/new_play_screen_radio_button_spacer" | "ui_debug_section/new_edit_world_screen_radio_label" | "ui_debug_section/new_edit_world_screen_radio_label_spacer" | "ui_debug_section/new_edit_world_screen_radio_button" | "ui_debug_section/new_edit_world_screen_radio_button_spacer" | "ui_debug_section/new_send_invites_radio_label" | "ui_debug_section/new_send_invites_screen_radio_label_spacer" | "ui_debug_section/new_send_invites_screen_radio_button" | "ui_debug_section/new_send_invites_screen_radio_button_spacer" | "ui_debug_section/new_death_screen_radio_label" | "ui_debug_section/new_death_screen_radio_label_spacer" | "ui_debug_section/new_death_screen_radio_button" | "ui_debug_section/new_death_screen_radio_button_spacer" | "ui_debug_section/new_bed_screen_radio_label" | "ui_debug_section/new_bed_screen_radio_label_spacer" | "ui_debug_section/new_bed_screen_radio_button" | "ui_debug_section/new_bed_screen_radio_button_spacer" | "ui_debug_section/ore_ui_gameplay_ui_radio_label" | "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer" | "ui_debug_section/ore_ui_gameplay_ui_radio_button" | "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer" | "ui_debug_section/end_of_ui_screen_override_divider" | "ui_debug_section/end_of_ui_screen_override_divider/section_divider" | "ui_debug_section/end_of_ui_sceen_override_divider_spacer" | "ui_debug_section/new_settings_screen_radio_label" | "ui_debug_section/new_settings_screen_radio_label_spacer" | "ui_debug_section/new_settings_screen_radio_button" | "ui_debug_section/new_settings_screen_radio_button_spacer" | "ui_debug_section/screen_opt_in_options_label" | "ui_debug_section/screen_opt_in_info_label" | "ui_debug_section/screen_opt_in_options_label_spacer" | "ui_debug_section/end_of_ui_screen_opt_in_divider" | "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider" | "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer" | "ui_debug_section/other_ui_options_label" | "ui_debug_section/other_ui_options_label_spacer" | "ui_debug_section/option_toggle_default_font_override" | "ui_debug_section/option_toggle_dev_show_tcui_replacement" | "ui_debug_section/option_toggle_use_mobile_data_blocked_modal" | "ui_debug_section/ui_feature_toggles_spacer" | "ui_debug_section/option_show_touch_control_selection_screen" | "ui_debug_section/option_reset_on_start" | "ui_debug_section/option_slider_drag_dwell" | "ui_debug_section/option_slider_stack_splitting" | "ui_debug_section/reset_render_distance_warning_modal_label" | "ui_debug_section/reset_render_distance_warning_modal_label_spacer" | "ui_debug_section/reset_render_distance_warning_modal" | "ui_debug_section/reset_render_distance_warning_modal_spacer" | "ui_debug_section/ore_ui_developer_pages_divider" | "ui_debug_section/ore_ui_developer_pages_divider/section_divider" | "ui_debug_section/ore_ui_developer_pages_spacer" | "ui_debug_section/open_ore_ui_label" | "ui_debug_section/open_ore_ui_info_label" | "ui_debug_section/open_ore_ui_label_spacer" | "ui_debug_section/open_ore_ui_docs" | "ui_debug_section/open_ore_ui_tests" | "ui_debug_section/open_ore_ui_perf" | "ui_debug_section/open_ore_ui_test_modal" | "ui_debug_section/open_ore_ui_tests_spacer" | "edu_debug_section" | "edu_debug_section/edu_feature_toggles_label" | "edu_debug_section/edu_feature_toggles_label_spacer" | "edu_debug_section/edu_demo" | "edu_debug_section/edu_ad_debug_panel" | "edu_debug_section/edu_ad_token_refresh_threshold" | "edu_debug_section/edu_ad_max_signin_token_refresh" | "edu_debug_section/edu_ad_max_graph_token_refresh" | "edu_debug_section/edu_environment_divider" | "edu_debug_section/edu_environment_divider/section_divider" | "edu_debug_section/edu_environment_spacer" | "edu_debug_section/edu_env_dropdown" | "flighting_debug_button" | "flighting_debug_section" | "flighting_debug_section/treatment_override_panel" | "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override" | "flighting_debug_section/treatment_override_panel/override_treatments_panel" | "flighting_debug_section/configuration_override_panel" | "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override" | "flighting_debug_section/configuration_override_panel/override_configurations_panel" | "how_to_play_button" | "how_to_play_section" | "how_to_play_section/spacer_0" | "how_to_play_section/generic_label" | "how_to_play_section/spacer_1" | "how_to_play_section/gamepad_helper_label" | "dev_xbox_environment_dropdown_content" | "dev_discovery_environment_dropdown_content" | "dev_service_override_type_dropdown_content" | "dev_realms_environment_dropdown_content" | "dev_realms_sku_dropdown_content" | "default_profiling_group_dropdown_content" | "dev_nethernet_logging_verbosity_dropdown_content" | "dev_http_logging_verbosity_dropdown_content" | "dev_xsapi_logging_verbosity_dropdown_content" | "dev_debug_speed_multiplier_options" | "dev_debug_hud_dropdown_content" | "dev_chunkMapMode_content" | "dev_quality_dropdown_content" | "vysnc_dropdown_content" | "deferred_platform_override_dropdown_content" | "dev_education_environment_dropdown_content" | "dev_sunsetting_tier_dropdown_content" | "graphics_api_dropdown_content" | "graphics_mode_dropdown_content" | "upscaling_mode_dropdown_content" | "advanced_graphics_options_button_content" | "advanced_graphics_options_button_content/advanced_graphics_options_label" | "advanced_graphics_options_button_content/fill_pad" | "advanced_graphics_options_button_content/plus_panel" | "advanced_graphics_options_button_content/plus_panel/plus" | "advanced_graphics_options_button_content/minus_panel" | "advanced_graphics_options_button_content/minus_panel/minus" | "advanced_graphics_options_section" | "advanced_graphics_options_section/spacer_0" | "advanced_graphics_options_section/gamma_calibration" | "advanced_graphics_options_section/spacer_1" | "advanced_graphics_options_section/max_framerate_slider" | "advanced_graphics_options_section/spacer_2" | "advanced_graphics_options_section/msaa_slider" | "advanced_graphics_options_section/spacer_3" | "advanced_graphics_options_section/shadow_quality_slider" | "advanced_graphics_options_section/spacer_4" | "advanced_graphics_options_section/point_light_shadow_quality_slider" | "advanced_graphics_options_section/spacer_5" | "advanced_graphics_options_section/point_light_loding_quality_slider" | "advanced_graphics_options_section/spacer_6" | "advanced_graphics_options_section/cloud_quality_slider" | "advanced_graphics_options_section/spacer_7" | "advanced_graphics_options_section/volumetric_fog_quality_slider" | "advanced_graphics_options_section/spacer_8" | "advanced_graphics_options_section/reflections_quality_slider" | "advanced_graphics_options_section/spacer_9" | "advanced_graphics_options_section/bloom_strength" | "advanced_graphics_options_section/spacer_10" | "advanced_graphics_options_section/upscaling_toggle" | "advanced_graphics_options_section/spacer_11" | "advanced_graphics_options_section/upscaling_mode" | "advanced_graphics_options_section/spacer_12" | "advanced_graphics_options_section/upscaling_percentage" | "advanced_graphics_options_section/fancy_clouds_toggle" | "advanced_graphics_options_section/spacer_13" | "advanced_graphics_options_section/smooth_lighting_toggle"; -export type RealmsWorldSection = "realm_name_edit" | "world_name_edit" | "realm_description_edit" | "download_world_button" | "upload_world_button" | "reset_world_button" | "manage_feed_button" | "club_info_label" | "difficulty_dropdown" | "game_mode_dropdown" | "panel_content" | "panel_content/new_edit_world_opt_in_panel" | "panel_content/new_edit_world_opt_in_panel/panel_title" | "panel_content/new_edit_world_opt_in_panel/panel_text" | "panel_content/new_edit_world_opt_in_panel/opt_in_button" | "panel_content/new_edit_world_opt_in_divider" | "panel_content/new_edit_world_opt_in_divider/section_divider" | "panel_content/option_info_label" | "panel_content/hardcore_info_label" | "panel_content/realm_name_edit" | "panel_content/world_name_edit" | "panel_content/realm_description_edit" | "panel_content/difficulty_dropdown" | "panel_content/game_mode_dropdown" | "panel_content/is_hardcore_toggle" | "panel_content/world_options_label" | "panel_content/pvp_toggle" | "panel_content/show_coordinates_toggle" | "panel_content/locator_bar_toggle" | "panel_content/show_days_played_toggle" | "panel_content/fire_spreads_toggle" | "panel_content/recipes_unlock_toggle" | "panel_content/tnt_explodes_toggle" | "panel_content/respawn_blocks_explode_toggle" | "panel_content/mob_loot_toggle" | "panel_content/natural_regeneration_toggle" | "panel_content/tile_drops_toggle" | "panel_content/player_sleep_toggle" | "panel_content/player_sleep_percentage_slider" | "panel_content/immediate_respawn_toggle" | "panel_content/respawn_radius" | "panel_content/world_cheats_label" | "panel_content/allow_cheats_toggle" | "panel_content/daylight_cycle_toggle" | "panel_content/keep_inventory_toggle" | "panel_content/mob_spawn_toggle" | "panel_content/mob_griefing_toggle" | "panel_content/entities_drop_loot_toggle" | "panel_content/weather_cycle_toggle" | "panel_content/command_blocks_enabled_toggle" | "panel_content/random_tick_speed" | "panel_content/download_world_button" | "panel_content/padding_0" | "panel_content/upload_world_button" | "panel_content/padding_1" | "panel_content/reset_world_button" | "panel_content/padding_2" | "panel_content/club_info_label" | "panel_content/manage_feed_button"; -export type SettingsCommon = "arrow_image" | "subsection_title" | "subsection_title/spacer_0" | "subsection_title/sizer_0" | "subsection_title/sizer_0/title" | "subsection_title/spacer_1" | "subsection_title/sizer_1" | "subsection_title/sizer_1/section_divider" | "action_button" | "action_button_dark_text" | "link_button" | "option_group_label" | "option_group_label/text" | "option_group_header" | "option_group_header/text" | "option_group_spaced_label" | "option_group_spaced_label/text" | "option_group_spaced_header" | "option_group_spaced_header/text" | "option_group_section_divider" | "option_group_section_divider/background" | "option_generic" | "option_generic/option_generic_core" | "white_label" | "option_generic_core" | "option_generic_core/two_line_layout" | "option_generic_core/two_line_layout/option_label_panel" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02" | "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label" | "option_generic_core/two_line_layout/option_label_panel/option_tooltip" | "option_generic_core/two_line_layout/spacer" | "option_generic_core/two_line_layout/option_descriptive_text_0" | "option_generic_core/two_line_layout/spacer2" | "option_generic_core/one_line_layout" | "option_generic_core/one_line_layout/option_label_subpanel_01" | "option_generic_core/one_line_layout/option_label_subpanel_01/option_label" | "option_generic_core/one_line_layout/option_label_subpanel_02" | "option_generic_core/one_line_layout/option_label_subpanel_02/option_label" | "option_generic_core/one_line_layout/option_descriptive_text" | "option_generic_core/one_line_layout/option_tooltip" | "option_generic_core/spacer" | "option_generic_core_label" | "option_generic_tooltip_image" | "option_generic_tooltip_top_popup" | "option_generic_tooltip_bottom_popup" | "option_generic_tooltip" | "option_generic_tooltip/focus_detection_input_panel_two_line_layout" | "option_generic_tooltip/hover_detection_input_panel" | "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image" | "option_generic_tooltip/option_generic_tooltip_top_popup" | "option_generic_tooltip/option_generic_tooltip_bottom_popup" | "option_text_edit_control" | "option_text_edit_control_with_button" | "option_text_edit_control_with_button/text_box" | "option_text_edit_control_with_button/button" | "option_text_edit_control_with_text_button" | "option_text_edit_control_with_text_button/text_box" | "option_text_edit_control_with_text_button/button" | "option_toggle_state_template" | "option_toggle_on" | "option_toggle_off" | "option_toggle_on_hover" | "option_toggle_off_hover" | "option_toggle_on_locked" | "option_toggle_off_locked" | "option_toggle_control" | "checkbox_visuals_unchecked" | "checkbox_visuals_checked" | "checkbox_visuals_unchecked_locked" | "checkbox_visuals_checked_locked" | "checkbox_visuals_unchecked_hover" | "checkbox_visuals_checked_hover" | "checkbox_visuals" | "checkbox_visuals/checkbox_image" | "checkbox_visuals/checkbox_label" | "checkbox_visuals/accessibility_selection_highlight" | "checkbox_with_highlight_and_label" | "radio_visuals_unchecked" | "radio_visuals_checked" | "radio_visuals_unchecked_locked" | "radio_visuals_checked_locked" | "radio_visuals_unchecked_hover" | "radio_visuals_checked_hover" | "radio_visuals" | "radio_visuals/radio_image" | "radio_visuals/radio_label" | "radio_visuals/accessibility_selection_highlight" | "radio_with_label_core" | "option_radio_group_control" | "option_radio_group_control/0" | "radio_with_label" | "radio_with_label/radio_with_label_core" | "radio_with_label_and_icon" | "radio_with_label_and_icon/radio_with_label_core" | "radio_with_label_and_icon/radio_with_label_icon" | "radio_with_label_and_content_unchecked" | "radio_with_label_and_content_checked" | "radio_with_label_and_content_unchecked_locked" | "radio_with_label_and_content_checked_locked" | "radio_with_label_and_content_unchecked_hover" | "radio_with_label_and_content_checked_hover" | "radio_with_label_and_content_stack_item" | "radio_with_label_and_content" | "radio_with_label_and_content/radio_background" | "radio_with_label_and_content/radio_item_with_description_stack" | "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label" | "radio_with_label_and_content/radio_item_with_description_stack/radio_description" | "radio_item_with_label_and_content_stack" | "radio_item_with_label_and_content_stack/initial_padding" | "radio_item_with_label_and_content_stack/radio_image_panel" | "radio_item_with_label_and_content_stack/radio_image_panel/image" | "radio_item_with_label_and_content_stack/radio_to_content_padding" | "radio_item_with_label_and_content_stack/radio_content_panel" | "radio_item_with_label_and_content_stack/radio_content_panel/radio_image" | "radio_item_with_label_and_content_stack/content_to_label_padding" | "radio_item_with_label_and_content_stack/radio_label_panel" | "radio_item_with_label_and_content_stack/radio_label_panel/radio_label" | "radio_description_panel" | "radio_description_panel/description" | "radio_description" | "radio_item_with_label_and_content" | "radio_item_with_label_and_content/radio_with_label_core" | "option_slider_control" | "option_slider_control/slider" | "default_options_dropdown_toggle_button_state_content" | "default_options_dropdown_toggle_button_state_content/left_padding" | "default_options_dropdown_toggle_button_state_content/option_content" | "default_options_dropdown_toggle_button_state_content/option_content_padding" | "default_options_dropdown_toggle_button_state_content/label_panel" | "default_options_dropdown_toggle_button_state_content/label_panel/label" | "default_options_dropdown_toggle_button_state_content/arrow_panel" | "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image" | "default_options_dropdown_toggle_button_state_content/right_padding" | "options_dropdown_toggle_control" | "options_dropdown_dark_toggle_control" | "option_dropdown_control" | "option_dropdown_control/dropdown" | "option_dropdown_control_no_scroll" | "option_info_label_with_icon" | "option_info_label_with_icon/control" | "option_info_label_with_icon/icon_panel" | "option_info_label_with_icon/icon_panel/icon_image" | "option_info_label_with_icon/icon_panel/padding2" | "option_info_label_icon" | "option_icon_label" | "option_info_label_with_bulb" | "option_info_label_with_bulb/stack_panel" | "option_info_label_with_bulb/stack_panel/padding1" | "option_info_label_with_bulb/stack_panel/bulb_panel" | "option_info_label_with_bulb/stack_panel/bulb_panel/padding1" | "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image" | "option_info_label_with_bulb/stack_panel/bulb_panel/padding2" | "option_info_label_with_bulb/stack_panel/padding2" | "option_info_label_with_bulb/stack_panel/label_panel" | "option_info_label_with_bulb/stack_panel/label_panel/info_label1" | "option_info_label_with_bulb/stack_panel/label_panel/padding2" | "option_info_label_with_bulb/stack_panel/label_panel/info_label2" | "option_info_label_with_bulb/stack_panel/padding3" | "option_info_label_with_image" | "option_info_label_with_image/control" | "option_info_label_image" | "option_toggle" | "option_radio_group" | "option_radio_dropdown_group" | "option_radio_dropdown_group/radio_control_group" | "option_text_edit" | "option_text_edit_with_button" | "option_text_edit_with_text_button" | "option_slider" | "option_dropdown" | "option_dropdown_no_scroll" | "option_custom_control" | "option_info_label" | "dynamic_dialog_screen" | "settings_content" | "settings_content/background" | "settings_content/stack_panel" | "settings_content/stack_panel/content_panel" | "settings_content/stack_panel/content_panel/common_panel" | "settings_content/stack_panel/content_panel/container" | "settings_content/popup_dialog_factory" | "toggle_button_control" | "toggle_button_control/glyph" | "toggle_button_control/glyph_color" | "toggle_button_control/progress_loading_bars" | "toggle_button_control/tab_button_text" | "section_toggle_base" | "section_title_label" | "dialog_title_label" | "dialog_titles" | "dialog_titles/left_padding" | "dialog_titles/dialog_title_label" | "dialog_titles/center_padding" | "dialog_titles/section_title_label" | "dialog_titles/right_padding_is_always_right" | "dialog_content" | "dialog_content/dialog_titles" | "dialog_content/selector_area" | "dialog_content/content_area" | "dialog_content/section_divider" | "selector_group_label" | "scrollable_selector_area_content" | "selector_area" | "selector_area/scrolling_panel" | "content_area" | "content_area/control" | "content_area/control/header_panel" | "content_area/control/header_panel/content" | "content_area/control/scrolling_panel" | "content_area/control/footer_panel" | "content_area/control/footer_panel/content" | "section_divider" | "screen_base"; -export type WorldSection = "selector_pane_content" | "selector_pane_content/world_snapshot_image" | "selector_pane_content/world_snapshot_image/thumbnail" | "selector_pane_content/world_snapshot_image/thumbnail/border" | "selector_pane_content/play_or_create_panel" | "selector_pane_content/play_or_host_panel" | "selector_pane_content/spacer" | "selector_pane_content/server_settings_visibility_panel" | "selector_pane_content/server_settings_visibility_panel/selector_group_label_0" | "selector_pane_content/server_settings_visibility_panel/server_settings_button" | "selector_pane_content/server_settings_visibility_panel/server_spacer" | "selector_pane_content/selector_group_label_1" | "selector_pane_content/game_button" | "selector_pane_content/spacer_01" | "selector_pane_content/classroom_button" | "selector_pane_content/spacer_02" | "selector_pane_content/switch_game_button" | "selector_pane_content/spacer_03" | "selector_pane_content/multiplayer_button" | "selector_pane_content/spacer_04" | "selector_pane_content/edu_cloud_button" | "selector_pane_content/spacer_05" | "selector_pane_content/debug_button" | "launch_world_button_stack_def" | "play_or_create_stack_bedrock" | "play_or_create_stack_bedrock/create_or_play_button" | "play_or_create_stack_bedrock/play_on_realm_button" | "edu_play_host_button" | "play_or_host_stack_edu" | "play_or_host_stack_edu/edu_play_button" | "play_or_host_stack_edu/edu_host_button" | "addons_selector_panel" | "addons_selector_panel/spacer_01" | "addons_selector_panel/selector_group_label_2" | "addons_selector_panel/level_texture_pack_button" | "addons_selector_panel/spacer_02" | "addons_selector_panel/addon_button" | "server_settings_button" | "server_section" | "game_button" | "export_world_button" | "delete_world_button" | "export_template_button" | "copy_world_button" | "edit_world_manipulation_buttons" | "edit_world_manipulation_buttons/export" | "edit_world_manipulation_buttons/padding" | "edit_world_manipulation_buttons/delete" | "game_section" | "game_section/new_edit_world_opt_in_panel" | "game_section/new_edit_world_opt_in_panel/panel_title" | "game_section/new_edit_world_opt_in_panel/panel_text" | "game_section/new_edit_world_opt_in_panel/opt_in_button" | "game_section/new_edit_world_opt_in_divider" | "game_section/new_edit_world_opt_in_divider/section_divider" | "game_section/unlock_template_options_panel" | "game_section/unlock_template_options_panel/option_info_label" | "game_section/unlock_template_options_panel/unlock_template_options_button" | "game_section/option_info_label" | "game_section/hardcore_info_label" | "game_section/world_settings_label" | "game_section/option_text_edit_0" | "game_section/project_section_divider_1" | "game_section/project_header_label" | "game_section/project_section_divider_2" | "game_section/project_spacer" | "game_section/option_text_edit_1" | "game_section/export_settings_section_divider_1" | "game_section/export_settings_header_label" | "game_section/export_settings_header_description" | "game_section/export_settings_section_divider_2" | "game_section/export_settings_spacer" | "game_section/option_dropdown_0" | "game_section/option_dropdown_1" | "game_section/is_hardcore_toggle" | "game_section/option_dropdown_2" | "game_section/world_preferences_label" | "game_section/starting_map_toggle" | "game_section/bonus_chest_toggle" | "game_section/option_dropdown_permissions" | "game_section/option_dropdown_3" | "game_section/level_seed_selector_edu" | "game_section/level_seed_selector" | "game_section/level_seed_selector_trial" | "game_section/server_sim_distance_slider" | "game_section/world_options_label" | "game_section/pvp_toggle" | "game_section/show_coordinates_toggle" | "game_section/locator_bar_toggle" | "game_section/show_days_played_toggle" | "game_section/fire_spreads_toggle" | "game_section/recipes_unlock_toggle" | "game_section/tnt_explodes_toggle" | "game_section/respawn_blocks_explode_toggle" | "game_section/mob_loot_toggle" | "game_section/natural_regeneration_toggle" | "game_section/tile_drops_toggle" | "game_section/player_sleep_toggle" | "game_section/player_sleep_percentage_slider" | "game_section/immediate_respawn_toggle" | "game_section/respawn_radius" | "game_section/experimental_toggles_label" | "game_section/experimental_toggles_label_info" | "game_section/experimental_toggles" | "game_section/world_cheats_label" | "game_section/allow_cheats_toggle" | "game_section/education_toggle" | "game_section/always_day_toggle" | "game_section/daylight_cycle_toggle" | "game_section/keep_inventory_toggle" | "game_section/mob_spawn_toggle" | "game_section/mob_griefing_toggle" | "game_section/entities_drop_loot_toggle" | "game_section/weather_cycle_toggle" | "game_section/command_blocks_enabled_toggle" | "game_section/random_tick_speed" | "game_section/world_management_label" | "game_section/convert_to_infinite_panel" | "game_section/convert_to_infinite_panel/convert_to_infinite_button" | "game_section/delete_button" | "game_section/button_panel" | "game_section/button_panel/manipulation_controls" | "game_section/export_template_panel" | "game_section/export_template_panel/padding" | "game_section/export_template_panel/template_version" | "game_section/export_template_panel/template_buttons" | "game_section/export_template_panel/template_buttons/template_image_picker_button" | "game_section/export_template_panel/template_buttons/padding" | "game_section/export_template_panel/template_buttons/template_localization_picker_button" | "game_section/export_template_panel/export_template" | "game_section/clear_player_data_panel" | "game_section/clear_player_data_panel/padding" | "game_section/clear_player_data_panel/clear_player_data_button" | "game_section/copy_world_panel" | "game_section/copy_world_panel/copy_world" | "game_section/upload_download_slot_panel" | "game_section/upload_download_slot_panel/upload_download_slot_button" | "game_section/replace_slot_panel" | "game_section/replace_slot_panel/replace_slot_button" | "level_texture_pack_button" | "level_texture_pack_section" | "addon_button" | "addon_section" | "world_game_mode_dropdown_content" | "xbl_broadcast_dropdown_content" | "platform_broadcast_dropdown_content" | "player_game_mode_dropdown_content" | "world_type_dropdown_content" | "world_difficulty_dropdown_content" | "multiplayer_button" | "cross_platform_warning_label" | "multiplayer_section" | "multiplayer_section/multiplayer_game_toggle" | "multiplayer_section/platform_settings_dropdown" | "multiplayer_section/xbl_settings_dropdown" | "multiplayer_section/server_visible_toggle" | "multiplayer_section/general_multiplayer_warning_label" | "multiplayer_section/open_uri_button" | "multiplayer_section/platform_multiplayer_warning_label" | "multiplayer_section/xbl_multiplayer_warning_label" | "option_text_edit_mock_with_button" | "option_text_edit_mock_control_with_button" | "option_text_edit_mock_control_with_button/trial_text_box_button" | "option_text_edit_mock_control_with_button/seed_arrow_button" | "experimental_toggle" | "open_account_setting_button" | "edu_cloud_button" | "edu_cloud_section" | "edu_cloud_section/edu_cloud_label" | "edu_cloud_section/cloud_file_name" | "edu_cloud_section/cloud_file_last_changed" | "edu_cloud_section/cloud_upload_toggle" | "edu_cloud_section/cloud_help_wrapper_panel" | "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button" | "edu_cloud_section/cloud_help_wrapper_panel/padded_icon" | "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon" | "debug_button" | "debug_section" | "debug_section/flat_nether_toggle" | "debug_section/game_version_override_toggle" | "debug_section/game_version_override_textbox" | "debug_section/spawn_dimension_dropdown" | "debug_section/spawn_biome_dropdown" | "debug_section/biome_override_dropdown" | "debug_section/base_game_version_debug_text" | "debug_spawn_dimension_dropdown_content" | "debug_spawn_biome_dropdown_content" | "debug_biome_override_dropdown_content" | "editor_edit_world_manipulation_buttons_content" | "editor_edit_world_manipulation_buttons_content/export_as_project" | "editor_edit_world_manipulation_buttons_content/padding" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding" | "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template" | "editor_edit_world_manipulation_buttons_content/padding_2" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding" | "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project" | "editor_edit_world_manipulation_buttons"; -export type SocialSection = "party_button" | "party_section" | "party_section/party_invite_filter_dropdown" | "party_section/party_invite_reset_default_padding" | "party_section/party_invite_send_privileges_dropdown" | "party_section/party_privacy_default_padding" | "party_section/party_privacy_dropdown" | "party_section/party_privacy_label_wrapper" | "party_section/party_settings_reset_default_button_default_padding" | "party_section/party_settings_reset_default_button" | "party_section/microsoft_account_settings_divider" | "party_section/microsoft_account_settings_divider/section_divider" | "party_section/microsoft_account_settings_header" | "party_section/microsoft_account_settings_padding" | "party_section/microsoft_account_settings_label_wrapper" | "party_section/privacy_and_online_safety_button_padding" | "party_section/privacy_and_online_safety_button" | "party_section/microsoft_account_settings_ending_padding" | "party_privacy_label" | "microsoft_account_settings_label" | "platform_settings_label" | "party_invite_filter_dropdown_content" | "party_privacy_dropdown_content" | "party_invite_send_privileges_dropdown_content"; -export type SidebarNavigation = "empty_panel" | "empty_fill_x_panel" | "empty_default_panel" | "vertical_padding_panel" | "sidebar_bg" | "sidebar_divider" | "sidebar_divider_panel" | "sidebar_divider_panel/sidebar_divider" | "toggle_content" | "toggle_content/toggle_content" | "sidebar_section_scroll_panel" | "sidebar_bg_content_panel" | "sidebar_bg_content_panel/sidebar_bg_content" | "sidebar_nav_toggle_image" | "sidebar_nav_toggle_image_panel" | "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image" | "sidebar_nav_toggle_image_panel/gamepad_helper_icon" | "gamepad_helper_icon_start_toggle" | "verbose_view_toggle_content" | "verbose_view_toggle_content/left_padding" | "verbose_view_toggle_content/sidebar_nav_toggle_image" | "sidebar_toggle_bg" | "sidebar_toggle" | "sidebar_option_toggle" | "simple_sidebar_toggle" | "verbose_toggle" | "verbose_sidebar_option" | "verbose_expand_option" | "verbose_dropdown_option" | "verbose_dropdown_expanded_option" | "verbose_sidebar_expand_section_bg" | "verbose_sidebar_expand_section_panel" | "verbose_expand_section_panel" | "verbose_view_toggle" | "sidebar_option_factory" | "sidebar_option_factory_panel" | "sidebar_option_factory_panel/sidebar_option_factory" | "verbose_button_content" | "verbose_button_content/button_label" | "verbose_button" | "verbose_nav_button_panel" | "verbose_nav_button_panel/verbose_nav_button" | "verbose_screen_nav_button" | "verbose_screen_nav_option_panel" | "verbose_screen_nav_option_panel/verbose_nav_button" | "sidebar_option_factory_scroll_panel" | "sidebar_screen_nav_option_factory_panel" | "sidebar_screen_nav_option_factory_panel/fill_panel" | "sidebar_screen_nav_option_factory_panel/button" | "sidebar_screen_nav_option_factory_panel/padding" | "sidebar_screen_nav_option_factory_panel/platform_icon_padding" | "root_section_content_panel" | "root_section_content_panel/sidebar_option_factory" | "root_section_content_panel/verbose_sidebar_screen_Nav" | "edge_bar" | "verbose_view_stack_panel" | "verbose_view_stack_panel/verbose_view_toggle" | "sidebar_section" | "sidebar_section/left_edge_bar" | "sidebar_section/verbose_view_stack_panel" | "sidebar_section/right_edge_bar" | "root_section" | "verbose_root_section" | "simple_root_section" | "simple_root_section/verbose_view_toggle" | "simple_root_section/root_section" | "sidebar_section_factory_panel" | "sidebar_section_factory_panel/sidebar_section_factory" | "sidebar_view_content_panel" | "sidebar_view_content_panel/view_stack_panel" | "sidebar_view_content_panel/view_stack_panel/sidebar_view" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default" | "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover" | "sidebar_view_content_panel/verbose_view_exit" | "verbose_sidebar_view_modal" | "sidebar_views" | "sidebar_views/sidebar_view_conent" | "sidebar_views/sidebar_view_conent/simple_sidebar_view" | "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal" | "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view" | "sidebar_empty_panel" | "content_view" | "content_view/content_view_stack" | "content_view/content_view_stack/sidebar_view_stack" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default" | "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover" | "content_view/content_view_stack/sidebar_view_stack/divider" | "content_view/content_view_stack/main_view_content" | "content_view/content_view_stack/main_view_content/screen_content" | "sidebar_view" | "sidebar_view/sidebar_content" | "sidebar_view/content_view" | "sidebar_view/progress_loading" | "platform_store_icon_spacing"; -export type Sign = "sign_background" | "hanging_sign_background" | "base_sign_text_multiline" | "regular_sign_text_multiline" | "hanging_sign_text_multiline" | "sign_screen_content" | "sign_screen_content/input_eating_panel" | "sign_screen_content/input_eating_panel/text_edit" | "sign_screen_content/invisible_exit_background" | "sign_screen"; -export type SimpleInprogress = "title_text" | "main_panel" | "main_panel/common_panel" | "main_panel/title" | "main_panel/main_content" | "main_panel/progress_loading_bars" | "simple_inprogress_screen" | "simple_inprogress_screen_content" | "simple_inprogress_screen_content/root_panel" | "simple_inprogress_screen_content/root_panel/main_panel"; -export type SkinPackPurchase = "cycle_pack_left_button" | "cycle_pack_right_button" | "skin_model" | "skin_model/paper_doll" | "skin_lock" | "skin_focus_border" | "skin_focus_border/equip" | "skin_button_panel_gamepad" | "skin_button_panel_gamepad/skin_button" | "skin_button_panel_gamepad/skin_button/hover" | "skin_button_panel_gamepad/skin_button/pressed" | "skin_button_panel_not_gamepad" | "skin_button_panel_not_gamepad/skin_button" | "skin_button_panel_not_gamepad/skin_button/hover" | "skin_button_panel_not_gamepad/skin_button/pressed" | "skin_button_panel_not_gamepad/equip_button" | "skin_button_panel" | "skin_button_panel/gamepad" | "skin_button_panel/not_gamepad" | "equip_button_state_panel" | "equip_button_state_panel/button_panel" | "equip_button_text" | "equip_button_text/text" | "skins_grid_item" | "skins_grid_item/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "skins_panel" | "skins_panel/bg" | "skins_panel/bg/left" | "skins_panel/bg/sg" | "skins_panel/bg/right" | "skins_panel/bg/progress_loading_panel" | "skins_panel/bg/progress_loading_panel/progress_loading" | "skins_panel/bg/progress_loading_panel/progress_loading_outline" | "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover" | "screen_root" | "skin_pack_purchase_upsell_screen" | "skin_pack_purchase_upsell_screen_content" | "skin_pack_purchase_upsell_dialog_content" | "skin_pack_purchase_upsell_dialog_content/container" | "skin_pack_purchase_standard" | "skin_pack_purchase_standard_content" | "skin_pack_purchase_dialog_content" | "skin_pack_purchase_dialog_content/container"; -export type SkinPicker = "banner_fill" | "title_label" | "label" | "chevron_image" | "bumper_image" | "undo_image" | "plus_icon" | "direction_button_panel" | "direction_button_panel/chevron_image" | "direction_button_panel/bumper_image" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "skin_button" | "skin_button/hover" | "skin_button/pressed" | "skin_rotation_arrows" | "skin_viewer_panel" | "skin_viewer_panel/custom_skin_button" | "skin_viewer_panel/skin_model_panel" | "skin_viewer_panel/skin_model_panel/skin_model" | "skin_viewer_panel/lock" | "undo_skin_button" | "accept_skin_button" | "stack_item" | "accept_skin_panel" | "accept_skin_panel/stack_item_0" | "accept_skin_panel/stack_item_0/undo_btn" | "accept_skin_panel/stack_item_1" | "accept_skin_panel/stack_item_1/accept_button" | "appearance_status_image_panel" | "appearance_status_image_panel/limited_status_image" | "appearance_status_image_panel/no_restrictions_status_image" | "appearance_status_content" | "appearance_status_content/appearance_status_image_panel" | "appearance_status_content/padding" | "appearance_status_content/appearance_status_label_panel" | "appearance_status_content/appearance_status_label_panel/appearance_status_label" | "preview_skin_panel" | "preview_skin_panel/preview" | "preview_skin_panel/button_frame" | "preview_skin_panel/button_frame/stack_item_0" | "preview_skin_panel/button_frame/stack_item_0/rotation" | "preview_skin_panel/button_frame/padding" | "preview_skin_panel/button_frame/notification_and_accept_input_panel" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1" | "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept" | "skin_model" | "premium_skin_button" | "skin_lock" | "new_pack_icon" | "new_pack_icon/icon" | "pack_lock" | "pack_lock/locked" | "pack_lock/unlocked" | "skin_input_panel" | "skin_input_panel/sg" | "skins_grid_item" | "skins_grid_item/clip" | "skins_grid_item/clip/model" | "skins_grid_item/lock" | "skins_grid_item/button" | "skins_grid" | "pack_name" | "pack_grid_item" | "pack_grid_item/header" | "pack_grid_item/header/padding" | "pack_grid_item/header/pack_lock" | "pack_grid_item/header/pack_name" | "pack_grid_item/header/padding_2" | "pack_grid_item/header/new_pack_icon" | "pack_grid_item/header/padding_3" | "pack_grid_item/bg" | "pack_grid_item/bg/skin_input_panel" | "pack_grid_item/bg/expand_view_button" | "pack_grid_item/bg/progress_loading_no_connection" | "pack_grid_item/bg/progress_loading" | "premium_packs_grid" | "standard_skin_button" | "default_skins_grid_item" | "default_skins_grid_item/model" | "default_skins_grid_item/button" | "default_skins_grid" | "recent_skins_grid_item" | "recent_skins_grid_item/clip" | "recent_skins_grid_item/clip/model" | "recent_skins_grid_item/button" | "recent_skins_grid" | "standard_frame" | "standard_header" | "standard_fill" | "standard_panel" | "standard_panel/default_skins" | "standard_panel/default_skins/header" | "standard_panel/default_skins/fill" | "standard_panel/default_skins/fill/default_skins_grid" | "standard_panel/recent_skins" | "standard_panel/recent_skins/header" | "standard_panel/recent_skins/fill" | "standard_panel/recent_skins/fill/recent_skins_grid" | "standard_panel/recent_skins/fill/recent_skins_loading_panel" | "scrolling_content_stack" | "scrolling_content_stack/standard_panel" | "scrolling_content_stack/premium_packs_grid" | "all_skins_content" | "all_skins_content/scrolling_frame" | "all_skins_content/scrolling_frame/change_skin_scroll" | "all_skins_content/scrolling_frame/progress_loading" | "all_skins_frame" | "all_skins_frame/all_skins_content" | "title_bar" | "title_bar/padding_0" | "title_bar/fill_panel" | "title_bar/fill_panel/title_holder" | "title_bar/fill_panel/title_holder/change_skin_title" | "title_bar/padding_1" | "title_bar/skin_name_holder" | "title_bar/skin_name_holder/preview_skin_name" | "title_bar/padding_2" | "popup_dialog_skin_model" | "popup_dialog_skin_model/paper_doll" | "popup_dialog_choose_skin_type_button" | "popup_dialog_choose_skin_type_button/hover" | "popup_dialog_choose_skin_type_button/pressed" | "popup_dialog_choose_skin_type_panel" | "popup_dialog_choose_skin_type_panel/model" | "popup_dialog_choose_skin_type_panel/button_highlight" | "popup_dialog__invalid_custom_skin" | "popup_dialog__invalid_custom_skin/popup_dialog_bg" | "popup_dialog__invalid_custom_skin/popup_dialog_message" | "popup_dialog__invalid_custom_skin/popup_dialog_middle_button" | "popup_dialog__upsell_without_store" | "popup_dialog__choose_skin_type" | "popup_dialog__choose_skin_type/popup_dialog_bg" | "popup_dialog__choose_skin_type/popup_dialog_message" | "popup_dialog__choose_skin_type/left" | "popup_dialog__choose_skin_type/right" | "content" | "content/title" | "content/selector_area" | "content/content_area" | "content/section_divider" | "skin_picker_screen" | "skin_picker_screen_content" | "skin_picker_screen_content/bg" | "skin_picker_screen_content/container" | "skin_picker_screen_content/container/content" | "skin_picker_screen_content/popup_dialog_factory" | "scrollable_selector_area_content" | "selector_area" | "selector_area/all_skins" | "selector_area/inactive_modal_pane_fade" | "content_area" | "content_area/preview_skin" | "content_area/inactive_modal_pane_fade" | "section_divider"; -export type SmithingTable = "smithing_image" | "ingot_image" | "smithing_icon" | "upgrade_label" | "icon_and_text_panel" | "icon_and_text_panel/smithing_icon_panel" | "icon_and_text_panel/upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "plus_sign_icon" | "arrow_icon" | "cross_out_icon" | "smithing_table_output_slot_button" | "smithing_table_item_slot" | "smithing_table_item_slot/container_item" | "recipe_grid" | "recipe_grid/input_item_slot" | "recipe_grid/plus" | "recipe_grid/plus/plus_sign_icon" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "recipe_panel" | "recipe_panel/recipe_grid" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "smithing_table_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/root_panel" | "smithing_table_panel/root_panel/common_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button" | "smithing_table_panel/root_panel/inventory_selected_icon_button" | "smithing_table_panel/root_panel/gamepad_cursor" | "smithing_table_panel/flying_item_renderer" | "smithing_table_screen"; -export type SmithingTable2 = "smithing_icon" | "upgrade_label" | "icon_and_text_panel" | "icon_and_text_panel/smithing_icon_panel" | "icon_and_text_panel/upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "smithing_image" | "smithing_material_image_ingot" | "arrow_icon" | "cross_out_icon_image" | "cross_out_icon_button" | "cross_out_icon_button/default" | "cross_out_icon_button/hover" | "smithing_input_image_templates" | "smithing_input_image_armors" | "smithing_input_image_armors_and_tools" | "smithing_material_image_all" | "template_overlay_image" | "template_overlay_image/templates" | "input_overlay_image" | "input_overlay_image/armors_and_tools" | "input_overlay_image/armors" | "material_overlay_image" | "material_overlay_image/all_materials" | "material_overlay_image/ingot" | "smithing_table_output_slot_button" | "smithing_table_item_slot" | "smithing_table_item_slot/container_item" | "recipe_grid" | "recipe_grid/template_item_slot" | "recipe_grid/input_item_slot" | "recipe_grid/material_item_slot" | "recipe_grid/yields" | "recipe_grid/yields/arrow_icon" | "recipe_grid/yields/cross_out_icon" | "recipe_grid/result_item_slot" | "recipe_grid/result_item_preview" | "recipe_panel" | "recipe_panel/recipe_grid" | "result_item_preview" | "result_item_preview/inner" | "result_item_preview_inner" | "result_item_preview_inner/smithing_preview_renderer" | "toolbar_background" | "help_button" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "top_half_panel" | "top_half_panel/icon_and_text_panel" | "top_half_panel/recipe_panel" | "smithing_table_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/root_panel" | "smithing_table_panel/root_panel/common_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid" | "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button" | "smithing_table_panel/root_panel/inventory_selected_icon_button" | "smithing_table_panel/root_panel/toolbar_anchor" | "smithing_table_panel/root_panel/gamepad_cursor" | "smithing_table_panel/flying_item_renderer"; -export type SmithingTablePocket = "ingot_image" | "background_image" | "arrow_icon" | "smithing_icon" | "upgrade_label" | "smithing_icon_panel" | "smithing_icon_panel/smithing_icon" | "smithing_table_title_and_text_panel" | "smithing_table_title_and_text_panel/smithing_icon_panel" | "smithing_table_title_and_text_panel/upgrade_label" | "slots_panel" | "slots_panel/input_slot" | "slots_panel/material_slot" | "slots_panel/result_slot" | "slots_panel/plus_sign" | "slots_panel/arrow" | "slots_panel/arrow/cross_out" | "smithing_table_contents_panel" | "smithing_table_contents_panel/smithing_table_title_and_text_panel" | "smithing_table_contents_panel/slots_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "inventory_and_smithing_table_panel" | "inventory_and_smithing_table_panel/inventory_half_screen" | "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content" | "inventory_and_smithing_table_panel/smithing_half_screen" | "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content" | "header" | "header/header_background" | "header/close_button" | "header/panel" | "header/panel/title_label" | "header_and_content_stack_panel" | "header_and_content_stack_panel/header" | "header_and_content_stack_panel/inventory_and_smithing_table_panel" | "smithing_table_panel" | "smithing_table_panel/bg" | "smithing_table_panel/root_panel" | "smithing_table_panel/header_and_content_stack_panel" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/inventory_selected_icon_button" | "smithing_table_panel/hold_icon" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/flying_item_renderer"; -export type SmithingTable2Pocket = "smithing_table_item_renderer" | "smithing_image" | "smithing_material_image_ingot" | "background_image" | "smithing_input_image_templates" | "smithing_material_image_all" | "smithing_input_image_armors" | "smithing_input_image_armors_and_tools" | "template_overlay_image" | "template_overlay_image/templates" | "input_overlay_image" | "input_overlay_image/armors_and_tools" | "input_overlay_image/armors" | "material_overlay_image" | "material_overlay_image/ingot" | "material_overlay_image/all_materials" | "arrow_icon" | "smithing_icon" | "upgrade_label" | "slot_grid_item" | "slot_grid_item/slot" | "template_slot" | "input_slot" | "material_slot" | "inputs_stack" | "inputs_stack/template_slot" | "inputs_stack/padding1" | "inputs_stack/input_slot" | "inputs_stack/padding2" | "inputs_stack/material_slot" | "inputs_panel" | "inputs_panel/inputs_stack" | "result_slot" | "cross_out_image" | "cross_out_icon" | "cross_out_icon/default" | "cross_out_icon/hover" | "crafting_arrow" | "crafting_arrow/cross_out" | "crafting_arrow_grid_item" | "crafting_arrow_grid_item/crafting_arrow" | "result_item_preview" | "result_item_preview/smithing_preview_renderer" | "result_item_preview_grid_item" | "result_item_preview_grid_item/result_preview" | "smithing_table_contents_panel" | "smithing_table_contents_panel/label_holder" | "smithing_table_contents_panel/label_holder/title_label" | "smithing_table_contents_panel/inputs" | "smithing_table_contents_panel/result_slot" | "smithing_table_contents_panel/crafting_arrow" | "smithing_table_contents_panel/result_item_preview" | "chest_item_renderer" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_inventory" | "inventory_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "right_tab_smithing_table" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_and_help_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_smithing_table" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/smithing_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "pocket_hotbar_and_content_panels" | "smithing_table_panel" | "smithing_table_panel/pocket_hotbar_and_content_panels" | "smithing_table_panel/container_gamepad_helpers" | "smithing_table_panel/selected_item_details_factory" | "smithing_table_panel/item_lock_notification_factory" | "smithing_table_panel/inventory_selected_icon_button" | "smithing_table_panel/inventory_take_progress_icon_button" | "smithing_table_panel/flying_item_renderer"; -export type Smoker = "smoker_screen"; -export type Start = "achievements_icon" | "inbox_bell_animated_icon" | "inbox_icon" | "unread_notification_icon" | "feedback_icon" | "feedback_icon_edu" | "Xbox_icon" | "change_skin_icon" | "manage_accounts_icon" | "new_offers_icon" | "edu_ai_lesson_crafter_button_content" | "edu_ai_lesson_crafter_button_content/padded_label" | "edu_ai_lesson_crafter_button_content/padded_label/label" | "edu_ai_lesson_crafter_button_content/padded_icon" | "edu_ai_lesson_crafter_button_content/padded_icon/icon" | "preview_tag" | "preview_tag/preview_label" | "update_prompt_icon" | "marketplace_error_icon" | "sale_ribbon_icon" | "alex_icon" | "gamerpic" | "copyright" | "copyright/label" | "copyright/label_background" | "development_version" | "development_version/label" | "development_version/label_background" | "version" | "version/label" | "version/label_background" | "trial_info" | "trial_info/trial_label" | "trial_info/label_background" | "text_panel" | "text_panel/copyright" | "text_panel/development_version" | "text_panel/version" | "skin_or_profile_panel" | "skin_or_profile_panel/change_skin" | "skin_or_profile_panel/change_skin_button_demo" | "skin_or_profile_panel/dressing_room_button" | "skin_or_profile_panel/switch_accounts" | "skin_or_profile_panel/profile_button" | "change_skin_button" | "change_skin_button_demo" | "switch_accounts_button" | "dressing_room_button" | "profile_button_content" | "profile_button_content/gamerpic_offset_wrapper" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon" | "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black" | "profile_button_content/padding_middle" | "profile_button_content/vertically_central_text" | "profile_button_content/vertically_central_text/top_padding" | "profile_button_content/vertically_central_text/profile_button_label" | "profile_button_content/padding_right" | "profile_button" | "skin_viewer_panel" | "skin_viewer_panel/paper_doll_panel" | "skin_viewer_panel/paper_doll_panel/paper_doll" | "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel" | "skin_viewer_panel/paper_doll_name_tag" | "skin_panel" | "skin_panel/change_profile_or_skin" | "skin_panel/viewer_panel" | "friendsdrawer_button_panel" | "friendsdrawer_button_panel/friendsdrawer_button" | "gathering_button" | "badge_and_caption_animated" | "badge_and_caption_animated/caption_and_padding" | "badge_and_caption_animated/caption_and_padding/pad" | "badge_and_caption_animated/caption_and_padding/caption" | "badge_and_caption_animated/badge_and_padding" | "badge_and_caption_animated/badge_and_padding/badge" | "badge_and_caption_animated/badge_and_padding/fill" | "gathering_badge" | "badge_and_caption" | "badge_and_caption/caption_and_padding" | "badge_and_caption/caption_and_padding/pad" | "badge_and_caption/caption_and_padding/caption" | "badge_and_caption/badge_and_padding" | "badge_and_caption/badge_and_padding/badge" | "badge_and_caption/badge_and_padding/fill" | "gathering_caption" | "gathering_caption/countdown_text" | "gathering_panel" | "gathering_panel/horizontal_panel" | "gathering_panel/horizontal_panel/pad" | "gathering_panel/horizontal_panel/inner_panel" | "gathering_panel/horizontal_panel/inner_panel/badge_and_caption" | "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated" | "gathering_panel/horizontal_panel/inner_panel/gathering_button" | "gathering_panel/bottom_pad" | "edu_feedback_button" | "release_feedback_button" | "pre_release_feedback_button" | "feedback_button" | "feedback_button/edu_feedback_button" | "feedback_button/release_feedback_button" | "feedback_button/pre_release_feedback_button" | "achievements_button" | "achievements_icon_button" | "achievements_icon_button/achievements_button" | "inbox_button" | "inbox_button_unread_panel" | "inbox_button_unread_panel/background" | "inbox_icon_button" | "inbox_icon_button/inbox_button" | "inbox_icon_button/inbox_button_unread_panel" | "xbl_signin_button" | "platform_signin_button" | "column_frame" | "educator_resources_button" | "upper_online_buttons_panel" | "upper_online_buttons_panel/top_pad" | "upper_online_buttons_panel/stacked_column" | "upper_online_buttons_panel/stacked_column/xbl_btn_padding" | "upper_online_buttons_panel/stacked_column/xbl_btn" | "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button" | "upper_online_buttons_panel/stacked_column/platform_signin_btn" | "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel" | "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label" | "upper_online_buttons_panel/bottom_pad" | "lower_online_buttons_panel" | "lower_online_buttons_panel/stacked_column" | "lower_online_buttons_panel/stacked_column/feedback_padding" | "lower_online_buttons_panel/stacked_column/feedback_btn" | "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button" | "lower_online_buttons_panel/stacked_column/signingin" | "lower_online_buttons_panel/stacked_column/achievements_padding" | "lower_online_buttons_panel/stacked_column/achievements_btn" | "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button" | "lower_online_buttons_panel/stacked_column/inbox_padding" | "lower_online_buttons_panel/stacked_column/inbox_btn" | "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button" | "lower_online_buttons_panel/stacked_column/profile_btn_padding" | "lower_online_buttons_panel/stacked_column/profile_btn" | "lower_online_buttons_panel/stacked_column/profile_btn/profile_button" | "main_button" | "main_button_dark" | "main_content_button" | "main_button_gif" | "main_button_banner" | "main_button_banner/banner_label" | "play_button" | "play_button_art" | "play_button_art/default_background" | "play_button_art/hover_background" | "play_button_art/label" | "play_button_art/default_foreground" | "play_button_art/hover_foreground" | "play_button_stack" | "play_button_stack/play_button" | "play_button_stack/play_button_art" | "play_button_stack/play_button_banner" | "get_started_button" | "main_menu_button" | "featured_world_button" | "unlock_full_game_button" | "launch_editions_button" | "ai_lesson_crafter_button" | "settings_button" | "realms_button" | "servers_button" | "store_button" | "error_store_button" | "store_button_sale_banner" | "store_button_sale_banner/banner_label_padding" | "store_button_sale_banner/banner_label_padding/banner_label" | "store_button_content" | "store_button_content/button_label" | "store_button_content/sales_banner" | "store_error_image" | "store_error_content" | "store_error_content/marketplace_button_label" | "store_sale_label" | "store_button_art" | "store_button_art/default_background" | "store_button_art/hover_background" | "store_button_art/label" | "store_button_art/default_foreground" | "store_button_art/hover_foreground" | "store_button_stack" | "store_button_stack/store_button" | "store_button_stack/store_button_art" | "store_button_stack/store_button_banner" | "store_button_stack/update_icon" | "store_button_stack/new_offers_icon" | "buy_game_button" | "stacked_row" | "main_buttons_stack_panel" | "main_buttons_stack_panel/title_offset_padding" | "main_buttons_stack_panel/title_panel_content" | "main_buttons_stack_panel/padding_fill_1" | "main_buttons_stack_panel/main_buttons_panel" | "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel" | "main_buttons_stack_panel/main_buttons_panel_new_player_flow" | "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow" | "main_buttons_stack_panel/padding_fill_2" | "main_buttons_stack_panel/padding_fill_2/gamepad_helpers" | "main_buttons_stack_panel/padding_3" | "main_buttons_panel_new_player_flow" | "main_buttons_panel_new_player_flow/stacked_rows" | "main_buttons_panel_new_player_flow/stacked_rows/test_label_row" | "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info" | "main_buttons_panel_new_player_flow/stacked_rows/spacer" | "main_buttons_panel_new_player_flow/stacked_rows/get_started_row" | "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button" | "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row" | "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button" | "main_buttons_panel" | "main_buttons_panel/stacked_rows" | "main_buttons_panel/stacked_rows/play" | "main_buttons_panel/stacked_rows/featured_world" | "main_buttons_panel/stacked_rows/featured_world/featured_world_button" | "main_buttons_panel/stacked_rows/stacked_row_2" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon" | "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button" | "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay" | "main_buttons_panel/stacked_rows/edu_featured_button" | "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel" | "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button" | "main_buttons_panel/stacked_rows/settings" | "main_buttons_panel/stacked_rows/settings/settings_button" | "main_buttons_panel/stacked_rows/realms" | "main_buttons_panel/stacked_rows/realms/realms_button" | "main_buttons_panel/stacked_rows/unlock_full_game_row" | "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game" | "main_buttons_panel/stacked_rows/store" | "main_buttons_panel/stacked_rows/buy_game" | "main_buttons_panel/stacked_rows/buy_game/buy_game_button" | "main_buttons_panel/stacked_rows/launch_editions" | "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "gamepad_helpers/gamepad_helper_b_and_padding" | "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b" | "gamepad_helpers/gamepad_helper_y_and_padding" | "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y" | "gamepad_helpers/gamepad_helper_x_and_padding" | "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x" | "invite_notification_icon" | "invite_notification_button" | "notification_button_text" | "notification_button_text_background" | "notification_button_text_panel" | "notification_button_text_panel/text" | "notification_button_text_panel/text/background" | "start_screen" | "start_screen_content" | "start_screen_content/main_buttons_and_title_panel" | "start_screen_content/online_button_stack" | "start_screen_content/online_button_stack/gathering_panel" | "start_screen_content/online_button_stack/upper_online_buttons_panel" | "start_screen_content/online_button_stack/lower_online_buttons_panel" | "start_screen_content/skin_panel" | "start_screen_content/text_panel" | "start_screen_content/friendsdrawer_button_panel"; -export type Stonecutter = "stonecutter_label" | "arrow_icon" | "stone_cell_image" | "container_cell_image" | "toolbar_background" | "highlight_slot_panel" | "highlight_slot_panel/hover_text" | "highlight_slot_panel/highlight" | "highlight_slot_panel/white_border" | "stone_slot_button" | "stone_slot_button/hover" | "item_panel" | "item_panel/item_renderer" | "item_panel/item_renderer/stack_count_label" | "stone_button" | "stone_button/banner_pattern" | "stone_button/item_button_ref" | "scroll_grid" | "scroll_grid_panel" | "scroll_grid_panel/grid" | "scroll_panel" | "stone_book_panel" | "stone_book_panel/bg" | "stone_book_panel/scroll_panel" | "result_slot_button" | "input_item_slot" | "result_item_slot" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "top_half_stack_panel" | "top_half_stack_panel/input_slots_holder" | "top_half_stack_panel/input_slots_holder/input_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/arrow_holder" | "top_half_stack_panel/arrow_holder/arrow_icon" | "top_half_stack_panel/padding_2" | "top_half_stack_panel/result_item_slot_holder" | "top_half_stack_panel/result_item_slot_holder/result_item_slot" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "right_panel" | "right_panel/common_panel" | "right_panel/stonecutter_screen_inventory" | "right_panel/stonecutter_screen_inventory/stonecutter_label" | "right_panel/stonecutter_screen_inventory/top_half_panel" | "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/stonecutter_screen_inventory/hotbar_grid" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/stone_book_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "stonecutter_panel" | "stonecutter_panel/screen_stack_panel" | "stonecutter_panel/container_gamepad_helpers" | "stonecutter_panel/selected_item_details_factory" | "stonecutter_panel/item_lock_notification_factory" | "stonecutter_panel/inventory_selected_icon_button" | "stonecutter_panel/inventory_take_progress_icon_button" | "stonecutter_panel/flying_item_renderer" | "stonecutter_screen"; -export type StonecutterPocket = "vertical_arrow_icon" | "chest_item_renderer" | "stonecutter_item_renderer" | "input_item_slot" | "result_item_slot" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/stonecutter_content_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "right_tab_stonecutter" | "right_navigation_tabs" | "right_navigation_tabs/close" | "right_navigation_tabs/close/nodrop_zone" | "right_navigation_tabs/close/close_button" | "right_navigation_tabs/fill" | "right_navigation_tabs/right_tab_stonecutter" | "input_slots_stack_panel" | "input_slots_stack_panel/input_item_slot" | "stonecutter_content_stack_panel" | "stonecutter_content_stack_panel/label_holder" | "stonecutter_content_stack_panel/label_holder/stonecutter_label" | "stonecutter_content_stack_panel/padding_1" | "stonecutter_content_stack_panel/panel" | "stonecutter_content_stack_panel/panel/stack_panel" | "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder" | "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel" | "stonecutter_content_stack_panel/panel/stack_panel/padding_3" | "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder" | "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon" | "stonecutter_content_stack_panel/panel/stack_panel/padding_4" | "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder" | "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot" | "stonecutter_content_stack_panel/panel/stack_panel/padding_5" | "inventory_panel" | "inventory_panel/inventory_title_label_centerer" | "inventory_panel/inventory_title_label_centerer/inventory_title_label" | "inventory_panel/inventory_scroll_panel" | "inventory_scroll_panel" | "pattern_button" | "pattern_scroll_panel" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_panel" | "left_panel/content/pattern_scroll_panel" | "left_tab_stones" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_stones" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "pocket_hotbar_and_content_panels" | "stonecutter_panel" | "stonecutter_panel/pocket_hotbar_and_content_panels" | "stonecutter_panel/container_gamepad_helpers" | "stonecutter_panel/selected_item_details_factory" | "stonecutter_panel/item_lock_notification_factory" | "stonecutter_panel/inventory_selected_icon_button" | "stonecutter_panel/inventory_take_progress_icon_button" | "stonecutter_panel/flying_item_renderer"; -export type StorageManagement = "lock_icon" | "storage_header_panel" | "storage_header_panel/header_panel" | "storage_header_panel/header_panel/file_storage_dropdown" | "storage_header_panel/header_panel/file_storage_dropdown_edu" | "storage_header_panel/header_panel/clear_cache_button_panel" | "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button" | "storage_header_panel/header_panel/clear_download_cache_button_panel" | "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button" | "storage_header_panel/header_panel/clear_screenshots_cache_button_panel" | "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button" | "storage_header_panel/header_panel/delete_local_screenshots_button_panel" | "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button" | "storage_header_panel/header_panel/panel" | "storage_header_panel/header_panel/panel/multiselect_button" | "x_button_image" | "storage_main_panel" | "storage_main_panel/scroll_content" | "storage_footer_panel" | "storage_footer_panel/visibleContent" | "storage_footer_panel/visibleContent/delete_button" | "storage_footer_panel/visibleContent/share_button" | "delete_checkbox" | "delete_checkbox/selected_checkbox_image" | "generic_button" | "generic_button/picture" | "generic_button/text" | "common_scroll_pane" | "common_label" | "main_content_panel" | "main_content_panel/panel" | "main_content_panel/panel/spacing" | "main_content_panel/panel/delete_checkbox" | "main_content_panel/panel/image_panel" | "main_content_panel/panel/image_panel/image_border" | "main_content_panel/panel/image_panel/image_border/image" | "main_content_panel/panel/text_panel_offset" | "main_content_panel/panel/text_panel_offset/text_panel" | "main_content_panel/panel/text_panel_offset/text_panel/0" | "common_main_button" | "common_main_button/background" | "common_main_button/border" | "common_main_button/main_content_panel" | "base_glyph" | "base_glyph/image" | "base_glyph/padding" | "main_item_text" | "grey_button" | "icon_item_text" | "world_item_text" | "storage_main_item_toggle" | "storage_main_item_toggle/main_item_toggle" | "storage_main_item_toggle/contentPanel" | "storage_main_item_toggle/padding" | "storage_scroll_pane" | "storage_scroll_pane/category_stack_panel" | "storage_scroll_pane/category_stack_panel/stack_panel" | "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel" | "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls" | "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel" | "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls" | "storage_scroll_pane/multiselect_padding" | "world_controls" | "world_template_controls" | "resource_controls" | "behavior_controls" | "skin_controls" | "cached_controls" | "resource_sub_item" | "resource_sub_item/dummy_panel" | "resource_sub_item/main_panel" | "resource_sub_item/main_panel/content" | "resource_toggle" | "resource_toggle/content_toggle" | "resource_toggle/content_toggle/default" | "resource_toggle/content_toggle/hover" | "resource_toggle/content_toggle/unchecked" | "resource_toggle/content_toggle/unchecked_hover" | "resource_toggle/item_button_panel" | "resource_toggle/item_button_panel/y_sizing_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank" | "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button" | "sub_item_tray_button" | "glyph_sub_icon" | "sub_item_blank_button" | "texture_icon_text" | "texture_icon_sub_item" | "version_sub_item" | "pack_description_sub_item" | "world_sub_text" | "world_template_sub_text" | "basic_sub_item" | "dropdown_button" | "dropdown_button_content" | "dropdown_button_content/image_panel" | "dropdown_button_content/image_panel/icon" | "dropdown_button_content/text_panel" | "dropdown_button_content/text_panel/main_label" | "filter_options" | "filter_options/0" | "light_assets" | "button_add" | "sort_panel" | "sort_panel/default" | "sort_toggle" | "storage_scroll_panel" | "storage_main_item_legacy_world_toggle" | "storage_main_item_legacy_world_toggle/main_item_toggle" | "storage_main_item_legacy_world_toggle/contentPanel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button" | "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description" | "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel" | "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding" | "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars" | "storage_main_item_legacy_world_toggle/padding" | "legacy_world_main_item_text" | "storage_main_item_retailtopreview_world_toggle" | "storage_main_item_retailtopreview_world_toggle/main_item_toggle" | "storage_main_item_retailtopreview_world_toggle/contentPanel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button" | "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description" | "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding" | "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars" | "storage_main_item_retailtopreview_world_toggle/padding" | "retailtopreview_world_main_item_text"; -export type StorageManagementPopup = "storage_dependency_modal" | "storage_dependency_modal/base" | "storage_dependency_modal/base/background_with_buttons" | "storage_dependency_modal/base/title" | "storage_dependency_modal/base/dependencies" | "storage_dependency_modal/base/two_buttons" | "storage_dependency_modal/base/two_buttons/disabled_left" | "storage_dependency_modal/base/two_buttons/left" | "storage_dependency_modal/base/two_buttons/right" | "storage_dependency_panel" | "storage_dependency_panel/scroll" | "storage_dependency_scroll_panel" | "dependency_item_content" | "dependency_item_content/content" | "dependency_scroll_pane" | "dependency_scroll_pane/main_label" | "dependency_scroll_pane/contentPanel" | "dependency_item" | "dependency_item_small" | "dependency_resource_item" | "dependency_resource_item_small" | "dependency_sub_item" | "dependency_sub_item/border" | "dependency_sub_item/border/stack" | "dependency_sub_item/border/stack/padding_0" | "dependency_sub_item/border/stack/wrapper" | "dependency_sub_item/border/stack/wrapper/dependency_item" | "dependency_sub_item/border/stack/panel_0" | "dependency_sub_item/border/stack/panel_0/main_label" | "dependency_sub_item/border/stack/contentPanel" | "dependency_sub_item/border/stack/panel_1" | "dependency_sub_item/border/stack/panel_1/remove_pack_button" | "dependency_sub_item/border/stack/padding_1" | "dependency_sub_item/padding" | "sharing_popup_content"; -export type CommonStore = "store_base_screen" | "label" | "offer_image_panel" | "banner_fill" | "store_description_background" | "store_description_background_dark" | "text_style_label" | "text_style_label/text_label" | "sdl_texture" | "store_offer_grid_button" | "store_offer_grid_button/hover" | "store_offer_grid_button/hover/key_art_size_panel" | "store_offer_grid_button/hover/key_art_size_panel/key_art_frame" | "store_offer_grid_button/pressed" | "store_offer_grid_button/pressed/key_art_size_panel" | "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame" | "store_offer_grid_button/icon_overlay_panel" | "ribbon_bar_text_background" | "ribbon_bar_red_hover_text_background" | "store_background" | "coin_icon" | "tag" | "tag/new_offer_label" | "marketplace_error_icon" | "new_offer_icon" | "status_new_offer_icon" | "update_balloon_icon" | "icon_overlay_panel" | "icon_overlay_panel/icon_overlay_position_factory" | "icon_overlay_position_factory" | "top_left_icon_factory" | "top_middle_icon_factory" | "top_right_icon_factory" | "left_middle_icon_factory" | "center_icon_factory" | "right_middle_icon_factory" | "bottom_left_icon_factory" | "bottom_middle_icon_factory" | "bottom_right_icon_factory" | "icon_factory" | "new_offer_icon_panel" | "new_offer_icon_panel/new_icon" | "update_offer_icon_panel" | "update_offer_icon_panel/update_icon" | "icon_overlay_image_panel" | "icon_overlay_image_panel/image_stack_panel" | "icon_overlay_image_panel/image_stack_panel/icon" | "icon_overlay_image_panel/image_stack_panel/padding" | "icon_overlay_sdl_padding" | "status_icon_overlay" | "status_icon_overlay/icon_overlay_label_panel" | "status_icon_overlay/icon_overlay_label_panel/left_margin_padding" | "status_icon_overlay/icon_overlay_label_panel/left_padding_1" | "status_icon_overlay/icon_overlay_label_panel/left_padding_2" | "status_icon_overlay/icon_overlay_label_panel/icon_panel" | "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label" | "status_icon_overlay/icon_overlay_label_panel/right_padding_1" | "status_icon_overlay/icon_overlay_label_panel/right_padding_2" | "status_icon_overlay/icon_overlay_label_panel/right_margin_padding" | "status_icon_panel" | "status_icon_panel/new_offer_icon" | "status_icon_panel/update_icon" | "prompt_icon" | "up_arrow_icon" | "plus_icon" | "bang_icon" | "user_icon_small" | "user_icon_hover" | "gamepad_store_helper" | "purchase_coins_panel" | "purchase_coins_panel/plus_button" | "inventory_panel" | "inventory_panel/inventory_button" | "progress_loading_bars" | "progress_loading_spinner" | "progress_loading" | "progress_loading/centerer" | "progress_loading/centerer/progress_loading_spinner" | "progress_loading/progress_loading_outline" | "progress_loading/stack_panel" | "progress_loading/stack_panel/top_panel" | "progress_loading/stack_panel/top_panel/error_glyph_panel" | "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image" | "progress_loading/stack_panel/top_panel/padding" | "progress_loading/stack_panel/top_panel/store_failure_text" | "progress_loading/stack_panel/padding" | "progress_loading/stack_panel/image" | "progress_loading/store_failure_code" | "store_empty_progress_bar_icon" | "store_full_progress_bar_icon" | "store_progress_bar_nub" | "store_progress_bar_icon" | "store_progress_bar_icon/empty_progress_bar_icon" | "store_progress_bar_icon/progress_percent_panel" | "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon" | "store_progress_bar_icon/progress_percent_panel/progress_bar_nub" | "screen_contents_with_gamepad_helpers" | "screen_contents_with_gamepad_helpers/dialog_panel" | "screen_contents_with_gamepad_helpers/dialog_panel/dialog" | "screen_contents_with_gamepad_helpers/padding" | "screen_contents_with_gamepad_helpers/gamepad_helpers_panel" | "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b" | "text_strike_through" | "markdown_banner" | "markdown_triangle" | "timer_panel" | "timer_panel/timer" | "store_offer_type_icon" | "addon_pack_icon" | "addon_pack_small_icon" | "realms_plus_icon" | "resource_pack_icon" | "resource_pack_small_icon" | "skinpack_icon" | "skinpack_small_icon" | "world_icon" | "world_small_icon" | "mashup_icon" | "mashup_small_icon" | "persona_icon" | "persona_small_icon" | "small_padding_panel" | "resource_pack_small_icon_with_buffer" | "resource_pack_small_icon_with_buffer/resource_pack_small_icon" | "resource_pack_small_icon_with_buffer/small_padding_panel" | "addon_pack_small_icon_with_buffer" | "addon_pack_small_icon_with_buffer/addon_pack_small_icon" | "addon_pack_small_icon_with_buffer/small_padding_panel" | "skinpack_small_icon_with_buffer" | "skinpack_small_icon_with_buffer/skinpack_small_icon" | "skinpack_small_icon_with_buffer/small_padding_panel" | "world_small_icon_with_buffer" | "world_small_icon_with_buffer/world_small_icon" | "world_small_icon_with_buffer/small_padding_panel" | "mashup_small_icon_with_buffer" | "mashup_small_icon_with_buffer/mashup_small_icon" | "mashup_small_icon_with_buffer/small_padding_panel" | "persona_small_icon_with_buffer" | "persona_small_icon_with_buffer/persona_small_icon" | "persona_small_icon_with_buffer/small_padding_panel" | "realms_icon" | "realms_banner_icon" | "csb_banner_icon" | "csb_expiration" | "csb_expiration/background" | "csb_expiration/contents" | "csb_expiration/contents/csb_icon" | "csb_expiration/contents/pad_0" | "csb_expiration/contents/text_panel" | "csb_expiration/contents/text_panel/text" | "pack_icon_stack" | "pack_icon_stack/pack_icon_stack_factory" | "pack_icon_stack_factory" | "markdown_background" | "markdown_background/banner_panel" | "markdown_background/banner_panel/banner" | "markdown_background/banner_panel/banner/banner_content_stack_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack" | "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel" | "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label" | "markdown_background/triangle_panel" | "markdown_background/triangle_panel/triangle" | "store_top_bar" | "store_top_bar_filler" | "direction_button_panel" | "direction_button_panel/chevron_image" | "cycle_pack_button" | "cycle_pack_left_button" | "cycle_pack_right_button" | "restore_purchases" | "back_content_panel" | "back_content_panel/back_button" | "unlock_with_coins_button_stack_panel" | "unlock_with_coins_button_stack_panel/coin_panel" | "unlock_with_coins_button_stack_panel/coin_panel/coin" | "unlock_with_coins_button_stack_panel/padding_1" | "unlock_with_coins_button_stack_panel/unlock_text" | "store_dialog_with_coin_header" | "store_coins_title_label" | "search_header_stack" | "search_header_stack/gamepad_helper_y_alignment_hack" | "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y" | "search_header_stack/search_header_text_box_panel" | "search_header_stack/search_header_text_box_panel/search_header_text_box" | "search_header_stack/search_header_text_box_panel/clear_button" | "search_header_stack/store_layout_search_button" | "search_header_stack/padding0" | "sdl_store_header_with_coins" | "sdl_store_header_with_coins/sdl_store_header_with_coins_content" | "top_bar_with_coins_panel" | "top_bar_with_coins_panel/top_bar" | "top_bar_with_coins_panel/top_bar/title_stack_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1" | "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2" | "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4" | "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins" | "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5" | "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack" | "sdl_store_header_with_coins_content" | "sdl_store_header_with_coins_content/top_bar_coins" | "store_header_with_coins" | "store_header_with_coins/top_bar_coins" | "store_header_with_coins/child_control" | "status_with_coins" | "status_with_coins/inventory_panel" | "status_with_coins/inventory_panel/inventory_button" | "status_with_coins/padding0" | "status_with_coins/coin_balance_panel" | "status_with_coins/coin_balance_panel/coin_balance_panel" | "status_with_coins/padding1" | "coins_with_title" | "coins_with_title/coin_balance_panel" | "coins_with_title/title_panel" | "wallet_button_panel" | "wallet_button_panel/purchase_coin_panel_alignment_hack" | "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel" | "wallet_button_panel/plus_image" | "wallet_button_panel/gamepad_helper_x_alignment_hack" | "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x" | "coin_balance_panel" | "coin_balance_panel/coin_purchase_in_progress_panel" | "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress" | "coin_balance_panel/horizontal_coin_stack" | "coin_balance_panel/horizontal_coin_stack/padding" | "coin_balance_panel/horizontal_coin_stack/coin_icon" | "coin_balance_panel/horizontal_coin_stack/small_filler" | "coin_balance_panel/horizontal_coin_stack/coin_text_holder" | "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text" | "my_account_button_content" | "my_account_button_content/my_account_content" | "my_account_button_content/my_account_content/user_icon" | "my_account_button_content/my_account_content/my_account_label_panel" | "my_account_button_content/my_account_content/my_account_label_panel/padding" | "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label" | "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label" | "inventory_button_panel" | "inventory_button_panel/inventory_button" | "inventory_button_panel/inventory_button/status_panel" | "inventory_button" | "inventory_button/my_content_button" | "inventory_button/my_content_button/library_icon" | "inventory_button/my_content_button/library_icon_bevel" | "inventory_button/updates_with_bevel" | "inventory_button/updates_with_bevel/update_glyph" | "inventory_button/updates_with_bevel/updates_bevel" | "inventory_button/label_alignment_pannel" | "inventory_button/label_alignment_pannel/label_panel" | "inventory_button/label_alignment_pannel/label_panel/inventory_label" | "xbl_button_content" | "xbl_button_content/xbl_icon" | "xbl_button_content/padding_0" | "xbl_button_content/disconnected_label" | "xbl_button_content/padding_1" | "xbl_button_content/error_icon_panel" | "xbl_button_content/error_icon_panel/error_icon" | "disclaimer_panel" | "disclaimer_panel/legal_text_label" | "grey_bar_panel" | "grey_bar_panel/color_panel" | "grey_bar_panel/color_panel/grey_bar" | "grey_bar_panel/color_panel/green_bar" | "grey_bar_panel/pad" | "tab_name_panel" | "tab_name_panel/bar_panel" | "tab_name_panel/bar_panel/green_bar" | "tab_name_panel/button_panel" | "tab_name_panel/button_panel/tab_name_button_grey" | "tab_name_panel/button_panel/tab_name_button_white" | "tab_name_panel/pad_1" | "store_offer_item_title_panel" | "store_offer_item_title_panel/offer_title" | "store_offer_item_creator_panel" | "store_offer_item_creator_panel/pack_icon_panel" | "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack" | "store_offer_item_creator_panel/creator_label" | "store_offer_ratings" | "store_offer_ratings/rating_text_panel" | "vertical_store_offer_price_info_panel" | "vertical_store_offer_price_info_panel/sales_banner" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel" | "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right" | "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel" | "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text" | "vertical_store_offer_price_info_panel/sales_banner/padding_to_right" | "store_offer_price_info_panel" | "store_offer_price_info_panel/sales_banner" | "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel" | "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right" | "store_offer_price_info_panel/sales_banner/coin_panel" | "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon" | "store_offer_price_info_panel/sales_banner/padding_3" | "store_offer_price_info_panel/sales_banner/offer_prompt_panel" | "store_offer_sales_markdown_percentage_panel" | "store_offer_sales_markdown_percentage_panel/markdown_background" | "store_offer_prompt_panel" | "store_offer_prompt_panel/offer_status_text" | "featured_key_art" | "featured_key_art/bg" | "featured_key_art/bg/featured_key_art" | "featured_key_art/bg/progress_loading" | "featured_key_art/bg/new_offer_icon" | "featured_key_art/focus_border" | "price_panel" | "price_panel/featured_icon_panel" | "price_panel/featured_icon_panel/featured_offer_coin_icon" | "price_panel/price_label_panel" | "price_panel/price_label_panel/price" | "price_panel/padding" | "vertical_padding_4" | "vertical_padding_2" | "sdl_vertical_padding_fill" | "footer" | "footer/restore_purchases" | "store_section_panel" | "store_section_panel/store_section_panel_outline" | "store_section_panel/section_panel" | "store_section_panel/section_panel/header" | "store_section_panel/section_panel/section_panel" | "store_section_panel/section_panel/section_panel/background" | "store_section_factory" | "store_static_section_factory" | "rtx_label" | "rtx_label/banner" | "rtx_label/banner/icon" | "subscription_chevron" | "subscription_chevron/subscription_chevron_panel" | "subscription_chevron/subscription_chevron_panel/csb_chevron" | "subscription_chevron/subscription_chevron_panel/sales_banner_background" | "csb_banner" | "csb_banner/banner" | "pagination_content_panel" | "pagination_content_panel/padding_left" | "pagination_content_panel/first_page_button" | "pagination_content_panel/pagination_middle_buttons_panel" | "pagination_content_panel/padding_right_fill" | "pagination_content_panel/go_to_top_button" | "pagination_panel" | "pagination_panel/top_padding" | "pagination_panel/pagination_content" | "pagination_panel/bottom_padding" | "store_offer_grid_panel_content" | "store_offer_grid_panel_content/header_centerer_panel" | "store_offer_grid_panel_content/store_offer_grid_factory" | "store_offer_grid_panel_content/pagination_centerer" | "store_offer_grid_panel_content/divider" | "store_offer_grid_panel" | "pagination_top_button_panel" | "pagination_top_button_panel/top_button_image" | "pagination_middle_buttons_panel" | "pagination_middle_buttons_panel/previous_page_button" | "pagination_middle_buttons_panel/current_page_number_panel" | "pagination_middle_buttons_panel/current_page_number_panel/current_page_number" | "pagination_middle_buttons_panel/next_page_button" | "vertical_store_offer_grid_panel" | "vertical_store_offer_grid_panel/header" | "vertical_store_offer_grid_panel/centering_panel" | "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content" | "vertical_store_offer_grid_panel/padding_0" | "vertical_store_offer_grid_panel/divider" | "carousel_row_panel" | "carousel_row_panel/top_panel" | "carousel_row_panel/top_panel/pad_0" | "carousel_row_panel/top_panel/tab_names_factory_panel" | "carousel_row_panel/top_padding" | "carousel_row_panel/middle_panel" | "carousel_row_panel/middle_panel/left_button_panel" | "carousel_row_panel/middle_panel/left_button_panel/left_button" | "carousel_row_panel/middle_panel/left_button_panel/left_bumper" | "carousel_row_panel/middle_panel/main_panel_factory" | "carousel_row_panel/middle_panel/right_button_panel" | "carousel_row_panel/middle_panel/right_button_panel/right_button" | "carousel_row_panel/middle_panel/right_button_panel/right_bumper" | "carousel_row_panel/bottom_panel" | "carousel_row_panel/bottom_panel/grey_bar_factory_panel" | "carousel_row_panel/bottom_padding" | "carousel_row_panel/divider_panel" | "carousel_row_panel/divider_panel/divider" | "carousel_factory" | "hero_row_l2_panel" | "hero_row_l2_panel/header" | "hero_row_l2_panel/centering_panel" | "hero_row_l2_panel/centering_panel/l2_featured_stack" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2" | "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3" | "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3" | "hero_row_l2_panel/padding_0" | "hero_row_l2_panel/divider" | "blade_row_key_art" | "blade_row_key_art/blade_row_key_art_image" | "blade_row_key_art/blade_row_key_art_image/key_art_border" | "one_key_art_screenshot" | "one_key_art_screenshot_panel" | "one_key_art_screenshot_panel/blade_offer_frame" | "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot" | "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame" | "screenshots_grid" | "screenshots_grid/screenshot_1" | "screenshots_grid/screenshot_2" | "screenshots_grid/screenshot_3" | "screenshots_grid/screenshot_4" | "blade_offer_details_title" | "blade_offer_sale_markdown" | "blade_offer_description_details" | "blade_offer_description_details/blade_title_stack" | "blade_offer_description_details/blade_title_stack/blade_title" | "blade_offer_description_details/blade_offer_creator_label" | "blade_offer_description_details/blade_offer_description_padding_2" | "blade_offer_description_details/ratings_and_coins" | "blade_offer_description_details/ratings_and_coins/subscription_panel" | "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel" | "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background" | "blade_offer_description_details/ratings_and_coins/ratings_panel" | "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings" | "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel" | "blade_offer_description_details/ratings_and_coins/fill_padding" | "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel" | "blade_offer_description_details/ratings_and_coins/price_panel" | "blade_offer_description_details/ratings_and_coins/price_panel/price" | "blade_offer_description_details/ratings_and_coins/price_panel_padding_right" | "blade_offer_description_details/blade_offer_description_padding_3" | "screenshots_and_offer_details_panel" | "screenshots_and_offer_details_panel/blade_offer_screenshots_grid" | "screenshots_and_offer_details_panel/blade_offer_description_area" | "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border" | "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details" | "blade_row_featured_panel" | "blade_row_featured_panel/blade_row_featured_key_art" | "blade_row_featured_panel/blade_offer_screenshots_and_details_panel" | "transparent_content_button" | "hero_blade_row_panel" | "hero_blade_row_panel/blade_row_transparent_button" | "hero_row_panel" | "hero_row_panel/header" | "hero_row_panel/centering_panel" | "hero_row_panel/centering_panel/featured_stack" | "hero_row_panel/centering_panel/featured_stack/hero_offer" | "hero_row_panel/centering_panel/featured_stack/padding_0" | "hero_row_panel/centering_panel/featured_stack/hero_offer_grid" | "hero_row_panel/padding_0" | "hero_row_panel/divider" | "hero_offer" | "hero_offer/featured_key_art" | "hero_offer/rtx_label" | "hero_offer/offer_description_area" | "hero_offer/offer_description_area/hero_offer_description_details" | "hero_offer_details_title" | "hero_offer_description_details" | "hero_offer_description_details/hero_title_stack" | "hero_offer_description_details/hero_title_stack/title" | "hero_offer_description_details/padding_5" | "hero_offer_description_details/progress" | "hero_offer_description_details/creator_label" | "hero_offer_description_details/padding_0" | "hero_offer_description_details/durable_offer_info_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel" | "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price" | "hero_offer_description_details/padding_1" | "hero_offer_download_progress" | "hero_offer_download_progress/label" | "hero_offer_download_progress/bar" | "rating_text_panel" | "rating_text_panel/left_padding" | "rating_text_panel/star_panel" | "rating_text_panel/star_panel/rating_star" | "rating_text_panel/middle_padding" | "rating_text_panel/rating_label" | "ratings_description" | "ratings_description/rating_text_panel" | "store_rating_count_panel" | "store_rating_count_panel/rating_count_text" | "hero_offer_grid" | "hero_offer_grid/row_1" | "hero_offer_grid/row_1/offer_1" | "hero_offer_grid/row_1/padding_0" | "hero_offer_grid/row_1/offer_2" | "hero_offer_grid/padding_0" | "hero_offer_grid/row_2" | "hero_offer_grid/row_2/offer_1" | "hero_offer_grid/row_2/padding_0" | "hero_offer_grid/row_2/offer_2" | "offer_download_progress" | "offer_download_progress/label" | "offer_download_progress/bar" | "banner_button" | "sdl_text_aligned_panel" | "sdl_text_minecraftTen_aligned_panel" | "sdl_content_aligned_panel" | "sdl_content_aligned_panel/left__padding_panel" | "sdl_content_aligned_panel/control" | "sdl_content_aligned_panel/right_padding_panel" | "sdl_aligned_text" | "sdl_aligned_minecraftTen_text" | "content_offer_key_art" | "vertical_content_offer_header" | "vertical_content_offer_header/header" | "vertical_content_offer_panel" | "vertical_offer_grid_panel" | "offer_content" | "offer_content/offer_item" | "vertical_offer_content" | "vertical_offer_content/offer_item" | "vertical_coin_offer_content" | "vertical_coin_offer_content/offer_item" | "store_offer_key_art" | "store_offer_grid_show_more" | "store_offer_grid_show_more/frame" | "store_offer_grid_show_more/frame/title" | "store_offer_grid_show_more/offer_button" | "store_offer_grid_show_more/offer_button/hover" | "store_offer_grid_show_more/offer_button/hover/key_art_size_panel" | "store_offer_grid_show_more/offer_button/pressed" | "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel" | "persona_grid_show_more" | "row_offer_sale_markdown" | "discount_label" | "discount_label/label_panel" | "discount_label/label_panel/label" | "discount_label/icon_panel" | "discount_label/icon_panel/icon" | "hero_offer_sale_markdown" | "offer_price_markdown_panel" | "offer_price_markdown_panel/offer_price" | "offer_price_markdown_panel/offer_price/text_strike_through" | "store_offer_title" | "store_offer_key_art_frame" | "store_offer_key_art_frame/key_art" | "store_offer_key_art_frame/key_art/key_art_frame" | "store_offer_key_art_frame/key_art/csb_expiration_banner" | "store_offer_key_art_frame/progress_loading" | "vertical_store_offer_grid_item" | "vertical_store_offer_grid_item/frame" | "vertical_store_offer_grid_item/frame/horizontal_stack_panel" | "vertical_store_offer_grid_item/frame/offer_button" | "vertical_store_offer_grid_item/dark_frame" | "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel" | "vertical_store_offer_grid_item/dark_frame/offer_button" | "vertical_store_offer_grid_inside_frame" | "vertical_store_offer_grid_inside_frame/key_art_size_panel" | "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame" | "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/rating_and_price_padding" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/offer_price_info_panel" | "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding" | "vertical_store_coin_offer_grid_item" | "vertical_store_coin_offer_grid_item/frame" | "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel" | "vertical_store_coin_offer_grid_item/dark_frame" | "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel" | "vertical_store_coin_offer_grid_item/dark_frame/offer_button" | "vertical_coin_offer_grid_inside_frame" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame" | "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art" | "vertical_coin_offer_grid_inside_frame/padding" | "vertical_coin_offer_grid_inside_frame/coin_panel" | "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding" | "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title" | "offer_prompt_panel" | "offer_prompt_panel/coin_panel" | "offer_prompt_panel/coin_panel/offer_coin_icon" | "offer_prompt_panel/padding_3" | "offer_prompt_panel/offer_status_text_panel" | "offer_prompt_panel/offer_status_text_panel/offer_status_text" | "store_offer_grid_item" | "store_offer_grid_item/frame" | "store_offer_grid_item/frame/key_art" | "store_offer_grid_item/frame/key_art/key_art_frame" | "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner" | "store_offer_grid_item/frame/progress_loading" | "store_offer_grid_item/frame/progress" | "store_offer_grid_item/frame/durable_offer_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2" | "store_offer_grid_item/frame/offer_button" | "thumbnail_only_offer" | "thumbnail_only_offer/frame" | "thumbnail_only_offer/frame/key_art" | "thumbnail_only_offer/frame/key_art/key_art_frame" | "thumbnail_only_offer/frame/key_art/offer_coin_icon" | "thumbnail_only_offer/frame/offer_button" | "store_section_header_label" | "persona_store_row_offer" | "persona_store_row_offer/persona_offer" | "thumnail_only_row_offer" | "thumnail_only_row_offer/generic_store_offer" | "generic_store_row_offer_panel" | "generic_store_row_offer_panel/generic_store_offer" | "store_row_show_more_button_panel" | "store_row_show_more_button_panel/show_more_button" | "persona_show_more_button_panel" | "persona_show_more_button_panel/show_more_button" | "persona_grid_panel_stack" | "persona_grid_panel_stack/default_piece_button" | "persona_grid_panel_stack/persona_grid_panel" | "persona_grid_panel" | "persona_grid_panel/persona_offer_grid" | "store_offer_grid_factory" | "non_collection_item_horizontal_padding" | "horizontal_store_offer_row_factory" | "recently_viewed_row_panel" | "static_offer_row_panel" | "static_offer_row_panel/store_row_dropdown_panel" | "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel" | "store_row_panel" | "store_row_panel/store_row_dropdown_panel" | "store_row_panel/store_row_dropdown_panel/store_row_section_panel" | "vertical_store_row_panel" | "style_header" | "style_header/background" | "style_header/style_header" | "style_header_panel" | "style_header_panel/row_header" | "style_header_panel/row_header/label_panel" | "style_header_panel/row_header/label_panel/indent" | "style_header_panel/row_header/label_panel/row_header_label_centering_panel" | "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label" | "style_header_panel/row_header/label_panel/on_sale_banner" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label" | "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle" | "style_header_panel/row_header/label_panel/time_remaining_label" | "style_header_panel/row_carousel_padding" | "store_row_cycle_button_panel" | "store_row_cycle_button_panel/cycle_button_panel" | "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel" | "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator" | "store_row" | "store_row/carousel_panel" | "store_row/carousel_panel/progress_loading" | "store_row/carousel_panel/cycle_pack_horizontal_stack" | "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel" | "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel" | "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid" | "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel" | "store_row/divider" | "page_indicator_panel" | "page_indicator_panel/first_of_three" | "page_indicator_panel/second_of_three" | "page_indicator_panel/third_of_three" | "page_indicator_panel/first_of_two" | "page_indicator_panel/second_of_two" | "page_indicator" | "popup_dialog__no_store_connection" | "popup_dialog__no_store_connection/popup_dialog_bg" | "popup_dialog__no_store_connection/popup_dialog_message" | "popup_dialog__no_store_connection/popup_dialog_middle_button" | "popup_dialog__restore_popup" | "popup_dialog__restore_popup/popup_dialog_bg" | "popup_dialog__restore_popup/popup_dialog_message" | "popup_dialog__restore_failed" | "popup_dialog__restore_failed/popup_dialog_bg" | "popup_dialog__restore_failed/popup_dialog_message" | "popup_dialog__restore_failed/popup_dialog_middle_button" | "suggested_content_offers_grid_item" | "suggested_content_offers_grid_item/frame" | "suggested_content_offers_grid_item/frame/key_art" | "suggested_content_offers_grid_item/frame/key_art/key_art_frame" | "suggested_content_offers_grid_item/frame/progress_loading" | "suggested_content_offers_grid_item/frame/progress" | "suggested_content_offers_grid_item/frame/title_label_panel" | "suggested_content_offers_grid_item/frame/title_label_panel/title" | "suggested_content_offers_grid_item/frame/title_label_panel/offer_type" | "suggested_content_offers_grid_item/frame/offer_button" | "suggested_content_offers_grid_item/frame/offer_button/hover" | "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel" | "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame" | "suggested_content_offers_grid_item/frame/offer_button/pressed" | "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel" | "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame" | "suggested_content_offers_grid" | "more_suggested_content_offers_button" | "suggested_content_offers_panel_base" | "suggested_content_offers_panel_base/content" | "suggested_content_offers_panel_base/content/suggested_content_offers_grid" | "suggested_content_offers_panel_base/content/more_suggested_content_offers_button" | "suggested_content_offers_panel_base/progress_loading" | "suggested_content_offers_panel_3x1" | "suggested_content_offers_panel_4x1" | "search_text_box_panel" | "search_text_box_panel/search_text_box" | "search_text_box_panel/clear_button" | "search_text_box_panel/loading_spinner" | "search_label_panel" | "search_label_panel/offset_panel" | "search_label_panel/offset_panel/label" | "error_text_panel" | "error_text_panel/error_text_content" | "error_text_panel/error_text_content/top_padding" | "error_text_panel/error_text_content/label_panel" | "error_text_panel/error_text_content/bottom_padding" | "results_text_panel" | "results_text_panel/results_panel" | "results_text_panel/results_panel/top_padding" | "results_text_panel/results_panel/results_content" | "results_text_panel/results_panel/results_content/label_panel" | "results_text_panel/results_panel/results_content/mid_padding" | "results_text_panel/results_panel/results_content/results_close_centering_panel" | "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button" | "results_text_panel/results_panel/results_content/right_padding" | "results_text_panel/results_panel/bottom_padding" | "filter_logo_content_panel" | "filter_logo_content_panel/filter_logo_image" | "filter_logo_content_panel/filter_count_label" | "filter_sort_toggle" | "filter_sort_submenu_scrolling_panel_section" | "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel" | "filter_sort_grid_panel" | "filter_sort_grid_panel/filter_sort_grid" | "sort_button_content_panel" | "search_panel_filter" | "search_panel_filter/search_text_box" | "search_panel_filter/filter_button" | "search_panel_filter/sort_button" | "search_results_and_error_stack" | "search_results_and_error_stack/mid_padding_1" | "search_results_and_error_stack/error_text_panel" | "search_results_and_error_stack/mid_padding_2" | "search_results_and_error_stack/results_text_panel" | "search_panel" | "search_panel/search_panel_content" | "search_panel/search_panel_content/search_text_box" | "search_panel/search_panel_content/search_results_and_error_panel" | "search_panel/search_panel_content/bottom_padding" | "search_and_offer_content" | "search_and_offer_content/search_and_offer_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content" | "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding" | "search_object" | "search_object/search_object_content" | "sort_and_filter_menu_modal_panel" | "sort_and_filter_menu_modal_panel/filter_menu" | "sort_and_filter_menu_modals" | "sort_and_filter_menu_modals/filter_menu_modal" | "sort_and_filter_menu_modals/sort_menu_panel" | "search_filter_sort_background" | "search_filter_background_panel" | "search_filter_background_panel/search_filter_sort_background" | "close_bg_button" | "close_bg_button/default" | "close_bg_button/hover" | "close_bg_button/pressed" | "close_bg_panel" | "close_bg_panel/header_close_button" | "close_bg_panel/main_close_button" | "vertical_line_divider_row" | "vertical_line_divider_row/vert_line_divider_row_top_buffer" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line" | "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer" | "vertical_line_divider_row/vert_line_divider_row_bottom_buffer" | "sdl_dropdown_header_row_button" | "sdl_subcategory_button" | "sdl_dropdown_header_row" | "sdl_dropdown_header_row/drowdown_header_row_content" | "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects" | "sdl_dropdown_data_row" | "sdl_dropdown_data_row/row_background" | "sdl_dropdown_data_row/button_aspects"; -export type StoreLayout = "sdl_scrolling_content_panel" | "sdl_scrolling_content_panel/sdl_scrolling_content_stack" | "sdl_scrolling_content_stack" | "sdl_scrolling_content_stack/padding_0" | "sdl_scrolling_content_stack/store_screen_layout_factory" | "sdl_scrolling_content_stack/footer" | "sdl_scrolling_section_panel" | "sdl_scrolling_section_panel/padding0" | "sdl_scrolling_section_panel/top_static_sdl_section" | "sdl_scrolling_section_panel/padding1" | "sdl_scrolling_section_panel/sdl_scrolling_section" | "sdl_scrolling_section" | "character_creator_sdl_scroll_section" | "character_creator_sdl_section" | "character_creator_sdl_section/sdl_section" | "character_creator_panel" | "character_creator_panel/left_main_panel_padding" | "character_creator_panel/character_creator_sdl_portion" | "character_creator_panel/middle_main_panel_padding" | "character_creator_panel/right_main_panel" | "character_creator_panel/right_main_panel_padding" | "character_creator_screen_layout" | "character_creator_screen_layout/character_creator_panel" | "main_panel" | "main_panel/background" | "main_panel/main_panel_content" | "main_panel/main_panel_content/sdl_screen_content" | "main_panel/progress_loading" | "nav_button_content" | "nav_button_content/image_panel" | "nav_button_content/small_padding" | "nav_button_content/label_panel" | "default_nav_label_panel" | "default_nav_label_panel/button_text_label" | "styled_nav_label_panel" | "styled_nav_label_panel/button_text_label" | "styled_nav_label_panel_minecraftTen" | "styled_nav_label_panel_minecraftTen/button_text_label" | "default_styled_button_text_label" | "nav_image_panel" | "nav_image_panel/button_image_panel" | "nav_image_panel/button_animated_panel" | "nav_button_image_panel" | "nav_button_image_panel/button_image" | "nav_button_image" | "nav_button_animation" | "nav_button_fill" | "nav_button_fill_styled" | "nav_button_fill_styled_mc10" | "nav_button_standard_styled" | "nav_button_standard_styled_mc10" | "nav_button_standard" | "nav_button_standard/nav_button" | "nav_button_grid_panel" | "nav_button_grid_panel/nav_button_grid" | "store_layout_ribbon_search_button" | "store_layout_ribbon_search_button_content" | "store_layout_ribbon_search_button_content/button_image" | "store_data_driven_screen_base" | "store_screen_modal_panel" | "store_screen_modal_panel/one_button_dialog" | "store_screen_modal_panel/popup_dialog_factory" | "dialog_button" | "store_screen_main_panel" | "store_screen_main_panel/main_content_view" | "store_screen_main_panel/sort_and_filter_modals" | "store_full_screen_content" | "store_full_screen_content/mouse_input_focus_panel" | "store_full_screen_content/screen_content" | "store_full_screen_content/screen_content/top_bar_section" | "store_full_screen_content/screen_content/main_panel" | "store_full_screen_content/screen_content/main_panel/main_panel_content" | "store_full_screen_content/popup_dialog_factory" | "store_full_screen_content/character_selector_dialog_factory" | "store_full_screen_content/custom_skin_dialog_factory" | "sdl_base_screen" | "character_creator_base_screen" | "store_data_driven_screen" | "character_creator_screen" | "dressing_room_color_picker_screen" | "expanded_appearance_view_screen" | "non_scrollable_sdl_screen" | "skin_selector_screen" | "store_data_driven_modal_one_button_screen"; -export type FilterMenu = "filter_clear_button_panel" | "filter_clear_button_panel/clear_button" | "chevron_icon_panel" | "chevron_icon_panel/chevron_icon" | "filter_variables_panel" | "filter_option_button_content" | "filter_option_button_content/left_chevron_icon_panel" | "filter_option_button_content/filter_type_and_selected_panel" | "filter_option_button_content/filter_type_and_selected_panel/top_padding" | "filter_option_button_content/filter_type_and_selected_panel/filter_type_label" | "filter_option_button_content/filter_type_and_selected_panel/middle_padding" | "filter_option_button_content/filter_type_and_selected_panel/selected_label" | "filter_option_button_content/filter_type_and_selected_panel/bottom_padding" | "filter_option_button_content/right_chevron_icon_panel" | "filter_options_button_panel" | "filter_options_button_panel/filter_variables_panel" | "filter_options_button_panel/filter_variables_panel/filter_options_button" | "filter_main_menu_options_button_panel" | "filter_title_bar_content" | "filter_title_bar_content/filter_logo_and_count_panel" | "filter_title_bar_content/centered_filter_title_label" | "filter_title_bar_content/centered_filter_title_label/filter_title_label" | "filter_title_bar_content/filter_title_padding_close_button" | "filter_title_bar_content/centered_x" | "filter_title_bar_content/centered_x/close_x_image" | "filter_title_bar" | "filter_checkbox_toggle" | "filter_checkbox_no_icon_toggle" | "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle" | "pack_type_sub_menu_panel" | "pack_type_sub_menu_panel/pack_type_sub_menu" | "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter" | "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters" | "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter" | "offer_type_sub_menu_panel" | "offer_type_sub_menu_panel/bundles_filter" | "offer_type_sub_menu_panel/realms_plus_filter" | "offer_type_sub_menu_panel/csb_filter" | "realms_plus_filter" | "realms_plus_filter/realms_plus_filter" | "csb_filter" | "csb_filter/csb_filter" | "realms_plus_gradient_content_panel" | "realms_plus_gradient_content_panel/gradient" | "realms_plus_gradient_content_panel/particles" | "realms_plus_gradient_content_panel/content_panel" | "csb_gradient_content_panel" | "csb_gradient_content_panel/gradient" | "csb_gradient_content_panel/particles" | "csb_gradient_content_panel/content_panel" | "filter_section_content" | "filter_section_content/section_title_button" | "filter_section_content/clear_button" | "filter_section_content/section_sub_menu" | "filter_section_content_dynamic" | "filter_section_content_dynamic/filter_section_content" | "filter_main_menu_content" | "filter_main_menu_content/filter_title_bar_panel" | "filter_main_menu_content/offer_type_button" | "filter_main_menu_content/pack_type_button" | "filter_main_menu_content/minecoin_button" | "filter_main_menu_content/rating_button" | "filter_main_menu_content/creator_button" | "filter_main_menu_content/graphics_button" | "filter_main_menu_content/installed_state_button" | "filter_main_menu_content/filter_main_menu_filter_toggles_section" | "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel" | "filter_main_menu_content/clear_button_panel" | "filter_main_menu_content_persona" | "filter_main_menu_content_persona/filter_title_bar_panel" | "filter_main_menu_content_persona/persona_body_button" | "filter_main_menu_content_persona/persona_style_button" | "filter_main_menu_content_persona/emote_filter_section" | "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel" | "filter_main_menu_content_persona/minecoin_button" | "filter_main_menu_content_persona/clear_button_panel" | "filter_section_content_panel" | "filter_section_content_panel/filter_menu_screen" | "filter_main_menu_section" | "filter_main_menu_section_persona" | "filter_pack_type_section" | "filter_offer_type_section" | "filter_type_section" | "filter_menu_content" | "filter_menu_content/filter_main_menu_screen" | "filter_menu_content/filter_offer_type_screen" | "filter_menu_content/filter_pack_type_screen" | "filter_menu_content/filter_minecoin_section" | "filter_menu_content/filter_rating_section" | "filter_menu_content/filter_creator_section" | "filter_menu_content/filter_graphics_section" | "filter_menu_content/filter_installed_state_section" | "filter_menu_content_persona" | "filter_menu_content_persona/filter_main_menu_screen" | "filter_menu_content_persona/filter_style_section" | "filter_menu_content_persona/filter_body_section" | "filter_menu_content_persona/filter_minecoin_section" | "filter_menu_panel" | "filter_menu_panel/top_padding" | "filter_menu_panel/alignment_panel" | "filter_menu_panel/alignment_panel/left_padding" | "filter_menu_panel/alignment_panel/filter_menu_content_scroll" | "filter_menu_panel/alignment_panel/right_padding" | "filter_menu_screen_content" | "filter_menu_screen_content/filter_main_panel" | "filter_menu_screen_content/filter_main_panel_persona" | "filter_menu_screen_content/filter_menu_close_background_button"; -export type StoreInventory = "sign_in_button" | "no_xbl_and_local_content_warning_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button" | "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding" | "no_xbl_and_local_content_warning_panel/bottom_padding" | "no_xbl_and_no_local_conent_warning_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button" | "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding" | "no_xbl_and_no_local_conent_warning_panel/bottom_padding" | "inventory_sign_in_panel" | "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel" | "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel" | "divider_panel" | "divider_panel/top_pad" | "divider_panel/divider" | "divider_panel/bottom_pad" | "right_image" | "down_image" | "section_toggle_base" | "owned_toggle" | "current_toggle" | "removed_toggle" | "subscriptions_toggle" | "inventory_left_panel" | "inventory_left_panel/top_pad" | "inventory_left_panel/owned_toggle" | "inventory_left_panel/owned_dropdown_box_panel" | "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box" | "inventory_left_panel/divider_0" | "inventory_left_panel/csub_panel" | "inventory_left_panel/csub_panel/csub_stack_panel" | "inventory_left_panel/divider_1" | "inventory_left_panel/subscriptions_toggle" | "csub_stack_panel" | "csub_stack_panel/padding_title_vertical" | "csub_stack_panel/section_title" | "csub_stack_panel/section_title/padding_title_horizontal" | "csub_stack_panel/section_title/testTitle" | "csub_stack_panel/dropdown_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box" | "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2" | "subscriptions_text_panel" | "subscriptions_text_panel/subscriptions_text" | "realms_plus_stack_panel" | "realms_plus_stack_panel/section_title" | "realms_plus_stack_panel/section_title/border" | "realms_plus_stack_panel/section_title/section_title_label" | "realms_plus_stack_panel/section_title/particles" | "realms_plus_stack_panel/dropdown_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box" | "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2" | "dropdown_button_content" | "dropdown_button_content/title_label" | "dropdown_button_content/pad_0_fill" | "dropdown_button_content/pad_0" | "dropdown_button_content/icon_panel" | "dropdown_button_content/icon_panel/block_icon" | "dropdown_button_content/pad_1" | "dropdown_button_content/pad_2" | "dropdown_button_content/count_panel" | "dropdown_button_content/count_panel/count" | "dropdown_button_content/pad_3" | "dropdown_button_content/right_carrot" | "dropdown_button_content/right_carrot/right" | "dropdown_button_content/down_carrot" | "dropdown_button_content/down_carrot/down" | "owned_dropdown_content" | "current_dropdown_content" | "removed_dropdown_content" | "dropdown_box" | "dropdown_box/top_pad" | "dropdown_box/all" | "dropdown_box/divider_0" | "dropdown_box/addons" | "dropdown_box/divider_1" | "dropdown_box/skins" | "dropdown_box/divider_2" | "dropdown_box/worlds" | "dropdown_box/divider_3" | "dropdown_box/textures" | "dropdown_box/divider_4" | "dropdown_box/mashups" | "dropdown_box/bottom_pad" | "category_panel_button" | "category_panel_button/default" | "category_panel_button/hover" | "category_panel_button/pressed" | "category_stack_panel" | "category_stack_panel/text" | "category_stack_panel/fill_pad" | "category_stack_panel/icon" | "category_stack_panel/pad_1" | "category_stack_panel/number" | "search_object" | "list_panel" | "list_panel/list_panel_content" | "list_panel/list_panel_content/search_and_offers_grid_scroll_panel" | "list_panel/progress_loading" | "items_content_section" | "subscriptions_content_section" | "subscriptions_content_section/left_pad" | "subscriptions_content_section/search_and_offers_grid_scroll_panel" | "right_pane_factory" | "content_area" | "content_area/control" | "content_area/control/right_pane_factory" | "main_panel" | "main_panel/inventory_left_panel" | "main_panel/inventory_left_panel/inventory_left_image" | "main_panel/inventory_left_panel/left_scrolling_panel" | "main_panel/divider_panel" | "main_panel/divider_panel/main_divider" | "main_panel/inventory_right_panel" | "main_panel/inventory_right_panel/right_panel_background_image" | "main_panel/inventory_right_panel/content_right_panel" | "store_inventory_screen_main_panel" | "store_inventory_screen_main_panel/main_content_view" | "store_inventory_screen_main_panel/sort_and_filter_modals" | "store_search_screen_content" | "store_search_screen_content/main_panel" | "store_search_screen_content/popup_dialog_factory" | "store_inventory_screen" | "signin_text_section_body" | "signin_text" | "signin_text_02" | "signin_text_section" | "signin_text_section/signin_text" | "signin_text_section/line_1_padding_line_2" | "signin_text_section/signin_text_02" | "sign_in_panel_text_body"; -export type StoreItemList = "store_offer_key_art" | "main_panel" | "main_panel/search_object" | "main_panel/progress_loading" | "scrolling_content_stack" | "scrolling_content_stack/search_panel" | "store_offer_grid" | "persona_offer_grid" | "vertical_store_offer_grid" | "store_offer_title" | "store_offer_grid_item" | "store_offer_grid_item/frame" | "store_offer_grid_item/frame/key_art" | "store_offer_grid_item/frame/key_art/key_art_frame" | "store_offer_grid_item/frame/key_art/csb_expiration_banner" | "store_offer_grid_item/frame/progress" | "store_offer_grid_item/frame/title_label_panel" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title" | "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label" | "store_offer_grid_item/frame/durable_offer_info_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel" | "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6" | "store_offer_grid_item/frame/offer_button" | "store_offer_grid_item/frame/offer_button/hover" | "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel" | "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame" | "store_offer_grid_item/frame/offer_button/pressed" | "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel" | "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame" | "store_offer_grid_item/frame/offer_button/offer_status_icon" | "store_screen_content" | "store_screen_content/main_panel" | "store_screen_content/popup_dialog_factory"; -export type StoreProgress = "store_progress_screen" | "screen_content" | "screen_content/title_image" | "screen_content/progress_dialog" | "dialog_content" | "dialog_content/tooltip_panel" | "dialog_content/tooltip_panel/tooltip_text" | "dialog_content/padding" | "dialog_content/progress_panel" | "dialog_content/progress_panel/empty_progress_bar" | "dialog_content/progress_panel/progress_percent_panel" | "dialog_content/progress_panel/progress_percent_panel/full_progress_bar" | "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub" | "screen_background"; -export type PromoTimeline = "promo_banner_factory" | "promo_banner_button_content" | "promo_banner_button_content/promo_banner_button" | "promo_banner_button_content/progress_loading_spinner" | "promo_banner_image" | "promo_banner_panel_content" | "promo_banner_panel_content/banner_image" | "promo_banner_panel_content/banner_text_panel" | "promo_banner_panel_content/banner_text_panel/padding_0" | "promo_banner_panel_content/banner_text_panel/title_stack_panel" | "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title" | "promo_banner_panel_content/banner_text_panel/description" | "promo_banner_panel_content/button_stack_panel" | "promo_banner_panel_content/button_stack_panel/left_offset" | "promo_banner_panel_content/button_stack_panel/banner_button" | "promo_banner_panel_content/button_stack_panel/right_offset" | "promo_banner_holiday_panel" | "promo_banner_holiday_panel/banner_full_button" | "promo_banner_holiday_panel/banner_full_button/default" | "promo_banner_holiday_panel/banner_full_button/hover" | "promo_banner_holiday_panel/banner_full_button/pressed" | "image_message_panel" | "image_message_panel/image_message_row_content" | "image_message_panel/padding_0" | "image_message_row_content" | "image_message_row_content/gray_background" | "image_message_row_content/gray_background/message_text" | "image_message_row_content/gray_background/row_image" | "image_message_row_content/row_button" | "promo_image_panel" | "promo_image_panel/button_image_panel" | "promo_image_panel/button_animated_panel" | "promo_button_image_panel" | "promo_button_image_panel/button_image" | "promo_button_image" | "promo_button_animation" | "banner_button" | "sdl_text_aligned_panel" | "sdl_text_minecraftTen_aligned_panel" | "sdl_content_aligned_panel" | "sdl_content_aligned_panel/left__padding_panel" | "sdl_content_aligned_panel/control" | "sdl_content_aligned_panel/right_padding_panel" | "sdl_aligned_text" | "sdl_aligned_minecraftTen_text" | "colored_direction_button_panel" | "colored_direction_button_panel/chevron_image" | "left_corner_art" | "right_corner_art" | "promo_landing_panel" | "promo_landing_panel/promo_landing_panel_content" | "promo_landing_panel/promo_landing_panel_content/promo_top" | "promo_landing_panel/promo_landing_panel_content/pad_0" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel" | "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button" | "promo_landing_panel/promo_landing_panel_content/pad_1" | "promo_landing_panel/left_corner_art" | "promo_landing_panel/right_corner_art" | "promotion_screen_top_section" | "promotion_screen_top_section/main_panel" | "promotion_top_main_panel" | "promotion_top_main_panel/promotion_top_main_stack" | "promotion_top_main_panel/promotion_top_main_stack/main_panel_title" | "promotion_top_main_panel/promotion_top_main_stack/promo_single_top" | "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view" | "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item" | "main_panel_title" | "main_panel_title/padding_0" | "main_panel_title/header_stack" | "main_panel_title/header_stack/padding_0" | "main_panel_title/header_stack/back_button_centering_panel" | "main_panel_title/header_stack/back_button_centering_panel/button" | "main_panel_title/header_stack/padding_1" | "main_panel_title/header_stack/header_panel" | "main_panel_title/header_stack/header_panel/title_and_description" | "main_panel_title/header_stack/padding_2" | "main_panel_title/header_stack/claim_all_button_panel" | "main_panel_title/header_stack/claim_all_button_panel/claim_all_button" | "main_panel_title/padding_1" | "main_panel_title/divdier_centering_panel" | "main_panel_title/divdier_centering_panel/divider" | "main_panel_title/padding_2" | "promo_multi_item_grid" | "promo_button" | "promo_button/default" | "promo_button/default/key_art_size_panel" | "promo_button/default/key_art_size_panel/key_art_frame" | "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel" | "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image" | "promo_button/default/key_art_size_panel/button_frame" | "promo_button/hover" | "promo_button/hover/key_art_size_panel" | "promo_button/hover/key_art_size_panel/key_art_frame" | "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel" | "promo_button/hover/key_art_size_panel/button_frame" | "promo_button/pressed" | "promo_button/pressed/key_art_frame" | "promo_button/pressed/key_art_frame/sizing_panel" | "promo_button/pressed/button_frame" | "promo_grid_item" | "promo_grid_item/background_image" | "promo_grid_item/background_image/promo_content" | "promo_grid_item/promo_button" | "promo_grid_item/platform_restricted_error_multi_item" | "platform_restricted_error" | "platform_restricted_error/platform_restricted_error_button" | "platform_restricted_error/platform_restricted_error_button/default" | "platform_restricted_error/platform_restricted_error_button/hover" | "platform_restricted_error/platform_restricted_error_button/pressed" | "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out" | "promo_grid_item_content" | "promo_grid_item_content/thumbnail_image" | "promo_grid_item_content/persona_key_art_frame" | "promo_grid_item_content/persona_key_art_frame/persona_image_panel" | "promo_grid_item_content/persona_key_art_frame/background" | "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel" | "promo_grid_item_content/padding_0" | "promo_grid_item_content/title_tooltip" | "promo_grid_item_content/title_tooltip/promo_title" | "promo_grid_item_content/title_tooltip/tooltip" | "promotion_period_grid_panel" | "promotion_period_grid_panel/promotion_offer_grid_image" | "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel" | "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button" | "promotion_period_offer_panel" | "promotion_period_offer_panel/period_1" | "promotion_period_offer_panel/padding_0" | "promotion_period_offer_panel/period_2" | "promotion_period_offer_panel/padding_1" | "promotion_period_offer_panel/period_3" | "promotion_period_offer_panel/padding_2" | "promotion_period_offer_panel/period_4" | "promotion_period_offer_panel/padding_3" | "promotion_period_offer_panel/period_5" | "promotion_period_offer_panel/padding_4" | "promotion_period_offer_panel/period_6" | "promotion_period_offer_panel/padding_5" | "promotion_period_offer_panel/period_7" | "toggle_button_control" | "toggle_button_control/green_check" | "toggle_button_control/key_art_image_panel" | "toggle_button_control/key_art_image_panel/image_loading_panel" | "toggle_button_control/key_art_image_panel/key_art_image" | "checked_border" | "promotion_period_grid_item" | "promotion_period_grid_item/frame" | "promotion_period_grid_item/frame/offer_button" | "promotion_period_grid_item/frame/offer_button/offer_toggle_button" | "vertical_padding_2px" | "timer_icon_tooltip_panel" | "timer_icon_tooltip_panel/limited_status_image" | "timer_tooltip_panel_right_extending" | "timer_tooltip_panel_right_extending/default" | "timer_tooltip_panel_right_extending/hover" | "timer_tooltip_panel_right_extending/pressed" | "timer_tooltip_panel_left_extending" | "timer_tooltip_panel_left_extending/default" | "timer_tooltip_panel_left_extending/hover" | "timer_tooltip_panel_left_extending/pressed" | "no_timer_tooltip_panel" | "no_timer_tooltip_panel/default" | "no_timer_tooltip_panel/hover" | "no_timer_tooltip_panel/pressed" | "promo_timer_panel" | "promo_timer_panel/timer_icon_and_tooltip_panel" | "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending" | "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending" | "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button" | "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon" | "promo_timer_panel/padding" | "promo_timer_panel/timer_text" | "offer_title_panel" | "offer_title_panel/offer_title_label" | "title_and_author_panel" | "title_and_author_panel/author_button_panel" | "title_and_author_panel/author_button_panel/summary_author_button" | "glyph_panel" | "glyph_panel/item_glyph_count_panel" | "glyph_panel/item_glyph_count_panel/glyph_icon_panel" | "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon" | "glyph_panel/item_glyph_count_panel/center_item_glyph_padding" | "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label" | "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding" | "vertical_glyph_section_content" | "vertical_glyph_section_content/glyph_content" | "vertical_glyph_section_content/bottom_glyph_content_padding" | "glyph_section_panel" | "glyph_section_panel/glyphs" | "glyph_section_panel/glyphs/skin_glyph_section" | "glyph_section_panel/glyphs/world_glyph_section" | "glyph_section_panel/glyphs/resource_pack_glyph_section" | "vertical_glyph_section_panel" | "image_glyphs_panel" | "image_glyphs_panel/world_panel" | "image_glyphs_panel/world_panel/border" | "image_glyphs_panel/world_panel/world_key_image" | "image_glyphs_panel/persona_panel" | "image_glyphs_panel/persona_panel/border" | "image_glyphs_panel/persona_panel/persona_image" | "image_glyphs_panel/persona_panel/background" | "image_glyphs_panel/persona_panel/rarity_bar_panel" | "image_glyphs_panel/divider" | "image_glyphs_panel/info" | "image_glyphs_panel/info/summary_title_and_author_panel" | "image_glyphs_panel/info/glyph_section" | "image_glyphs_panel/info/glyph_section/glyph_section_panel" | "promo_lower_button_content" | "promo_lower_button_content/promo_banner_button" | "promo_lower_button_content/progress_loading_spinner" | "free_discount_label" | "promo_upper_button_content" | "promo_upper_button_content/markdown" | "promo_upper_button_content/markdown/sales_banner_offset_panel" | "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel" | "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner" | "promo_upper_button_content/markdown/price_markdown_panel" | "promo_upper_button_content/markdown/price_markdown_panel/offer_price" | "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through" | "promo_upper_button_content/promo_item_action_text_panel" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image" | "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding" | "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text" | "promo_upper_button_content/download_progress_bar" | "description_section_panel" | "description_section_panel/contents_description" | "offset_title_offer" | "offset_title_offer/pad_0" | "offset_title_offer/title_panel" | "offset_promo_timer" | "offset_promo_timer/pad_0" | "offset_promo_timer/promo_timer" | "offset_image_glyphs_panel" | "offset_image_glyphs_panel/pad_0" | "offset_image_glyphs_panel/smaller_panel" | "offset_image_glyphs_panel/smaller_panel/details" | "offset_image_glyphs_panel/smaller_panel/description" | "promo_pack_detail_panel" | "promo_pack_detail_panel/offset_title_panel" | "promo_pack_detail_panel/offsetted_promo_timer" | "promo_pack_detail_panel/pad_0" | "promo_pack_detail_panel/offsetted_details" | "promo_pack_detail_panel/pad_1" | "promo_left_inner_top_scrolling_content" | "promo_left_inner_top_scrolling_content/details" | "promo_left_inner_top" | "promo_left_inner_top/top" | "promo_left_inner_top/padding2" | "promo_left_inner_bottom" | "promo_left_inner_bottom/banner_button_top_panel" | "promo_left_inner_bottom/banner_button_top_panel/banner_button_top" | "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item" | "promo_left_inner_bottom/banner_button_bottom" | "promo_left_panel" | "promo_left_panel/top" | "promo_left_panel/bottom_buttons_padded" | "promo_left_panel/bottom_buttons_padded/pad_0" | "promo_left_panel/bottom_buttons_padded/bottom" | "promo_left_panel/padding" | "promo_world_image_panel" | "promo_world_image_panel/image" | "promo_world_image_panel/image/key_image" | "promo_world_image_panel/image/key_image/border" | "promo_grey_bar_panel" | "promo_grey_bar_panel/grey_bar" | "promo_grey_bar_panel/green_bar" | "promo_grey_bar_panel/padding" | "promo_world_button_panel" | "promo_world_button_panel/pan_left_button" | "promo_world_button_panel/navigation_bar" | "promo_world_button_panel/navigation_bar/grey_bar" | "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel" | "promo_world_button_panel/pan_right_button" | "promo_world_panel" | "promo_world_panel/image" | "promo_world_panel/padding1" | "promo_world_panel/buttons" | "promo_world_panel/padding_3" | "promo_skin_panel" | "promo_skin_panel/size_control" | "promo_skin_panel/size_control/background" | "promo_skin_panel/size_control/skin_button" | "promo_skin_panel/size_control/skin_button/default" | "promo_skin_panel/size_control/skin_button/hover" | "promo_skin_panel/size_control/skin_button/pressed" | "promo_skin_panel/size_control/skin_button/content_panel" | "promo_skin_panel/size_control/skin_button/content_panel/paper_doll" | "promo_skin_grid_panel" | "promo_skin_grid_panel/promo_skin_pack_grid" | "promo_right_panel_scroll_content" | "promo_right_panel_scroll_content/world_screenshots_panel" | "promo_right_panel_scroll_content/world_screenshots_panel/world_panel" | "promo_right_panel_scroll_content/skin_image_panel" | "promo_right_panel_scroll_content/skin_image_panel/skin_panel" | "promo_right_panel_scroll_content/persona_preview" | "skin_scroll_panel" | "persona_classic_skin_grid_panel" | "persona_classic_skin_grid_panel/persona_skin_pack_category_grid" | "promo_right_panel" | "promo_detail_panel" | "promo_detail_panel/detail" | "promo_detail_panel/center_spacing" | "promo_detail_panel/right" | "promotion_skin_viewer_panel" | "promotion_skin_viewer_panel/popup_dialog_factory" | "promotion_skin_viewer_panel/character_loading_panel" | "promotion_skin_viewer_panel/skin_model_panel" | "promotion_skin_viewer_panel/skin_model_panel/skin_model" | "promotion_skin_viewer_panel/skin_model_panel/arrow_panel" | "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows" | "promo_popup_toast"; -export type StoreSaleItemList = "banner_header" | "banner_header/label_panel" | "banner_header/label_panel/on_sale_banner" | "banner_header/label_panel/on_sale_banner/padding_panel" | "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label" | "banner_header/label_panel/on_sale_banner/padding_panel/triangle" | "banner_header/label_panel/time_remaining_label" | "sales_offer_content" | "sales_offer_content/top_padding" | "sales_offer_content/sales_panel" | "sales_offer_content/sales_panel/sales_banner_panel" | "sales_offer_content/sales_panel/top_sales_grid_padding" | "sales_offer_content/sales_panel/sales_grid_panel" | "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid" | "all_offer_content" | "all_offer_content/store_offer_grid_panel"; -export type StoreSearch = "store_offer_grid_item" | "trending_row_content" | "trending_row_content/trending_row_panel" | "trending_row_content/trending_row_panel/trending_row_label_panel" | "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label" | "trending_row_content/trending_row_panel/mid_padding" | "trending_row_content/trending_row_panel/trending_offers_grid" | "trending_row_content/trending_row_panel/bottom_padding" | "trending_rows_grid" | "search_offer_content" | "search_offer_content/trending_grid" | "search_offer_content/item_list_panel" | "search_offer_content/item_list_panel/item_list_grid" | "main_panel" | "main_panel/seach_object" | "main_panel/progress_loading" | "store_search_screen_content" | "store_search_screen_content/main_panel" | "store_search_screen_content/popup_dialog_factory" | "store_search_screen"; -export type SortMenu = "sort_menu_toggle_panel" | "sort_menu_toggle_panel/sort_menu_toggle_panel" | "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle" | "sort_menu_first_button_content_panel" | "sort_menu_first_button_content_panel/left_padding" | "sort_menu_first_button_content_panel/centered_sort_logo_icon" | "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon" | "sort_menu_first_button_content_panel/logo_padding_labels" | "sort_menu_first_button_content_panel/labels_stack_panel" | "sort_menu_first_button_content_panel/labels_stack_panel/top_padding" | "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top" | "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding" | "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom" | "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding" | "sort_menu_first_button_content_panel/labels_padding_x_image" | "sort_menu_first_button_content_panel/x_image_panel" | "sort_menu_first_button_content_panel/x_image_panel/x_image" | "sort_menu_toggles" | "sort_menu_toggles/relevance_toggle_panel" | "sort_menu_toggles/relevance_toggle_panel/relevance_toggle" | "sort_menu_toggles/sort_toggle_grid" | "sort_menu_show" | "sort_menu_show/1st_button_centering_panel" | "sort_menu_show/1st_button_centering_panel/first_button_main" | "sort_menu_show/sort_scrolling_content_panel" | "sort_menu_panel" | "sort_menu_panel/top_padding" | "sort_menu_panel/alignment_panel" | "sort_menu_panel/alignment_panel/left_padding" | "sort_menu_panel/alignment_panel/sort_menu_show" | "sort_menu_panel/alignment_panel/right_padding" | "sort_menu_screen_content" | "sort_menu_screen_content/sort_menu_main" | "sort_menu_screen_content/sort_menu_main_persona" | "sort_menu_screen_content/sort_menu_background"; -export type StructureEditor = "small_padding" | "help_icon" | "common_text_label" | "text_edit_control" | "axis_selection_panel" | "axis_selection_panel/label" | "axis_selection_panel/edit_box" | "grid_axis_selection_panel" | "grid_axis_selection_panel/label_container" | "grid_axis_selection_panel/label_container/label" | "grid_axis_selection_panel/axis_grid" | "grid_axis_selection_panel/axis_grid/X" | "grid_axis_selection_panel/axis_grid/Y" | "grid_axis_selection_panel/axis_grid/Z" | "3d_export_button" | "save_button" | "export_button" | "load_button" | "detect_button" | "import_button" | "reset_button" | "help_button" | "toggle_option_panel" | "toggle_option_panel/toggle" | "toggle_option_panel/offset_0" | "toggle_option_panel/first_label_wrapper" | "toggle_option_panel/first_label_wrapper/first_label" | "toggle_option_panel/second_label_wrapper" | "toggle_option_panel/second_label_wrapper/second_label" | "include_entities_panel" | "include_entities_panel/label" | "include_entities_panel/toggle_wrapper" | "include_entities_panel/toggle_wrapper/toggle" | "waterlogging_panel" | "waterlogging_panel/label" | "waterlogging_panel/toggle_wrapper" | "waterlogging_panel/toggle_wrapper/toggle" | "show_bounding_box_panel" | "show_bounding_box_panel/label" | "show_bounding_box_panel/toggle_wrapper" | "show_bounding_box_panel/toggle_wrapper/toggle" | "include_player_panel" | "include_player_panel/label" | "include_player_panel/toggle_wrapper" | "include_player_panel/toggle_wrapper/toggle" | "remove_blocks_panel" | "remove_blocks_panel/label" | "remove_blocks_panel/toggle_wrapper" | "remove_blocks_panel/toggle_wrapper/toggle" | "3d_export_mode_panel" | "3d_export_mode_panel/size_offset_panel" | "3d_export_mode_panel/size_offset_panel/size_panel" | "3d_export_mode_panel/size_offset_panel/offset_panel" | "3d_export_mode_panel/offset_0" | "3d_export_mode_panel/offset_2" | "3d_export_mode_panel/remove_blocks" | "save_mode_panel" | "save_mode_panel/structure_name" | "save_mode_panel/size_offset_panel" | "save_mode_panel/size_offset_panel/size_panel" | "save_mode_panel/size_offset_panel/offset_panel" | "save_mode_panel/detect_offset" | "save_mode_panel/detect" | "save_mode_panel/include_entities_offset" | "save_mode_panel/include_entities" | "save_mode_panel/remove_blocks_offset" | "save_mode_panel/remove_blocks" | "save_mode_panel/redstone_save_offset" | "save_mode_panel/redstone_save_mode" | "save_mode_panel/trailing_offset" | "mirror_checkbox" | "mirror_checkbox/label" | "mirror_checkbox/padding" | "mirror_checkbox/check_box" | "mirror_checkboxes" | "mirror_checkboxes/mirror_checkbox_x" | "mirror_checkboxes/padding" | "mirror_checkboxes/mirror_checkbox_z" | "load_mode_panel" | "load_mode_panel/structure_name" | "load_mode_panel/offset_panel" | "load_mode_panel/include_entities_offset" | "load_mode_panel/include_entities" | "load_mode_panel/remove_blocks_offset" | "load_mode_panel/waterlog_blocks" | "load_mode_panel/waterlog_blocks_offset" | "load_mode_panel/remove_blocks" | "load_mode_panel/integrity_offset" | "load_mode_panel/integrity_label" | "load_mode_panel/integrity_field" | "load_mode_panel/offset_1" | "load_mode_panel/seed_label" | "load_mode_panel/seed_field" | "load_mode_panel/offset_2" | "load_mode_panel/rotation_slider" | "load_mode_panel/mirror_label" | "load_mode_panel/mirror_checkboxes_centerer" | "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes" | "load_mode_panel/checkbox_offset" | "load_mode_panel/animation_mode" | "load_mode_panel/animation_time_label" | "load_mode_panel/animation_time_field" | "data_mode_panel" | "data_mode_panel/top_offset" | "data_mode_panel/data_label" | "data_mode_panel/data_label_offset" | "data_mode_panel/data_field" | "data_mode_panel/data_field_offset" | "corner_mode_panel" | "corner_mode_panel/structure_name" | "help_button_panel" | "help_button_panel/help" | "help_button_panel/help_divider" | "save_button_panel" | "save_button_panel/divider" | "save_button_panel/save" | "save_button_panel/save_divider" | "save_button_panel/export" | "save_button_panel/export_divider" | "save_button_panel/import_divider" | "save_button_panel/reset" | "save_button_panel/reset_divider" | "save_button_panel_no_export" | "save_button_panel_no_export/divider" | "save_button_panel_no_export/save" | "save_button_panel_no_export/save_divider" | "save_button_panel_no_export/reset" | "save_button_panel_no_export/reset_divider" | "load_button_panel" | "load_button_panel/divider" | "load_button_panel/load" | "load_button_panel/load_divider" | "load_button_panel/export_divider" | "load_button_panel/import" | "load_button_panel/import_divider" | "load_button_panel/reset" | "load_button_panel/reset_divider" | "load_button_panel_no_export" | "load_button_panel_no_export/divider" | "load_button_panel_no_export/load" | "load_button_panel_no_export/load_divider" | "load_button_panel_no_export/reset" | "load_button_panel_no_export/reset_divider" | "3d_export_button_panel" | "3d_export_button_panel/divider" | "3d_export_button_panel/3d_export" | "3d_export_button_panel/3d_export_divider" | "3d_export_button_panel/import" | "3d_export_button_panel/import_divider" | "3d_export_button_panel/reset" | "3d_export_button_panel/reset_divider" | "data_button_panel" | "data_button_panel/divider" | "data_button_panel/reset" | "data_button_panel/reset_divider" | "corner_button_panel" | "corner_button_panel/reset_divider" | "button_panel_wrapper" | "button_panel_wrapper/panel" | "button_panel_wrapper/panel/divider" | "button_panel_wrapper/panel/save_panel" | "button_panel_wrapper/panel/save_panel_no_export" | "button_panel_wrapper/panel/corner_panel" | "button_panel_wrapper/panel/load_panel_no_export" | "button_panel_wrapper/panel/load_panel" | "button_panel_wrapper/panel/3d_export_panel" | "button_panel_wrapper/panel/data_panel" | "button_panel_wrapper/panel/how_to_play_button" | "button_panel_wrapper/panel/end_divider" | "redstone_dropdown_content" | "redstone_save_mode_panel" | "animation_mode_dropdown_content" | "animation_mode_dropdown" | "structure_name_wrapper" | "structure_name_wrapper/structure_name" | "structure_name_wrapper/structure_name_offset" | "detect_button_wrapper" | "detect_button_wrapper/detect" | "detect_button_wrapper/detect_offset" | "mode_dropdown_content" | "mode_panel" | "scrolling_panel_wrapper" | "scrolling_panel_wrapper/scrolling_panel" | "scrolling_panel" | "scroll_panel_content" | "scroll_panel_content/content_stack_panel" | "scroll_panel_content/content_stack_panel/base_offset" | "scroll_panel_content/content_stack_panel/mode_panel" | "scroll_panel_content/content_stack_panel/mode_panel_offset" | "scroll_panel_content/content_stack_panel/3d_export_mode_panel" | "scroll_panel_content/content_stack_panel/save_mode_panel" | "scroll_panel_content/content_stack_panel/load_mode_panel" | "scroll_panel_content/content_stack_panel/data_mode_panel" | "scroll_panel_content/content_stack_panel/corner_mode_panel" | "scroll_panel_content/content_stack_panel/base_mode_offset" | "scroll_panel_content/content_stack_panel/show_bounding_box" | "scroll_panel_content/content_stack_panel/show_bounding_box_offset" | "scroll_panel_content/content_stack_panel/offset_2" | "left_divider_content" | "left_divider_content/scrolling_panel" | "save_message_text" | "save_message_text/save_message_label" | "import_message_text" | "import_message_text/save_message_label" | "import_failed_message_text" | "import_failed_message_text/save_message_label" | "export_disabled_label" | "image_panel_wrapper" | "image_panel_wrapper/image_panel" | "image_panel_wrapper/save_message_factory" | "image_panel_wrapper/import_message_factory" | "image_panel_wrapper/import_failed_message_factory" | "image_panel_wrapper/export_disabled" | "corner_text" | "corner_text/image_panel" | "image_panel" | "image_panel/border_indent" | "image_panel/border_indent/background_gradient" | "image_panel/border_indent/image_outline" | "image_panel/border_indent/structure_renderer" | "image_panel/border_indent/text_corner" | "image_panel/border_indent/progress_panel" | "image_panel/border_indent/rotate_arrows" | "progress_panel" | "progress_panel/stack_panel" | "progress_panel/stack_panel/label_wrapper" | "progress_panel/stack_panel/label_wrapper/progress_label" | "progress_panel/stack_panel/progress_bar" | "background_gradient" | "corner_text_panel" | "corner_text_panel/paragraph_1_corner" | "corner_text_panel/padding_1" | "corner_text_panel/paragraph_2_corner" | "structure_renderer" | "structure_renderer/renderer" | "black_border" | "rotation_arrows" | "right_divider_content" | "right_divider_content/base_offset" | "right_divider_content/preview" | "right_divider_content/image_offset" | "right_divider_content/button_wrapper" | "right_divider_content/button_wrapper/buttons" | "divider_content" | "divider_content/left_side" | "divider_content/right_side" | "structure_editor_content" | "structure_editor_content/background_panel" | "structure_editor_content/title" | "structure_editor_content/content" | "structure_editor_screen"; -export type SubmitFeedback = "send_feedback_button" | "write_feedback_panel" | "write_feedback_panel/pad_1" | "write_feedback_panel/write_feedback_label" | "write_feedback_panel/pad_2" | "write_feedback_panel/feedback_textbox" | "write_feedback_panel/remaining_characters_panel" | "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label" | "scroll_panel" | "scroll_panel/write_feedback_panel" | "main_panel" | "main_panel/scrolling_panel" | "submit_feedback_screen" | "submit_feedback_content" | "submit_feedback_content/submit_feedback_main_panel" | "submit_feedback_content/progress_loading"; -export type TabbedUpsell = "padding_horizontal" | "padding_vertical" | "text_horizontal_padding" | "tabbed_upsell_buy_now_button" | "tabbed_buy_now_label" | "tabbed_buy_now_label/button_label" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/tab_content_title_panel" | "text_panel/tab_content_description_panel" | "text_panel/tab_content_description_panel_second" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "content_image_panel" | "content_image_panel/minecraft_dialog_image_with_border" | "content_image_panel/horizontal_padding_01" | "content_image_panel/scrolling_panel" | "scroll_text" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/xbl_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/server_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/store_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/creative_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/packs_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tabbed_tab_navigation_panel_layout/seeds_navigation_tab" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/minecraft_tab_content" | "tabbed_tab_content_panel_layout/xbl_tab_content2" | "tabbed_tab_content_panel_layout/achievements_tab_content3" | "tabbed_tab_content_panel_layout/multiplayer_tab_content4" | "tabbed_tab_content_panel_layout/server_tab_content5" | "tabbed_tab_content_panel_layout/store_tab_content6" | "tabbed_tab_content_panel_layout/creative_tab_content7" | "tabbed_tab_content_panel_layout/packs_tab_content8" | "tabbed_tab_content_panel_layout/seeds_tab_content9" | "common_tab_content_panel" | "common_tab_content_panel/content" | "minecraft_tab_content_panel" | "xbl_tab_content_panel" | "achievements_tab_content_panel" | "multiplayer_tab_content_panel" | "server_tab_content_panel" | "store_tab_content_panel" | "creative_tab_content_panel" | "packs_tab_content_panel" | "seeds_tab_content_panel" | "common_tab_screen_panel" | "common_tab_screen_panel/tab_navigation_panel" | "common_tab_screen_panel/padding_01" | "common_tab_screen_panel/tab_content_panel" | "tabbed_screen_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "tab_panel" | "tab_panel/padding_3" | "tab_panel/main_control" | "tab_panel/padding_4" | "tabbed_upsell_content" | "tabbed_upsell_content/padding_0" | "tabbed_upsell_content/tab_panel" | "tabbed_upsell_content/padding_1" | "tabbed_upsell_content/button_panel" | "tabbed_upsell_content/padding_2" | "tabbed_upsell_screen" | "tabbed_upsell_screen_panel" | "tabbed_upsell_screen_panel/tabbed_upsell_screen_content" | "tabbed_upsell_screen_panel/background"; -export type ThanksForTesting = "padding_horizontal" | "padding_vertical" | "text_horizontal_padding" | "tabbed_upsell_buy_now_button" | "tabbed_buy_now_label" | "tabbed_buy_now_label/button_label" | "label_panel" | "label_panel/label_text" | "text_panel" | "text_panel/tab_content_title_panel" | "text_panel/tab_content_description_panel" | "text_panel/tab_content_description_panel_second" | "dialog_image" | "dialog_image_with_border" | "dialog_image_with_border/dialog_image" | "content_image_panel" | "content_image_panel/minecraft_dialog_image_with_border" | "content_image_panel/horizontal_padding_01" | "content_image_panel/scrolling_panel" | "scroll_text" | "image_panel" | "image_panel/dialog_image_with_border" | "image_panel/focus_image" | "top_tab" | "tab_navigation_panel_layout" | "tab_navigation_panel_layout/navigation_tabs" | "tab_navigation_panel_layout/navigation_tabs/content" | "common_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout" | "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_01" | "tabbed_tab_navigation_panel_layout/xbl_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_02" | "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3" | "tabbed_tab_navigation_panel_layout/nav_padding_03" | "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4" | "tabbed_tab_navigation_panel_layout/nav_padding_04" | "tabbed_tab_navigation_panel_layout/server_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_05" | "tabbed_tab_navigation_panel_layout/store_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_06" | "tabbed_tab_navigation_panel_layout/creative_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_07" | "tabbed_tab_navigation_panel_layout/packs_navigation_tab" | "tabbed_tab_navigation_panel_layout/nav_padding_08" | "tabbed_tab_navigation_panel_layout/seeds_navigation_tab" | "tabbed_tab_content_panel_layout" | "tabbed_tab_content_panel_layout/minecraft_tab_content" | "tabbed_tab_content_panel_layout/xbl_tab_content2" | "tabbed_tab_content_panel_layout/achievements_tab_content3" | "tabbed_tab_content_panel_layout/multiplayer_tab_content4" | "tabbed_tab_content_panel_layout/server_tab_content5" | "tabbed_tab_content_panel_layout/store_tab_content6" | "tabbed_tab_content_panel_layout/creative_tab_content7" | "tabbed_tab_content_panel_layout/packs_tab_content8" | "tabbed_tab_content_panel_layout/seeds_tab_content9" | "common_tab_content_panel" | "common_tab_content_panel/content" | "minecraft_tab_content_panel" | "xbl_tab_content_panel" | "achievements_tab_content_panel" | "multiplayer_tab_content_panel" | "server_tab_content_panel" | "store_tab_content_panel" | "creative_tab_content_panel" | "packs_tab_content_panel" | "seeds_tab_content_panel" | "common_tab_screen_panel" | "common_tab_screen_panel/tab_navigation_panel" | "common_tab_screen_panel/padding_01" | "common_tab_screen_panel/tab_content_panel" | "tabbed_screen_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "tab_panel" | "tab_panel/padding_3" | "tab_panel/main_control" | "tab_panel/padding_4" | "tabbed_upsell_content" | "tabbed_upsell_content/padding_0" | "tabbed_upsell_content/tab_panel" | "tabbed_upsell_content/padding_1" | "tabbed_upsell_content/button_panel" | "tabbed_upsell_content/padding_2" | "thanks_for_testing_screen" | "tabbed_upsell_screen_panel" | "tabbed_upsell_screen_panel/tabbed_upsell_screen_content" | "tabbed_upsell_screen_panel/background"; -export type ThirdPartyStore = "third_party_store_screen"; -export type ToastScreen = "toast_image" | "toast_icon" | "toast_icon/toast_icon" | "xbox_icon" | "third_party_invite_icon" | "third_party_achievement_icon" | "persona_icon" | "persona_icon/item" | "resource_pack_icon" | "resource_pack_icon/resource_pack_image" | "key_art_image" | "gamer_score_icon" | "toast_label" | "static_button_state_panel" | "static_button" | "static_button/default" | "static_button/hover" | "static_button/pressed" | "static_button/locked" | "popup" | "popup/background" | "popup/popup_content" | "popup/popup_content/icon_padding" | "popup/popup_content/text_padding" | "popup/popup_content/text_panel" | "popup/popup_content/text_panel/text_stack_panel" | "popup/popup_content/button_panel" | "popup/popup_content/button_panel/visual_button" | "item_renderer" | "game_tip_label" | "toast_progress_bar" | "toast_progress_bar/toast_duration_progress_bar" | "recipe_unlocked_icon" | "recipe_unlocked_icon/padding_vertical" | "recipe_unlocked_icon/item_renderer" | "recipe_unlocked_popup" | "recipe_unlocked_popup/input_panel" | "recipe_unlocked_popup/input_panel/label_panel" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1" | "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2" | "recipe_unlocked_popup/input_panel/label_panel/label_panel" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/label" | "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2" | "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3" | "recipe_unlocked_pocket_popup" | "recipe_unlocked_pocket_popup/input_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1" | "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label" | "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1" | "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3" | "text_stack_panel" | "text_stack_panel/title" | "text_stack_panel/subtitle" | "text_stack_panel/subtitle/icon_padding" | "text_stack_panel/subtitle/icon_padding/gamer_score_icon" | "text_stack_panel/subtitle/subtext_offset" | "text_stack_panel/subtitle/subtext_offset/subtext" | "join_button_icon" | "chat_popup" | "splitscreen_join_popup" | "splitscreen_join_popup/join_button_icon" | "splitscreen_join_popup/join_prompt_text_panel" | "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text" | "formfitting_alpha_toast" | "formfitting_alpha_toast/bg" | "formfitting_alpha_toast/bg/label" | "snackbar" | "snackbar/body" | "snackbar/body/background" | "snackbar/body/background/content" | "snackbar/body/background/content/left_padding" | "snackbar/body/background/content/vertically_central_text" | "snackbar/body/background/content/vertically_central_text/top_padding" | "snackbar/body/background/content/vertically_central_text/text" | "snackbar/body/background/content/right_padding" | "snackbar/body/background/right_shadow" | "progress_button_content" | "progress_button_content/gamepad_icon_glyph" | "progress_button_content/spacer" | "progress_button_content/progress_button_label" | "progress_popup" | "progress_popup/background" | "progress_popup/popup_content" | "progress_popup/popup_content/progress_toast_image" | "progress_popup/popup_content/profilepicture" | "progress_popup/popup_content/text_padding" | "progress_popup/popup_content/progress_content_vertical_panel" | "progress_popup/popup_content/progress_content_vertical_panel/title_text_label" | "progress_popup/popup_content/progress_content_vertical_panel/subtext" | "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar" | "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding" | "progress_popup/popup_content/divider_padding" | "progress_popup/popup_content/divider_image" | "progress_popup/popup_content/popup_decline_button" | "progress_popup/popup_content/end_padding" | "party_invite_popup" | "party_invite_popup/background" | "party_invite_popup/party_invite_content" | "party_invite_popup/party_invite_content/profilepicture" | "party_invite_popup/party_invite_content/text_padding" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext" | "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding" | "party_invite_popup/party_invite_content/divider_padding" | "party_invite_popup/party_invite_content/divider_image" | "party_invite_popup/party_invite_content/party_invite_button" | "party_invite_popup/party_invite_content/end_padding" | "party_travel_popup" | "toast_screen" | "toast_screen_content" | "toast_screen_content/content_log_panel" | "toast_screen_content/perf_turtle_panel"; -export type TokenFaq = "main_panel" | "main_panel/faq_question_1" | "main_panel/faq_question_1_divider" | "main_panel/faq_question_2" | "main_panel/faq_question_2_divider" | "main_panel/faq_question_3" | "main_panel/faq_question_3_divider" | "main_panel/faq_question_4" | "main_panel/faq_question_4_divider" | "main_panel/faq_question_5" | "scrolling_panel" | "token_faq_screen_content" | "token_faq_screen_content/dialog" | "background" | "token_faq_screen" | "token_content_panel" | "token_content_panel/token_info_text" | "token_popup_content" | "token_popup_content/dialog" | "token_faq_button_panel" | "back_button_panel" | "token_popup"; -export type Trade = "cycle_recipe_button" | "cycle_recipe_left_button" | "cycle_recipe_right_button" | "arrow_image" | "cross_out_icon" | "highlight_slot_panel" | "highlight_slot_panel/hover_text" | "recipe_button" | "recipe_button/hover" | "recipe_item_panel" | "recipe_item_panel/item_renderer" | "recipe_item_panel/item_renderer/stack_count_label" | "recipe_item_panel/recipe_button" | "trade_item_slot" | "trade_item_slot/container_item" | "trade_item_slotB" | "trade_item_slot_result_button" | "trade_item_slot_result" | "arrow" | "arrow/arrow_image" | "arrow/cross_out_icon" | "arrow/recipe_button" | "purchase_grid_item" | "purchase_grid_item/top_item" | "purchase_grid_item/padding" | "purchase_grid_item/bottom_item" | "purchase_grid" | "purchase_grid/grid_slot1" | "purchase_grid/grid_slot2" | "purchase_grid/arrow" | "purchase_grid/result_item_slot" | "greyed_item_panel" | "greyed_item_panel/item_renderer" | "cycle_panel_keyboard" | "cycle_panel_keyboard/left" | "cycle_panel_keyboard/right" | "cycle_panel_gamepad" | "cycle_panel_gamepad/left" | "cycle_panel_gamepad/right" | "cycle_panel" | "cycle_panel/keyboard" | "cycle_panel/gamepad" | "merchant_purchase_panel" | "merchant_purchase_panel/purchase_grid" | "top_half_panel" | "top_half_panel/villager_name_label" | "top_half_panel/cycle_panel" | "top_half_panel/merchant_purchase_panel" | "trade_panel" | "trade_panel/gamepad_helpers" | "trade_panel/selected_item_details_factory" | "trade_panel/item_lock_notification_factory" | "trade_panel/root_panel" | "trade_panel/root_panel/common_panel" | "trade_panel/root_panel/trade_inventory" | "trade_panel/root_panel/trade_inventory/top_half_panel" | "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label" | "trade_panel/root_panel/trade_inventory/hotbar_grid_template" | "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button" | "trade_panel/root_panel/trade_inventory/gamepad_cursor" | "trade_panel/flying_item_renderer" | "trade_screen"; -export type TradePocket = "background_image" | "recipe_item_panel" | "recipe_item_panel/item_renderer" | "recipe_item_panel/item_renderer/stack_count_label" | "result_item_panel" | "result_item_panel/output_item_name" | "result_item_panel/recipe_item_panel" | "trade_item_slot" | "trade_item_slot/container_item" | "trade_item_slotB" | "trade_item_slot_result_button" | "trade_item_slot_result" | "purchase_grid" | "purchase_grid/grid_slot1" | "purchase_grid/grid_slot2" | "purchase_grid/arrow" | "purchase_grid/result_item_slot" | "merchant_purchase_panel" | "merchant_purchase_panel/left" | "merchant_purchase_panel/purchase_grid" | "merchant_purchase_panel/right" | "merchant_panel" | "merchant_panel/merchant_purchase_panel" | "inventory_grid" | "inventory_content" | "inventory_content/scrolling_panel" | "half_screen" | "inventory_half_screen" | "inventory_half_screen/inventory_content" | "merchant_half_screen" | "merchant_half_screen/merchant_panel" | "header" | "header/header_background" | "header/close_button" | "header/villager_name_label" | "trade_panel" | "trade_panel/bg" | "trade_panel/root_panel" | "trade_panel/header" | "trade_panel/inventory" | "trade_panel/merchant_half_screen" | "trade_panel/gamepad_helpers" | "trade_panel/container_gamepad_helpers" | "trade_panel/inventory_selected_icon_button" | "trade_panel/selected_item_details_factory" | "trade_panel/item_lock_notification_factory" | "trade_panel/flying_item_renderer"; -export type Trade2 = "toolbar_background" | "arrow_left_image" | "arrow_right_image" | "trade_cell_image" | "cross_out_image" | "lock_image" | "scroll_background_image" | "red_slash" | "blue_progress_bar" | "white_progress_bar" | "empty_progress_bar" | "progress_bar_nub" | "hover_button" | "hover_button/hover_text" | "stack_count_label" | "changed_item_count_label" | "changed_item_count_label/stack_count_label" | "changed_item_count_label/stack_count_label/red_slash" | "changed_item_count_label/stack_count_label/red_slash_double" | "changed_item_count_label/padding" | "changed_item_count_label/second_stack_count_label" | "single_item_grid" | "single_item_grid/item_with_count" | "single_item_grid/item_with_count/item_renderer" | "single_item_grid/item_with_count/item_renderer/stack_count_label" | "single_item_grid/item_with_count/item_renderer/changed_item_count_label" | "single_item_grid/item_with_count/item_renderer/hover_button" | "trade_item_1" | "trade_item_2" | "sell_item" | "arrow_holder" | "arrow_holder/arrow_image" | "arrow_holder/cross_out_image" | "arrow_holder/lock_image" | "toggle_content" | "toggle_content/padding_1" | "toggle_content/trade_item_1" | "toggle_content/padding_2" | "toggle_content/padding_2_extra" | "toggle_content/trade_item_2" | "toggle_content/padding_3" | "toggle_content/padding_3_extra" | "toggle_content/arrow_holder" | "toggle_content/padding_4" | "toggle_content/sell_item_holder" | "toggle_content/sell_item_holder/sell_item" | "toggle_content/sell_item_holder_with_less_padding" | "toggle_content/sell_item_holder_with_less_padding/sell_item" | "toggle_content/padding_5" | "toggle_content_holder" | "toggle_content_holder/toggle_content" | "trade_toggle_unchecked" | "trade_toggle_unchecked/toggle_checked_normal" | "trade_toggle_unchecked/toggle_checked_red" | "trade_toggle_checked" | "trade_toggle_checked/toggle_checked_normal" | "trade_toggle_checked/toggle_checked_red" | "trade_toggle_locked" | "trade_actual_toggle" | "trade_toggle" | "trade_toggle_holder" | "trade_toggle_holder/trade_toggle" | "trade_toggle_stack_panel" | "tier_label" | "tier_label_locked" | "tier_stack_panel" | "tier_stack_panel/padding" | "tier_stack_panel/tier_label_holder" | "tier_stack_panel/tier_label_holder/tier_label" | "tier_stack_panel/tier_label_holder/tier_label_locked" | "tier_stack_panel/trade_toggle_stack_panel" | "trade_selector_stack_panel" | "scroll_inner_input_panel" | "scroll_inner_input_panel/trade_selector_stack_panel" | "trade_scroll_panel" | "left_panel" | "left_panel/bg" | "left_panel/trade_scroll_panel" | "exp_progress_bar" | "exp_progress_bar/empty_progress_bar" | "exp_progress_bar/empty_progress_bar/progress_bar_nub" | "exp_progress_bar/empty_progress_bar/blue_progress_bar" | "exp_progress_bar/empty_progress_bar/white_progress_bar" | "trade_details" | "trade_details/item_panel_image" | "trade_details/item_panel_image/item_text_label" | "trade_details_factory" | "trade_details_factory_holder" | "trade_details_button" | "trade_details_1_button" | "trade_details_2_button" | "enchantment_details_button" | "trade_result_item_slot_button" | "red_cell_image" | "container_cell_image" | "container_cell_image/cell_image" | "container_cell_image/red_cell_image" | "item_slot" | "ingredient_1_item_slot" | "ingredient_2_item_slot" | "result_item_slot" | "item_slot_holder" | "item_slot_holder/ingredient_1_item_slot" | "item_slot_holder/trade_details_1_button" | "item_slot_holder/trade_details_1_factory_holder" | "item_slots_stack_panel" | "item_slots_stack_panel/ingredient_item_1_holder" | "item_slots_stack_panel/ingredient_item_2_holder" | "item_slots_stack_panel/pointing_right_arrow_holder" | "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image" | "item_slots_stack_panel/pointing_left_arrow_holder" | "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image" | "item_slots_stack_panel/result_item_slot_holder" | "trade_button" | "how_to_play_button" | "top_half_stack_panel" | "top_half_stack_panel/item_slots_holder" | "top_half_stack_panel/item_slots_holder/item_slots_stack_panel" | "top_half_stack_panel/padding_1" | "top_half_stack_panel/trade_button_holder" | "top_half_stack_panel/trade_button_holder/trade_button" | "top_half_stack_panel/how_to_play_button_holder" | "top_half_stack_panel/how_to_play_button_holder/how_to_play_button" | "top_half_panel" | "top_half_panel/top_half_stack_panel" | "villager_name_label" | "right_panel" | "right_panel/common_panel" | "right_panel/trade_screen_inventory" | "right_panel/trade_screen_inventory/villager_name_label" | "right_panel/trade_screen_inventory/exp_progress_bar" | "right_panel/trade_screen_inventory/top_half_panel" | "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label" | "right_panel/trade_screen_inventory/hotbar_grid" | "toolbar_panel" | "toolbar_panel/toolbar_background" | "toolbar_panel/toolbar_background/toolbar_stack_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel" | "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button" | "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2" | "toolbar_anchor" | "toolbar_anchor/toolbar_panel" | "center_fold" | "center_fold/center_bg" | "screen_stack_panel" | "screen_stack_panel/left_panel" | "screen_stack_panel/center_fold" | "screen_stack_panel/right_panel" | "screen_stack_panel/toolbar_anchor" | "gamepad_helper_x" | "gamepad_helper_y" | "screen_panel" | "screen_panel/screen_stack_panel" | "screen_panel/container_gamepad_helpers" | "screen_panel/selected_item_details_factory" | "screen_panel/item_lock_notification_factory" | "screen_panel/inventory_selected_icon_button" | "screen_panel/inventory_take_progress_icon_button" | "screen_panel/flying_item_renderer" | "trade_screen"; -export type Trade2Pocket = "chest_item_renderer" | "trade_icon" | "arrow_right_image" | "right_navigation_tabs" | "right_navigation_tabs/pocket_tab_close_button" | "right_navigation_tabs/fill" | "trade_slots_panel" | "trade_slots_panel/item_slots_stack_panel" | "trade_and_help_buttons" | "trade_and_help_buttons/trade_button_holder" | "trade_and_help_buttons/trade_button_holder/trade_button" | "trade_and_help_buttons/how_to_play_button_holder" | "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button" | "name_and_trade_slots_stack_panel" | "name_and_trade_slots_stack_panel/padding_1" | "name_and_trade_slots_stack_panel/villager_name_label_holder" | "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label" | "name_and_trade_slots_stack_panel/padding_2" | "name_and_trade_slots_stack_panel/exp_progress_bar_holder" | "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar" | "name_and_trade_slots_stack_panel/padding_3" | "name_and_trade_slots_stack_panel/trade_slots_panel" | "name_and_trade_slots_stack_panel/padding_4" | "name_and_trade_slots_stack_panel/trade_and_help_buttons" | "right_panel" | "right_panel/content" | "right_panel/content/bg" | "right_panel/content/name_and_trade_slots_stack_panel" | "right_panel/navigation_tabs_holder" | "right_panel/navigation_tabs_holder/right_navigation_tabs" | "left_tab_trade" | "left_tab_inventory" | "left_navigation_tabs" | "left_navigation_tabs/left_tab_trades" | "left_navigation_tabs/padding" | "left_navigation_tabs/left_tab_inventory" | "arrow_holder" | "arrow_holder/arrow_image" | "arrow_holder/cross_out_image" | "arrow_holder/lock_image" | "inventory_scroll_panel" | "toggle_content" | "toggle_content/padding_1" | "toggle_content/trade_item_holder" | "toggle_content/trade_item_holder/padding_left" | "toggle_content/trade_item_holder/trade_item_1" | "toggle_content/trade_item_holder/padding_middle" | "toggle_content/trade_item_holder/trade_item_2" | "toggle_content/trade_item_holder/padding_right" | "toggle_content/padding_2" | "toggle_content/arrow_holder" | "toggle_content/padding_3" | "toggle_content/sell_item_holder" | "toggle_content/sell_item_holder/sell_item" | "toggle_content/padding_4" | "left_panel" | "left_panel/gamepad_helpers_and_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder" | "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs" | "left_panel/content" | "left_panel/content/bg" | "left_panel/content/inventory_scroll_panel" | "left_panel/content/trade_scroll_panel" | "pocket_hotbar_and_content_panels" | "screen_panel" | "screen_panel/pocket_hotbar_and_content_panels" | "screen_panel/container_gamepad_helpers" | "screen_panel/selected_item_details_factory" | "screen_panel/item_lock_notification_factory" | "screen_panel/inventory_selected_icon_button" | "screen_panel/inventory_take_progress_icon_button" | "screen_panel/flying_item_renderer"; -export type TrialUpsell = "normal_stroke_button" | "normal_description_label" | "trialTime" | "trial_label" | "trial_description_panel" | "trial_description_panel/description_text" | "trial_expired_description_panel" | "trial_expired_description_panel/vertical_padding_0" | "trial_expired_description_panel/line1" | "trial_expired_description_panel/vertical_padding_1" | "trial_expired_description_panel/line2" | "trial_expired_description_panel/line3" | "trial_expired_description_panel/line4" | "trial_expired_description_panel/line5" | "continue_button" | "buy_button" | "root_panel" | "trial_upsell_screen_dialog" | "trial_upsell_expired_screen_dialog" | "button_content_panel" | "button_content_panel/buy" | "button_content_panel/continue" | "trial_upsell_screen" | "trial_upsell_screen_content" | "trial_upsell_screen_content/trialTime" | "trial_upsell_screen_content/root_panel" | "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog" | "trial_upsell_expired_screen" | "trial_upsell_expired_screen_content" | "trial_upsell_expired_screen_content/trialTime" | "trial_upsell_expired_screen_content/root_panel" | "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog" | "content_description_panel" | "content_description_panel/scrolling_panel"; -export type UgcViewer = "padding" | "world_label" | "world_image" | "button_content" | "button_content/stack_panel" | "button_content/stack_panel/world_label" | "button_content/stack_panel/world_panel" | "button_content/stack_panel/world_panel/background" | "button_content/stack_panel/world_panel/background/world_image" | "grid_item" | "grid_item/button" | "place_holder_control" | "place_holder_control/search_icon" | "place_holder_control/place_holder_text" | "search_box" | "grid_content" | "scrolling_content" | "scrolling_content/grid_content" | "main_panel" | "main_panel/padding_0" | "main_panel/centerer_panel_0" | "main_panel/centerer_panel_0/search_box" | "main_panel/padding_1" | "main_panel/centerer_panel_1" | "main_panel/centerer_panel_1/scrolling_panel" | "main_panel/padding_2" | "ugc_viewer_screen" | "screen_content" | "screen_content/main_panel"; -export type CommonArt = "title_image" | "title_image_edu" | "splash_text" | "title_panel_pocket" | "title_panel_pocket/title_image" | "title_panel_pocket/splash_text" | "title_panel_win10" | "title_panel_win10/title_image" | "title_panel_win10/splash_text" | "title_panel_osx" | "title_panel_osx/title_image" | "title_panel_osx/splash_text" | "title_panel_edu_desktop" | "title_panel_edu_desktop/banner_control" | "title_panel_edu_desktop/banner_control/banner" | "title_panel_edu_desktop/banner_control/drop_shadow" | "title_panel_edu_desktop/title_control" | "title_panel_edu_desktop/title_control/title_image_edu" | "title_panel_edu_desktop/title_control/splash_text" | "title_panel_edu_mobile" | "title_panel_edu_mobile/title_control" | "title_panel_edu_mobile/title_control/title_image_edu" | "title_panel_edu_mobile/title_control/splash_text" | "title_panel_content" | "start_title_panel_content" | "pause_logo_panel" | "pause_logo_panel/logo"; -export type Common = "empty_panel" | "vertical_padding_8px" | "horizontal_padding_2px" | "empty_image" | "horizontal_stack_panel" | "vertical_stack_panel" | "vert_stack_centering_panel" | "vert_stack_centering_panel/stack_content" | "button" | "screen_header_title_panel" | "screen_header_title_panel/store_header_title" | "back_button" | "back_title_button" | "back_title_button/panel1" | "back_title_button/panel1/button" | "back_title_button/padding1" | "back_title_button/panel2" | "back_title_button/panel2/label" | "chevron_image" | "back_button_content" | "back_button_content/chevron_panel" | "back_button_content/chevron_panel/left_chevron" | "back_button_content/padding1" | "back_button_content/label_panel" | "back_button_content/label_panel/label" | "label_hover" | "label_hover/hover" | "tts_activate_sibling" | "tts_activate_sibling/default" | "tts_activate_sibling/pressed" | "tts_activate_sibling/hover" | "back_title_button_content" | "back_title_button_content/padding1" | "back_title_button_content/chevron_panel" | "back_title_button_content/chevron_panel/left_chevron" | "back_title_button_content/padding2" | "toggle_visuals" | "toggle_visuals/unchecked" | "toggle_visuals/checked" | "toggle_visuals/unchecked_hover" | "toggle_visuals/checked_hover" | "toggle_visuals/unchecked_locked" | "toggle_visuals/checked_locked" | "toggle_visuals/unchecked_locked_hover" | "toggle_visuals/checked_locked_hover" | "toggle" | "radio_toggle" | "checkbox" | "checkbox_image" | "checked_image" | "unchecked_image" | "checked_hover_image" | "unchecked_hover_image" | "rotating_text" | "button_text" | "toggle_state_template" | "new_button_label" | "checkbox_checked_state" | "checkbox_unchecked_state" | "checkbox_checked_hover_state" | "checkbox_unchecked_hover_state" | "checkbox_checked_locked_state" | "checkbox_unchecked_locked_state" | "radio_toggle_checked_state" | "radio_toggle_unchecked_state" | "radio_toggle_checked_hover_state" | "radio_toggle_unchecked_hover_state" | "radio_toggle_checked_locked_state" | "radio_toggle_unchecked_locked_state" | "slider_button_state" | "slider_button_layout" | "slider_button_hover_layout" | "slider_button_locked_layout" | "slider_button_indent_layout" | "slider_box" | "slider_box/default" | "slider_box/hover" | "slider_box/indent" | "slider_box/locked" | "slider_box/locked/transparent_grey" | "slider_background" | "slider_background_hover" | "slider_progress" | "slider_progress_hover" | "slider_border" | "slider_bar_default" | "slider_bar_default/sizing_panel" | "slider_bar_default/transparent_grey" | "slider_bar_hover" | "slider_step" | "slider_step_hover" | "slider_step_progress" | "slider_step_progress_hover" | "slider" | "slider/slider_box" | "slider/slider_bar_default" | "slider/slider_bar_hover" | "dropdown_background" | "dropdown" | "dropdown/dropdown_content" | "dropdown/dropdown_content/0" | "dropdown_no_scrollpanel" | "square_image_border_white" | "focus_border_white" | "focus_border_yellow" | "focus_border_black" | "non_interact_focus_border" | "non_interact_focus_border_button" | "non_interact_focus_border_button/default" | "non_interact_focus_border_button/hover" | "non_interact_focus_border_button/pressed" | "non_interact_focus_border_button/content" | "tts_label_focus_wrapper" | "tts_label_focus_wrapper/label" | "tts_label_focus_wrapper/focus_border" | "default_indent" | "edit_box_indent" | "edit_box_indent_hover" | "transparent_edit_box_indent" | "transparent_edit_box_indent_hover" | "text_edit_box_label" | "text_edit_box_place_holder_label" | "text_magnifying_glass_image" | "text_close_X_button_image" | "text_close_X_button_image_hover" | "clear_text_button" | "clear_text_button/default" | "clear_text_button/hover" | "clear_text_button/pressed" | "text_edit_box" | "text_edit_box/centering_panel" | "text_edit_box/centering_panel/clipper_panel" | "text_edit_box/centering_panel/clipper_panel/magnifying_glass" | "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel" | "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button" | "text_edit_box/centering_panel/clipper_panel/visibility_panel" | "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control" | "text_edit_box/locked" | "text_edit_box/locked/edit_box_indent" | "text_edit_box/default" | "text_edit_box/hover" | "text_edit_box/pressed" | "text_edit_box_scrolling_content" | "scrollable_text_edit_box" | "scrollable_text_edit_box/centering_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control" | "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel" | "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control" | "scrollable_text_edit_box/locked" | "scrollable_text_edit_box/locked/edit_box_indent" | "scrollable_text_edit_box/default" | "scrollable_text_edit_box/hover" | "scrollable_text_edit_box/pressed" | "transparent_text_edit_box" | "transparent_text_edit_box/clipper_panel" | "transparent_text_edit_box/clipper_panel/visibility_panel" | "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control" | "transparent_text_edit_box/locked" | "transparent_text_edit_box/locked/edit_box_indent" | "transparent_text_edit_box/default" | "transparent_text_edit_box/hover" | "transparent_text_edit_box/pressed" | "multiline_text_edit_box" | "scrollable_multiline_text_edit_box" | "dirt_background" | "portal_background" | "empty_progress_bar" | "filled_progress_bar" | "empty_progress_bar_beveled" | "progress_bar_beveled_overlay" | "filled_progress_bar_for_collections" | "progress_bar" | "progress_bar/empty_progress_bar" | "progress_bar/filled_progress_bar" | "progress_bar_for_collections" | "progress_bar_for_collections/empty_progress_bar" | "progress_bar_for_collections/filled_progress_bar_for_collections" | "horizontal_divider" | "horizontal_divider/divider_image" | "vertical_divider" | "vertical_divider/divider_image" | "underline" | "single_line_label" | "single_line_label/label_panel" | "single_line_label/label_panel/0" | "gamepad_helper_icon_description" | "gamepad_helper_icon_image" | "keyboard_helper_icon_image" | "gamepad_helper" | "gamepad_helper/icon_panel" | "gamepad_helper/description_panel" | "gamepad_helper/description_panel/desc" | "gamepad_helpers" | "gamepad_helpers_a_and_b" | "gamepad_helpers_a_and_b/gamepad_helper_a" | "gamepad_helpers_a_and_b/control" | "gamepad_helpers_a_and_b/gamepad_helper_b" | "container_gamepad_helpers" | "container_gamepad_helpers/fill_panel" | "container_gamepad_helpers/buttons" | "container_gamepad_helpers/buttons/gamepad_helper_x" | "container_gamepad_helpers/buttons/gamepad_helper_a" | "container_gamepad_helpers/buttons/gamepad_helper_y" | "container_gamepad_helpers/buttons/gamepad_helper_b" | "container_gamepad_helpers/buffer_panel_right" | "tabs_left_gamepad_helpers" | "tabs_left_gamepad_helpers/gamepad_helper_left_bumper" | "tabs_left_gamepad_helpers/gamepad_helper_left_trigger" | "tabs_right_gamepad_helpers" | "tabs_right_gamepad_helpers/gamepad_helper_right_bumper" | "tabs_right_gamepad_helpers/gamepad_helper_right_trigger" | "keyboard_helper_description" | "keyboard_helper" | "keyboard_helper/image_centerer" | "keyboard_helper/image_centerer/image" | "keyboard_helper/image_centerer/image/keyboard_character" | "keyboard_helper/centerer" | "keyboard_helper/centerer/desc" | "keyboard_helpers" | "gamepad_icon_button" | "gamepad_helper_start" | "gamepad_helper_a" | "gamepad_helper_a_14" | "gamepad_helper_b" | "gamepad_helper_b_14" | "gamepad_helper_x" | "gamepad_helper_x_14" | "gamepad_helper_y" | "gamepad_helper_y_14" | "keyboard_helper_keys" | "gamepad_helper_left_trigger" | "gamepad_helper_right_trigger" | "keyboard_left_trigger" | "keyboard_right_trigger" | "gamepad_icon_dpad" | "gamepad_helper_dpad" | "gamepad_helper_dpad_down" | "gamepad_helper_dpad_left" | "gamepad_helper_dpad_right" | "gamepad_helper_dpad_up" | "gamepad_icon_thumbstick" | "gamepad_helper_thumbstick" | "gamepad_helper_thumbstick_right" | "gamepad_helper_thumbstick_left" | "gamepad_helper_left_bumper" | "gamepad_helper_right_bumper" | "dialog_background_common" | "dialog_background_hollow_common" | "dialog_background_hollow_common/control" | "dialog_background_opaque" | "dialog_background_hollow_1" | "dialog_background_hollow_2" | "dialog_background_hollow_3" | "dialog_background_hollow_4" | "dialog_background_hollow_4_thin" | "dialog_background_hollow_5" | "dialog_background_hollow_6" | "dialog_background_hollow_7" | "dialog_background_hollow_8" | "dialog_divider" | "normal_button" | "normal_stroke_button" | "section_heading_label" | "section_divider" | "section_divider/padding1" | "section_divider/divider_parent" | "section_divider/divider_parent/divider" | "section_divider/padding2" | "minecraftTenLabel" | "close_button_image" | "close_button_panel" | "close_button_panel/close_button_image" | "close_button" | "close_button/default" | "close_button/hover" | "close_button/pressed" | "close_button_grey_bg" | "close_button_grey_bg/default" | "close_button_grey_bg/hover" | "close_button_grey_bg/pressed" | "close_button_high_contrast" | "close_button_high_contrast/background" | "close_button_high_contrast/default" | "close_button_high_contrast/hover" | "close_button_high_contrast/pressed" | "compact_close_button" | "compact_close_button/default" | "compact_close_button/hover" | "compact_close_button/pressed" | "light_close_button" | "light_close_button/default" | "light_close_button/hover" | "light_close_button/pressed" | "help_button" | "help_button/default" | "help_button/hover" | "help_button/pressed" | "cell_image" | "cell_image_selected" | "cell_image_panel" | "cell_image_panel/cell_image" | "cell_image_panel/cell_image_selected" | "cell_overlay" | "highlight_slot" | "white_border_slot" | "progressive_select_progress_bar" | "progressive_select_progress_bar/stack_progress_bar_down" | "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar" | "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text" | "stack_splitting_overlay" | "stack_splitting_overlay/classic_stack_splitting_overlay" | "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar" | "stack_splitting_overlay/pocket_stack_splitting_overlay" | "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar" | "inventory_hold_icon_holding" | "inventory_hold_icon_holding/progressive_down" | "inventory_hold_icon_holding/progressive_up" | "inventory_hold_icon_holding/progressive_left_side" | "inventory_hold_icon_holding/progressive_right_side" | "inventory_hold_icon_release" | "highlight_slot_panel" | "highlight_slot_panel/highlight" | "highlight_slot_panel/highlight/hover_text" | "highlight_slot_panel/white_border" | "pocket_ui_highlight_slot" | "hover_text" | "screen_background" | "stack_count_label" | "durability_bar" | "durability_bar_grabbed" | "storage_bar" | "storage_bar_grabbed" | "item_renderer" | "filtered_item_renderer" | "flying_item_renderer" | "selected_item_details" | "selected_item_details/item_panel_image" | "item_panel_image" | "item_panel_image/item_text_label" | "item_text_label" | "selected_item_details_factory" | "item_lock_notification" | "item_lock_notification/notification_background_image" | "item_lock_notification/notification_background_image/notification_text_label" | "item_lock_notification_factory" | "empty_panel_size_y_0" | "scroll_background_and_viewport" | "scroll_background_and_viewport/background" | "scroll_background_and_viewport/scrolling_view_port" | "scroll_background_and_viewport/scrolling_view_port/scrolling_content" | "scroll_bar_and_track" | "scroll_bar_and_track/stack_panel" | "scroll_bar_and_track/stack_panel/empty_panel_0" | "scroll_bar_and_track/stack_panel/panel" | "scroll_bar_and_track/stack_panel/panel/centered_panel" | "scroll_bar_and_track/stack_panel/panel/centered_panel/track" | "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box" | "scroll_bar_and_track/stack_panel/empty_panel_1" | "scroll_view_control" | "scroll_view_control/stack_panel" | "scroll_view_control/stack_panel/background_and_viewport" | "scroll_view_control/stack_panel/bar_and_track" | "scroll_view_control/panel" | "scroll_view_control/panel/background_and_viewport" | "scroll_view_control/panel/bar_and_track" | "scrollbar_track" | "scrollbar_track/bar_indent" | "scroll_box" | "scroll_box/box" | "scroll_box/box/mouse_box" | "scroll_box/box/touch_box" | "scroll_box_indent" | "scrollbar_box_image" | "touch_scrollbar_box_image" | "new_touch_scrollbar_box_image" | "container_touch_scrollbar_box_image" | "scroll_indent_image" | "scrolling_panel_base" | "scrolling_panel" | "scrolling_panel/scroll_touch" | "scrolling_panel/scroll_mouse" | "scrolling_panel_with_offset" | "container_slot_button_prototype" | "container_slot_button_prototype/hover" | "no_coalesce_container_slot_button" | "pocket_ui_container_slot" | "pocket_ui_container_slot/hover" | "pocket_ui_container_slot/hover/highlight_square" | "slot_selected" | "slot_selected/progress_bar_release" | "container_item" | "container_item/item_cell" | "container_item/item_cell/item" | "container_item/item_cell/item/stack_count_label" | "container_item/item_cell/durability_bar" | "container_item/item_cell/storage_bar" | "container_item/item_cell_overlay_ref" | "container_item/item_selected_image" | "container_item/item_button_ref" | "container_item/container_item_lock_overlay" | "container_item/item_lock_cell_image" | "container_item/bundle_slot_panel" | "pocket_ui_container_item" | "pocket_ui_large_container_item" | "container_item_lock_yellow" | "container_item_lock_red" | "container_item_lock_overlay" | "container_item_lock_overlay/container_item_lock_yellow" | "container_item_lock_overlay/container_item_lock_red" | "item_lock_cell_image" | "container_grid" | "pocket_container_grid" | "container_scroll_box_image" | "container_scroll_bar_side_rails" | "container_scrollbar_track" | "container_scrollbar_track/rails" | "container_scroll_background_image" | "container_scroll_panel" | "pocket_ui_highlight_selected_slot" | "pocket_hotbar_panel" | "pocket_hotbar_panel/bg" | "pocket_hotbar_panel/hotbar_grid" | "drop_item_panel" | "pocket_hotbar_and_content_panels" | "pocket_hotbar_and_content_panels/pocket_content_panels" | "pocket_hotbar_and_content_panels/hotbar_drop_item_panel" | "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel" | "blank_pocket_content_panel" | "pocket_content_panels" | "pocket_content_panels/left_panel" | "pocket_content_panels/offset_panel" | "pocket_content_panels/offset_panel/center_bg" | "pocket_content_panels/right_panel" | "inventory_selected_icon" | "inventory_selected_stack_size_text" | "inventory_hold_icon" | "inventory_selected_item_lock_overlay" | "inventory_selected_item_lock_overlay/container_item_lock_yellow" | "inventory_selected_item_lock_overlay/container_item_lock_red" | "inventory_icon_panel" | "inventory_icon_panel/selected_item_icon" | "inventory_icon_panel/selected_stack_size_text" | "inventory_icon_panel/selected_item_lock_overlay" | "inventory_icon_panel/hover_text" | "inventory_selected_icon_button" | "inventory_selected_icon_button/default" | "inventory_selected_icon_button/pressed" | "inventory_selected_icon_button/hover" | "inventory_selected_icon_button/durability_bar_grabbed" | "inventory_selected_icon_button/storage_bar_grabbed" | "inventory_take_progress_icon_button" | "inventory_take_progress_icon_button/default" | "inventory_take_progress_icon_button/pressed" | "inventory_take_progress_icon_button/hover" | "gamepad_cursor_image" | "gamepad_cursor_button" | "gamepad_cursor_button/default" | "gamepad_cursor_button/pressed" | "gamepad_cursor_button/hover" | "grid_item_for_inventory" | "grid_item_for_hotbar" | "hotbar_grid_template" | "inventory_panel" | "inventory_panel/inventory_grid" | "inventory_panel_bottom_half" | "inventory_panel_bottom_half/inventory_panel" | "inventory_panel_bottom_half_with_label" | "inventory_panel_bottom_half_with_label/inventory_panel" | "inventory_panel_bottom_half_with_label/inventory_label" | "common_panel" | "common_panel/bg_image" | "common_panel/dialog_divider" | "common_panel/close_button_holder" | "common_panel/close_button_holder/close" | "common_panel/close_button_holder/compact_close" | "root_panel" | "input_panel" | "base_screen" | "base_screen/variables_button_mappings_and_controls" | "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel" | "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix" | "base_screen/variables_button_mappings_and_controls/screen_background" | "base_screen/loading_bars_background" | "base_screen/loading_bars_background/loading_bars" | "render_below_base_screen" | "safezone_buffer" | "top_safezone_vertical_buffer" | "bottom_safezone_vertical_buffer" | "left_safezone_horizontal_buffer" | "right_safezone_horizontal_buffer" | "safe_zone_stack" | "safe_zone_stack/top_outer_control" | "safe_zone_stack/top_inner_control" | "safe_zone_stack/header_bar" | "safezone_inner_matrix" | "safezone_inner_matrix/outer_top" | "safezone_inner_matrix/outer_top/top_side_control" | "safezone_inner_matrix/inner_top" | "safezone_inner_matrix/inner_top/top_side_control" | "safezone_inner_matrix/safezone_screen_panel" | "safezone_inner_matrix/inner_bottom" | "safezone_inner_matrix/outer_bottom" | "safezone_outer_matrix" | "safezone_outer_matrix/outer_left" | "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack" | "safezone_outer_matrix/inner_left" | "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack" | "safezone_outer_matrix/inner_matrix" | "safezone_outer_matrix/inner_right" | "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack" | "safezone_outer_matrix/outer_right" | "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack" | "bundle_tooltip_wrapper" | "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper" | "bundle_tooltip_wrapper/bundle_touch_tooltip" | "screen_panel" | "screen_panel/root_screen_panel" | "screen_panel/additional_screen_content" | "screen_panel/popup_dialog_factory" | "screen_panel/bundle_hover_tooltip" | "base_screen_empty_panel" | "modal_screen" | "realms_error_modal_screen" | "modal_area_panel_base" | "inactive_modal_pane_fade" | "inventory_screen_common" | "fullscreen_header" | "fullscreen_header/top_bar" | "fullscreen_header/top_bar/title_stack_panel" | "fullscreen_header/top_bar/title_stack_panel/padding1" | "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel" | "fullscreen_header/top_bar/title_stack_panel/padding2" | "fullscreen_header/child_control" | "back_content_panel" | "back_content_panel/back_button" | "top_bar" | "tooltip_background" | "tooltip_button_content" | "tooltip_button_content/tooltip_panel_content" | "static_tooltip_popup_with_image_and_text" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding" | "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text" | "static_tooltip_popup_with_image_and_text/tooltip_chevron" | "dynamic_tooltip_popup_with_custom_content" | "dynamic_tooltip_popup_with_custom_content/tooltip_content" | "dynamic_tooltip_popup_with_custom_content/tooltip_chevron" | "dynamic_tooltip_popup_with_image_and_text" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding" | "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text" | "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron" | "dynamic_tooltip_left" | "dynamic_tooltip_below" | "dynamic_custom_tooltip_below" | "dynamic_tooltip" | "dynamic_tooltip/above" | "dynamic_tooltip/above/content" | "dynamic_tooltip/below" | "dynamic_tooltip/below/content" | "legacy_pocket_close_button_default" | "legacy_pocket_close_button_pressed" | "legacy_pocket_close_button" | "legacy_pocket_close_button/default" | "legacy_pocket_close_button/hover" | "legacy_pocket_close_button/pressed" | "info_icon" | "error_glyph" | "service_repo_image_panel" | "service_repo_image_panel/service_repo_image" | "service_repo_image_panel/progress_loading" | "common_cycler" | "image_cycler" | "text_cycler" | "squaring_panel" | "squaring_panel/squaring_panel" | "squaring_panel/squaring_panel/squaring_panel_content"; -export type CommonClassic = "button" | "button_state_default" | "button_state_hover" | "button_state_pressed" | "toggle" | "toggle_checked_state" | "toggle_unchecked_state" | "toggle_checked_hovered_state" | "toggle_checked_hovered_state/toggle_checked_state" | "toggle_checked_hovered_state/hover" | "toggle_unchecked_hovered_state" | "toggle_unchecked_hovered_state/toggle_unchecked_state" | "toggle_unchecked_hovered_state/hover"; -export type EduCommon = "light_label" | "dark_label" | "readable_label" | "slider_toggle" | "trash_default" | "trash_hover" | "trash_pressed" | "photo_trash_button" | "photo_trash_button/default" | "photo_trash_button/hover" | "photo_trash_button/pressed" | "download_progress_modal_panel" | "download_progress_modal_panel/downloading" | "loading_progress_modal_panel" | "loading_progress_modal_panel/loading" | "modal_cancel_button" | "modal_progress_panel_with_cancel" | "modal_progress_panel_with_cancel/common_panel" | "modal_progress_panel_with_cancel/title" | "modal_progress_panel_with_cancel/content" | "modal_progress_panel_with_cancel/content/title_panel" | "modal_progress_panel_with_cancel/content/label" | "modal_progress_panel_with_cancel/content/progress_loading_bars" | "modal_progress_panel_with_cancel/cancel_button" | "modal_progress_panel_no_button" | "modal_progress_panel_no_button/common_panel" | "modal_progress_panel_no_button/content" | "modal_progress_panel_no_button/content/progress_title_text" | "modal_progress_panel_no_button/content/progress_loading_bars" | "apple_animation" | "book_animation" | "edu_loading_animation" | "horizontal_stack_item" | "vertical_stack_item" | "back_button_padded" | "back_button_padded/back_button_padding_before" | "back_button_padded/back_button" | "home_button_content" | "home_button" | "underline_text" | "underline_text/label_hover" | "underline_button" | "underline_button/default" | "underline_button/hover" | "underline_button/pressed" | "edu_screen_header" | "edu_screen_header/title_controls" | "edu_screen_header/title_controls/back_item" | "edu_screen_header/title_controls/back_item/back_button" | "edu_screen_header/title_controls/back_item/gamepad" | "edu_screen_header/title_controls/image_item" | "edu_screen_header/title_controls/image_item/image" | "edu_screen_header/title_controls/image_item_template" | "edu_screen_header/title_controls/image_item_template/image" | "edu_screen_header/title_controls/image_item_template/image/image_color" | "edu_screen_header/title_controls/title_text_padding" | "edu_screen_header/title_controls/title_item" | "edu_screen_header/title_controls/title_item/title" | "share_dialog_title" | "share_header_panel" | "share_header_panel/title" | "share_header_panel/close_button" | "teams_advanced_share_header_panel" | "add_resource_share_header_panel" | "body_panel" | "body_panel/body_stack" | "teams_body_panel" | "teams_body_resource_panel" | "teams_simple_body_resource_panel" | "joincode_body_panel" | "add_resource_body_panel" | "icon_section" | "icon_section/icon_stack_panel" | "icon_section/icon_padding" | "add_resources_section" | "add_resources_section/divider" | "add_resources_section/add_resource_label" | "add_resources_section/teams_padding_middle" | "add_resources_section/resource_button" | "edit_resource_uri_glyph" | "edit_resources_section" | "edit_resources_section/divider" | "edit_resources_section/resource_label_text" | "edit_resources_section/teams_padding_middle" | "edit_resources_section/edit_resource_body_button_stack" | "edit_resources_section/edit_resource_body_button_stack/resource_button" | "edit_resources_section/edit_resource_body_button_stack/padding_middle" | "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button" | "body_content_stack" | "body_content_stack/body_text_centering_panel" | "body_content_stack/body_text_centering_panel/body_text" | "body_content_stack/padding_middle" | "body_content_stack/icons" | "body_content_stack/copy_link_centering_panel" | "body_content_stack/copy_link_centering_panel/copy_link_panel" | "body_content_stack/add_resources" | "body_content_stack/edit_resources" | "teams_simple_body_content_stack" | "teams_body_content_stack" | "teams_body_resource_content_stack" | "joincode_body_content_stack" | "add_resource_body_content_stack" | "add_resource_body_content_stack/label_one_centering_panel" | "add_resource_body_content_stack/label_one_centering_panel/teams_share_label" | "add_resource_body_content_stack/label_padding_middle" | "add_resource_body_content_stack/label_two_centering_panel" | "add_resource_body_content_stack/label_two_centering_panel/teams_share_label" | "add_resource_body_content_stack/learn_more_padding_middle" | "add_resource_body_content_stack/link1" | "add_resource_body_content_stack/url_padding_middle" | "add_resource_body_content_stack/url_label" | "add_resource_body_content_stack/url_textbox" | "add_resource_body_content_stack/inline_notification" | "add_resource_body_content_stack/inline_notification_spacer" | "add_resource_body_content_stack/button_name_label" | "add_resource_body_content_stack/button_middle_spacer" | "add_resource_body_content_stack/button_name_textbox" | "add_resource_body_content_stack/button_name_textbox_next_disabled" | "add_edit_resource_body_content_stack" | "add_edit_resource_body_content_stack/scroll_content" | "add_edit_resource_body_content_stack/scroll_content/scrolling_panel" | "resource_popup_buttons" | "resource_popup_buttons/done_button" | "resource_popup_buttons/button_padding" | "resource_popup_buttons/back_button_panel" | "resource_popup_buttons/back_button_panel/back_button_enabled" | "resource_popup_buttons/back_button_panel/back_button_disabled" | "add_resource_popup_lower_button_panel" | "add_resource_popup_lower_button_panel/edit_resource_popup_buttons" | "add_resource_popup_lower_button_panel/add_resource_popup_buttons" | "share_dialog_body_text" | "share_dialog_body_text/tts_border" | "share_dialog_body_text/text" | "share_icon" | "share_label" | "share_label/share_image_offset_panel" | "share_label/share_image_offset_panel/link_share" | "copy_link_stack_panel" | "copy_link_stack_panel/link_box" | "copy_link_stack_panel/copy_button" | "icon_stack_panel" | "icon_stack_panel/padding_left" | "icon_stack_panel/teams_button" | "icon_stack_panel/teams_mail_padding" | "icon_stack_panel/mail_button" | "icon_stack_panel/mail_classrooms_padding" | "icon_stack_panel/classrooms_button" | "icon_stack_panel/padding_right" | "default_share_button_contents" | "default_share_button_contents/background" | "default_share_button_contents/image" | "default_share_button" | "default_share_button/default" | "default_share_button/hover" | "default_share_button/pressed" | "vertical_divider" | "vertical_divider/divider" | "horizontal_divider" | "horizontal_divider/divider" | "stack_panel_grid_slot" | "stack_panel_grid_slot/stack_panel_grid_item_panel" | "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item" | "stack_panel_grid_row" | "stack_panel_grid_row/stack_panel_grid_row_item" | "stack_panel_grid_row/stack_panel_grid_row_item/row" | "stack_panel_grid_row/divider" | "stack_panel_grid_row/divider/line" | "stack_panel_grid" | "border" | "description_panel" | "description_panel/border" | "description_panel/description" | "edu_share_text_popup" | "teams_edu_share_text_popup" | "teams_edu_share_resource_popup" | "teams_edu_simple_share_resource_popup" | "joincode_edu_popup" | "add_resource_dialog" | "share_popup_dialog_factory" | "inline_notification" | "inline_notification/stack" | "inline_notification/stack/icon" | "inline_notification/stack/spacer" | "inline_notification/stack/warning_text" | "search_button_content" | "search_bar_and_home_button" | "search_bar_and_home_button/search_bar" | "search_bar_and_home_button/search_bar/search_bar" | "search_bar_and_home_button/search_button" | "search_bar_and_home_button/search_pad" | "search_bar_and_home_button/home_button" | "search_bar_and_home_button/end_pad" | "hotbar_hint" | "hotbar_hint/inactive_slot_dimmer" | "hotbar_hint/bound_key_glyph_background" | "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text" | "view_toggle_content" | "view_toggle_content/button_image_templates" | "view_toggle_content/button_image_templates/image_color_templates" | "view_toggle_content/button_image_worlds" | "view_toggle_content/button_label_wrapper" | "view_toggle_content/button_label_wrapper/button_label" | "view_toggle_content/left_edge_text_padding" | "worlds_and_templates_search_bar" | "worlds_and_templates_search_bar/stack_panel" | "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper" | "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar" | "worlds_and_templates_search_bar/stack_panel/temp_padding" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button" | "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding" | "edu_cloud_conflict_resolution_popup_dialog_factory" | "edu_cloud_conflict_resolution_popup" | "edu_cloud_conflict_resolution_content" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border" | "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description" | "edu_cloud_conflict_resolution_content/padding1" | "edu_cloud_conflict_resolution_content/world_info_wrapper" | "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label" | "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label" | "edu_cloud_conflict_resolution_content/padding2" | "edu_cloud_conflict_resolution_content/keep_local_button" | "edu_cloud_conflict_resolution_content/keep_cloud_button" | "edu_cloud_conflict_resolution_content/keep_both_button" | "nested_buttons_base_definition"; -export type PurchaseCommon = "banner_fill" | "banner_empty" | "screenshots_grid_item" | "screenshots_grid_item/frame" | "screenshots_grid_item/frame/screenshot_image" | "screenshots_grid_item/frame/progress_loading" | "screenshots_grid_item/frame/screenshot_button" | "screenshots_grid_item/frame/screenshot_button/hover" | "screenshots_grid_item/frame/screenshot_button/pressed" | "screenshots_grid" | "key_image_frame" | "key_image_frame/zoomed" | "offer_grid_item" | "offer_grid_item/frame" | "offer_grid_item/frame/offer_key_art" | "offer_grid_item/frame/offer_button" | "offer_grid_item/frame/offer_button/hover" | "offer_grid_item/frame/offer_button/pressed" | "offer_grid" | "key_art_and_text" | "key_art_and_text/key_image_panel" | "key_art_and_text/key_image_panel/key_image" | "key_art_and_text/padding" | "key_art_and_text/description_scroll" | "pack_description"; -export type CommonButtons = "button_image" | "background_button_image" | "locked_button_image" | "light_button_assets" | "dark_button_assets" | "focus_border" | "new_ui_button_panel" | "new_ui_button_panel/button_content" | "new_ui_button_panel/border" | "new_ui_form_fitting_button_panel" | "new_ui_form_fitting_button_panel/border" | "new_ui_width_fitting_button_panel" | "new_ui_width_fitting_button_panel/border" | "new_ui_height_fitting_button_panel" | "new_ui_height_fitting_button_panel/border" | "borderless_form_fitting_button_panel" | "light_text_button" | "light_text_button/default" | "light_text_button/hover" | "light_text_button/pressed" | "light_text_button/locked" | "dark_text_button" | "dark_text_button/default" | "dark_text_button/hover" | "dark_text_button/pressed" | "dark_text_button/locked" | "new_ui_binding_button_label" | "underline_button" | "underline_button/default" | "underline_button/default/label_default" | "underline_button/hover" | "underline_button/hover/label_hover" | "underline_button/pressed" | "underline_button/pressed/label_hover" | "read_button" | "read_button/read_button_inner" | "light_content_form_fitting_button" | "dark_content_form_fitting_button" | "light_text_form_fitting_button" | "dark_text_form_fitting_button" | "transparent_content_button" | "single_image_with_border_button" | "light_content_button" | "light_content_button/default" | "light_content_button/hover" | "light_content_button/pressed" | "light_content_button/locked" | "light_content_button_control_content" | "light_content_button_control_content/default" | "light_content_button_control_content/hover" | "light_content_button_control_content/pressed" | "light_content_button_control_content/locked" | "deactivated_light_content_button" | "dark_content_button" | "dark_content_button/default" | "dark_content_button/hover" | "dark_content_button/pressed" | "dark_content_button/locked" | "no_background_content_button" | "no_background_content_button/default" | "no_background_content_button/hover" | "no_background_content_button/pressed" | "no_background_content_button/locked" | "button_content_panel" | "button_content_panel/content" | "form_fitting_button_content_panel" | "form_fitting_button_content_panel/content" | "horizontal_form_fitting" | "horizontal_form_fitting/content" | "width_fitting_button_content_panel" | "width_fitting_button_content_panel/content" | "height_fitting_button_content_panel" | "height_fitting_button_content_panel/content" | "light_glyph_button" | "light_glyph_button/default" | "light_glyph_button/hover" | "light_glyph_button/pressed" | "light_glyph_button/locked" | "dark_glyph_button_default" | "dark_glyph_button_hover" | "dark_glyph_button_pressed" | "dark_glyph_button_locked" | "dark_glyph_button" | "dark_glyph_button/default" | "dark_glyph_button/hover" | "dark_glyph_button/pressed" | "dark_glyph_button/locked" | "dark_glyph_button_with_custom_control" | "dark_glyph_button_with_custom_control/custom_control" | "dark_glyph_button_with_custom_control/default" | "dark_glyph_button_with_custom_control/hover" | "dark_glyph_button_with_custom_control/pressed" | "dark_glyph_button_with_custom_control/locked" | "glyph_content_panel" | "glyph_content_panel/glyph_button_content" | "hyperlink_button" | "hyperlink_content_button" | "nested_button_assets" | "nested_overlay_assets" | "nested_label_content_background_assets" | "nested_label_background_assets" | "nested_transparent_label_content_background_assets" | "nested_transparent_label_content_background_assets/assets" | "nested_base_label" | "nested_centered_label_control" | "nested_centered_label_control/label" | "nested_label_with_image_control" | "nested_label_with_image_control/image" | "nested_label_with_image_control/image_to_label_padding" | "nested_label_with_image_control/label_panel" | "nested_label_with_image_control/label_panel/label" | "nested_six_part_empty_definition" | "nested_six_part_label_control" | "nested_six_part_label_control/left_top_label" | "nested_six_part_label_control/left_middle_label" | "nested_six_part_label_control/left_bottom_label" | "nested_six_part_label_control/right_top_label" | "nested_six_part_label_control/right_middle_label" | "nested_six_part_label_control/right_bottom_label" | "nested_dark_button_assets" | "nested_content_background_assets" | "nested_content_overlay_assets" | "nested_dark_control_with_image" | "nested_dark_control_with_image/background" | "nested_dark_control_with_image/image_panel" | "nested_dark_control_with_image/image_panel/image" | "nestable_button" | "nestable_button/nested_controls_panel" | "nestable_button/nested_controls_panel/locked_overlay" | "nestable_button/nested_controls_panel/nested_controls" | "nestable_button/base_button" | "nestable_button/base_button/default" | "nestable_button/base_button/hover" | "nestable_button/base_button/pressed" | "nestable_button/base_button/locked" | "nested_button_base" | "nested_button_base/button_overlay" | "nested_button_base/button_control" | "nested_button_base/button_control/control_area" | "nested_button_base/button_control/control_area/background" | "nested_button_base/button_control/control_area/control" | "nested_button_base/button_control/control_area/overlay" | "nested_button_base/button_control/button_stack_padding" | "nested_button_base/button_control/label_area" | "nested_button_base/button_control/label_area/background" | "nested_button_base/button_control/label_area/control_background" | "nested_button_base/button_control/label_area/control" | "dark_nestable_button" | "transparent_label_nestable_button" | "static_tooltip_notification_panel" | "static_tooltip_notification_panel/default" | "static_tooltip_notification_panel/pressed" | "static_tooltip_notification_panel/hover" | "static_tooltip_notification_panel/locked" | "static_tooltip_notification_panel/static_tooltip_popup_panel" | "dynamic_tooltip_notification_panel" | "dynamic_tooltip_notification_panel/default" | "dynamic_tooltip_notification_panel/pressed" | "dynamic_tooltip_notification_panel/hover" | "dynamic_tooltip_notification_panel/locked" | "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel" | "text_body_focus_border_for_controller_button" | "text_body_focus_border_for_controller_button/default" | "text_body_focus_border_for_controller_button/hover" | "text_body_focus_border_for_controller_button/hover/focus_border" | "text_body_focus_border_for_controller_button/text_control"; -export type CommonDialogs = "standard_title_label" | "title_label" | "title_label/common_dialogs_0" | "title_label/common_dialogs_1" | "main_panel_three_buttons" | "main_panel_three_buttons/common_panel" | "main_panel_three_buttons/title_label" | "main_panel_three_buttons/panel_indent" | "main_panel_three_buttons/panel_indent/inside_header_panel" | "main_panel_three_buttons/top_button_panel" | "main_panel_three_buttons/middle_button_panel" | "main_panel_three_buttons/bottom_button_panel" | "main_panel_two_buttons" | "main_panel_two_buttons/common_panel" | "main_panel_two_buttons/title_label" | "main_panel_two_buttons/panel_indent" | "main_panel_two_buttons/panel_indent/inside_header_panel" | "main_panel_two_buttons/top_button_panel" | "main_panel_two_buttons/bottom_button_panel" | "main_panel_one_button" | "main_panel_one_button/common_panel" | "main_panel_one_button/title_label" | "main_panel_one_button/panel_indent" | "main_panel_one_button/panel_indent/inside_header_panel" | "main_panel_one_button/bottom_button_panel" | "main_panel_no_buttons" | "main_panel_no_buttons/common_panel" | "main_panel_no_buttons/title_label" | "main_panel_no_buttons/panel_indent" | "main_panel_no_buttons/panel_indent/inside_header_panel" | "main_panel_no_title_no_buttons" | "main_panel_no_title_no_buttons/common_panel" | "main_panel_no_title_no_buttons/panel_indent" | "main_panel_no_title_no_buttons/panel_indent/inside_header_panel" | "main_panel_small_title_one_button" | "main_panel_small_title_one_button/common_panel" | "main_panel_small_title_one_button/title_label" | "main_panel_small_title_one_button/panel_indent" | "main_panel_small_title_one_button/panel_indent/inside_header_panel" | "main_panel_small_title_one_button/bottom_button_panel" | "main_panel" | "main_panel/modal_background_image" | "main_panel/panel_indent" | "main_panel/panel_indent/inside_header_panel" | "form_fitting_main_panel_no_buttons" | "form_fitting_main_panel_no_buttons/common_panel" | "common_panel" | "common_panel/bg_image" | "dialog_background_common" | "dialog_background_thin" | "flat_solid_background" | "dialog_background_hollow_common" | "dialog_background_hollow_common/control" | "dialog_background_hollow_common/control/inside_header_panel" | "dialog_background_hollow_common/control/close_button_holder" | "dialog_background_hollow_common/control/title_label" | "common_close_button_holder" | "common_close_button_holder/close" | "common_close_button_holder/compact_close" | "dialog_background_opaque" | "dialog_background_opaque_with_child" | "dialog_background_hollow_1" | "dialog_background_hollow_2" | "dialog_background_hollow_3" | "dialog_background_hollow_4" | "dialog_background_hollow_6" | "full_screen_background" | "full_screen_background/background" | "background_image"; -export type CommonTabs = "empty_tab_content" | "tab_image" | "tab_panel" | "tab_panel/tab_image" | "tab_panel/tab_content_sizer" | "tab_panel/tab_content_sizer/tab_content" | "base_tab" | "tab_top" | "tab_left" | "tab_right" | "pocket_tab_left" | "pocket_tab_right" | "pocket_tab_close_button" | "pocket_tab_close_button/close_button" | "pocket_tab_help_button" | "pocket_tab_help_button/help_button" | "pocket_tab_close_and_help_button" | "pocket_tab_close_and_help_button/close_button" | "pocket_tab_close_and_help_button/help_button" | "tab_close_and_help_button" | "tab_close_and_help_button/close_button" | "tab_close_and_help_button/help_button"; -export type CommonToggles = "content_toggle_image_panel" | "content_toggle_image_panel/icon" | "content_toggle_label_panel" | "content_toggle_label_panel/toggle_label" | "content_toggle_icon_panel" | "content_toggle_icon_panel/content_toggle_image" | "toggle_content_panel" | "toggle_content_panel/toggle_image_panel" | "toggle_content_panel/toggle_image_padding_label" | "toggle_content_panel/toggle_label_panel" | "toggle_content_panel/toggle_label_padding_toggle_icon" | "toggle_content_panel/toggle_icon" | "vertical_form_fitting_toggle_content" | "vertical_form_fitting_toggle_content/toggle_image_panel" | "vertical_form_fitting_toggle_content/toggle_image_padding_label" | "vertical_form_fitting_toggle_content/toggle_label_panel" | "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon" | "vertical_form_fitting_toggle_content/toggle_icon" | "light_text_toggle" | "light_image_toggle" | "light_content_toggle" | "dark_ui_toggle" | "dark_text_toggle" | "dark_image_toggle" | "dark_content_toggle" | "dark_vertical_template_toggle" | "dark_vertical_form_fitting_content_toggle" | "dark_vertical_form_fitting_content_toggle/dark_content_toggle" | "dark_template_toggle" | "light_template_toggle" | "light_ui_toggle" | "switch_toggle" | "light_text_toggle_collection" | "light_image_toggle_collection" | "dark_text_toggle_collection" | "dark_image_toggle_collection" | "dark_ui_toggle_collection" | "light_ui_toggle_collection" | "switch_toggle_collection" | "toggle_state_panel" | "toggle_state_panel/button_panel" | "toggle_unchecked" | "toggle_checked" | "toggle_unchecked_hover" | "toggle_checked_hover" | "toggle_locked" | "toggle_unchecked_locked" | "toggle_checked_locked" | "toggle_unchecked_hover_with_chevron" | "toggle_checked_hover_with_chevron" | "toggle_image" | "toggle_image/image" | "radio_off_icon" | "radio_off_hover_icon" | "radio_on_icon" | "radio_on_hover_icon" | "check_box_button_toggle_image" | "checkbox_button_checked_state" | "checkbox_button_unchecked_state" | "checkbox_button_checked_hover_state" | "checkbox_button_unchecked_hover_state" | "checkbox_button_checked_locked_state" | "checkbox_button_unchecked_locked_state" | "toggle_checkbox_unchecked" | "toggle_checkbox_checked" | "toggle_checkbox_unchecked_hover" | "toggle_checkbox_checked_hover" | "toggle_checkbox_unchecked_locked" | "toggle_checkbox_checked_locked" | "check_box_button_ui_panel" | "check_box_button_ui_panel/toggle_image" | "check_box_button_ui_panel/toggle_image/button_content" | "check_box_button_ui_panel/toggle_image/border" | "check_box_button_ui_panel/toggle_image/checkbox_image" | "check_box_button_ui_panel/toggle_image/checkbox_image/image" | "button_and_checkbox_template" | "button_with_checkbox_toggle"; -export type Friendsbutton = "friendsdrawer_animated_icon" | "profilepicture" | "persona_icon_with_border" | "persona_icon_with_border/profile_icon" | "persona_icon_with_border/border_black" | "friendsdrawer_persona_icons" | "social_button_stackpanel" | "social_button_stackpanel/image_panel" | "social_button_stackpanel/image_panel/social_icon" | "social_button_hover_stackpanel" | "self_persona_stackpanel" | "self_persona_stackpanel/self_icon" | "single_friend_persona_stackpanel" | "single_friend_persona_stackpanel/self_icon" | "single_friend_persona_stackpanel/friend_one_icon" | "many_friend_persona_stackpanel" | "many_friend_persona_stackpanel/self_icon" | "many_friend_persona_stackpanel/extra_friends_text_panel" | "many_friend_persona_stackpanel/extra_friends_text_panel/background" | "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label" | "many_friend_persona_stackpanel/extra_friends_text_panel/border_black" | "button" | "button/default" | "button/hover" | "button/pressed" | "button/locked" | "social_factory_stackpanel_default" | "social_factory_stackpanel_hovered" | "friendsdrawer_button_content" | "friendsdrawer_button_content/social_factory_stackpanel" | "friendsdrawer_button_content/padding_middle" | "friendsdrawer_button_content/vertically_centered_text" | "friendsdrawer_button_content/vertically_centered_text/top_padding" | "friendsdrawer_button_content/vertically_centered_text/profile_button_label" | "friendsdrawer_button_content/padding_right" | "friendsdrawer_hover_button_content" | "friends_drawer_popup"; -export type Iconbutton = "iconbutton_animated_icon" | "button" | "iconbutton_button_content" | "iconbutton_button_content/icon_wrapper" | "iconbutton_button_content/icon_wrapper/icon_with_border" | "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon" | "iconbutton_button_content/icon_wrapper/icon_with_border/border_black" | "iconbutton_button_content/padding_middle" | "iconbutton_button_content/vertically_centered_text" | "iconbutton_button_content/vertically_centered_text/top_padding" | "iconbutton_button_content/vertically_centered_text/profile_button_label"; -export type UpdateDimensions = "update_dimensions_update_and_play_button" | "update_dimensions_description" | "update_dimensions_label_panel" | "make_backup_checkbox" | "make_backup_checkbox/header_description_stack_panel" | "make_backup_checkbox/header_description_stack_panel/checkbox_visuals" | "make_backup_checkbox/header_description_stack_panel/buffer_panel" | "make_backup_checkbox/header_description_stack_panel/buffer_panel/label" | "make_backup_checkbox/header_description_stack_panel/another_panel" | "world_upgrade" | "update_dimensions_dialog" | "update_dimensions_dialog/common_panel" | "update_dimensions_dialog/title_label" | "update_dimensions_dialog/panel_indent" | "update_dimensions_dialog/panel_indent/inside_header_panel" | "update_dimensions_dialog/top_button_panel" | "update_dimensions_dialog/bottom_button_panel" | "update_dimensions_dialog/world_upgrade_image" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_a" | "update_dimensions_screen" | "update_dimensions_screen_content" | "update_dimensions_screen_content/update_dimensions_dialog" | "update_dimensions_screen_content/gamepad_helpers"; -export type UpdateVersion = "update_version_screen" | "update_version_popup" | "background" | "update_version_content" | "update_version_content/top_of_version_panel" | "update_version_content/spacer_1px" | "update_version_content/update_body_text" | "update_version_content/spacer_1px_2" | "patch_notes_panel" | "patch_notes_panel/patch_notes_text" | "picture_and_patch_notes" | "picture_and_patch_notes/patch_notes_image_outline" | "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image" | "picture_and_patch_notes/patch_notes_panel" | "patch_notes" | "patch_notes/patch_notes_text" | "update_body_text" | "update_button"; -export type WorldRecovery = "world_recovery_screen" | "world_recovery_screen_content" | "world_recovery_screen_content/dialog" | "description_panel" | "scrolling_panel" | "description_label" | "button_panel" | "background"; -export type WorldTemplates = "horizontal_padding" | "world_icon" | "realms_icon" | "label_background" | "lock_icon" | "realms_plus_icon" | "new_world_toggle" | "new_realm_toggle" | "world_button_content" | "world_button_content/horizontal_padding_0" | "world_button_content/icon_panel" | "world_button_content/horizontal_padding_1" | "world_button_content/world_button_label_panel" | "world_button_content/world_button_label_panel/world_button_label" | "world_button_content/horizontal_padding_2" | "world_button_label" | "common_button_template" | "generate_random" | "help_button" | "grid_button_content_template" | "grid_button_content_template/content" | "label_content_template" | "label_content_template/label_panel" | "label_content_template/label_panel/label_panel_layout" | "label_content_template/label_panel/label_panel_layout/label" | "my_templates_label" | "realms_plus_templates_label" | "custom_templates_label" | "generate_random_button" | "realms_templates_info" | "realms_templates_info/info_label" | "world_list_text" | "world_template_screenshot" | "world_template_screenshot/picture" | "world_template_name" | "world_template_description" | "world_template_version" | "template_download_text" | "world_template_text_panel" | "world_template_text_panel/text_indent" | "world_template_text_panel/text_indent/top_side" | "world_template_text_panel/text_indent/top_side/world_template_name" | "world_template_text_panel/text_indent/top_side/download_text_label" | "world_template_text_panel/text_indent/bottom_side" | "world_template_text_panel/text_indent/bottom_side/csb_icon" | "world_template_text_panel/text_indent/bottom_side/pad" | "world_template_text_panel/text_indent/bottom_side/world_template_description" | "world_template_text_panel/text_indent/bottom_side/world_template_version" | "csb_banner" | "csb_banner/banner" | "world_template_content_panel" | "world_template_content_panel/world_template_screenshot" | "world_template_content_panel/world_template_text_panel" | "world_template_content_panel/lock_panel" | "world_template_content_panel/lock_panel/lock_icon" | "world_template_item_button" | "realms_plus_template_item_button" | "world_template_item" | "world_template_item/world_template_item_button" | "realms_plus_template_item" | "realms_plus_template_item/realms_plus_template_item_button" | "world_template_item_grid" | "see_more_templates_button" | "suggested_see_more_button" | "realms_plus_see_more_button" | "world_template_inventory_see_more_button" | "custom_world_template_see_more_button" | "world_template_section_factory" | "suggested_template_section_factory" | "realms_plus_template_section_factory" | "world_template_inventory_section_factory" | "custom_world_template_section_factory" | "custom_world_template_item_grid" | "no_owned_templates_text_label" | "no_owned_templates_text" | "no_template_content_owned" | "no_template_content_owned/no_template_content_owned_text_panel" | "common_scrolling_panel" | "common_content" | "scrolling_offsets" | "template_scroll_content" | "template_scroll_content/scrolling_panel" | "common_scroll_pane" | "template_scroll_panel" | "template_scroll_panel/world_template_screen_content_stack_panel" | "world_list_grids_stack" | "world_list_grids_stack/template_list_panel" | "world_list_grids_stack/template_list_panel/my_templates_label_panel" | "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory" | "world_list_grids_stack/template_list_panel/template_bottom_padding" | "world_list_grids_stack/store_panel" | "world_list_grids_stack/store_panel/loading_panel" | "world_list_grids_stack/store_panel/store_grids" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory" | "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory" | "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding" | "world_list_grids_stack/custom_template_panel" | "world_list_grids_stack/custom_template_panel/custom_templates_label_panel" | "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory" | "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding" | "world_list_grids_stack/realms_info_panel" | "world_list_grids_stack/realms_info_panel/padding" | "world_list_grids_stack/realms_info_panel/realms_templates_info" | "world_list_grids_stack/realms_info_panel/open_uri_button" | "world_list_grid_content" | "world_list_grid_content/world_list_grids_stack" | "world_template_screen_content_stack_panel" | "world_template_screen_content_stack_panel/padding_0" | "world_template_screen_content_stack_panel/crossplatform_disabled_panel" | "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text" | "world_template_screen_content_stack_panel/crossplatform_disable_spacer" | "world_template_screen_content_stack_panel/generate_random_panel" | "world_template_screen_content_stack_panel/generate_random_button_bottom_padding" | "world_template_screen_content_stack_panel/world_list_grid_content" | "open_account_setting_button" | "world_templates_screen" | "world_templates_picker_content" | "world_templates_picker_content/background"; -export type XblConsoleQrSignin = "banner_fill" | "main_panel_qr" | "main_panel_qr/left_panel" | "main_panel_qr/divider" | "main_panel_qr/right_panel" | "main_panel_qr/right_panel/scrolling_panel_sizer" | "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel" | "common_scrolling_panel" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b" | "xbl_console_qr_signin" | "xbl_console_qr_signin_screen_content" | "xbl_console_qr_signin_screen_content/gamepad_helpers" | "xbl_console_qr_signin_screen_content/dialog" | "dialog" | "scroll_content_focus_border" | "left_panel" | "left_panel/left_header" | "left_panel/padding_1" | "left_panel/left_body" | "left_panel/padding_2" | "left_panel/qr_panel" | "left_panel/qr_panel/qr_border" | "left_panel/qr_panel/qr_code" | "left_panel/qr_panel/bee_overlay" | "input_panel_wrapper" | "input_panel_wrapper/r_scroll_panel" | "right_scroll_panel" | "right_scroll_panel/right_header" | "right_scroll_panel/padding_1" | "right_scroll_panel/website_message_label" | "right_scroll_panel/padding_2" | "right_scroll_panel/wrapper_panel_1" | "right_scroll_panel/wrapper_panel_1/banner_1" | "right_scroll_panel/wrapper_panel_1/banner_1/url_label" | "right_scroll_panel/padding_3" | "right_scroll_panel/code_message_label" | "right_scroll_panel/padding_4" | "right_scroll_panel/wrapper_panel_2" | "right_scroll_panel/wrapper_panel_2/banner_2" | "right_scroll_panel/wrapper_panel_2/banner_2/code_label" | "right_scroll_panel/padding_5" | "right_scroll_panel/code_message_body1" | "right_scroll_panel/padding_6" | "right_scroll_panel/code_message_body2" | "right_scroll_panel/padding_7" | "right_scroll_panel/warning_messages" | "ps4_warning_message_panel" | "ps4_warning_message_panel/sign_in_account_message" | "ps4_warning_message_panel/padding_1" | "ps4_warning_message_panel/permanent_linking_message"; -export type XblConsoleSignin = "banner_fill" | "main_panel" | "main_panel/padding_0" | "main_panel/message_label_panel" | "main_panel/message_label_panel/message_label" | "main_panel/padding_1" | "main_panel/website_message_label" | "main_panel/banner_1" | "main_panel/banner_1/url_label" | "main_panel/padding_2" | "main_panel/code_message_label" | "main_panel/banner_2" | "main_panel/banner_2/code_label" | "gamepad_helpers" | "gamepad_helpers/gamepad_helper_b" | "xbl_console_signin" | "xbl_console_signin_screen_content" | "xbl_console_signin_screen_content/gamepad_helpers" | "xbl_console_signin_screen_content/dialog" | "dialog"; -export type XblConsoleSigninSucceeded = "banner_fill" | "gamer_score_icon" | "profile_pic" | "gamertag_label" | "gamer_score_label" | "gamer_score_panel" | "gamer_score_panel/gamer_score_icon" | "gamer_score_panel/padding_0" | "gamer_score_panel/gamer_score_panel" | "gamer_score_panel/gamer_score_panel/gamer_score" | "button_panel" | "button_panel/play" | "text_panel" | "text_panel/new_account_text" | "third_party_platform_legal_text" | "new_account_text_panel" | "gamer_profile_panel" | "gamer_profile_panel/picture_panel" | "gamer_profile_panel/picture_panel/banner" | "gamer_profile_panel/picture_panel/banner/profile_pic" | "gamer_profile_panel/padding_1" | "gamer_profile_panel/info_panel" | "gamer_profile_panel/info_panel/profile_info_panel" | "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label" | "gamer_profile_panel/info_panel/profile_info_panel/padding_0" | "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel" | "main_panel" | "main_panel/profile" | "main_panel/padding_0" | "main_panel/third_party_legal_text_panel" | "main_panel/padding_1" | "main_panel/new_account_text_panel" | "main_panel/padding_2" | "main_panel/button_panel" | "xbl_console_signin_succeeded" | "xbl_console_signin_succeeded_screen_content" | "xbl_console_signin_succeeded_screen_content/dialog" | "dialog"; -export type XblImmediateSignin = "xbl_immediate_signin_screen" | "xbl_immediate_signin_screen_content" | "xbl_immediate_signin_screen_content/root_panel"; -export type Win10TrialConversion = "padding_horizontal" | "padding_vertical" | "padding_vertical_3" | "background_image" | "title_image" | "focus_border" | "pack_image" | "pack_image_panel" | "pack_image_panel/pack_image" | "title_image_border" | "title_image_border/image" | "pack_image_with_border" | "pack_image_with_border/image" | "label_panel" | "button_panel" | "button_panel/padding_5" | "button_panel/buy_now_button" | "button_panel/padding_6" | "buy_now_button" | "buy_now_label" | "buy_now_label/button_label" | "is_focused" | "filler_panel" | "focus_border_button" | "focus_border_button/default" | "focus_border_button/hover" | "focus_border_button/pressed" | "grid_item" | "grid_item/padding_1" | "grid_item/pack_image_pane" | "grid_item/padding_2" | "grid_item/pack_panel" | "grid_item/padding_3" | "grid_item_vertical" | "grid_item_vertical/grid_item_horizontal" | "grid_item_vertical/pack_grid" | "pack_panel" | "pack_panel/packtitle" | "pack_panel/padding_2" | "pack_panel/packdesc" | "collection_main_panel" | "collection_main_panel/padding_1" | "collection_main_panel/title_panel" | "collection_main_panel/padding_2" | "collection_main_panel/title_image_panel" | "collection_main_panel/title_image_panel/border_image" | "collection_main_panel/padding_3" | "collection_main_panel/offer_panel" | "collection_main_panel/offer_panel/padding_1" | "collection_main_panel/offer_panel/label_panel" | "collection_main_panel/offer_panel/label_panel/offer_label" | "collection_main_panel/offer_panel/padding_2" | "collection_main_panel/padding_4" | "collection_main_panel/button_panel" | "collection_main_panel/padding_5" | "collection_main_panel/include_panel" | "collection_main_panel/include_panel/padding_1" | "collection_main_panel/include_panel/include_label" | "collection_main_panel/padding_6" | "collection_main_panel/pack_list_grid" | "background_image_with_border" | "background_image_with_border/main_panel_no_buttons" | "win10_trial_conversion_main_panel" | "win10_trial_conversion_main_panel/scrolling_panel" | "vertical_main_panel" | "vertical_main_panel/padding_1" | "vertical_main_panel/panel" | "vertical_main_panel/padding_2" | "horizontal_main_panel" | "horizontal_main_panel/padding_1" | "horizontal_main_panel/starter_collection" | "horizontal_main_panel/padding_2" | "horizontal_main_panel/master_collection" | "win10_trial_conversion_screen" | "win10_trial_conversion_panel"; \ No newline at end of file diff --git a/src/types/vanilla/index.ts b/src/types/vanilla/index.ts index 1a82b2b..43888c7 100644 --- a/src/types/vanilla/index.ts +++ b/src/types/vanilla/index.ts @@ -1,2 +1 @@ -export * from "./elements.js" export * from "./intellisense.js" diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index 9508817..7924b1c 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -1,212 +1,19857 @@ -import * as mc from "./elements.js" +import { Type as T } from "../enums/Type.js" + +export type Namespace = keyof IntelliSense +export type Element = Extract +export type VanillaType> = IntelliSense[T][K] export type IntelliSense = { - achievement: mc.Achievement - add_external_server: mc.AddExternalServer - adhoc_inprogress: mc.AdhocInprogress - adhoc: mc.Adhoc - anvil: mc.Anvil - anvil_pocket: mc.AnvilPocket - authentication_modals: mc.AuthenticationModals - authentication: mc.Authentication - auto_save_info: mc.AutoSaveInfo - beacon: mc.Beacon - beacon_pocket: mc.BeaconPocket - blast_furnace: mc.BlastFurnace - book: mc.Book - brewing_stand: mc.BrewingStand - brewing_stand_pocket: mc.BrewingStandPocket - bundle_purchase_warning: mc.BundlePurchaseWarning - cartography: mc.Cartography - cartography_pocket: mc.CartographyPocket - chalkboard: mc.Chalkboard - chat: mc.Chat - chat_settings: mc.ChatSettings - chest: mc.Chest - choose_realm: mc.ChooseRealm - coin_purchase: mc.CoinPurchase - command_block: mc.CommandBlock - confirm_delete_account: mc.ConfirmDeleteAccount - content_log: mc.ContentLog - content_log_history: mc.ContentLogHistory - crafter_pocket: mc.CrafterPocket - create_world_upsell: mc.CreateWorldUpsell - credits: mc.Credits - csb_purchase_error: mc.CsbPurchaseError - csb: mc.Csb - csb_content: mc.CsbContent - csb_banner: mc.CsbBanner - csb_buy: mc.CsbBuy - common_csb: mc.CommonCsb - csb_purchase_amazondevicewarning: mc.CsbPurchaseAmazondevicewarning - csb_purchase_warning: mc.CsbPurchaseWarning - csb_subscription_panel: mc.CsbSubscriptionPanel - csb_upsell: mc.CsbUpsell - csb_packs: mc.CsbPacks - csb_welcome: mc.CsbWelcome - csb_faq: mc.CsbFaq - csb_landing: mc.CsbLanding - custom_templates: mc.CustomTemplates - world_conversion_complete: mc.WorldConversionComplete - day_one_experience_intro: mc.DayOneExperienceIntro - day_one_experience: mc.DayOneExperience - death: mc.Death - debug_screen: mc.DebugScreen - dev_console: mc.DevConsole - disconnect: mc.Disconnect - display_logged_error: mc.DisplayLoggedError - discovery_dialog: mc.DiscoveryDialog - edu_featured: mc.EduFeatured - edu_quit_button: mc.EduQuitButton - persona_emote: mc.PersonaEmote - enchanting: mc.Enchanting - enchanting_pocket: mc.EnchantingPocket - encyclopedia: mc.Encyclopedia - expanded_skin_pack: mc.ExpandedSkinPack - feed_common: mc.FeedCommon - file_upload: mc.FileUpload - furnace: mc.Furnace - furnace_pocket: mc.FurnacePocket - game_tip: mc.GameTip - gamepad_disconnected: mc.GamepadDisconnected - gameplay: mc.Gameplay - gathering_info: mc.GatheringInfo - globalpause: mc.Globalpause - grindstone: mc.Grindstone - grindstone_pocket: mc.GrindstonePocket - gamma_calibration: mc.GammaCalibration - horse: mc.Horse - horse_pocket: mc.HorsePocket - how_to_play_common: mc.HowToPlayCommon - how_to_play: mc.HowToPlay - hud: mc.Hud - host_options: mc.HostOptions - bed: mc.Bed - im_reader: mc.ImReader - crafting: mc.Crafting - crafting_pocket: mc.CraftingPocket - invite: mc.Invite - jigsaw_editor: mc.JigsawEditor - late_join: mc.LateJoin - library_modal: mc.LibraryModal - local_world_picker: mc.LocalWorldPicker - loom: mc.Loom - loom_pocket: mc.LoomPocket - manage_feed: mc.ManageFeed - manifest_validation: mc.ManifestValidation - sdl_label: mc.SdlLabel - sdl_dropdowns: mc.SdlDropdowns - sdl_image_row: mc.SdlImageRow - sdl_text_row: mc.SdlTextRow - mob_effect: mc.MobEffect - non_xbl_user_management: mc.NonXblUserManagement - npc_interact: mc.NpcInteract - online_safety: mc.OnlineSafety - pack_settings: mc.PackSettings - panorama: mc.Panorama - patch_notes: mc.PatchNotes - pause: mc.Pause - pdp: mc.Pdp - pdp_screenshots: mc.PdpScreenshots - permissions: mc.Permissions - persona_cast_character_screen: mc.PersonaCastCharacterScreen - persona_common: mc.PersonaCommon - persona_popups: mc.PersonaPopups - play: mc.Play - perf_turtle: mc.PerfTurtle - pocket_containers: mc.PocketContainers - popup_dialog: mc.PopupDialog - portfolio: mc.Portfolio - progress: mc.Progress - rating_prompt: mc.RatingPrompt - realms_common: mc.RealmsCommon - realms_create: mc.RealmsCreate - realms_pending_invitations: mc.RealmsPendingInvitations - realms_slots: mc.RealmsSlots - realms_settings: mc.RealmsSettings - realms_allowlist: mc.RealmsAllowlist - realms_invite_link_settings: mc.RealmsInviteLinkSettings - realms_plus_ended: mc.RealmsPlusEnded - realmsPlus: mc.RealmsPlus - realmsPlus_content: mc.RealmsPlusContent - realmsPlus_faq: mc.RealmsPlusFaq - realmsPlus_landing: mc.RealmsPlusLanding - realmsPlus_buy: mc.RealmsPlusBuy - realmsPlus_packs: mc.RealmsPlusPacks - realmsPlus_purchase_warning: mc.RealmsPlusPurchaseWarning - realms_stories_transition: mc.RealmsStoriesTransition - redstone: mc.Redstone - resource_packs: mc.ResourcePacks - safe_zone: mc.SafeZone - storage_migration_common: mc.StorageMigrationCommon - storage_migration_generic: mc.StorageMigrationGeneric - scoreboard: mc.Scoreboard - screenshot: mc.Screenshot - select_world: mc.SelectWorld - server_form: mc.ServerForm - settings: mc.Settings - controls_section: mc.ControlsSection - general_section: mc.GeneralSection - realms_world_section: mc.RealmsWorldSection - settings_common: mc.SettingsCommon - world_section: mc.WorldSection - social_section: mc.SocialSection - sidebar_navigation: mc.SidebarNavigation - sign: mc.Sign - simple_inprogress: mc.SimpleInprogress - skin_pack_purchase: mc.SkinPackPurchase - skin_picker: mc.SkinPicker - smithing_table: mc.SmithingTable - smithing_table_2: mc.SmithingTable2 - smithing_table_pocket: mc.SmithingTablePocket - smithing_table_2_pocket: mc.SmithingTable2Pocket - smoker: mc.Smoker - start: mc.Start - stonecutter: mc.Stonecutter - stonecutter_pocket: mc.StonecutterPocket - storage_management: mc.StorageManagement - storage_management_popup: mc.StorageManagementPopup - common_store: mc.CommonStore - store_layout: mc.StoreLayout - filter_menu: mc.FilterMenu - store_inventory: mc.StoreInventory - store_item_list: mc.StoreItemList - store_progress: mc.StoreProgress - promo_timeline: mc.PromoTimeline - store_sale_item_list: mc.StoreSaleItemList - store_search: mc.StoreSearch - sort_menu: mc.SortMenu - structure_editor: mc.StructureEditor - submit_feedback: mc.SubmitFeedback - tabbed_upsell: mc.TabbedUpsell - thanks_for_testing: mc.ThanksForTesting - third_party_store: mc.ThirdPartyStore - toast_screen: mc.ToastScreen - token_faq: mc.TokenFaq - trade: mc.Trade - trade_pocket: mc.TradePocket - trade2: mc.Trade2 - trade2_pocket: mc.Trade2Pocket - trialUpsell: mc.TrialUpsell - ugc_viewer: mc.UgcViewer - common_art: mc.CommonArt - common: mc.Common - "common-classic": mc.CommonClassic - edu_common: mc.EduCommon - purchase_common: mc.PurchaseCommon - common_buttons: mc.CommonButtons - common_dialogs: mc.CommonDialogs - common_tabs: mc.CommonTabs - common_toggles: mc.CommonToggles - friendsbutton: mc.Friendsbutton - iconbutton: mc.Iconbutton - update_dimensions: mc.UpdateDimensions - update_version: mc.UpdateVersion - world_recovery: mc.WorldRecovery - world_templates: mc.WorldTemplates - xbl_console_qr_signin: mc.XblConsoleQrSignin - xbl_console_signin: mc.XblConsoleSignin - xbl_console_signin_succeeded: mc.XblConsoleSigninSucceeded - xbl_immediate_signin: mc.XblImmediateSignin - win10_trial_conversion: mc.Win10TrialConversion + achievement: AchievementType + add_external_server: AddExternalServerType + adhoc_inprogress: AdhocInprogressType + adhoc: AdhocType + anvil: AnvilType + anvil_pocket: AnvilPocketType + authentication_modals: AuthenticationModalsType + authentication: AuthenticationType + auto_save_info: AutoSaveInfoType + beacon: BeaconType + beacon_pocket: BeaconPocketType + blast_furnace: BlastFurnaceType + book: BookType + brewing_stand: BrewingStandType + brewing_stand_pocket: BrewingStandPocketType + bundle_purchase_warning: BundlePurchaseWarningType + cartography: CartographyType + cartography_pocket: CartographyPocketType + chalkboard: ChalkboardType + chat: ChatType + chat_settings: ChatSettingsType + chest: ChestType + choose_realm: ChooseRealmType + coin_purchase: CoinPurchaseType + command_block: CommandBlockType + confirm_delete_account: ConfirmDeleteAccountType + content_log: ContentLogType + content_log_history: ContentLogHistoryType + crafter_pocket: CrafterPocketType + create_world_upsell: CreateWorldUpsellType + credits: CreditsType + csb_purchase_error: CsbPurchaseErrorType + csb: CsbType + csb_content: CsbContentType + csb_banner: CsbBannerType + csb_buy: CsbBuyType + common_csb: CommonCsbType + csb_purchase_amazondevicewarning: CsbPurchaseAmazondevicewarningType + csb_purchase_warning: CsbPurchaseWarningType + csb_subscription_panel: CsbSubscriptionPanelType + csb_upsell: CsbUpsellType + csb_packs: CsbPacksType + csb_welcome: CsbWelcomeType + csb_faq: CsbFaqType + csb_landing: CsbLandingType + custom_templates: CustomTemplatesType + world_conversion_complete: WorldConversionCompleteType + day_one_experience_intro: DayOneExperienceIntroType + day_one_experience: DayOneExperienceType + death: DeathType + debug_screen: DebugScreenType + dev_console: DevConsoleType + disconnect: DisconnectType + display_logged_error: DisplayLoggedErrorType + discovery_dialog: DiscoveryDialogType + edu_featured: EduFeaturedType + edu_quit_button: EduQuitButtonType + persona_emote: PersonaEmoteType + enchanting: EnchantingType + enchanting_pocket: EnchantingPocketType + encyclopedia: EncyclopediaType + expanded_skin_pack: ExpandedSkinPackType + feed_common: FeedCommonType + file_upload: FileUploadType + furnace: FurnaceType + furnace_pocket: FurnacePocketType + game_tip: GameTipType + gamepad_disconnected: GamepadDisconnectedType + gameplay: GameplayType + gathering_info: GatheringInfoType + globalpause: GlobalpauseType + grindstone: GrindstoneType + grindstone_pocket: GrindstonePocketType + gamma_calibration: GammaCalibrationType + horse: HorseType + horse_pocket: HorsePocketType + how_to_play_common: HowToPlayCommonType + how_to_play: HowToPlayType + hud: HudType + host_options: HostOptionsType + bed: BedType + im_reader: ImReaderType + crafting: CraftingType + crafting_pocket: CraftingPocketType + invite: InviteType + jigsaw_editor: JigsawEditorType + late_join: LateJoinType + library_modal: LibraryModalType + local_world_picker: LocalWorldPickerType + loom: LoomType + loom_pocket: LoomPocketType + manage_feed: ManageFeedType + manifest_validation: ManifestValidationType + sdl_label: SdlLabelType + sdl_dropdowns: SdlDropdownsType + sdl_image_row: SdlImageRowType + sdl_text_row: SdlTextRowType + mob_effect: MobEffectType + non_xbl_user_management: NonXblUserManagementType + npc_interact: NpcInteractType + online_safety: OnlineSafetyType + pack_settings: PackSettingsType + panorama: PanoramaType + patch_notes: PatchNotesType + pause: PauseType + pdp: PdpType + pdp_screenshots: PdpScreenshotsType + permissions: PermissionsType + persona_cast_character_screen: PersonaCastCharacterScreenType + persona_common: PersonaCommonType + persona_popups: PersonaPopupsType + play: PlayType + perf_turtle: PerfTurtleType + pocket_containers: PocketContainersType + popup_dialog: PopupDialogType + portfolio: PortfolioType + progress: ProgressType + rating_prompt: RatingPromptType + realms_common: RealmsCommonType + realms_create: RealmsCreateType + realms_pending_invitations: RealmsPendingInvitationsType + realms_slots: RealmsSlotsType + realms_settings: RealmsSettingsType + realms_allowlist: RealmsAllowlistType + realms_invite_link_settings: RealmsInviteLinkSettingsType + realms_plus_ended: RealmsPlusEndedType + realmsPlus: RealmsPlusType + realmsPlus_content: RealmsPlusContentType + realmsPlus_faq: RealmsPlusFaqType + realmsPlus_landing: RealmsPlusLandingType + realmsPlus_buy: RealmsPlusBuyType + realmsPlus_packs: RealmsPlusPacksType + realmsPlus_purchase_warning: RealmsPlusPurchaseWarningType + realms_stories_transition: RealmsStoriesTransitionType + redstone: RedstoneType + resource_packs: ResourcePacksType + safe_zone: SafeZoneType + storage_migration_common: StorageMigrationCommonType + storage_migration_generic: StorageMigrationGenericType + scoreboard: ScoreboardType + screenshot: ScreenshotType + select_world: SelectWorldType + server_form: ServerFormType + settings: SettingsType + controls_section: ControlsSectionType + general_section: GeneralSectionType + realms_world_section: RealmsWorldSectionType + settings_common: SettingsCommonType + world_section: WorldSectionType + social_section: SocialSectionType + sidebar_navigation: SidebarNavigationType + sign: SignType + simple_inprogress: SimpleInprogressType + skin_pack_purchase: SkinPackPurchaseType + skin_picker: SkinPickerType + smithing_table: SmithingTableType + smithing_table_2: SmithingTable2Type + smithing_table_pocket: SmithingTablePocketType + smithing_table_2_pocket: SmithingTable2PocketType + smoker: SmokerType + start: StartType + stonecutter: StonecutterType + stonecutter_pocket: StonecutterPocketType + storage_management: StorageManagementType + storage_management_popup: StorageManagementPopupType + common_store: CommonStoreType + store_layout: StoreLayoutType + filter_menu: FilterMenuType + store_inventory: StoreInventoryType + store_item_list: StoreItemListType + store_progress: StoreProgressType + promo_timeline: PromoTimelineType + store_sale_item_list: StoreSaleItemListType + store_search: StoreSearchType + sort_menu: SortMenuType + structure_editor: StructureEditorType + submit_feedback: SubmitFeedbackType + tabbed_upsell: TabbedUpsellType + thanks_for_testing: ThanksForTestingType + third_party_store: ThirdPartyStoreType + toast_screen: ToastScreenType + token_faq: TokenFaqType + trade: TradeType + trade_pocket: TradePocketType + trade2: Trade2Type + trade2_pocket: Trade2PocketType + trialUpsell: TrialUpsellType + ugc_viewer: UgcViewerType + common_art: CommonArtType + common: CommonType + "common-classic": CommonClassicType + edu_common: EduCommonType + purchase_common: PurchaseCommonType + common_buttons: CommonButtonsType + common_dialogs: CommonDialogsType + common_tabs: CommonTabsType + common_toggles: CommonTogglesType + friendsbutton: FriendsbuttonType + iconbutton: IconbuttonType + update_dimensions: UpdateDimensionsType + update_version: UpdateVersionType + world_recovery: WorldRecoveryType + world_templates: WorldTemplatesType + xbl_console_qr_signin: XblConsoleQrSigninType + xbl_console_signin: XblConsoleSigninType + xbl_console_signin_succeeded: XblConsoleSigninSucceededType + xbl_immediate_signin: XblImmediateSigninType + win10_trial_conversion: Win10TrialConversionType +} + +export type AchievementType = { + empty_progress_bar_icon: T.IMAGE + full_progress_bar_icon_base: T.IMAGE +} + +export type AddExternalServerType = { + play_button: T.BUTTON + play_disabled_button: T.BUTTON + remove_button: T.BUTTON + save_button: T.BUTTON + save_disabled_button: T.BUTTON + text_edit_group: T.STACK_PANEL + "text_edit_group/name_label": T.LABEL + "text_edit_group/edit_box": T.EDIT_BOX + title_text: T.LABEL + content_panel: T.STACK_PANEL + "content_panel/name_edit": T.STACK_PANEL + "content_panel/ip_edit": T.STACK_PANEL + "content_panel/port_edit": T.STACK_PANEL + main_panel: T.INPUT_PANEL + "main_panel/common_panel": T.PANEL + "main_panel/title": T.LABEL + "main_panel/main_content": T.STACK_PANEL + "main_panel/play": T.BUTTON + "main_panel/play_disabled": T.BUTTON + "main_panel/remove": T.BUTTON + "main_panel/save": T.BUTTON + "main_panel/save_disabled": T.BUTTON + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + add_external_server_screen_new: T.SCREEN + add_external_server_screen_edit: T.SCREEN + add_external_server_screen: T.SCREEN + add_external_server_screen_content: T.PANEL + "add_external_server_screen_content/root_panel": T.PANEL + "add_external_server_screen_content/root_panel/gamepad_helpers": T.PANEL + "add_external_server_screen_content/root_panel/main_panel": T.INPUT_PANEL +} + +export type AdhocInprogressType = { + title_text: T.LABEL + main_panel: T.PANEL + "main_panel/common_panel": T.PANEL + "main_panel/title": T.LABEL + "main_panel/main_content": T.LABEL + "main_panel/progress_loading_bars": T.IMAGE + adhoc_inprogress_screen: T.SCREEN + adhoc_inprogress_screen_content: T.PANEL + "adhoc_inprogress_screen_content/root_panel": T.PANEL + "adhoc_inprogress_screen_content/root_panel/main_panel": T.PANEL +} + +export type AdhocType = { + online_button: T.BUTTON + local_button: T.BUTTON + title_text: T.LABEL + content_panel: T.STACK_PANEL + "content_panel/title_text": T.LABEL + main_panel: T.INPUT_PANEL + "main_panel/common_panel": T.PANEL + "main_panel/title": T.LABEL + "main_panel/main_content": T.LABEL + "main_panel/online": T.BUTTON + "main_panel/local": T.BUTTON + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + adhoc_screen: T.SCREEN + adhoc_screen_content: T.PANEL + "adhoc_screen_content/root_panel": T.PANEL + "adhoc_screen_content/root_panel/gamepad_helpers": T.PANEL + "adhoc_screen_content/root_panel/main_panel": T.INPUT_PANEL +} + +export type AnvilType = { + generic_label: T.LABEL + anvil_icon: T.IMAGE + title_label: T.LABEL + anvil_icon_panel: T.PANEL + "anvil_icon_panel/anvil_icon": T.IMAGE + text_edit_control: T.EDIT_BOX + icon_and_text_panel: T.PANEL + "icon_and_text_panel/anvil_icon_panel": T.PANEL + "icon_and_text_panel/anvil_title_and_text_panel": T.PANEL + title_panel: T.PANEL + "title_panel/title_label": T.LABEL + text_edit_panel: T.PANEL + "text_edit_panel/text_edit_control": T.EDIT_BOX + anvil_title_and_text_panel: T.PANEL + "anvil_title_and_text_panel/title_panel": T.PANEL + "anvil_title_and_text_panel/text_edit_panel": T.PANEL + plus_sign_icon: T.IMAGE + arrow_icon: T.IMAGE + cross_out_icon: T.IMAGE + anvil_output_slot_button: T.BUTTON + anvil_item_slot: T.PANEL + "anvil_item_slot/container_item": T.INPUT_PANEL + recipe_grid: T.GRID + "recipe_grid/input_item_slot": T.PANEL + "recipe_grid/plus": T.PANEL + "recipe_grid/plus/plus_sign_icon": T.IMAGE + "recipe_grid/material_item_slot": T.PANEL + "recipe_grid/yields": T.PANEL + "recipe_grid/yields/arrow_icon": T.IMAGE + "recipe_grid/yields/cross_out_icon": T.IMAGE + "recipe_grid/result_item_slot": T.PANEL + cost_label: T.LABEL + "cost_label/gray": T.IMAGE + recipe_panel: T.PANEL + "recipe_panel/recipe_grid": T.GRID + "recipe_panel/cost_label_0": T.LABEL + "recipe_panel/cost_label_1": T.LABEL + top_half_panel: T.PANEL + "top_half_panel/icon_and_text_panel": T.PANEL + "top_half_panel/recipe_panel": T.PANEL + anvil_panel: T.PANEL + "anvil_panel/container_gamepad_helpers": T.STACK_PANEL + "anvil_panel/selected_item_details_factory": T.FACTORY + "anvil_panel/item_lock_notification_factory": T.FACTORY + "anvil_panel/root_panel": T.INPUT_PANEL + "anvil_panel/root_panel/common_panel": T.PANEL + "anvil_panel/root_panel/anvil_screen_inventory": T.PANEL + "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": T.PANEL + "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": T.GRID + "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": T.BUTTON + "anvil_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "anvil_panel/root_panel/gamepad_cursor": T.BUTTON + "anvil_panel/flying_item_renderer": T.CUSTOM + anvil_screen: T.SCREEN +} + +export type AnvilPocketType = { + generic_label: T.LABEL + background_image: T.IMAGE + arrow_icon: T.IMAGE + cost_label: T.LABEL + "cost_label/gray": T.IMAGE + title_label: T.LABEL + text_edit_control: T.EDIT_BOX + anvil_title_and_text_panel: T.PANEL + "anvil_title_and_text_panel/title_label": T.LABEL + "anvil_title_and_text_panel/text_edit_control": T.EDIT_BOX + slots_panel: T.PANEL + "slots_panel/input_slot": T.INPUT_PANEL + "slots_panel/material_slot": T.INPUT_PANEL + "slots_panel/result_slot": T.INPUT_PANEL + "slots_panel/plus_sign": T.LABEL + "slots_panel/arrow": T.IMAGE + "slots_panel/arrow/cross_out": T.IMAGE + anvil_contents_panel: T.PANEL + "anvil_contents_panel/red_cost": T.LABEL + "anvil_contents_panel/green_cost": T.LABEL + "anvil_contents_panel/slots_panel": T.PANEL + "anvil_contents_panel/anvil_title_and_text_panel": T.PANEL + inventory_grid: T.GRID + inventory_content: T.PANEL + "inventory_content/scrolling_panel": T.PANEL + inventory_and_anvil_panel: T.PANEL + "inventory_and_anvil_panel/inventory_half_screen": T.PANEL + "inventory_and_anvil_panel/inventory_half_screen/inventory_content": T.PANEL + "inventory_and_anvil_panel/anvil_half_screen": T.PANEL + "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": T.PANEL + header: T.PANEL + "header/header_background": T.IMAGE + "header/legacy_pocket_close_button": T.BUTTON + "header/panel": T.PANEL + "header/panel/title_label": T.LABEL + header_and_content_stack_panel: T.STACK_PANEL + "header_and_content_stack_panel/header": T.PANEL + "header_and_content_stack_panel/inventory_and_anvil_panel": T.PANEL + anvil_panel: T.PANEL + "anvil_panel/bg": T.IMAGE + "anvil_panel/root_panel": T.INPUT_PANEL + "anvil_panel/header_and_content_stack_panel": T.STACK_PANEL + "anvil_panel/container_gamepad_helpers": T.STACK_PANEL + "anvil_panel/inventory_selected_icon_button": T.BUTTON + "anvil_panel/hold_icon": T.BUTTON + "anvil_panel/selected_item_details_factory": T.FACTORY + "anvil_panel/item_lock_notification_factory": T.FACTORY + "anvil_panel/flying_item_renderer": T.CUSTOM +} + +export type AuthenticationModalsType = { + modal_dialog_label: T.LABEL + modal_dialog_content: T.STACK_PANEL + "modal_dialog_content/body_text": T.PANEL + "modal_dialog_content/button_wrapper": T.PANEL + "modal_dialog_content/button_wrapper/buttons": T.STACK_PANEL + "modal_dialog_content/button_wrapper/buttons/left": T.BUTTON + "modal_dialog_content/button_wrapper/buttons/padding": T.PANEL + "modal_dialog_content/button_wrapper/buttons/right": T.BUTTON + modal_dialog_frame: T.IMAGE + "modal_dialog_frame/title": T.LABEL + "modal_dialog_frame/close": T.BUTTON + "modal_dialog_frame/black_tint_image": T.IMAGE + "modal_dialog_frame/black_tint_image/content": T.UNKNOWN + ad_modal_dialog: T.SCREEN +} + +export type AuthenticationType = { + nothing: T.PANEL + tts_control: T.BUTTON + split_button_panel: T.PANEL + "split_button_panel/buttons": T.STACK_PANEL + "split_button_panel/buttons/a": T.UNKNOWN + "split_button_panel/buttons/paddding": T.PANEL + "split_button_panel/buttons/b": T.UNKNOWN + vertical_split_button_panel: T.PANEL + fixed_width_wrapper: T.PANEL + "fixed_width_wrapper/content": T.UNKNOWN + sign_in_button: T.BUTTON + download_button: T.BUTTON + smooth_label: T.LABEL + smooth_bound_label: T.LABEL + title_label: T.LABEL + eula_hyperlink: T.BUTTON + accept_eula_button: T.BUTTON + eula_content: T.STACK_PANEL + "eula_content/prompt_wrapper": T.PANEL + "eula_content/prompt_wrapper/border": T.BUTTON + "eula_content/prompt_wrapper/prompt_text": T.LABEL + "eula_content/padding": T.PANEL + "eula_content/buttons": T.PANEL + eula: T.IMAGE + version: T.PANEL + "version/label": T.LABEL + "version/label_background": T.IMAGE + view_terms_button: T.BUTTON + privacy_policy_button: T.BUTTON + agree_panel: T.PANEL + "agree_panel/checkbox_control": T.TOGGLE + "agree_panel/i_agree_label": T.LABEL + term_item: T.PANEL + "term_item/item": T.UNKNOWN + terms_and_conditions_panel: T.PANEL + "terms_and_conditions_panel/terms_string_panel": T.PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": T.PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.PANEL + confirmation_panel: T.PANEL + "confirmation_panel/confirm_button": T.BUTTON + scroll_stack_panel: T.PANEL + "scroll_stack_panel/border": T.BUTTON + "scroll_stack_panel/terms": T.LABEL + purchase_confirm_content: T.STACK_PANEL + "purchase_confirm_content/header_padding": T.PANEL + "purchase_confirm_content/panel_wrap": T.PANEL + "purchase_confirm_content/panel_wrap/scrolling_panel": T.PANEL + "purchase_confirm_content/terms_and_conditions_panel": T.PANEL + "purchase_confirm_content/button_padding": T.PANEL + "purchase_confirm_content/confirmation_panel": T.PANEL + "purchase_confirm_content/padding": T.PANEL + purchase_prompt_content: T.STACK_PANEL + "purchase_prompt_content/prompt_wrap": T.PANEL + "purchase_prompt_content/prompt_wrap/border": T.BUTTON + "purchase_prompt_content/prompt_wrap/prompt": T.LABEL + "purchase_prompt_content/purchase_wrap_centering_container": T.PANEL + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": T.STACK_PANEL + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": T.BUTTON + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": T.PANEL + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": T.BUTTON + purchase_prompt: T.IMAGE + purchase_confirm: T.IMAGE + purchase_panel: T.PANEL + "purchase_panel/prompt": T.IMAGE + "purchase_panel/confirm": T.IMAGE + title_panel: T.PANEL + "title_panel/title_label_wrapper": T.PANEL + hyperlink_panel: T.PANEL + "hyperlink_panel/link_stack": T.STACK_PANEL + "hyperlink_panel/link_stack/link1": T.BUTTON + "hyperlink_panel/link_stack/link2": T.BUTTON + "hyperlink_panel/link_stack/padding": T.PANEL + auth_screen: T.SCREEN + sign_in_content: T.STACK_PANEL + "sign_in_content/body_text": T.PANEL + "sign_in_content/body_hyperlink": T.PANEL + "sign_in_content/sign_in_wrapper": T.PANEL + "sign_in_content/sign_in_wrapper/button": T.BUTTON + "sign_in_content/download_wrapper": T.PANEL + "sign_in_content/download_wrapper/button": T.BUTTON + authentication_screen_content: T.PANEL + "authentication_screen_content/debug": T.STACK_PANEL + "authentication_screen_content/client_version": T.PANEL + "authentication_screen_content/client_version/version": T.PANEL + "authentication_screen_content/sign_in": T.IMAGE + "authentication_screen_content/sign_in_ios": T.IMAGE + "authentication_screen_content/pack_progress": T.IMAGE + "authentication_screen_content/welcome": T.UNKNOWN + "authentication_screen_content/demo": T.UNKNOWN + "authentication_screen_content/eula": T.IMAGE + "authentication_screen_content/purchase_panel": T.PANEL + "authentication_screen_content/popup_dialog_factory": T.FACTORY + popup_content_base: T.STACK_PANEL + "popup_content_base/message": T.PANEL + "popup_content_base/message/border": T.BUTTON + "popup_content_base/message/text": T.PANEL + "popup_content_base/content": T.UNKNOWN + "popup_content_base/footer_padding": T.PANEL + popup_dialog: T.INPUT_PANEL + "popup_dialog/dialog": T.IMAGE + trial_info_ios_additional_content: T.PANEL + "trial_info_ios_additional_content/dismiss": T.BUTTON + popup_dialog_trial_info_ios: T.INPUT_PANEL + student_message_panel: T.PANEL + trial_info_additional_content: T.STACK_PANEL + "trial_info_additional_content/buttons": T.PANEL + generic_welcome_additional_content: T.STACK_PANEL + "generic_welcome_additional_content/button_wrapper": T.PANEL + "generic_welcome_additional_content/button_wrapper/buttons": T.PANEL + popup_dialog_trial_info: T.INPUT_PANEL + popup_dialog_generic_welcome: T.INPUT_PANEL + popup_message: T.STACK_PANEL + "popup_message/main_message": T.LABEL + "popup_message/extra_message": T.PANEL + "popup_message/padding": T.PANEL + popup_message_student: T.LABEL + popup_hyperlink: T.BUTTON + popup_purchase_link: T.BUTTON + popup_dismiss_button: T.BUTTON + pack_progress_content: T.STACK_PANEL + "pack_progress_content/top_padding": T.PANEL + "pack_progress_content/loading_text_panel": T.PANEL + "pack_progress_content/loading_text_panel/loading_text": T.LABEL + "pack_progress_content/loading_bar_panel": T.PANEL + "pack_progress_content/loading_bar_panel/loading_bar": T.PANEL + "pack_progress_content/loading_padding": T.PANEL + "pack_progress_content/skip_panel": T.PANEL + "pack_progress_content/skip_panel/skip_button": T.BUTTON + "pack_progress_content/bottom_padding": T.PANEL + sign_in_ios_content: T.STACK_PANEL + "sign_in_ios_content/body_text": T.PANEL + "sign_in_ios_content/body_hyperlink": T.PANEL + "sign_in_ios_content/signin_ios_button_panel": T.STACK_PANEL + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": T.PANEL + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": T.LABEL + "sign_in_ios_content/signin_ios_button_panel/buttons": T.PANEL + "sign_in_ios_content/signin_ios_button_panel/pad_footer": T.PANEL + "sign_in_ios_content/error_sign_in_panel": T.PANEL + "sign_in_ios_content/error_sign_in_panel/button": T.BUTTON + "sign_in_ios_content/error_download_panel": T.PANEL + "sign_in_ios_content/error_download_panel/button": T.BUTTON + sign_in_ios_button: T.BUTTON + to_app_store: T.BUTTON + debug_panel: T.STACK_PANEL + "debug_panel/state_label": T.LABEL + "debug_panel/state_text_box": T.EDIT_BOX + "debug_panel/open_popup": T.BUTTON + "debug_panel/refresh_popup": T.BUTTON + "debug_panel/reset": T.BUTTON + "debug_panel/toggle_ios": T.BUTTON + authentication_popup_link_button: T.STACK_PANEL + "authentication_popup_link_button/top_padding": T.PANEL + "authentication_popup_link_button/link_button": T.BUTTON + authentication_popup_contents: T.STACK_PANEL + "authentication_popup_contents/initial_padding": T.PANEL + "authentication_popup_contents/body": T.LABEL + "authentication_popup_contents/learn_more_link": T.STACK_PANEL + "authentication_popup_contents/link2": T.STACK_PANEL + "authentication_popup_contents/end_padding": T.PANEL + resizeable_scrolling_panel: T.PANEL + authentication_popup_content_panel: T.PANEL + authentication_popup_button: T.BUTTON + authentication_popup_one_button: T.PANEL + "authentication_popup_one_button/button": T.BUTTON + authentication_popup_two_buttons: T.STACK_PANEL + "authentication_popup_two_buttons/first_button": T.BUTTON + "authentication_popup_two_buttons/button_padding": T.PANEL + "authentication_popup_two_buttons/second_button": T.BUTTON + authentication_popup_lower_button_panel: T.PANEL + "authentication_popup_lower_button_panel/one_button": T.PANEL + "authentication_popup_lower_button_panel/two_buttons": T.STACK_PANEL + authentication_popup: T.INPUT_PANEL +} + +export type AutoSaveInfoType = { + auto_save: T.IMAGE + accept_label: T.PANEL + "accept_label/button_label": T.LABEL + accept_button: T.BUTTON + main_panel: T.INPUT_PANEL + "main_panel/common_panel": T.PANEL + "main_panel/title_label": T.LABEL + "main_panel/message_label": T.LABEL + "main_panel/save_icon": T.IMAGE + "main_panel/a": T.BUTTON + "main_panel/gamepad_helpers": T.PANEL + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + auto_save_info_screen: T.SCREEN + auto_save_info_screen_content: T.PANEL + "auto_save_info_screen_content/root_panel": T.PANEL + "auto_save_info_screen_content/root_panel/main_panel": T.INPUT_PANEL +} + +export type BeaconType = { + selected_item_details: T.PANEL + beacon_panel: T.PANEL + "beacon_panel/container_gamepad_helpers": T.STACK_PANEL + "beacon_panel/selected_item_details_factory": T.FACTORY + "beacon_panel/item_lock_notification_factory": T.FACTORY + "beacon_panel/root_panel": T.INPUT_PANEL + "beacon_panel/root_panel/common_panel": T.PANEL + "beacon_panel/root_panel/beacon_inventory": T.PANEL + "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": T.IMAGE + "beacon_panel/root_panel/beacon_inventory/payment_panel": T.PANEL + "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": T.PANEL + "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": T.GRID + "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": T.BUTTON + "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": T.BUTTON + "beacon_panel/flying_item_renderer": T.CUSTOM + inventory_slot_button: T.BUTTON + hotbar_slot_button: T.BUTTON + image_atlas: T.IMAGE + pyramid_image: T.IMAGE + pyramid_panel: T.PANEL + "pyramid_panel/level1": T.IMAGE + "pyramid_panel/level2": T.IMAGE + "pyramid_panel/level3": T.IMAGE + "pyramid_panel/level4": T.IMAGE + item_seperator: T.IMAGE + item_renderer: T.CUSTOM + usable_items_panel: T.PANEL + "usable_items_panel/netherite": T.CUSTOM + "usable_items_panel/item_seperator_0": T.IMAGE + "usable_items_panel/emerald": T.CUSTOM + "usable_items_panel/item_seperator_1": T.IMAGE + "usable_items_panel/diamond": T.CUSTOM + "usable_items_panel/item_seperator_2": T.IMAGE + "usable_items_panel/gold": T.CUSTOM + "usable_items_panel/item_seperator_3": T.IMAGE + "usable_items_panel/iron": T.CUSTOM + base_image: T.IMAGE + hover_text: T.CUSTOM + hover_state: T.IMAGE + "hover_state/hover_text": T.CUSTOM + button_unchecked_default: T.IMAGE + button_unchecked_hover: T.IMAGE + "button_unchecked_hover/hover_text": T.CUSTOM + button_checked_hover: T.IMAGE + "button_checked_hover/hover_text": T.CUSTOM + button_locked: T.IMAGE + button_locked_hover: T.IMAGE + "button_locked_hover/hover_text": T.CUSTOM + button_checked: T.IMAGE + toggle_button: T.TOGGLE + base_button: T.BUTTON + "base_button/default": T.IMAGE + "base_button/hover": T.IMAGE + "base_button/pressed": T.IMAGE + active_button: T.BUTTON + inactive_button: T.BUTTON + "inactive_button/default": T.IMAGE + "inactive_button/hover": T.IMAGE + selected_button: T.BUTTON + "selected_button/default": T.IMAGE + "selected_button/hover": T.IMAGE + secondary_effect_base: T.IMAGE + speed_secondary: T.IMAGE + haste_secondary: T.IMAGE + resist_secondary: T.IMAGE + jump_secondary: T.IMAGE + strength_secondary: T.IMAGE + image_template: T.PANEL + "image_template/base_image": T.IMAGE + secondary_effect_images: T.PANEL + "secondary_effect_images/speed_secondary": T.IMAGE + "secondary_effect_images/haste_secondary": T.IMAGE + "secondary_effect_images/resist_secondary": T.IMAGE + "secondary_effect_images/jump_secondary": T.IMAGE + "secondary_effect_images/strength_secondary": T.IMAGE + toggle_template: T.PANEL + "toggle_template/toggle_button": T.TOGGLE + button_template: T.PANEL + "button_template/active_button": T.BUTTON + "button_template/inactive_button": T.BUTTON + "button_template/image_template": T.PANEL + panel_template: T.PANEL + button_panel: T.PANEL + "button_panel/speed_panel": T.PANEL + "button_panel/speed_panel/toggle_template": T.PANEL + "button_panel/haste_panel": T.PANEL + "button_panel/resist_panel": T.PANEL + "button_panel/jump_panel": T.PANEL + "button_panel/strength_panel": T.PANEL + "button_panel/regen_panel": T.PANEL + "button_panel/extra_panel": T.PANEL + payment_panel: T.PANEL + "payment_panel/confirm_panel": T.PANEL + "payment_panel/cancel_panel": T.PANEL + "payment_panel/ingredient_item": T.INPUT_PANEL + "payment_panel/usable_items_panel": T.PANEL + beacon_label: T.LABEL + beacon_inner_panel: T.IMAGE + "beacon_inner_panel/button_panel": T.PANEL + "beacon_inner_panel/pyramid_panel": T.PANEL + "beacon_inner_panel/middle_strip": T.IMAGE + "beacon_inner_panel/primary_power_label": T.LABEL + "beacon_inner_panel/secondary_power_label": T.LABEL + beacon_screen: T.SCREEN +} + +export type BeaconPocketType = { + generic_label: T.LABEL + panel_outline: T.IMAGE + dark_bg: T.IMAGE + background_image: T.IMAGE + item_seperator: T.IMAGE + item_renderer: T.CUSTOM + usable_items_panel: T.PANEL + "usable_items_panel/netherite": T.CUSTOM + "usable_items_panel/item_seperator_0": T.IMAGE + "usable_items_panel/emerald": T.CUSTOM + "usable_items_panel/item_seperator_1": T.IMAGE + "usable_items_panel/diamond": T.CUSTOM + "usable_items_panel/item_seperator_2": T.IMAGE + "usable_items_panel/gold": T.CUSTOM + "usable_items_panel/item_seperator_3": T.IMAGE + "usable_items_panel/iron": T.CUSTOM + pyramid_image: T.IMAGE + pyramid_panel: T.PANEL + "pyramid_panel/pyramid_image": T.IMAGE + background_panel: T.IMAGE + beacon_background: T.IMAGE + "beacon_background/middle_strip": T.IMAGE + inventory_grid: T.GRID + inventory_content: T.PANEL + "inventory_content/scrolling_panel": T.PANEL + highlight_hover_square: T.PANEL + "highlight_hover_square/highlight_square": T.IMAGE + button_unchecked_default: T.IMAGE + button_unchecked_hover: T.IMAGE + "button_unchecked_hover/highlight_hover_square": T.PANEL + button_checked: T.IMAGE + button_checked_hover: T.IMAGE + "button_checked_hover/highlight_hover_square": T.PANEL + button_locked: T.IMAGE + button_locked_hover: T.IMAGE + "button_locked_hover/highlight_hover_square": T.PANEL + toggle_button: T.TOGGLE + base_button: T.BUTTON + "base_button/default": T.IMAGE + "base_button/hover": T.IMAGE + "base_button/hover/highlight_hover_square": T.PANEL + "base_button/pressed": T.IMAGE + active_button: T.BUTTON + inactive_button_image: T.IMAGE + inactive_button: T.BUTTON + "inactive_button/default": T.IMAGE + "inactive_button/hover": T.IMAGE + "inactive_button/hover/highlight_hover_square": T.PANEL + selected_button_image: T.IMAGE + selected_button: T.BUTTON + "selected_button/default": T.IMAGE + "selected_button/hover": T.IMAGE + "selected_button/hover/highlight_hover_square": T.PANEL + secondary_effect_base: T.PANEL + speed_secondary: T.PANEL + haste_secondary: T.PANEL + resist_secondary: T.PANEL + jump_secondary: T.PANEL + strength_secondary: T.PANEL + secondary_effect_images: T.PANEL + "secondary_effect_images/speed_secondary": T.PANEL + "secondary_effect_images/haste_secondary": T.PANEL + "secondary_effect_images/resist_secondary": T.PANEL + "secondary_effect_images/jump_secondary": T.PANEL + "secondary_effect_images/strength_secondary": T.PANEL + base_image: T.IMAGE + image_template: T.PANEL + "image_template/base_image": T.IMAGE + toggle_template: T.PANEL + "toggle_template/toggle_button": T.TOGGLE + button_template: T.PANEL + "button_template/active_button": T.BUTTON + "button_template/inactive_button": T.BUTTON + "button_template/image_template": T.PANEL + panel_template: T.PANEL + beacon_power_label: T.PANEL + "beacon_power_label/label": T.LABEL + beacon_sub_panel: T.PANEL + beacon_button_left_panel: T.PANEL + "beacon_button_left_panel/primary_power_label": T.PANEL + "beacon_button_left_panel/panel": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons/level1": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons/level2": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons/level3": T.PANEL + "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": T.PANEL + beacon_button_right_panel: T.PANEL + "beacon_button_right_panel/secondary_power_label": T.PANEL + "beacon_button_right_panel/panel": T.PANEL + "beacon_button_right_panel/panel/buttons_and_pyramid": T.PANEL + "beacon_button_right_panel/panel/buttons_and_pyramid/level4": T.PANEL + "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": T.PANEL + "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": T.PANEL + beacon_buttons_panel: T.PANEL + "beacon_buttons_panel/beacon_background": T.IMAGE + "beacon_buttons_panel/left_panel": T.PANEL + "beacon_buttons_panel/right_panel": T.PANEL + confirm_panel: T.PANEL + "confirm_panel/ingredient_item": T.INPUT_PANEL + "confirm_panel/confirm_panel": T.PANEL + "confirm_panel/cancel_panel": T.PANEL + beacon_payment_panel: T.STACK_PANEL + "beacon_payment_panel/usable_items_panel": T.PANEL + "beacon_payment_panel/pad": T.PANEL + "beacon_payment_panel/confirm_panel": T.PANEL + beacon_contents_panel: T.STACK_PANEL + "beacon_contents_panel/fill1": T.PANEL + "beacon_contents_panel/beacon_buttons_panel": T.PANEL + "beacon_contents_panel/pad1": T.PANEL + "beacon_contents_panel/beacon_payment_panel": T.STACK_PANEL + "beacon_contents_panel/fill2": T.PANEL + header: T.PANEL + "header/header_background": T.IMAGE + "header/legacy_pocket_close_button": T.BUTTON + "header/panel": T.PANEL + "header/panel/title_label": T.LABEL + inventory_and_beacon_panel: T.PANEL + "inventory_and_beacon_panel/inventory_half_screen": T.PANEL + "inventory_and_beacon_panel/inventory_half_screen/inventory_content": T.PANEL + "inventory_and_beacon_panel/beacon_half_screen": T.PANEL + "inventory_and_beacon_panel/beacon_half_screen/beacon_content": T.STACK_PANEL + header_and_content_stack_panel: T.STACK_PANEL + "header_and_content_stack_panel/header": T.PANEL + "header_and_content_stack_panel/inventory_and_beacon_panel": T.PANEL + beacon_panel: T.PANEL + "beacon_panel/bg": T.IMAGE + "beacon_panel/root_panel": T.INPUT_PANEL + "beacon_panel/header_and_content_stack_panel": T.STACK_PANEL + "beacon_panel/container_gamepad_helpers": T.STACK_PANEL + "beacon_panel/inventory_selected_icon_button": T.BUTTON + "beacon_panel/hold_icon": T.BUTTON + "beacon_panel/selected_item_details_factory": T.FACTORY + "beacon_panel/item_lock_notification_factory": T.FACTORY + "beacon_panel/flying_item_renderer": T.CUSTOM +} + +export type BlastFurnaceType = { + blast_furnace_screen: T.SCREEN +} + +export type BookType = { + screenshot: T.IMAGE + screenshot_frame: T.IMAGE + "screenshot_frame/caption_edit": T.EDIT_BOX + photo_corner: T.IMAGE + photo_corner_bl: T.IMAGE + photo_corner_br: T.IMAGE + photo_corner_tr: T.IMAGE + photo_corner_tl: T.IMAGE + page_caption: T.EDIT_BOX + page_photo: T.PANEL + "page_photo/screenshot": T.IMAGE + "page_photo/screenshot_frame": T.IMAGE + "page_photo/photo_corner_bl": T.IMAGE + "page_photo/photo_corner_br": T.IMAGE + "page_photo/photo_corner_tl": T.IMAGE + "page_photo/photo_corner_tr": T.IMAGE + pick_item: T.PANEL + "pick_item/photo": T.PANEL + "pick_item/button": T.BUTTON + pick_item_inventory: T.PANEL + "pick_item_inventory/photo": T.PANEL + "pick_item_inventory/button": T.BUTTON + header: T.LABEL + text_centering_panel_inventory: T.PANEL + "text_centering_panel_inventory/inventory_header": T.LABEL + text_centering_panel_portfolio: T.PANEL + "text_centering_panel_portfolio/portfolio_header": T.LABEL + pick_scrolling_content: T.STACK_PANEL + "pick_scrolling_content/inventory_header": T.PANEL + "pick_scrolling_content/inventory_grid": T.STACK_PANEL + "pick_scrolling_content/portfolio_header": T.PANEL + "pick_scrolling_content/portfolio_grid": T.STACK_PANEL + pick_panel: T.IMAGE + "pick_panel/scroll": T.PANEL + "pick_panel/close_button": T.BUTTON + blank: T.IMAGE + book_background: T.IMAGE + book_spine_image: T.IMAGE + page_crease_left_image: T.IMAGE + page_crease_right_image: T.IMAGE + page_edge_left_image: T.IMAGE + page_edge_right_image: T.IMAGE + text_edit_hover_image: T.IMAGE + base_button: T.BUTTON + "base_button/default": T.IMAGE + "base_button/hover": T.IMAGE + "base_button/pressed": T.IMAGE + book_buttons_panel: T.PANEL + "book_buttons_panel/sign_export_buttons": T.STACK_PANEL + "book_buttons_panel/sign_export_buttons/left_spacer": T.PANEL + "book_buttons_panel/sign_export_buttons/sign_button": T.BUTTON + "book_buttons_panel/sign_export_buttons/export_button": T.BUTTON + "book_buttons_panel/sign_export_buttons/right_spacer": T.PANEL + "book_buttons_panel/im_content_button": T.BUTTON + cover_buttons_stack_panel_holder: T.PANEL + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": T.STACK_PANEL + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": T.BUTTON + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": T.PANEL + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": T.BUTTON + close_button_default: T.IMAGE + close_button_hover: T.IMAGE + close_button_pressed: T.IMAGE + close_button: T.BUTTON + "close_button/default": T.IMAGE + "close_button/hover": T.IMAGE + "close_button/pressed": T.IMAGE + page_text_edit: T.EDIT_BOX + page_text: T.EDIT_BOX + page_number_label: T.LABEL + padded_button: T.PANEL + "padded_button/button": T.BUTTON + page_buttons_panel: T.STACK_PANEL + "page_buttons_panel/swap_page_left": T.PANEL + "page_buttons_panel/insert_text_page": T.PANEL + "page_buttons_panel/insert_photo_page": T.PANEL + "page_buttons_panel/delete_page": T.PANEL + "page_buttons_panel/swap_page_right": T.PANEL + page_content_panel: T.PANEL + "page_content_panel/page_text": T.EDIT_BOX + "page_content_panel/page_photo": T.PANEL + "page_content_panel/page_number_label": T.LABEL + "page_content_panel/page_buttons_panel": T.STACK_PANEL + "page_content_panel/edit_page": T.BUTTON + title_label: T.LABEL + title_text_box: T.EDIT_BOX + author_label: T.LABEL + author_text_box: T.EDIT_BOX + author_stack_panel: T.STACK_PANEL + "author_stack_panel/author_label_panel": T.PANEL + "author_stack_panel/author_label_panel/author_label": T.LABEL + "author_stack_panel/author_text_panel": T.PANEL + "author_stack_panel/author_text_panel/author_text_box": T.EDIT_BOX + warning_label: T.LABEL + cover_content_panel: T.PANEL + "cover_content_panel/title_label": T.LABEL + "cover_content_panel/title_text_box": T.EDIT_BOX + "cover_content_panel/author_stack_panel": T.STACK_PANEL + "cover_content_panel/warning_label": T.LABEL + cover_and_buttons_panel: T.PANEL + "cover_and_buttons_panel/cover_panel": T.PANEL + "cover_and_buttons_panel/cover_panel/cover_content_panel": T.PANEL + "cover_and_buttons_panel/cover_panel/book_background": T.IMAGE + "cover_and_buttons_panel/cover_panel/close_button": T.BUTTON + "cover_and_buttons_panel/cover_buttons_stack_panel_holder": T.PANEL + page_panel: T.PANEL + "page_panel/page_content_panel": T.PANEL + book_grid: T.GRID + "book_grid/page_panel_left": T.PANEL + "book_grid/page_panel_right": T.PANEL + book_and_buttons_panel: T.PANEL + "book_and_buttons_panel/book_panel": T.PANEL + "book_and_buttons_panel/book_panel/book_grid": T.GRID + "book_and_buttons_panel/book_panel/book_background": T.IMAGE + "book_and_buttons_panel/book_panel/book_spine_image": T.IMAGE + "book_and_buttons_panel/book_panel/close_button": T.BUTTON + "book_and_buttons_panel/book_panel/prev_button": T.BUTTON + "book_and_buttons_panel/book_panel/next_button": T.BUTTON + "book_and_buttons_panel/book_buttons_panel": T.PANEL + root_panel: T.PANEL + book_screen: T.SCREEN + book_screen_content: T.PANEL + "book_screen_content/root_panel": T.PANEL + "book_screen_content/root_panel/book_and_buttons_panel": T.PANEL + "book_screen_content/root_panel/cover_and_buttons_panel": T.PANEL + "book_screen_content/root_panel/pick_panel": T.IMAGE + "book_screen_content/root_panel/export_progress": T.PANEL + "book_screen_content/root_panel/gamepad_helper_a": T.STACK_PANEL + "book_screen_content/root_panel/gamepad_helper_b": T.STACK_PANEL +} + +export type BrewingStandType = { + brewing_pipes: T.IMAGE + brewing_fuel_pipes: T.IMAGE + bottle_empty_image: T.IMAGE + fuel_empty_image: T.IMAGE + bubbles_empty_image: T.IMAGE + bubbles_full_image: T.IMAGE + brewing_arrow_empty_image: T.IMAGE + brewing_arrow_full_image: T.IMAGE + brewing_fuel_bar_empty_image: T.IMAGE + brewing_fuel_bar_full_image: T.IMAGE + brewing_label: T.LABEL + brewingstand_output_item: T.INPUT_PANEL + brewing_output_slots: T.GRID + "brewing_output_slots/left_offset": T.PANEL + "brewing_output_slots/left_offset/output_grid_item1": T.INPUT_PANEL + "brewing_output_slots/output_grid_item2": T.INPUT_PANEL + "brewing_output_slots/right_offset": T.PANEL + "brewing_output_slots/right_offset/output_grid_item3": T.INPUT_PANEL + brewing_input_slot: T.PANEL + "brewing_input_slot/input_grid_item": T.INPUT_PANEL + brewing_fuel_slot: T.PANEL + "brewing_fuel_slot/fuel_grid_item": T.INPUT_PANEL + brewing_panel_top_half: T.PANEL + "brewing_panel_top_half/brewing_label": T.LABEL + "brewing_panel_top_half/brewing_stand_pictogram": T.PANEL + brewing_stand_pictogram: T.PANEL + "brewing_stand_pictogram/brewing_input_slot": T.PANEL + "brewing_stand_pictogram/brewing_output_slots": T.GRID + "brewing_stand_pictogram/brewing_fuel_slot": T.PANEL + "brewing_stand_pictogram/brewing_arrow_empty_image": T.IMAGE + "brewing_stand_pictogram/brewing_arrow_full_image": T.IMAGE + "brewing_stand_pictogram/brewing_fuel_bar_empty_image": T.IMAGE + "brewing_stand_pictogram/brewing_fuel_bar_full_image": T.IMAGE + "brewing_stand_pictogram/bubbles_empty_image": T.IMAGE + "brewing_stand_pictogram/bubbles_full_image": T.IMAGE + "brewing_stand_pictogram/brewing_fuel_pipes": T.IMAGE + "brewing_stand_pictogram/brewing_pipes": T.IMAGE + brewing_stand_panel: T.PANEL + "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL + "brewing_stand_panel/selected_item_details_factory": T.FACTORY + "brewing_stand_panel/item_lock_notification_factory": T.FACTORY + "brewing_stand_panel/root_panel": T.INPUT_PANEL + "brewing_stand_panel/root_panel/common_panel": T.PANEL + "brewing_stand_panel/root_panel/furnace_screen_inventory": T.PANEL + "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": T.PANEL + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON + "brewing_stand_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "brewing_stand_panel/root_panel/gamepad_cursor": T.BUTTON + "brewing_stand_panel/flying_item_renderer": T.CUSTOM + brewing_stand_screen: T.SCREEN +} + +export type BrewingStandPocketType = { + generic_label: T.LABEL + brewing_fuel_pipes: T.IMAGE + bubbles_empty_image: T.IMAGE + bubbles_full_image: T.IMAGE + bottle_empty_image: T.IMAGE + background_image: T.IMAGE + output_slot: T.INPUT_PANEL + brewing_input_slot: T.PANEL + "brewing_input_slot/input_slot": T.INPUT_PANEL + brewing_fuel_slot: T.PANEL + "brewing_fuel_slot/fuel_slot": T.INPUT_PANEL + brewing_out_slots: T.GRID + "brewing_out_slots/left_offset": T.PANEL + "brewing_out_slots/left_offset/output_slot1": T.INPUT_PANEL + "brewing_out_slots/middle": T.PANEL + "brewing_out_slots/middle/output_slot2": T.INPUT_PANEL + "brewing_out_slots/right_offset": T.PANEL + "brewing_out_slots/right_offset/output_slot3": T.INPUT_PANEL + slots_panel: T.PANEL + "slots_panel/brewing_input_slot": T.PANEL + "slots_panel/brewing_fuel_slot": T.PANEL + "slots_panel/brewing_out_slots": T.GRID + "slots_panel/brewing_arrow_panel": T.PANEL + "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": T.IMAGE + "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": T.IMAGE + "slots_panel/brewing_bubbles_panel": T.PANEL + "slots_panel/brewing_bubbles_panel/bubbles_empty_image": T.IMAGE + "slots_panel/brewing_bubbles_panel/bubbles_full_image": T.IMAGE + "slots_panel/brewing_fuel_bar_panel": T.PANEL + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": T.IMAGE + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": T.IMAGE + "slots_panel/brewing_fuel_pipes": T.IMAGE + "slots_panel/brewing_pipes": T.IMAGE + inventory_grid: T.GRID + inventory_content: T.PANEL + "inventory_content/scrolling_panel": T.PANEL + brewing_stand_contents_panel: T.PANEL + "brewing_stand_contents_panel/slots_panel": T.PANEL + header: T.PANEL + "header/header_background": T.IMAGE + "header/legacy_pocket_close_button": T.BUTTON + "header/panel": T.PANEL + "header/panel/title_label": T.LABEL + inventory_and_brewing_panel: T.PANEL + "inventory_and_brewing_panel/inventory_half_screen": T.PANEL + "inventory_and_brewing_panel/inventory_half_screen/inventory_content": T.PANEL + "inventory_and_brewing_panel/brewing_half_screen": T.PANEL + "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": T.PANEL + header_and_content_stack_panel: T.STACK_PANEL + "header_and_content_stack_panel/header": T.PANEL + "header_and_content_stack_panel/inventory_and_brewing_panel": T.PANEL + brewing_stand_panel: T.PANEL + "brewing_stand_panel/bg": T.IMAGE + "brewing_stand_panel/root_panel": T.INPUT_PANEL + "brewing_stand_panel/header_and_content_stack_panel": T.STACK_PANEL + "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL + "brewing_stand_panel/inventory_selected_icon_button": T.BUTTON + "brewing_stand_panel/hold_icon": T.BUTTON + "brewing_stand_panel/selected_item_details_factory": T.FACTORY + "brewing_stand_panel/item_lock_notification_factory": T.FACTORY + "brewing_stand_panel/flying_item_renderer": T.CUSTOM +} + +export type BundlePurchaseWarningType = { + x_padding: T.PANEL + y_padding: T.PANEL + bundle_grid_item: T.PANEL + "bundle_grid_item/banner_image": T.IMAGE + "bundle_grid_item/content": T.STACK_PANEL + "bundle_grid_item/game_pad_focus_border": T.BUTTON + is_focused: T.PANEL + "is_focused/image_border": T.IMAGE + "is_focused/banner_border": T.IMAGE + focus_border: T.IMAGE + focus_border_button: T.BUTTON + "focus_border_button/default": T.PANEL + "focus_border_button/hover": T.PANEL + "focus_border_button/pressed": T.PANEL + grid_item_content: T.STACK_PANEL + "grid_item_content/image_border": T.IMAGE + "grid_item_content/image_border/bundle_thumbnail": T.IMAGE + "grid_item_content/padding_0": T.PANEL + "grid_item_content/bundle_title_panel": T.PANEL + "grid_item_content/bundle_title_panel/bundle_title": T.LABEL + bundle_grid: T.GRID + side_contents: T.STACK_PANEL + "side_contents/title_alignment_hack": T.PANEL + "side_contents/title_alignment_hack/side_section_title": T.LABEL + "side_contents/padding_y_0": T.PANEL + "side_contents/grid_input_panel": T.INPUT_PANEL + "side_contents/grid_input_panel/grid_scroll": T.PANEL + dialog_content: T.STACK_PANEL + "dialog_content/grid_stack": T.STACK_PANEL + "dialog_content/grid_stack/left_grid_scroll": T.STACK_PANEL + "dialog_content/grid_stack/padding_x_divider": T.PANEL + "dialog_content/grid_stack/right_grid_scroll": T.STACK_PANEL + purchase_button_panel: T.BUTTON + screen_dialog: T.PANEL + bundle_purchase_warning_screen_content: T.PANEL + "bundle_purchase_warning_screen_content/dialog": T.PANEL + background: T.IMAGE + bundle_purchase_warning_screen: T.SCREEN +} + +export type CartographyType = { + title_label: T.LABEL + arrow_icon: T.IMAGE + plus_sign_icon: T.IMAGE + text_edit_control: T.EDIT_BOX + cartography_output_slot_button: T.BUTTON + cartography_item_slot: T.PANEL + "cartography_item_slot/container_item": T.INPUT_PANEL + map_image: T.IMAGE + map_image_panel: T.PANEL + "map_image_panel/none_map": T.IMAGE + "map_image_panel/copy_map": T.IMAGE + "map_image_panel/rename_map": T.IMAGE + "map_image_panel/map": T.IMAGE + "map_image_panel/locator_map": T.IMAGE + "map_image_panel/zoom_map": T.IMAGE + "map_image_panel/lock_map": T.IMAGE + text_box_panel: T.STACK_PANEL + "text_box_panel/map_name_label": T.LABEL + "text_box_panel/text_edit_control": T.EDIT_BOX + input_slots: T.STACK_PANEL + "input_slots/input_item_slot": T.PANEL + "input_slots/plus_centerer": T.PANEL + "input_slots/plus_centerer/plus_sign_icon": T.IMAGE + "input_slots/additional_item_slot": T.PANEL + output_description_label: T.LABEL + main_panel: T.PANEL + "main_panel/input_slots": T.STACK_PANEL + "main_panel/arrow_icon": T.IMAGE + "main_panel/map_image_panel": T.PANEL + "main_panel/arrow_icon2": T.IMAGE + "main_panel/result_item_slot": T.PANEL + top_half_panel: T.STACK_PANEL + "top_half_panel/padding1": T.PANEL + "top_half_panel/title_panel": T.PANEL + "top_half_panel/title_panel/title_label": T.LABEL + "top_half_panel/padding2": T.PANEL + "top_half_panel/text_box_panel": T.STACK_PANEL + "top_half_panel/padding3": T.PANEL + "top_half_panel/padding4": T.PANEL + "top_half_panel/main_panel_wrap": T.PANEL + "top_half_panel/main_panel_wrap/main_panel": T.PANEL + "top_half_panel/output_description_label": T.LABEL + "top_half_panel/padding5": T.PANEL + cartography_panel: T.PANEL + "cartography_panel/container_gamepad_helpers": T.STACK_PANEL + "cartography_panel/selected_item_details_factory": T.FACTORY + "cartography_panel/item_lock_notification_factory": T.FACTORY + "cartography_panel/root_panel": T.INPUT_PANEL + "cartography_panel/root_panel/common_panel": T.PANEL + "cartography_panel/root_panel/cartography_screen_inventory": T.PANEL + "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": T.STACK_PANEL + "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": T.GRID + "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": T.BUTTON + "cartography_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "cartography_panel/root_panel/gamepad_cursor": T.BUTTON + "cartography_panel/root_panel/tab_close_and_help_button": T.IMAGE + "cartography_panel/flying_item_renderer": T.CUSTOM + cartography_screen: T.SCREEN +} + +export type CartographyPocketType = { + vertical_arrow_icon: T.IMAGE + chest_item_renderer: T.CUSTOM + cartography_item_renderer: T.CUSTOM + input_item_slot: T.INPUT_PANEL + additional_item_slot: T.INPUT_PANEL + result_item_slot: T.INPUT_PANEL + right_panel: T.STACK_PANEL + "right_panel/content": T.INPUT_PANEL + "right_panel/content/bg": T.PANEL + "right_panel/content/cartography_content_stack_panel": T.STACK_PANEL + "right_panel/navigation_tabs_holder": T.PANEL + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL + right_tab_cartography: T.PANEL + right_navigation_tabs: T.STACK_PANEL + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE + "right_navigation_tabs/fill": T.PANEL + "right_navigation_tabs/right_tab_cartography": T.PANEL + input_slots_stack_panel: T.STACK_PANEL + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL + input_slots: T.STACK_PANEL + "input_slots/input_item_slot": T.INPUT_PANEL + "input_slots/plus_centerer": T.PANEL + "input_slots/plus_centerer/plus_sign_icon": T.IMAGE + "input_slots/additional_item_slot": T.INPUT_PANEL + cartography_content_stack_panel: T.STACK_PANEL + "cartography_content_stack_panel/label_holder": T.PANEL + "cartography_content_stack_panel/label_holder/cartography_label": T.LABEL + "cartography_content_stack_panel/padding_1": T.PANEL + "cartography_content_stack_panel/panel": T.PANEL + "cartography_content_stack_panel/panel/input_slots": T.STACK_PANEL + "cartography_content_stack_panel/padding_2": T.PANEL + "cartography_content_stack_panel/map_centerer": T.PANEL + "cartography_content_stack_panel/map_centerer/map_image_panel": T.PANEL + "cartography_content_stack_panel/description_centerer": T.PANEL + "cartography_content_stack_panel/description_centerer/output_description_label": T.LABEL + "cartography_content_stack_panel/padding_3": T.PANEL + "cartography_content_stack_panel/arrow_centerer": T.PANEL + "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": T.IMAGE + "cartography_content_stack_panel/padding_4": T.PANEL + "cartography_content_stack_panel/result_centerer": T.PANEL + "cartography_content_stack_panel/result_centerer/result_item_slot": T.INPUT_PANEL + "cartography_content_stack_panel/filling_panel": T.PANEL + "cartography_content_stack_panel/text_box_panel": T.STACK_PANEL + inventory_panel: T.STACK_PANEL + "inventory_panel/inventory_title_label_centerer": T.PANEL + "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL + "inventory_panel/inventory_scroll_panel": T.PANEL + inventory_scroll_panel: T.PANEL + pattern_button: T.UNKNOWN + pattern_scroll_panel: T.UNKNOWN + left_panel: T.STACK_PANEL + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL + "left_panel/content": T.INPUT_PANEL + "left_panel/content/bg": T.PANEL + "left_panel/content/inventory_panel": T.STACK_PANEL + left_tab_inventory: T.PANEL + left_navigation_tabs: T.STACK_PANEL + "left_navigation_tabs/padding": T.PANEL + "left_navigation_tabs/left_tab_inventory": T.PANEL + pocket_hotbar_and_content_panels: T.STACK_PANEL + cartography_panel: T.PANEL + "cartography_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL + "cartography_panel/container_gamepad_helpers": T.STACK_PANEL + "cartography_panel/selected_item_details_factory": T.FACTORY + "cartography_panel/item_lock_notification_factory": T.FACTORY + "cartography_panel/inventory_selected_icon_button": T.BUTTON + "cartography_panel/inventory_take_progress_icon_button": T.BUTTON + "cartography_panel/flying_item_renderer": T.CUSTOM +} + +export type ChalkboardType = { + text_edit_control: T.EDIT_BOX + locked_toggle: T.TOGGLE + locked_label: T.LABEL + lock_control: T.STACK_PANEL + "lock_control/toggle": T.TOGGLE + "lock_control/pad_wrap": T.PANEL + "lock_control/pad_wrap/label": T.LABEL + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + chalkboard_screen: T.SCREEN + chalkboard_root: T.PANEL + chalkboard_content: T.PANEL + "chalkboard_content/gamepad_helpers": T.PANEL + "chalkboard_content/edit_box": T.EDIT_BOX + "chalkboard_content/locked_toggle": T.STACK_PANEL +} + +export type ChatType = { + down_arrow_image: T.IMAGE + keyboard_image: T.IMAGE + copy_image: T.IMAGE + paste_image: T.IMAGE + gear_image: T.IMAGE + send_image: T.IMAGE + send_panel: T.STACK_PANEL + "send_panel/send_image_panel": T.PANEL + "send_panel/send_image_panel/send_image": T.IMAGE + "send_panel/gamepad_x_button": T.STACK_PANEL + "send_panel/gamepad_x_button/side_padding": T.PANEL + "send_panel/gamepad_x_button/gamepad_x_button_image": T.PANEL + "send_panel/gamepad_x_button/gamepad_x_button_image/icon": T.STACK_PANEL + keyboard_image_panel: T.PANEL + "keyboard_image_panel/keyboard_image": T.IMAGE + "keyboard_image_panel/down_arrow_image": T.IMAGE + small_button: T.BUTTON + keyboard_button: T.BUTTON + chat_settings_button: T.BUTTON + send_button: T.BUTTON + messages_text: T.PANEL + "messages_text/text": T.LABEL + message_tts_wrapper: T.PANEL + messages_stack_panel: T.STACK_PANEL + messages_scrolling_panel: T.PANEL + text_edit_box: T.EDIT_BOX + commands_background: T.IMAGE + click_autocomplete_is_focused: T.IMAGE + auto_complete_panel_contents_with_item: T.PANEL + "auto_complete_panel_contents_with_item/auto_complete_item_renderer": T.CUSTOM + "auto_complete_panel_contents_with_item/text": T.LABEL + "auto_complete_panel_contents_with_item/autocomplete_button": T.BUTTON + "auto_complete_panel_contents_with_item/autocomplete_button/default": T.PANEL + "auto_complete_panel_contents_with_item/autocomplete_button/hover": T.IMAGE + "auto_complete_panel_contents_with_item/autocomplete_button/pressed": T.IMAGE + auto_complete_panel: T.PANEL + "auto_complete_panel/panel": T.PANEL + "auto_complete_panel/panel/auto_complete_grid": T.GRID + commands_panel: T.PANEL + "commands_panel/auto_complete_panel": T.PANEL + chat_bottom_panel: T.STACK_PANEL + "chat_bottom_panel/keyboard_button": T.BUTTON + "chat_bottom_panel/host_main_button": T.BUTTON + "chat_bottom_panel/chat_settings": T.BUTTON + "chat_bottom_panel/text_box": T.EDIT_BOX + "chat_bottom_panel/send_button": T.BUTTON + title_text: T.PANEL + "title_text/title_panel": T.LABEL + back_content_panel: T.PANEL + "back_content_panel/back_button": T.BUTTON + "back_content_panel/gamepad_back_helper": T.INPUT_PANEL + "back_content_panel/gamepad_back_helper/gamepad_helper_button": T.STACK_PANEL + coordinate_dropdown_content: T.STACK_PANEL + "coordinate_dropdown_content/top_padding": T.PANEL + "coordinate_dropdown_content/my_position": T.PANEL + "coordinate_dropdown_content/block_position": T.PANEL + "coordinate_dropdown_content/bottom_padding": T.PANEL + coordinate_dropdown: T.PANEL + popup_toast: T.INPUT_PANEL + copy_coordinate_button: T.BUTTON + paste_button: T.BUTTON + chat_header: T.IMAGE + "chat_header/title_panel": T.PANEL + "chat_header/title_panel/back_button_content_panel": T.PANEL + "chat_header/title_panel/title": T.PANEL + "chat_header/title_panel/popup_dialog_factory": T.FACTORY + "chat_header/title_panel/chat_header_content_area": T.STACK_PANEL + "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": T.PANEL + "chat_header/title_panel/chat_header_content_area/coordinates_panel": T.PANEL + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": T.IMAGE + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": T.LABEL + "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": T.BUTTON + "chat_header/title_panel/chat_header_content_area/icon": T.STACK_PANEL + "chat_header/title_panel/chat_header_content_area/paste_button": T.BUTTON + chat_screen: T.SCREEN + chat_screen_content: T.PANEL + "chat_screen_content/messages_panel": T.PANEL + "chat_screen_content/chat_bottom_panel": T.STACK_PANEL + "chat_screen_content/chat_top_panel": T.IMAGE + "chat_screen_content/autocomplete_commands_panel": T.PANEL + "chat_screen_content/host_main_panel": T.PANEL + "chat_screen_content/popup_factory": T.FACTORY + chat_background: T.IMAGE +} + +export type ChatSettingsType = { + mute_all_toggle: T.PANEL + mute_emote_chat_toggle: T.PANEL + chat_tts_toggle: T.PANEL + reset_button: T.BUTTON + typeface_dropdown_content: T.STACK_PANEL + "typeface_dropdown_content/top_padding": T.PANEL + "typeface_dropdown_content/mojangles": T.PANEL + "typeface_dropdown_content/noto_sans": T.PANEL + "typeface_dropdown_content/bottom_padding": T.PANEL + typeface_dropdown: T.PANEL + chat_color_dropdown_content: T.STACK_PANEL + "chat_color_dropdown_content/top_padding": T.PANEL + "chat_color_dropdown_content/0": T.PANEL + "chat_color_dropdown_content/1": T.PANEL + "chat_color_dropdown_content/2": T.PANEL + "chat_color_dropdown_content/3": T.PANEL + "chat_color_dropdown_content/4": T.PANEL + "chat_color_dropdown_content/5": T.PANEL + "chat_color_dropdown_content/6": T.PANEL + "chat_color_dropdown_content/bottom_padding": T.PANEL + colors_dropdown_base: T.PANEL + chat_color_dropdown: T.PANEL + mentions_color_dropdown: T.PANEL + font_size_slider: T.PANEL + line_spacing_slider: T.PANEL + colored_icon_panel: T.PANEL + "colored_icon_panel/icon": T.IMAGE + "colored_icon_panel/icon_overlay": T.IMAGE + paintbrush: T.PANEL + line_break: T.PANEL + "line_break/line_break_image": T.IMAGE + chat_settings_scrolling_content: T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area": T.STACK_PANEL + "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/font_size": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/chat_color": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": T.PANEL + "chat_settings_scrolling_content/chat_settings_content_area/reset_button": T.BUTTON + chat_setting_scrolling_panel: T.PANEL + chat_settings_popup: T.INPUT_PANEL + popup_factory: T.FACTORY +} + +export type ChestType = { + chest_label: T.LABEL + chest_grid_item: T.INPUT_PANEL + small_chest_grid: T.GRID + large_chest_grid: T.GRID + small_chest_panel_top_half: T.PANEL + "small_chest_panel_top_half/chest_label": T.LABEL + "small_chest_panel_top_half/small_chest_grid": T.GRID + large_chest_panel_top_half: T.PANEL + "large_chest_panel_top_half/chest_label": T.LABEL + "large_chest_panel_top_half/large_chest_grid": T.GRID + small_chest_panel: T.PANEL + "small_chest_panel/container_gamepad_helpers": T.STACK_PANEL + "small_chest_panel/selected_item_details_factory": T.FACTORY + "small_chest_panel/item_lock_notification_factory": T.FACTORY + "small_chest_panel/root_panel": T.INPUT_PANEL + "small_chest_panel/root_panel/common_panel": T.PANEL + "small_chest_panel/root_panel/chest_panel": T.PANEL + "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": T.PANEL + "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL + "small_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID + "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON + "small_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM + "small_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "small_chest_panel/root_panel/gamepad_cursor": T.BUTTON + selected_item_details: T.PANEL + large_chest_panel: T.PANEL + "large_chest_panel/container_gamepad_helpers": T.STACK_PANEL + "large_chest_panel/selected_item_details_factory": T.FACTORY + "large_chest_panel/item_lock_notification_factory": T.FACTORY + "large_chest_panel/root_panel": T.INPUT_PANEL + "large_chest_panel/root_panel/common_panel": T.PANEL + "large_chest_panel/root_panel/chest_panel": T.PANEL + "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": T.PANEL + "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL + "large_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID + "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON + "large_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM + "large_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "large_chest_panel/root_panel/gamepad_cursor": T.BUTTON + ender_chest_panel: T.PANEL + shulker_box_panel: T.PANEL + barrel_panel: T.PANEL + small_chest_screen: T.SCREEN + large_chest_screen: T.SCREEN + ender_chest_screen: T.SCREEN + shulker_box_screen: T.SCREEN + barrel_screen: T.SCREEN +} + +export type ChooseRealmType = { + realm_screenshot: T.IMAGE + "realm_screenshot/picture": T.IMAGE + realms_scroll_content: T.INPUT_PANEL + "realms_scroll_content/scrolling_panel": T.PANEL + realms_scroll_panel: T.PANEL + "realms_scroll_panel/realms_stack_panel": T.STACK_PANEL + "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": T.GRID + "realms_scroll_panel/realms_stack_panel/padding_0": T.PANEL + "realms_scroll_panel/realms_stack_panel/add_realm_button": T.BUTTON + "realms_scroll_panel/realms_stack_panel/ten_player_button": T.BUTTON + "realms_scroll_panel/realms_stack_panel/padding_1": T.PANEL + "realms_scroll_panel/realms_stack_panel/two_player_button": T.BUTTON + realms_world_item_grid: T.GRID + realms_world_item: T.STACK_PANEL + "realms_world_item/realms_world_item_button": T.BUTTON + realms_world_item_button: T.BUTTON + add_realm_button: T.BUTTON + ten_player_button: T.BUTTON + two_player_button: T.BUTTON + realms_world_content_panel: T.STACK_PANEL + "realms_world_content_panel/realm_screenshot": T.IMAGE + "realms_world_content_panel/padding": T.PANEL + "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": T.LABEL + "realms_world_content_panel/realms_world_content_status_area_panel": T.STACK_PANEL + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": T.IMAGE + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": T.IMAGE + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": T.IMAGE + main_panel: T.PANEL + "main_panel/progress_loading_bars": T.IMAGE + "main_panel/realms_scroll_content": T.INPUT_PANEL + slots_scroll_panel: T.PANEL + "slots_scroll_panel/slots_stack_panel": T.STACK_PANEL + "slots_scroll_panel/slots_stack_panel/padding_0": T.PANEL + "slots_scroll_panel/slots_stack_panel/choose_slot_text": T.LABEL + "slots_scroll_panel/slots_stack_panel/padding_1": T.PANEL + "slots_scroll_panel/slots_stack_panel/slots_grid": T.STACK_PANEL + slots_grid: T.STACK_PANEL + "slots_grid/slot_1": T.BUTTON + "slots_grid/padding_0": T.PANEL + "slots_grid/slot_2": T.BUTTON + "slots_grid/padding_1": T.PANEL + "slots_grid/slot_3": T.BUTTON + slot_content_panel: T.STACK_PANEL + "slot_content_panel/world_slot_top": T.PANEL + "slot_content_panel/world_slot_top/plus_image": T.IMAGE + "slot_content_panel/world_slot_top/world_thumbnail": T.IMAGE + "slot_content_panel/world_slot_bottom": T.PANEL + "slot_content_panel/world_slot_bottom/white_line_hover": T.IMAGE + "slot_content_panel/world_slot_bottom/world_text_panel": T.PANEL + "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": T.IMAGE + "slot_content_panel/world_slot_bottom/world_text_panel/background_green": T.IMAGE + "slot_content_panel/world_slot_bottom/world_text_panel/world_text": T.LABEL + slot_panel: T.PANEL + "slot_panel/slots_scroll_content": T.INPUT_PANEL + "slot_panel/slots_scroll_content/scrolling_panel": T.PANEL + choose_realm_screen: T.SCREEN + choose_realm_screen_content: T.PANEL + "choose_realm_screen_content/realm_dialog": T.PANEL + "choose_realm_screen_content/slot_dialog": T.PANEL + background: T.IMAGE +} + +export type CoinPurchaseType = { + black_image: T.IMAGE + banner_fill: T.IMAGE + coins_stack_panel: T.STACK_PANEL + "coins_stack_panel/coin": T.IMAGE + "coins_stack_panel/coin_padding": T.PANEL + "coins_stack_panel/text_padding": T.PANEL + "coins_stack_panel/text_padding/coins_without_bonus": T.LABEL + call_out_coins_stack_panel: T.STACK_PANEL + "call_out_coins_stack_panel/coin": T.IMAGE + "call_out_coins_stack_panel/coin_padding": T.PANEL + "call_out_coins_stack_panel/text_padding": T.PANEL + "call_out_coins_stack_panel/text_padding/coins_without_bonus": T.LABEL + button_content: T.PANEL + "button_content/bonus_coins_stack": T.STACK_PANEL + "button_content/call_out_background": T.IMAGE + "button_content/call_out_background/bevel": T.IMAGE + call_out_button_content: T.PANEL + "call_out_button_content/call_out_header": T.PANEL + "call_out_button_content/call_out_bonus_coins_stack": T.STACK_PANEL + "call_out_button_content/call_out_background": T.IMAGE + "call_out_button_content/call_out_background/call_out_border": T.IMAGE + call_out_header: T.PANEL + "call_out_header/call_out_banner": T.IMAGE + "call_out_header/call_out_label": T.LABEL + bonus_coins_stack: T.STACK_PANEL + "bonus_coins_stack/image_padding": T.PANEL + "bonus_coins_stack/image_panel": T.PANEL + "bonus_coins_stack/image_panel/image": T.IMAGE + "bonus_coins_stack/non_bonus_padding_0": T.PANEL + "bonus_coins_stack/price_panel": T.PANEL + "bonus_coins_stack/price_panel/coins_stack_panel": T.STACK_PANEL + "bonus_coins_stack/plus_label": T.PANEL + "bonus_coins_stack/plus_label/plus_label": T.LABEL + "bonus_coins_stack/non_bonus_padding_1": T.PANEL + "bonus_coins_stack/bonus_label_panel": T.PANEL + "bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL + "bonus_coins_stack/padding_0": T.PANEL + "bonus_coins_stack/bonus_price_panel": T.PANEL + "bonus_coins_stack/bonus_price_panel/coins_stack_panel": T.STACK_PANEL + "bonus_coins_stack/padding_1": T.PANEL + "bonus_coins_stack/currency_panel": T.PANEL + "bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE + "bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL + "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL + "bonus_coins_stack/padding_2": T.PANEL + call_out_bonus_coins_stack: T.STACK_PANEL + "call_out_bonus_coins_stack/image_padding": T.PANEL + "call_out_bonus_coins_stack/image_panel": T.PANEL + "call_out_bonus_coins_stack/image_panel/image": T.IMAGE + "call_out_bonus_coins_stack/non_bonus_padding_0": T.PANEL + "call_out_bonus_coins_stack/price_panel": T.PANEL + "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": T.STACK_PANEL + "call_out_bonus_coins_stack/plus_label": T.PANEL + "call_out_bonus_coins_stack/plus_label/plus_label": T.LABEL + "call_out_bonus_coins_stack/non_bonus_padding": T.PANEL + "call_out_bonus_coins_stack/bonus_label_panel": T.PANEL + "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL + "call_out_bonus_coins_stack/padding_0": T.PANEL + "call_out_bonus_coins_stack/bonus_coin_panel": T.STACK_PANEL + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": T.PANEL + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": T.PANEL + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": T.IMAGE + "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": T.PANEL + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": T.PANEL + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": T.LABEL + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": T.PANEL + "call_out_bonus_coins_stack/padding_1": T.PANEL + "call_out_bonus_coins_stack/currency_panel": T.PANEL + "call_out_bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL + "call_out_bonus_coins_stack/padding_2": T.PANEL + price: T.LABEL + offer_panel: T.BUTTON + call_out_offer_panel: T.BUTTON + offer_item: T.PANEL + "offer_item/offer_panel": T.BUTTON + "offer_item/call_out_offer_panel": T.BUTTON + offer_grid_item: T.PANEL + "offer_grid_item/offer_item": T.PANEL + not_enough_coins: T.LABEL + faq_button: T.BUTTON + divider_panel: T.PANEL + "divider_panel/divider": T.IMAGE + coin_purchase_panel: T.STACK_PANEL + "coin_purchase_panel/padding_0": T.PANEL + "coin_purchase_panel/not_enough_coins_panel": T.PANEL + "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": T.LABEL + "coin_purchase_panel/padding_1": T.PANEL + "coin_purchase_panel/coin_purchase_grid": T.GRID + "coin_purchase_panel/divider_panel": T.PANEL + "coin_purchase_panel/faq_button": T.BUTTON + main_panel: T.PANEL + "main_panel/coin_purchase_panel": T.STACK_PANEL + "main_panel/loading_background": T.IMAGE + "main_panel/progress_loading_spinner": T.IMAGE + "main_panel/no_offers_panel": T.LABEL + background: T.IMAGE + bundle_description: T.PANEL + bundle_description_left: T.PANEL + bundle_description_center: T.PANEL + bundle_description_right: T.PANEL + bundle_coins_stack: T.STACK_PANEL + "bundle_coins_stack/content_panel": T.STACK_PANEL + "bundle_coins_stack/content_panel/text_stack": T.STACK_PANEL + "bundle_coins_stack/content_panel/text_stack/title_label": T.LABEL + "bundle_coins_stack/content_panel/text_stack/padding_1": T.PANEL + "bundle_coins_stack/content_panel/text_stack/description_section_factory": T.STACK_PANEL + "bundle_coins_stack/content_panel/thumbnail_panel": T.PANEL + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": T.IMAGE + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": T.IMAGE + "bundle_coins_stack/content_panel/padding_0": T.PANEL + "bundle_coins_stack/padding_0": T.PANEL + "bundle_coins_stack/currency_panel": T.PANEL + "bundle_coins_stack/currency_panel/currency_price_panel": T.IMAGE + "bundle_coins_stack/currency_panel/currency_price_panel/price": T.LABEL + "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL + "bundle_coins_stack/padding_2": T.PANEL + bundle_button_content: T.PANEL + "bundle_button_content/bundle_coins_stack": T.STACK_PANEL + "bundle_button_content/call_out_background": T.IMAGE + "bundle_button_content/call_out_background/bevel": T.IMAGE + bundle_offer_panel: T.BUTTON + bundle_offer_item: T.PANEL + "bundle_offer_item/offer_panel": T.BUTTON + bundle_offer_grid_item: T.PANEL + "bundle_offer_grid_item/offer_item": T.PANEL + bundle_stack_factory: T.STACK_PANEL + bundle_factory_panel: T.PANEL + "bundle_factory_panel/bundle_stack_factory": T.STACK_PANEL + bundle_panel: T.PANEL + "bundle_panel/progress_loading_spinner": T.IMAGE + "bundle_panel/loading_background": T.IMAGE + "bundle_panel/bundle_stack_factory": T.PANEL +} + +export type CommandBlockType = { + plus_icon: T.IMAGE + paste_icon: T.IMAGE + plus_button: T.BUTTON + paste_button: T.BUTTON + icon_dropdown_toggle_button_state_content: T.STACK_PANEL + "icon_dropdown_toggle_button_state_content/icon_panel": T.PANEL + "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": T.IMAGE + "icon_dropdown_toggle_button_state_content/spacer": T.PANEL + "icon_dropdown_toggle_button_state_content/label_panel": T.PANEL + "icon_dropdown_toggle_button_state_content/label_panel/label": T.LABEL + "icon_dropdown_toggle_button_state_content/arrow_panel": T.PANEL + "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": T.IMAGE + command_block_multiline_text_edit_box: T.EDIT_BOX + command_block_text_edit_box: T.EDIT_BOX + command_block_helper_stack: T.STACK_PANEL + "command_block_helper_stack/offset": T.PANEL + "command_block_helper_stack/text_": T.LABEL + previous_command_block_info_stack: T.STACK_PANEL + "previous_command_block_info_stack/offset": T.PANEL + "previous_command_block_info_stack/start_label": T.LABEL + "previous_command_block_info_stack/offset1": T.PANEL + "previous_command_block_info_stack/start_label_dynamic_text": T.LABEL + cancel_button: T.BUTTON + blocktype_dropdown_content: T.PANEL + block_type_panel: T.PANEL + condition_dropdown_content: T.PANEL + condition_mode_panel: T.PANEL + redstone_dropdown_content: T.PANEL + redstone_mode_panel: T.PANEL + left_scrolling_panel: T.PANEL + left_scroll_panel_content: T.PANEL + "left_scroll_panel_content/content_stack_panel": T.STACK_PANEL + "left_scroll_panel_content/content_stack_panel/offset1": T.PANEL + "left_scroll_panel_content/content_stack_panel/offset2": T.PANEL + "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": T.EDIT_BOX + "left_scroll_panel_content/content_stack_panel/offset3": T.PANEL + "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": T.PANEL + "left_scroll_panel_content/content_stack_panel/offset4": T.PANEL + "left_scroll_panel_content/content_stack_panel/condition_mode_panel": T.PANEL + "left_scroll_panel_content/content_stack_panel/offset5": T.PANEL + "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": T.PANEL + "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": T.PANEL + "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": T.LABEL + "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": T.PANEL + "left_scroll_panel_content/content_stack_panel/offset_tick_delay": T.PANEL + "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": T.LABEL + "left_scroll_panel_content/content_stack_panel/tick_delay_text": T.EDIT_BOX + "left_scroll_panel_content/content_stack_panel/offset7": T.PANEL + "left_scroll_panel_content/content_stack_panel/cancel": T.BUTTON + "left_scroll_panel_content/content_stack_panel/offset8": T.PANEL + left_divider_content: T.PANEL + "left_divider_content/left_scrolling_panel": T.PANEL + right_scrolling_panel: T.PANEL + right_scroll_panel_content: T.STACK_PANEL + "right_scroll_panel_content/command_block_commands_panel": T.STACK_PANEL + "right_scroll_panel_content/command_block_commands_panel/spacer1": T.PANEL + "right_scroll_panel_content/command_block_commands_panel/centering_panel": T.PANEL + "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": T.LABEL + "right_scroll_panel_content/command_block_commands_panel/spacer2": T.PANEL + "right_scroll_panel_content/command_block_commands_panel/centering_panel1": T.PANEL + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": T.STACK_PANEL + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": T.PANEL + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": T.EDIT_BOX + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": T.BUTTON + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": T.BUTTON + "right_scroll_panel_content/switch_warning_panel": T.PANEL + "right_scroll_panel_content/switch_warning_panel/switch_warning_label": T.LABEL + "right_scroll_panel_content/self_label": T.STACK_PANEL + "right_scroll_panel_content/self_label_offset": T.PANEL + "right_scroll_panel_content/nearest_player_label": T.STACK_PANEL + "right_scroll_panel_content/nearest_player_label_offset": T.PANEL + "right_scroll_panel_content/random_player_label": T.STACK_PANEL + "right_scroll_panel_content/random_player_label_offset": T.PANEL + "right_scroll_panel_content/all_players_label": T.STACK_PANEL + "right_scroll_panel_content/all_players_label_offset": T.PANEL + "right_scroll_panel_content/all_entities_label": T.STACK_PANEL + "right_scroll_panel_content/all_entities_label_offset": T.PANEL + "right_scroll_panel_content/nearest_label": T.STACK_PANEL + "right_scroll_panel_content/nearest_label_offset": T.PANEL + "right_scroll_panel_content/command_block_previous_output_panel": T.STACK_PANEL + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": T.PANEL + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": T.STACK_PANEL + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": T.PANEL + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": T.LABEL + "right_scroll_panel_content/command_block_previous_output_panel/spacer": T.PANEL + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": T.PANEL + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": T.EDIT_BOX + "right_scroll_panel_content/previous_block_type_text": T.STACK_PANEL + "right_scroll_panel_content/offset4": T.PANEL + "right_scroll_panel_content/previous_conditional_mode_text": T.STACK_PANEL + "right_scroll_panel_content/offset5": T.PANEL + "right_scroll_panel_content/previous_redstone_mode_text": T.STACK_PANEL + divider_content: T.PANEL + "divider_content/left_side": T.PANEL + "divider_content/right_side": T.PANEL + command_block_screen_content: T.PANEL + "command_block_screen_content/background_divider": T.PANEL + "command_block_screen_content/background_divider/bg_image": T.UNKNOWN + "command_block_screen_content/background_divider/dialog_divider": T.IMAGE + "command_block_screen_content/background_divider/header_buttons_stack_panel": T.STACK_PANEL + "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": T.BUTTON + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": T.PANEL + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": T.BUTTON + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": T.BUTTON + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": T.UNKNOWN + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": T.UNKNOWN + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": T.UNKNOWN + "command_block_screen_content/title": T.LABEL + "command_block_screen_content/content": T.PANEL + "command_block_screen_content/maximized_command_block_text": T.EDIT_BOX + right_divider_content: T.PANEL + "right_divider_content/right_scrolling_panel": T.PANEL + command_block_screen: T.SCREEN +} + +export type ConfirmDeleteAccountType = { + horizontal_divider: T.STACK_PANEL + image_panel: T.PANEL + "image_panel/image": T.IMAGE + header_panel: T.STACK_PANEL + "header_panel/image_panel": T.PANEL + "header_panel/padding": T.PANEL + "header_panel/text_panel": T.STACK_PANEL + "header_panel/text_panel/header_text": T.LABEL + "header_panel/text_panel/padding_2": T.PANEL + "header_panel/text_panel/header_text_2": T.LABEL + dialog_content: T.STACK_PANEL + "dialog_content/body_content": T.PANEL + "dialog_content/padding": T.PANEL + "dialog_content/button_panel": T.STACK_PANEL + "dialog_content/button_panel/confirm_delete_account_button": T.BUTTON + "dialog_content/button_panel/padding": T.PANEL + "dialog_content/button_panel/cancel_delete_account_button": T.BUTTON + confirm_checkbox: T.STACK_PANEL + "confirm_checkbox/check_box_wrapper": T.PANEL + "confirm_checkbox/check_box_wrapper/check_box": T.TOGGLE + "confirm_checkbox/padding": T.PANEL + "confirm_checkbox/label_wrapper": T.PANEL + "confirm_checkbox/label_wrapper/label": T.LABEL + scrolling_panel: T.PANEL + description_label_panel: T.STACK_PANEL + "description_label_panel/header_label_wrapper": T.PANEL + "description_label_panel/padding": T.PANEL + "description_label_panel/divider_0": T.STACK_PANEL + "description_label_panel/confirm_0": T.STACK_PANEL + "description_label_panel/divider_1": T.STACK_PANEL + "description_label_panel/confirm_1": T.STACK_PANEL + "description_label_panel/divider_2": T.STACK_PANEL + "description_label_panel/confirm_2": T.STACK_PANEL + "description_label_panel/divider_3": T.STACK_PANEL + "description_label_panel/confirm_3": T.STACK_PANEL + confirm_delete_account_screen: T.SCREEN + confirm_delete_account_screen_content: T.PANEL + "confirm_delete_account_screen_content/root_panel": T.PANEL + "confirm_delete_account_screen_content/root_panel/dialog": T.PANEL + screen_dialog: T.PANEL + background: T.IMAGE +} + +export type ContentLogType = { + content_log_label: T.LABEL + content_log_grid_item: T.PANEL + "content_log_grid_item/content_log_background": T.IMAGE + "content_log_grid_item/content_log_background/content_log_text": T.LABEL + content_log_panel: T.PANEL + "content_log_panel/stack_panel": T.STACK_PANEL +} + +export type ContentLogHistoryType = { + clipboard_icon: T.IMAGE + clipboard_icon_wrapper: T.PANEL + "clipboard_icon_wrapper/stack_panel": T.STACK_PANEL + "clipboard_icon_wrapper/stack_panel/icon_panel": T.PANEL + "clipboard_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE + "clipboard_icon_wrapper/stack_panel/offset": T.PANEL + "clipboard_icon_wrapper/stack_panel/label_panel": T.PANEL + "clipboard_icon_wrapper/stack_panel/label_panel/label": T.LABEL + clipboard_button: T.BUTTON + clear_icon: T.IMAGE + clear_icon_wrapper: T.PANEL + "clear_icon_wrapper/stack_panel": T.STACK_PANEL + "clear_icon_wrapper/stack_panel/icon_panel": T.PANEL + "clear_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE + "clear_icon_wrapper/stack_panel/offset": T.PANEL + "clear_icon_wrapper/stack_panel/label_panel": T.PANEL + "clear_icon_wrapper/stack_panel/label_panel/label": T.LABEL + clear_button: T.BUTTON + horizontal_button_stack_panel: T.STACK_PANEL + "horizontal_button_stack_panel/clipboard_button": T.BUTTON + "horizontal_button_stack_panel/clear_button": T.BUTTON + content_log_message: T.LABEL + content_log_message_panel: T.PANEL + "content_log_message_panel/content_log_message": T.LABEL + content_log_message_panel_panel: T.PANEL + "content_log_message_panel_panel/content_log_message_panel": T.PANEL + messages_stack_panel: T.STACK_PANEL + messages_scrolling_panel: T.PANEL + main_stack_panel: T.STACK_PANEL + "main_stack_panel/messages_scrolling_panel": T.PANEL + content_log_history_panel: T.PANEL + "content_log_history_panel/content_log_history_dialog": T.UNKNOWN + content_log_history_screen: T.SCREEN +} + +export type CrafterPocketType = { + generic_label: T.LABEL + header_panel: T.PANEL + "header_panel/header_background": T.IMAGE + "header_panel/title_label": T.LABEL + header_area: T.PANEL + "header_area/x": T.BUTTON + "header_area/inventory_header": T.PANEL + "header_area/container_header": T.PANEL + dark_bg: T.IMAGE + panel_outline: T.IMAGE + background_panel: T.IMAGE + inventory_panel: T.PANEL + "inventory_panel/scrolling_panel": T.PANEL + left_screen: T.PANEL + "left_screen/inventory_panel": T.PANEL + crafter_input_grid: T.GRID + crafter_disabled_slot: T.BUTTON + "crafter_disabled_slot/default": T.IMAGE + "crafter_disabled_slot/hover": T.IMAGE + "crafter_disabled_slot/pressed": T.IMAGE + cell_image: T.IMAGE + crafter_highlight_slot: T.IMAGE + crafter_container_slot_button_prototype: T.BUTTON + crafter_highlight_slot_panel: T.PANEL + "crafter_highlight_slot_panel/highlight": T.IMAGE + "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM + "crafter_highlight_slot_panel/white_border": T.IMAGE + crafter_enabled_slot_template: T.INPUT_PANEL + output_slot_hover_info: T.BUTTON + "output_slot_hover_info/hover": T.CUSTOM + "output_slot_hover_info/output_slot": T.CUSTOM + "output_slot_hover_info/output_slot_border": T.IMAGE + "output_slot_hover_info/output_count": T.LABEL + panel_crafter: T.PANEL + "panel_crafter/item_lock_notification_factory": T.FACTORY + "panel_crafter/root_panel": T.INPUT_PANEL + "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON + "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON + "panel_crafter/root_panel/red_icon": T.BUTTON + right_screen_background: T.IMAGE + right_screen: T.PANEL + "right_screen/right_screen_bg": T.IMAGE + "right_screen/right_screen_bg/inventory_panel": T.PANEL + panel: T.PANEL + "panel/container_gamepad_helpers": T.STACK_PANEL + "panel/header": T.PANEL + "panel/bg": T.IMAGE + "panel/inventory": T.PANEL + "panel/container": T.PANEL + "panel/selected_item_details_factory": T.FACTORY + "panel/item_lock_notification_factory": T.FACTORY + "panel/gamepad_cursor": T.BUTTON + "panel/flying_item_renderer": T.CUSTOM + crafter: T.PANEL +} + +export type CreateWorldUpsellType = { + world_icon: T.IMAGE + realms_icon: T.IMAGE + dark_banner: T.IMAGE + grey_banner: T.IMAGE + checkmark: T.IMAGE + largex: T.IMAGE + realms_art_icon: T.IMAGE + new_world_button: T.BUTTON + new_realm_button: T.BUTTON + remove_trial_button: T.BUTTON + button_content: T.STACK_PANEL + "button_content/padding_0": T.PANEL + "button_content/icon_panel": T.PANEL + "button_content/padding_1": T.PANEL + "button_content/label_panel": T.PANEL + realm_button_content: T.STACK_PANEL + world_button_content: T.STACK_PANEL + realms_button_text_panel: T.STACK_PANEL + "realms_button_text_panel/new_realm_label": T.LABEL + "realms_button_text_panel/new_realm_trial_label": T.LABEL + price_label: T.LABEL + new_realm_label: T.LABEL + new_realm_trial_label: T.LABEL + new_world_label: T.LABEL + button_and_price_panel: T.STACK_PANEL + "button_and_price_panel/padding": T.PANEL + "button_and_price_panel/price_label_panel": T.PANEL + "button_and_price_panel/price_label_panel/price": T.LABEL + border_shell: T.IMAGE + head_banner_panel: T.IMAGE + create_new_realm_content: T.STACK_PANEL + "create_new_realm_content/head_banner_panel": T.IMAGE + "create_new_realm_content/head_banner_panel/realm_button_price": T.STACK_PANEL + "create_new_realm_content/realm_grid": T.GRID + create_world_upsell_grid_item: T.PANEL + "create_world_upsell_grid_item/db": T.IMAGE + "create_world_upsell_grid_item/gb": T.IMAGE + "create_world_upsell_grid_item/gp": T.STACK_PANEL + grid_panel: T.STACK_PANEL + "grid_panel/padding": T.PANEL + "grid_panel/upsell_text_panel": T.PANEL + "grid_panel/upsell_text_panel/upsell_label": T.LABEL + create_new_world_content: T.STACK_PANEL + "create_new_world_content/head_banner_panel": T.IMAGE + "create_new_world_content/head_banner_panel/world_button_price": T.STACK_PANEL + "create_new_world_content/world_grid": T.GRID + new_world_or_realm_scroll: T.PANEL + create_new_world_or_realm_content: T.STACK_PANEL + "create_new_world_or_realm_content/world": T.IMAGE + "create_new_world_or_realm_content/padding": T.PANEL + "create_new_world_or_realm_content/realm_content": T.IMAGE + new_realm_scroll: T.PANEL + new_realm_content_panel: T.STACK_PANEL + "new_realm_content_panel/key_art_panel": T.PANEL + "new_realm_content_panel/key_art_panel/realms_art_icon": T.IMAGE + "new_realm_content_panel/padding_hack": T.PANEL + "new_realm_content_panel/padding_0": T.PANEL + "new_realm_content_panel/new_realm_scroll": T.PANEL + "new_realm_content_panel/padding_1": T.PANEL + create_realm_upsell_content: T.STACK_PANEL + "create_realm_upsell_content/realm_content": T.IMAGE + "create_realm_upsell_content/padding_0": T.PANEL + "create_realm_upsell_content/remove_trial_button": T.BUTTON + "create_realm_upsell_content/padding_1": T.PANEL + realm_content: T.IMAGE + create_world_upsell: T.SCREEN + create_world_upsell_realms: T.SCREEN + main_panel: T.PANEL + variable_screen_size_panel: T.PANEL + "variable_screen_size_panel/dialog_0": T.PANEL + "variable_screen_size_panel/dialog_1": T.PANEL + main_panel_realms_only: T.PANEL +} + +export type CreditsType = { + fade_in_image: T.IMAGE + fade_out_image: T.IMAGE + skip_panel: T.PANEL + "skip_panel/skip_button": T.BUTTON + "skip_panel/exit_credits_input_panel": T.INPUT_PANEL + credits_renderer: T.CUSTOM + credits_screen_content: T.PANEL + "credits_screen_content/credits_renderer": T.CUSTOM + "credits_screen_content/vignette_renderer": T.CUSTOM + "credits_screen_content/fade_in_image": T.IMAGE + "credits_screen_content/credits_factory": T.FACTORY + "credits_screen_content/whole_screen_input_panel": T.INPUT_PANEL + background: T.IMAGE + credits_screen: T.SCREEN +} + +export type CsbPurchaseErrorType = { + csb_purchase_error_screen: T.SCREEN + purchase_error_screen_content: T.PANEL + "purchase_error_screen_content/main_panel": T.PANEL + purchase_error_modal_main_panel: T.STACK_PANEL + "purchase_error_modal_main_panel/text_panel": T.PANEL + "purchase_error_modal_main_panel/text_panel/text": T.LABEL + "purchase_error_modal_main_panel/padding_1": T.PANEL + "purchase_error_modal_main_panel/art_panel": T.PANEL + "purchase_error_modal_main_panel/art_panel/art": T.IMAGE + "purchase_error_modal_main_panel/padding_2": T.PANEL + "purchase_error_modal_main_panel/error_panel": T.STACK_PANEL + "purchase_error_modal_main_panel/error_panel/error_code": T.LABEL + "purchase_error_modal_main_panel/error_panel/correlation_id": T.LABEL + purchase_error_modal_back_button: T.BUTTON +} + +export type CsbType = { + csb_pdp_screen: T.SCREEN + csb_upgrade_notice_screen: T.SCREEN + csb_background: T.IMAGE + gradient_image_stack: T.STACK_PANEL + "gradient_image_stack/gradient": T.IMAGE + gradient_content_panel: T.PANEL + "gradient_content_panel/gradient": T.STACK_PANEL + "gradient_content_panel/particles": T.IMAGE + "gradient_content_panel/content_panel": T.UNKNOWN + csb_screen_main_panel: T.INPUT_PANEL + csb_main_panel: T.PANEL + "csb_main_panel/root_panel": T.PANEL + "csb_main_panel/root_panel/main_panel": T.STACK_PANEL + dialog_content: T.STACK_PANEL + "dialog_content/selector_area": T.PANEL + "dialog_content/padding_1": T.PANEL + "dialog_content/allow_divider_offset_panel": T.PANEL + "dialog_content/allow_divider_offset_panel/left_right_pane_divider": T.IMAGE + "dialog_content/padding_2": T.PANEL + "dialog_content/content_area": T.PANEL + "dialog_content/padding_3": T.PANEL + selector_area: T.PANEL + "selector_area/scrolling_panel": T.PANEL + scrollable_selector_area_content: T.STACK_PANEL + "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL + "scrollable_selector_area_content/csb_toggle": T.STACK_PANEL + "scrollable_selector_area_content/content_toggle": T.STACK_PANEL + "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL + "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL + "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL + "scrollable_selector_area_content/xbl_btn_panel": T.PANEL + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON + section_toggle_base: T.PANEL + tab_button_text: T.LABEL + toggle_base: T.STACK_PANEL + "toggle_base/toggle": T.PANEL + "toggle_base/padding": T.PANEL + csb_toggle: T.STACK_PANEL + content_toggle: T.STACK_PANEL + faq_toggle: T.STACK_PANEL + buy_now_toggle: T.STACK_PANEL + left_right_pane_divider: T.IMAGE + content_area: T.PANEL + "content_area/control": T.STACK_PANEL + "content_area/control/scrolling_panel_csb": T.PANEL + section_content_panels: T.STACK_PANEL + vertical_padding_4px: T.PANEL + section_base: T.STACK_PANEL + buy_now_content_section: T.STACK_PANEL + "buy_now_content_section/vertical_padding": T.PANEL + "buy_now_content_section/content": T.STACK_PANEL + markdown_background_animated: T.PANEL + "markdown_background_animated/csb_chevron": T.IMAGE + markdown_background: T.STACK_PANEL + "markdown_background/banner_panel": T.PANEL + "markdown_background/banner_panel/banner": T.IMAGE + "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL + "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN + "markdown_background/triangle_panel": T.PANEL + "markdown_background/triangle_panel/triangle": T.IMAGE + empty_label: T.PANEL + full_width_section_divider: T.STACK_PANEL +} + +export type CsbContentType = { + csb_content_section: T.STACK_PANEL + "csb_content_section/content_section_vertical_padding_1": T.PANEL + "csb_content_section/popular_packs_label_panel": T.PANEL + "csb_content_section/popular_packs_label_panel/label_with_gradient": T.PANEL + "csb_content_section/popular_packs_label_panel/tts_border": T.BUTTON + "csb_content_section/content_section_vertical_padding_2": T.PANEL + "csb_content_section/content_pack_types": T.STACK_PANEL + "csb_content_section/content_packs_included": T.STACK_PANEL + "csb_content_section/content_section_vertical_padding_3": T.PANEL + content_pack_types_section: T.STACK_PANEL + "content_pack_types_section/pack_types": T.STACK_PANEL + "content_pack_types_section/padding": T.PANEL + content_packs_included_section: T.STACK_PANEL + "content_packs_included_section/popular_packs": T.STACK_PANEL + "content_packs_included_section/section_divider": T.STACK_PANEL + pack_types: T.STACK_PANEL + "pack_types/padding_01": T.PANEL + "pack_types/pack_types_1": T.STACK_PANEL + "pack_types/padding_02": T.PANEL + "pack_types/pack_types_2": T.STACK_PANEL + "pack_types/padding_03": T.PANEL + pack_types_1: T.STACK_PANEL + "pack_types_1/worlds": T.STACK_PANEL + "pack_types_1/padding_01": T.PANEL + "pack_types_1/textures": T.STACK_PANEL + "pack_types_1/padding_02": T.PANEL + "pack_types_1/persona": T.STACK_PANEL + pack_types_2: T.STACK_PANEL + "pack_types_2/padding_1": T.PANEL + "pack_types_2/skins": T.STACK_PANEL + "pack_types_2/padding_2": T.PANEL + "pack_types_2/mashups": T.STACK_PANEL + "pack_types_2/padding_3": T.PANEL + pack_type_description: T.STACK_PANEL + "pack_type_description/image_nesting_panel": T.PANEL + "pack_type_description/image_nesting_panel/texture": T.UNKNOWN + "pack_type_description/padding_0": T.PANEL + "pack_type_description/description_nesting_panel": T.PANEL + "pack_type_description/description_nesting_panel/description_label": T.LABEL + "pack_type_description/description_nesting_panel/tts_border": T.BUTTON + "pack_type_description/padding_1": T.PANEL + popular_packs: T.STACK_PANEL + "popular_packs/padding_0": T.PANEL + "popular_packs/pack_grid": T.STACK_PANEL + "popular_packs/view_all_packs_panel": T.STACK_PANEL + "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON + "popular_packs/view_all_packs_panel/padding": T.PANEL + "popular_packs/view_all_packs_panel/view_character_creator_items": T.BUTTON + "popular_packs/padding_1": T.PANEL + popular_packs_label: T.LABEL + packs_collection: T.STACK_PANEL + "packs_collection/row_1": T.STACK_PANEL + "packs_collection/row_1/pack_image_grid_item_0": T.PANEL + "packs_collection/row_1/padding": T.PANEL + "packs_collection/row_1/pack_image_grid_item_1": T.PANEL + "packs_collection/padding_1": T.PANEL + "packs_collection/row_2": T.STACK_PANEL + "packs_collection/row_2/pack_image_grid_item_0": T.PANEL + "packs_collection/row_2/padding": T.PANEL + "packs_collection/row_2/pack_image_grid_item_1": T.PANEL + "packs_collection/padding_2": T.PANEL + pack_image_grid_item: T.PANEL + "pack_image_grid_item/bg": T.IMAGE + "pack_image_grid_item/bg/featured_key_art": T.IMAGE + "pack_image_grid_item/bg/progress_loading": T.PANEL + "pack_image_grid_item/offer_button": T.BUTTON + "pack_image_grid_item/offer_button/default": T.IMAGE + "pack_image_grid_item/offer_button/hover": T.IMAGE + "pack_image_grid_item/offer_button/pressed": T.IMAGE +} + +export type CsbBannerType = { + csb_banner: T.PANEL + "csb_banner/static_button": T.BUTTON + "csb_banner/animated_button": T.BUTTON + csb_banner_slim: T.PANEL + "csb_banner_slim/banner_button": T.BUTTON + csb_banner_portal: T.PANEL + "csb_banner_portal/banner_button": T.BUTTON + promo_banner_csb_button: T.BUTTON + "promo_banner_csb_button/default": T.UNKNOWN + "promo_banner_csb_button/hover": T.UNKNOWN + csb_banner_slim_content: T.PANEL + "csb_banner_slim_content/banner_content": T.PANEL + csb_banner_portal_content: T.PANEL + "csb_banner_portal_content/banner_content": T.PANEL + slim_logo_panel: T.PANEL + "slim_logo_panel/mpp_logo": T.IMAGE + portal_logo_panel: T.PANEL + "portal_logo_panel/mpp_logo": T.IMAGE + csb_banner_new_content: T.PANEL + "csb_banner_new_content/text": T.STACK_PANEL + "csb_banner_new_content/text/logo_panel": T.UNKNOWN + "csb_banner_new_content/text/offer_panel": T.PANEL + "csb_banner_new_content/text/offer_panel/upsell_text": T.STACK_PANEL + "csb_banner_new_content/text/pixel_art": T.STACK_PANEL + sdl_upsell_text_component_factory: T.STACK_PANEL + csb_banner_content: T.PANEL + "csb_banner_content/banner": T.IMAGE + "csb_banner_content/text": T.STACK_PANEL + "csb_banner_content/text/logo_panel": T.PANEL + "csb_banner_content/text/logo_panel/logo": T.STACK_PANEL + "csb_banner_content/text/offer_panel": T.PANEL + "csb_banner_content/text/offer_panel/offer": T.LABEL + "csb_banner_content/text/learn_more_panel": T.PANEL + "csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL + "csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL + "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL + animated_promo_banner_csb_button: T.BUTTON + "animated_promo_banner_csb_button/default": T.PANEL + "animated_promo_banner_csb_button/hover": T.PANEL + animated_csb_banner_content: T.PANEL + "animated_csb_banner_content/banner": T.IMAGE + "animated_csb_banner_content/text": T.STACK_PANEL + "animated_csb_banner_content/text/logo_panel": T.PANEL + "animated_csb_banner_content/text/logo_panel/logo": T.STACK_PANEL + "animated_csb_banner_content/text/offer_panel": T.PANEL + "animated_csb_banner_content/text/offer_panel/offer": T.LABEL + "animated_csb_banner_content/text/learn_more_panel": T.PANEL + "animated_csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL + "animated_csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL + "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL + still_pixel_art_panel: T.PANEL + "still_pixel_art_panel/banner": T.IMAGE + animated_pixel_art_panel: T.PANEL + "animated_pixel_art_panel/mygif": T.CUSTOM + image_component_factory: T.STACK_PANEL + image_asset_factory: T.STACK_PANEL +} + +export type CsbBuyType = { + buy_now_content: T.STACK_PANEL + "buy_now_content/description_stack": T.STACK_PANEL + "buy_now_content/terms_and_conditions": T.PANEL + "buy_now_content/padding_2": T.PANEL + "buy_now_content/button_panel": T.PANEL + "buy_now_content/button_panel/buy_button": T.PANEL + "buy_now_content/button_panel/icon_panel": T.PANEL + "buy_now_content/padding_3": T.PANEL + "buy_now_content/terms": T.STACK_PANEL + content_text_section: T.STACK_PANEL + "content_text_section/text_description": T.PANEL + "content_text_section/padding": T.PANEL + content_description: T.PANEL + "content_description/content_description_label": T.LABEL + "content_description/tts_hover": T.BUTTON + trial_image_and_description: T.STACK_PANEL + "trial_image_and_description/image_border": T.IMAGE + "trial_image_and_description/padding": T.PANEL + "trial_image_and_description/description_text": T.PANEL + "trial_image_and_description/description_text/descriptions_label": T.LABEL + "trial_image_and_description/description_text/tts_hover": T.BUTTON + title_text: T.PANEL + "title_text/inner_text": T.LABEL + "title_text/tts_hover": T.BUTTON + description_stack: T.STACK_PANEL + "description_stack/title_with_gradient": T.PANEL + "description_stack/padding": T.PANEL + "description_stack/image_and_description": T.STACK_PANEL + terms_and_conditions: T.PANEL + "terms_and_conditions/terms_panel": T.PANEL + terms_and_conditions_panel: T.PANEL + "terms_and_conditions_panel/name_label": T.LABEL + "terms_and_conditions_panel/terms_string_panel": T.PANEL + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON + button_text: T.LABEL + mcten_text_centering_panel: T.PANEL + "mcten_text_centering_panel/button_text": T.LABEL + view_terms_button: T.BUTTON + privacy_policy_button: T.BUTTON + buy_button_panel: T.PANEL + "buy_button_panel/buy_button": T.BUTTON + tool_tip_icon_panel: T.PANEL + "tool_tip_icon_panel/issue_icon": T.BUTTON + "tool_tip_icon_panel/issue_icon/info_icon": T.IMAGE + "tool_tip_icon_panel/issue_icon/default": T.PANEL + "tool_tip_icon_panel/issue_icon/hover": T.IMAGE + "tool_tip_icon_panel/issue_icon/pressed": T.IMAGE + buy_button_content: T.STACK_PANEL + "buy_button_content/button_chevron_panel": T.PANEL + "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL + "buy_button_content/button_text_centering_panel": T.PANEL + info_icon: T.PANEL + "info_icon/panel_icon": T.IMAGE +} + +export type CommonCsbType = { + csb_expiration_banner: T.PANEL + "csb_expiration_banner/background": T.IMAGE + "csb_expiration_banner/icon": T.IMAGE + "csb_expiration_banner/text": T.LABEL + csb_icon_large: T.IMAGE + csb_header: T.STACK_PANEL + "csb_header/label_a_text_csb": T.LABEL + "csb_header/label_space_text_csb": T.LABEL + "csb_header/label_b_text_pass": T.LABEL + csb_header_two_lines: T.STACK_PANEL + "csb_header_two_lines/top_header": T.LABEL + "csb_header_two_lines/panel_centre_second_line": T.PANEL + "csb_header_two_lines/panel_centre_second_line/sub_header": T.LABEL + csb_gold_button: T.BUTTON + csb_gold_text_button: T.BUTTON +} + +export type CsbPurchaseAmazondevicewarningType = { + csb_purchase_amazondevicewarning_screen: T.SCREEN + screen_content: T.PANEL + "screen_content/main_panel": T.PANEL + main_panel: T.STACK_PANEL + "main_panel/text_panel_1": T.PANEL + "main_panel/text_panel_1/text": T.LABEL + "main_panel/art_panel": T.PANEL + "main_panel/art_panel/art": T.IMAGE + "main_panel/padding": T.PANEL + "main_panel/text_panel_2": T.PANEL + "main_panel/text_panel_2/text": T.LABEL + back_button: T.BUTTON +} + +export type CsbPurchaseWarningType = { + csb_purchase_warning_screen: T.SCREEN + purchase_warning_screen_content: T.PANEL + "purchase_warning_screen_content/main_panel": T.PANEL + warning_modal_main_panel: T.STACK_PANEL + "warning_modal_main_panel/text_panel_1": T.PANEL + "warning_modal_main_panel/text_panel_1/text": T.LABEL + "warning_modal_main_panel/padding_1": T.PANEL + "warning_modal_main_panel/art_panel": T.PANEL + "warning_modal_main_panel/art_panel/art": T.IMAGE + "warning_modal_main_panel/padding_2": T.PANEL + "warning_modal_main_panel/text_panel_2": T.PANEL + "warning_modal_main_panel/text_panel_2/text": T.LABEL + warning_modal_back_button: T.BUTTON +} + +export type CsbSubscriptionPanelType = { + csb_container: T.PANEL + "csb_container/fill": T.IMAGE + "csb_container/border": T.IMAGE + "csb_container/panel_contents": T.STACK_PANEL + "csb_container/panel_contents/content_container": T.STACK_PANEL + "csb_container/panel_contents/content_container/side_image_stack_left": T.PANEL + "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": T.IMAGE + "csb_container/panel_contents/content_container/padding_02": T.PANEL + "csb_container/panel_contents/content_container/side_stack_right": T.STACK_PANEL + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": T.STACK_PANEL + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": T.LABEL + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": T.PANEL + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": T.STACK_PANEL + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": T.STACK_PANEL + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": T.STACK_PANEL + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": T.PANEL + "csb_container/panel_contents/button_panel_spacer": T.PANEL + "csb_container/panel_contents/csb_buttons": T.STACK_PANEL + "csb_container/panel_contents/csb_buttons/button_panel_padding": T.PANEL + "csb_container/panel_contents/csb_buttons/padding_01": T.PANEL + "csb_container/panel_contents/csb_buttons/csb_info_button": T.BUTTON + csb_marketplace_benefit: T.STACK_PANEL + "csb_marketplace_benefit/bullet_holder_01": T.STACK_PANEL + "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": T.PANEL + "csb_marketplace_benefit/bullet_holder_01/bullet_01": T.LABEL + "csb_marketplace_benefit/panel_details_ln1": T.LABEL + csb_buy_container: T.PANEL + "csb_buy_container/csb_buy_button": T.BUTTON + csb_buy_button_text: T.LABEL + csb_cancel_button: T.BUTTON +} + +export type CsbUpsellType = { + csb_upsell_screen: T.SCREEN + csb_upsell_compare_dialog: T.PANEL + "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": T.PANEL + csb_upsell_popup_content: T.PANEL + "csb_upsell_popup_content/two_side_panels": T.STACK_PANEL + "csb_upsell_popup_content/two_side_panels/border_panel_left": T.PANEL + "csb_upsell_popup_content/two_side_panels/border_panel_left/border": T.IMAGE + "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": T.IMAGE + "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": T.STACK_PANEL + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": T.PANEL + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": T.BUTTON + "csb_upsell_popup_content/two_side_panels/middle_spacer": T.PANEL + "csb_upsell_popup_content/two_side_panels/border_panel_right": T.PANEL + "csb_upsell_popup_content/two_side_panels/border_panel_right/border": T.IMAGE + "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": T.IMAGE + "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": T.STACK_PANEL + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": T.PANEL + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": T.BUTTON + csb_upsell_left_side_panel: T.STACK_PANEL + "csb_upsell_left_side_panel/upper_half": T.STACK_PANEL + "csb_upsell_left_side_panel/upper_half/header_panel": T.STACK_PANEL + "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": T.PANEL + "csb_upsell_left_side_panel/upper_half/header_panel/top_header": T.STACK_PANEL + "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": T.PANEL + "csb_upsell_left_side_panel/middle_spacer": T.PANEL + "csb_upsell_left_side_panel/bottom_half": T.STACK_PANEL + "csb_upsell_left_side_panel/bottom_half/padding_b": T.PANEL + "csb_upsell_left_side_panel/bottom_half/bullet_one": T.STACK_PANEL + "csb_upsell_left_side_panel/bottom_half/padding_0": T.PANEL + "csb_upsell_left_side_panel/bottom_half/bullet_two": T.STACK_PANEL + "csb_upsell_left_side_panel/bottom_half/padding_1": T.PANEL + "csb_upsell_left_side_panel/bottom_half/bullet_three": T.STACK_PANEL + csb_upsell_right_side_panel: T.STACK_PANEL + "csb_upsell_right_side_panel/upper_half": T.STACK_PANEL + "csb_upsell_right_side_panel/upper_half/marketing_banner": T.PANEL + "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": T.IMAGE + "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": T.LABEL + "csb_upsell_right_side_panel/upper_half/header_panel": T.STACK_PANEL + "csb_upsell_right_side_panel/upper_half/header_panel/top_header": T.LABEL + "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": T.PANEL + "csb_upsell_right_side_panel/middle_spacer": T.PANEL + "csb_upsell_right_side_panel/bottom_half": T.STACK_PANEL + "csb_upsell_right_side_panel/bottom_half/padding_b": T.PANEL + "csb_upsell_right_side_panel/bottom_half/bullet_one": T.STACK_PANEL + "csb_upsell_right_side_panel/bottom_half/padding_1": T.PANEL + "csb_upsell_right_side_panel/bottom_half/bullet_two": T.STACK_PANEL + "csb_upsell_right_side_panel/bottom_half/padding_0": T.PANEL + "csb_upsell_right_side_panel/bottom_half/bullet_three": T.STACK_PANEL + csb_big_padding: T.PANEL + csb_bullet_padding: T.PANEL + "csb_bullet_padding/desktop": T.PANEL + "csb_bullet_padding/pocket": T.PANEL + csb_bullet_desktop_padding: T.PANEL + csb_bullet_pocket_padding: T.PANEL + csb_bullet: T.STACK_PANEL + "csb_bullet/padding_icon_left": T.PANEL + "csb_bullet/padding_icon_vertical": T.STACK_PANEL + "csb_bullet/padding_icon_vertical/padding_vertical": T.PANEL + "csb_bullet/padding_icon_vertical/label_icon": T.IMAGE + "csb_bullet/padding_icon_right": T.PANEL + csb_bullet_point: T.STACK_PANEL + "csb_bullet_point/bullet_icon": T.STACK_PANEL + "csb_bullet_point/label_text": T.LABEL + csb_bullet_split_point: T.STACK_PANEL + "csb_bullet_split_point/bullet_icon": T.STACK_PANEL + "csb_bullet_split_point/label_text": T.LABEL + "csb_bullet_split_point/space": T.PANEL + "csb_bullet_split_point/space/label_text_csb": T.LABEL + "csb_bullet_split_point/csb_name": T.PANEL + "csb_bullet_split_point/csb_name/csb_name_string": T.STACK_PANEL + csb_price: T.PANEL + "csb_price/price_details": T.STACK_PANEL + csb_price_details: T.STACK_PANEL + "csb_price_details/price_panel_1": T.PANEL + "csb_price_details/price_panel_1/amount": T.LABEL + "csb_price_details/price_panel_first_period": T.PANEL + "csb_price_details/price_panel_first_period/second_line": T.LABEL + csb_learn_more: T.PANEL + "csb_learn_more/learn_more": T.LABEL +} + +export type CsbPacksType = { + view_all_packs_screen: T.SCREEN + view_packs_screen_content: T.PANEL + "view_packs_screen_content/main_panel": T.STACK_PANEL + csb_view_packs_screen_main_panel: T.INPUT_PANEL + main_panel: T.INPUT_PANEL + "main_panel/offers": T.PANEL + "main_panel/progress_loading": T.PANEL + scrolling_content_stack: T.STACK_PANEL + "scrolling_content_stack/padding_0": T.PANEL + "scrolling_content_stack/store_factory": T.STACK_PANEL +} + +export type CsbWelcomeType = { + csb_welcome_screen: T.SCREEN + welcome_screen_content: T.PANEL + "welcome_screen_content/main_panel": T.PANEL + welcome_modal_main_panel: T.STACK_PANEL + "welcome_modal_main_panel/art_panel": T.PANEL + "welcome_modal_main_panel/art_panel/art": T.IMAGE + "welcome_modal_main_panel/padding": T.PANEL + "welcome_modal_main_panel/text_panel": T.PANEL + "welcome_modal_main_panel/text_panel/text": T.LABEL + welcome_modal_continue_button: T.BUTTON +} + +export type CsbFaqType = { + faq_bottom_button: T.BUTTON + faq_image_section: T.PANEL + "faq_image_section/faq_image": T.IMAGE + faq_text_section_body: T.STACK_PANEL + faq_text_question: T.LABEL + faq_text_section: T.STACK_PANEL + "faq_text_section/faq_text_question": T.LABEL + "faq_text_section/faq_text_answer": T.LABEL + faq_price_bound_text_section: T.STACK_PANEL + "faq_price_bound_text_section/faq_text_question": T.LABEL + "faq_price_bound_text_section/faq_text_answer": T.LABEL + faq_question_body: T.STACK_PANEL + "faq_question_body/0": T.UNKNOWN + faq_question_body_stack: T.STACK_PANEL + faq_question_body_horz_padding: T.PANEL + image_left_faq_question_body: T.BUTTON + image_right_faq_question_body: T.BUTTON + image_left_faq_price_bound: T.BUTTON + image_right_faq_price_bound: T.BUTTON + faq_section_header_space: T.PANEL + faq_section_divider: T.STACK_PANEL + faq_content_section: T.STACK_PANEL + "faq_content_section/faq_section_vertical_padding_1": T.PANEL + "faq_content_section/faq_header": T.LABEL + "faq_content_section/faq_section_vertical_padding_2": T.PANEL + "faq_content_section/faq_question_1": T.BUTTON + "faq_content_section/faq_question_1_divider": T.STACK_PANEL + "faq_content_section/faq_question_2": T.BUTTON + "faq_content_section/faq_question_2_divider": T.STACK_PANEL + "faq_content_section/faq_question_3": T.BUTTON + "faq_content_section/faq_question_3_divider": T.STACK_PANEL + "faq_content_section/faq_question_4": T.BUTTON + "faq_content_section/faq_question_4_divider": T.STACK_PANEL + "faq_content_section/faq_question_5": T.BUTTON + "faq_content_section/faq_question_5_divider": T.STACK_PANEL + "faq_content_section/faq_question_6": T.BUTTON + "faq_content_section/faq_question_6_divider": T.STACK_PANEL + "faq_content_section/faq_question_7": T.BUTTON + "faq_content_section/faq_question_7_divider": T.STACK_PANEL + "faq_content_section/faq_question_8": T.BUTTON + "faq_content_section/faq_question_8_divider": T.STACK_PANEL + "faq_content_section/faq_question_9": T.BUTTON + "faq_content_section/faq_question_9_divider": T.STACK_PANEL + "faq_content_section/faq_question_10": T.BUTTON + "faq_content_section/faq_question_10_divider": T.STACK_PANEL + "faq_content_section/faq_button": T.BUTTON + "faq_content_section/faq_bottom_padding": T.PANEL + "faq_content_section/faq_bottom_padding/bottom_left_particles": T.IMAGE +} + +export type CsbLandingType = { + landing_content_section: T.STACK_PANEL + "landing_content_section/landing_section_vertical_padding": T.PANEL + "landing_content_section/landing_content": T.STACK_PANEL + "landing_content_section/landing_content/title_stack": T.STACK_PANEL + "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL + "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL + "landing_content_section/landing_content/info_stack": T.STACK_PANEL + "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL + horizontal_small_spacer: T.PANEL + vertical_small_spacer: T.PANEL + vertical_large_spacer: T.PANEL + title_stack: T.STACK_PANEL + "title_stack/title_image_panel": T.STACK_PANEL + "title_stack/title_space": T.PANEL + "title_stack/action_button": T.PANEL + "title_stack/sign_in_button": T.PANEL + "title_stack/vertical_space2": T.PANEL + "title_stack/gradient_panel": T.PANEL + "title_stack/gradient_panel/label_with_gradient": T.PANEL + "title_stack/gradient_panel/tts_hover": T.BUTTON + "title_stack/gradient_panel2": T.PANEL + "title_stack/gradient_panel2/label_with_gradient2": T.PANEL + "title_stack/gradient_panel2/tts_hover": T.BUTTON + subscription_includes_text: T.LABEL + free_trial_text: T.LABEL + title_space: T.PANEL + title_image_panel: T.STACK_PANEL + "title_image_panel/vertical_small_spacer_1": T.PANEL + "title_image_panel/title_image_container": T.PANEL + "title_image_panel/title_image_container/title_image": T.IMAGE + "title_image_panel/vertical_small_spacer_2": T.PANEL + info_stack: T.STACK_PANEL + "info_stack/info_section_image": T.IMAGE + "info_stack/info_description_stack_retail": T.STACK_PANEL + info_description_stack_retail: T.STACK_PANEL + "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL + "info_description_stack_retail/info_section_stack_1/info_section_text_1": T.STACK_PANEL + info_section_stack: T.STACK_PANEL + info_section_image_with_border: T.IMAGE + info_section_text_1: T.STACK_PANEL + "info_section_text_1/info_section_text": T.PANEL + "info_section_text_1/vertical_small_spacer_0": T.PANEL + "info_section_text_1/info_text_bullet_1": T.STACK_PANEL + "info_section_text_1/vertical_small_spacer_1": T.PANEL + "info_section_text_1/info_text_bullet_2": T.STACK_PANEL + "info_section_text_1/vertical_small_spacer_2": T.PANEL + "info_section_text_1/info_text_bullet_3": T.STACK_PANEL + "info_section_text_1/vertical_small_spacer_3": T.PANEL + "info_section_text_1/info_text_bullet_4": T.STACK_PANEL + "info_section_text_1/vertical_small_spacer_4": T.PANEL + "info_section_text_1/info_text_bullet_5": T.STACK_PANEL + "info_section_text_1/vertical_small_spacer_5": T.PANEL + "info_section_text_1/info_text_bullet_6": T.STACK_PANEL + "info_section_text_1/vertical_large_spacer_6": T.PANEL + info_section_text_2: T.STACK_PANEL + "info_section_text_2/info_text_bullet_1": T.STACK_PANEL + "info_section_text_2/vertical_small_spacer_0": T.PANEL + "info_section_text_2/info_text_bullet_2": T.STACK_PANEL + "info_section_text_2/vertical_small_spacer_1": T.PANEL + "info_section_text_2/info_text_bullet_4": T.STACK_PANEL + "info_section_text_2/vertical_small_spacer_3": T.PANEL + "info_section_text_2/info_text_bullet_5": T.STACK_PANEL + info_section_text: T.STACK_PANEL + info_text_bullet: T.STACK_PANEL + "info_text_bullet/info_text_bullet_bullet": T.LABEL + "info_text_bullet/bullet_spacer": T.PANEL + "info_text_bullet/info_text_bullet_body": T.PANEL + "info_text_bullet/bullet_spacer_end": T.PANEL + info_text_unbulletted: T.PANEL + "info_text_unbulletted/info_text_bullet_body": T.PANEL + info_text_body: T.PANEL + "info_text_body/text_body": T.LABEL + "info_text_body/tts_border": T.BUTTON +} + +export type CustomTemplatesType = { + lock_icon: T.IMAGE + templates_scroll_content: T.INPUT_PANEL + "templates_scroll_content/scrolling_panel": T.PANEL + templates_scroll_panel: T.PANEL + "templates_scroll_panel/templates_stack_panel": T.STACK_PANEL + "templates_scroll_panel/templates_stack_panel/templates_item_grid": T.GRID + templates_item_grid: T.GRID + templates_item: T.STACK_PANEL + "templates_item/template_item_button": T.BUTTON + template_item_button: T.BUTTON + template_content_panel: T.STACK_PANEL + "template_content_panel/template_screenshot": T.IMAGE + "template_content_panel/template_text_panel": T.PANEL + "template_content_panel/lock_panel": T.PANEL + "template_content_panel/lock_panel/lock_icon": T.IMAGE + template_screenshot: T.IMAGE + "template_screenshot/picture": T.IMAGE + template_text_panel: T.PANEL + "template_text_panel/text_indent": T.PANEL + "template_text_panel/text_indent/top_side": T.STACK_PANEL + "template_text_panel/text_indent/top_side/template_name": T.LABEL + "template_text_panel/text_indent/top_side/download_text_label": T.LABEL + "template_text_panel/text_indent/bottom_side": T.STACK_PANEL + "template_text_panel/text_indent/bottom_side/template_description": T.LABEL + "template_text_panel/text_indent/bottom_side/template_version": T.LABEL + template_name: T.LABEL + template_download_text: T.LABEL + template_list_text: T.LABEL + template_description: T.LABEL + template_version: T.LABEL + main_panel: T.PANEL + "main_panel/templates_scroll_content": T.INPUT_PANEL + custom_templates_screen: T.SCREEN + custom_templates_screen_content: T.PANEL + "custom_templates_screen_content/dialog": T.PANEL + background: T.IMAGE +} + +export type WorldConversionCompleteType = { + background: T.IMAGE + prompt_text: T.PANEL + "prompt_text/message": T.LABEL + converted_world_preview_name: T.LABEL + converted_world_preview_date: T.LABEL + converted_world_preview_game_mode: T.LABEL + converted_world_preview_filesize: T.LABEL + converted_world_preview_text_panel: T.PANEL + "converted_world_preview_text_panel/text_indent": T.PANEL + "converted_world_preview_text_panel/text_indent/top_side": T.STACK_PANEL + "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": T.LABEL + "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": T.LABEL + "converted_world_preview_text_panel/text_indent/bottom_side": T.STACK_PANEL + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": T.LABEL + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": T.LABEL + converted_world_preview_panel: T.IMAGE + "converted_world_preview_panel/world_preview_content": T.STACK_PANEL + "converted_world_preview_panel/world_preview_content/converted_world_screenshot": T.IMAGE + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": T.PANEL + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": T.IMAGE + "converted_world_preview_panel/world_preview_content/converted_world_text_panel": T.PANEL + main_panel: T.STACK_PANEL + "main_panel/padding_0": T.PANEL + "main_panel/prompt_1": T.PANEL + "main_panel/world_entry_container": T.PANEL + "main_panel/world_entry_container/world_entry_sizer": T.PANEL + "main_panel/world_entry_container/world_entry_sizer/world_entry": T.IMAGE + "main_panel/buttons_panel_sizer": T.PANEL + "main_panel/buttons_panel_sizer/buttons_panel": T.STACK_PANEL + "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": T.BUTTON + "main_panel/buttons_panel_sizer/buttons_panel/padding": T.PANEL + "main_panel/buttons_panel_sizer/buttons_panel/return_button": T.BUTTON + world_conversion_complete_screen_content: T.PANEL + "world_conversion_complete_screen_content/dialog": T.PANEL + world_conversion_complete_screen: T.SCREEN +} + +export type DayOneExperienceIntroType = { + padding_horizontal: T.PANEL + padding_vertical: T.PANEL + label_panel: T.PANEL + "label_panel/label_text": T.LABEL + text_panel: T.STACK_PANEL + "text_panel/padding_00": T.PANEL + "text_panel/tab_content_description_panel": T.PANEL + "text_panel/padding_01": T.PANEL + dialog_image: T.IMAGE + image_panel: T.PANEL + "image_panel/dialog_image_with_border": T.IMAGE + "image_panel/focus_image": T.UNKNOWN + top_tab: T.PANEL + common_tab_navigation_panel_layout: T.STACK_PANEL + tabbed_tab_navigation_panel_layout: T.STACK_PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": T.PANEL + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": T.STACK_PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL + "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL + "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL + "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL + "tabbed_tab_navigation_panel_layout/realms_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL + "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": T.PANEL + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": T.STACK_PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL + tab_header_image_panel: T.PANEL + "tab_header_image_panel/welcome_tab_content": T.PANEL + "tab_header_image_panel/marketplace_tab_content": T.PANEL + "tab_header_image_panel/cross_platform_tab_content": T.PANEL + "tab_header_image_panel/realms_tab_content": T.PANEL + "tab_header_image_panel/villager_tab_content": T.PANEL + tabbed_tab_content_panel_layout: T.PANEL + "tabbed_tab_content_panel_layout/welcome_tab_content": T.PANEL + "tabbed_tab_content_panel_layout/marketplace_tab_content": T.PANEL + "tabbed_tab_content_panel_layout/cross_platform_tab_content": T.PANEL + "tabbed_tab_content_panel_layout/realms_tab_content": T.PANEL + "tabbed_tab_content_panel_layout/villager_tab_content": T.PANEL + common_tab_header_image_panel: T.PANEL + "common_tab_header_image_panel/header_image": T.IMAGE + common_tab_content_panel: T.PANEL + "common_tab_content_panel/content": T.UNKNOWN + welcome_tab_header_image_panel: T.PANEL + welcome_tab_content_panel: T.PANEL + marketplace_tab_header_image_panel: T.PANEL + marketplace_tab_content_panel: T.PANEL + cross_platform_tab_header_image_panel: T.PANEL + cross_platform_tab_content_panel: T.PANEL + realms_tab_header_image_panel: T.PANEL + realms_tab_content_panel: T.PANEL + villager_tab_header_image_panel: T.PANEL + villager_tab_content_panel: T.PANEL + tab_panel: T.STACK_PANEL + "tab_panel/tab_header_image": T.PANEL + "tab_panel/padding_00": T.PANEL + "tab_panel/tab_navigation_panel": T.STACK_PANEL + "tab_panel/tab_content_panel": T.PANEL + "tab_panel/padding_4": T.PANEL + "tab_panel/continue_button_panel": T.PANEL + "tab_panel/continue_button_panel/continue_button": T.BUTTON + day_one_experience_intro_screen: T.SCREEN + day_one_experience_intro_screen_content: T.PANEL + "day_one_experience_intro_screen_content/welcome_dialog": T.PANEL +} + +export type DayOneExperienceType = { + alpha_scroll_background: T.IMAGE + tip_text: T.LABEL + tip_arrow_base: T.IMAGE + tip_arrow_left: T.IMAGE + tip_arrow_right: T.IMAGE + import_time: T.CUSTOM + skins_tip_image: T.IMAGE + "skins_tip_image/arrows": T.STACK_PANEL + "skins_tip_image/arrows/right_arrow": T.IMAGE + "skins_tip_image/arrows/padding": T.PANEL + "skins_tip_image/arrows/left_arrow": T.IMAGE + skins_tip_top_text: T.LABEL + skins_tip_panel: T.STACK_PANEL + "skins_tip_panel/top_text_sizer": T.PANEL + "skins_tip_panel/top_text_sizer/settings_and_skin_text": T.LABEL + "skins_tip_panel/top_text_sizer/settings_text": T.LABEL + "skins_tip_panel/image_sizer": T.PANEL + "skins_tip_panel/image_sizer/image_section": T.PANEL + "skins_tip_panel/bottom_text_sizer": T.PANEL + "skins_tip_panel/bottom_text_sizer/bottom_text": T.LABEL + skin_viewer_panel_text: T.LABEL + skin_viewer_panel: T.PANEL + "skin_viewer_panel/paper_doll_container": T.PANEL + "skin_viewer_panel/paper_doll_container/paper_doll": T.CUSTOM + "skin_viewer_panel/legacy_skin_loading_panel": T.PANEL + "skin_viewer_panel/bottom_skin_text": T.PANEL + "skin_viewer_panel/bottom_skin_text/current_skin_text": T.LABEL + "skin_viewer_panel/bottom_skin_text/default_skin_text": T.LABEL + skin_tip_screen: T.PANEL + "skin_tip_screen/primary_content": T.STACK_PANEL + "skin_tip_screen/primary_content/skin_viewer_panel": T.PANEL + "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": T.PANEL + "skin_tip_screen/primary_content/padding": T.PANEL + "skin_tip_screen/primary_content/skins_tip_panel_container": T.PANEL + "skin_tip_screen/primary_content/skins_tip_panel_container/background": T.PANEL + "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": T.STACK_PANEL + "skin_tip_screen/no_network_message": T.CUSTOM + legacy_world_item: T.STACK_PANEL + "legacy_world_item/header_button_panel": T.PANEL + legacy_world_item_grid: T.GRID + world_picker_scrolling_content: T.STACK_PANEL + "world_picker_scrolling_content/padding_0": T.PANEL + "world_picker_scrolling_content/skip_button": T.BUTTON + "world_picker_scrolling_content/padding_1": T.PANEL + "world_picker_scrolling_content/loading_legacy_worlds_panel": T.IMAGE + "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL + "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": T.PANEL + "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE + "world_picker_scrolling_content/padding_2": T.PANEL + "world_picker_scrolling_content/world_item_grid": T.GRID + world_picker_content: T.PANEL + "world_picker_content/scrolling_panel": T.PANEL + advanced_worlds_screen: T.STACK_PANEL + "advanced_worlds_screen/world_picker": T.PANEL + "advanced_worlds_screen/padding_1": T.PANEL + "advanced_worlds_screen/import_time_container": T.PANEL + "advanced_worlds_screen/import_time_container/import_time_label": T.CUSTOM + next_screen_button_content: T.PANEL + "next_screen_button_content/arrow_panel": T.PANEL + "next_screen_button_content/arrow_panel/label_panel": T.PANEL + "next_screen_button_content/arrow_panel/label_panel/label": T.LABEL + "next_screen_button_content/arrow_panel/image": T.IMAGE + "next_screen_button_content/loading_panel": T.PANEL + next_screen_button: T.BUTTON + next_panel: T.PANEL + "next_panel/next_button": T.BUTTON + common_scrolling_panel: T.PANEL + skin_tip_scroll_panel: T.PANEL + "skin_tip_scroll_panel/skin_tip_screen": T.PANEL + worlds_import_scroll_panel: T.PANEL + "worlds_import_scroll_panel/advanced_screen": T.STACK_PANEL + common_content: T.PANEL + skin_tip_scroll_content: T.PANEL + "skin_tip_scroll_content/scrolling_panel": T.PANEL + world_import_scroll_content: T.PANEL + "world_import_scroll_content/scrolling_panel": T.PANEL + default_tab_content_panel_layout: T.PANEL + "default_tab_content_panel_layout/skin_tip_tab_content": T.PANEL + "default_tab_content_panel_layout/world_import_tab_content": T.PANEL + default_wizard_screen: T.PANEL + "default_wizard_screen/tab_content_panel": T.PANEL + wizard_screen: T.SCREEN + wizard_screen_content: T.PANEL + "wizard_screen_content/main_control": T.PANEL + "wizard_screen_content/next_button": T.PANEL +} + +export type DeathType = { + a_button_panel: T.PANEL + "a_button_panel/gamepad_helper_a": T.STACK_PANEL + you_died_panel: T.PANEL + "you_died_panel/you_died_label": T.LABEL + death_reason_panel: T.PANEL + "death_reason_panel/death_reason_label": T.LABEL + labels_panel: T.STACK_PANEL + "labels_panel/fill_1": T.PANEL + "labels_panel/you_died": T.PANEL + "labels_panel/padd_1": T.PANEL + "labels_panel/death_reason": T.PANEL + "labels_panel/padd_2": T.PANEL + buttons_panel: T.STACK_PANEL + "buttons_panel/padd_0": T.PANEL + "buttons_panel/respawn_button": T.BUTTON + "buttons_panel/padd_1": T.PANEL + "buttons_panel/main_menu_button": T.BUTTON + "buttons_panel/fill_2": T.PANEL + "buttons_panel/select_button": T.PANEL + death_screen_content: T.PANEL + "death_screen_content/death_screen_buttons_and_stuff": T.PANEL + "death_screen_content/death_screen_buttons_and_stuff/labels_panel": T.STACK_PANEL + "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": T.STACK_PANEL + "death_screen_content/loading_label": T.LABEL + background_gradient: T.CUSTOM + death_screen: T.SCREEN +} + +export type DebugScreenType = { + access_button: T.BUTTON + special_render: T.CUSTOM + content_panel: T.PANEL + "content_panel/access_button": T.BUTTON + "content_panel/special_render": T.CUSTOM + debug_screen: T.SCREEN +} + +export type DevConsoleType = { + keyboard_button_content: T.PANEL + "keyboard_button_content/keyboard_image": T.IMAGE + keyboard_button: T.BUTTON + button_content: T.PANEL + "button_content/image": T.UNKNOWN + up_arrow: T.IMAGE + down_arrow: T.IMAGE + send_button: T.BUTTON + sent_message_up_button: T.BUTTON + sent_message_down_button: T.BUTTON + chat_stack_panel: T.STACK_PANEL + "chat_stack_panel/text_box": T.EDIT_BOX + "chat_stack_panel/send_button": T.BUTTON + "chat_stack_panel/sent_message_up_button": T.BUTTON + "chat_stack_panel/sent_message_down_button": T.BUTTON + main_stack_panel: T.STACK_PANEL + "main_stack_panel/messages_scrolling_panel": T.PANEL + "main_stack_panel/chat_stack_panel": T.STACK_PANEL + main_with_intellisense: T.PANEL + "main_with_intellisense/main_stack": T.STACK_PANEL + "main_with_intellisense/commands_panel": T.PANEL + dev_console_dialog: T.PANEL + dev_console_screen: T.SCREEN +} + +export type DisconnectType = { + disconnect_screen_text: T.LABEL + disconnect_text: T.LABEL + disconnect_title_text: T.LABEL + title_panel: T.PANEL + "title_panel/disconnect_title_text": T.LABEL + "title_panel/disconnect_text": T.LABEL + menu_button_template: T.BUTTON + continue_button: T.BUTTON + check_store_button: T.BUTTON + exit_button: T.BUTTON + ok_button: T.BUTTON + open_uri_button: T.BUTTON + cancel_button: T.BUTTON + button_panel: T.STACK_PANEL + "button_panel/open_uri_button_panel": T.PANEL + "button_panel/open_uri_button_panel/open_uri_button": T.BUTTON + "button_panel/open_button_panel": T.PANEL + "button_panel/open_button_panel/ok_button": T.BUTTON + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + disconnect_screen: T.SCREEN + disconnect_screen_content: T.PANEL + "disconnect_screen_content/title_panel": T.PANEL + "disconnect_screen_content/gamepad_helpers": T.PANEL + spacing_gap: T.PANEL + realms_disconnect_screen: T.SCREEN + realms_disconnect_button_panel: T.STACK_PANEL + "realms_disconnect_button_panel/open_uri_button_panel": T.PANEL + "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": T.BUTTON + "realms_disconnect_button_panel/realm_buttons_panel": T.PANEL + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": T.STACK_PANEL + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": T.BUTTON + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": T.PANEL + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": T.BUTTON + realms_warning_screen: T.SCREEN + realms_warning_button_panel: T.STACK_PANEL + "realms_warning_button_panel/continue_button_panel": T.PANEL + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": T.STACK_PANEL + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": T.BUTTON + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": T.PANEL + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": T.BUTTON + "realms_warning_button_panel/realms_warning_button_gap": T.PANEL + "realms_warning_button_panel/cancel_button_panel": T.PANEL + "realms_warning_button_panel/cancel_button_panel/cancel_button": T.BUTTON + open_account_setting_button: T.BUTTON +} + +export type DisplayLoggedErrorType = { + display_logged_error_screen: T.SCREEN + factory_panel: T.PANEL + "factory_panel/error_dialog_factory": T.FACTORY + display_logged_error_modal: T.PANEL + error_message_stack: T.STACK_PANEL + "error_message_stack/error_message": T.LABEL + "error_message_stack/error_count": T.LABEL + input_blocking_button_base: T.BUTTON + details_button: T.BUTTON + dismiss_button: T.BUTTON + error_details_modal: T.PANEL + copy_path_button: T.BUTTON + hide_error_details_button: T.BUTTON + error_stack_scrolling_panel: T.PANEL + error_stack: T.STACK_PANEL + error_controller_panel: T.PANEL + "error_controller_panel/error_message": T.STACK_PANEL + "error_controller_panel/controller_button": T.BUTTON + "error_controller_panel/controller_button/hover": T.IMAGE + "error_controller_panel/controller_button/pressed": T.IMAGE + error_base: T.STACK_PANEL + "error_base/error_message": T.LABEL + "error_base/expand_button": T.BUTTON + error_short: T.PANEL + error_expanded: T.PANEL +} + +export type DiscoveryDialogType = { + service_body_label: T.LABEL + service_button: T.BUTTON + service_buttons: T.STACK_PANEL + content: T.STACK_PANEL + "content/body_text": T.PANEL + "content/text_to_button_padding": T.PANEL + "content/buttons": T.STACK_PANEL + service_dialog: T.INPUT_PANEL + discovery_dialog_factory: T.FACTORY +} + +export type EduFeaturedType = { + featured_button_content: T.PANEL + "featured_button_content/button_label": T.LABEL + featured_button: T.BUTTON +} + +export type EduQuitButtonType = { + quit_button: T.BUTTON +} + +export type PersonaEmoteType = { + emote_wheel_screen: T.SCREEN + emote_wheel_touch_zone: T.BUTTON + emote_wheel_screen_content: T.STACK_PANEL + "emote_wheel_screen_content/top_padding": T.PANEL + "emote_wheel_screen_content/root_panel": T.PANEL + "emote_wheel_screen_content/root_panel/emotes_panel": T.PANEL + "emote_wheel_screen_content/instruction_padding": T.PANEL + "emote_wheel_screen_content/instruction_panel": T.PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background": T.IMAGE + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": T.STACK_PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": T.LABEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": T.PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": T.STACK_PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": T.STACK_PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": T.PANEL + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": T.LABEL + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": T.LABEL + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": T.LABEL + "emote_wheel_screen_content/dressing_room_button_panel": T.PANEL + "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": T.BUTTON + "emote_wheel_screen_content/bottom_padding": T.PANEL + swap_emote_button: T.BUTTON +} + +export type EnchantingType = { + enchanting_image: T.IMAGE + lapis_image: T.IMAGE + dust_image: T.IMAGE + dust_image_selectable: T.IMAGE + dust_image_unselectable: T.IMAGE + dust_template: T.PANEL + "dust_template/dust_image_selectable": T.IMAGE + "dust_template/dust_image_unselectable": T.IMAGE + dust_panel: T.GRID + "dust_panel/a": T.PANEL + "dust_panel/b": T.PANEL + "dust_panel/c": T.PANEL + background_with_hover_text: T.IMAGE + "background_with_hover_text/hover_text": T.CUSTOM + dark_background: T.IMAGE + dark_background_with_hover_text: T.IMAGE + active_background: T.IMAGE + active_background_with_hover_text: T.IMAGE + enchant_runes: T.LABEL + enchant_cost: T.LABEL + success_runes: T.LABEL + fail_runes: T.LABEL + success_cost: T.LABEL + fail_cost: T.LABEL + enchanting_label: T.LABEL + base_button: T.BUTTON + unselectable_button: T.BUTTON + "unselectable_button/default": T.IMAGE + "unselectable_button/hover": T.IMAGE + "unselectable_button/pressed": T.IMAGE + "unselectable_button/rune_text": T.LABEL + "unselectable_button/enchant_cost": T.LABEL + selectable_button: T.BUTTON + "selectable_button/default": T.IMAGE + "selectable_button/hover": T.IMAGE + "selectable_button/pressed": T.IMAGE + "selectable_button/rune_text": T.LABEL + "selectable_button/enchant_cost": T.LABEL + enchant_button_panel: T.PANEL + "enchant_button_panel/dark_background": T.IMAGE + "enchant_button_panel/unselectable_button": T.BUTTON + "enchant_button_panel/selectable_button": T.BUTTON + enchanting_panel_top_half: T.PANEL + "enchanting_panel_top_half/enchanting_label": T.LABEL + "enchanting_panel_top_half/enchanting_book_panel": T.PANEL + "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": T.CUSTOM + "enchanting_panel_top_half/item_grid": T.GRID + "enchanting_panel_top_half/item_grid/item_slot": T.INPUT_PANEL + "enchanting_panel_top_half/lapis_grid": T.GRID + "enchanting_panel_top_half/lapis_grid/lapis": T.INPUT_PANEL + "enchanting_panel_top_half/grid_panel": T.PANEL + "enchanting_panel_top_half/grid_panel/indent": T.IMAGE + "enchanting_panel_top_half/grid_panel/dust_panel": T.GRID + "enchanting_panel_top_half/grid_panel/enchantments_grid": T.GRID + enchanting_panel: T.PANEL + "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL + "enchanting_panel/selected_item_details_factory": T.FACTORY + "enchanting_panel/item_lock_notification_factory": T.FACTORY + "enchanting_panel/root_panel": T.INPUT_PANEL + "enchanting_panel/root_panel/common_panel": T.PANEL + "enchanting_panel/root_panel/enchanting_screen_inventory": T.PANEL + "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": T.PANEL + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": T.GRID + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": T.BUTTON + "enchanting_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "enchanting_panel/root_panel/gamepad_cursor": T.BUTTON + "enchanting_panel/flying_item_renderer": T.CUSTOM + enchanting_screen: T.SCREEN +} + +export type EnchantingPocketType = { + generic_label: T.LABEL + background_image: T.IMAGE + inventory_grid: T.GRID + inventory_content: T.PANEL + "inventory_content/scrolling_panel": T.PANEL + lapis_image: T.IMAGE + enchanting_slots_panel: T.PANEL + "enchanting_slots_panel/input_slot": T.INPUT_PANEL + "enchanting_slots_panel/lapis_slot": T.INPUT_PANEL + enchant_text_runes: T.LABEL + show_highlighted_slot_control: T.IMAGE + show_highlighted_hover_slot_control: T.IMAGE + inactive_background: T.IMAGE + unselectable_button: T.BUTTON + "unselectable_button/default": T.IMAGE + "unselectable_button/hover": T.IMAGE + "unselectable_button/pressed": T.IMAGE + "unselectable_button/enchant_cost": T.LABEL + selectable_button: T.BUTTON + "selectable_button/default": T.IMAGE + "selectable_button/hover": T.IMAGE + "selectable_button/pressed": T.IMAGE + "selectable_button/enchant_cost": T.LABEL + enchant_button_panel: T.PANEL + "enchant_button_panel/inactive_background": T.IMAGE + "enchant_button_panel/unselectable_button": T.BUTTON + "enchant_button_panel/selectable_button": T.BUTTON + "enchant_button_panel/dust": T.PANEL + "enchant_button_panel/rune_text": T.LABEL + "enchant_button_panel/highlight": T.IMAGE + enchant_selection_panel: T.PANEL + "enchant_selection_panel/grid": T.GRID + "enchant_selection_panel/grid/button1": T.PANEL + "enchant_selection_panel/grid/button2": T.PANEL + "enchant_selection_panel/grid/button3": T.PANEL + item_renderer: T.CUSTOM + confirm_default_control: T.IMAGE + enchanting_confirm_button: T.BUTTON + "enchanting_confirm_button/default": T.IMAGE + "enchanting_confirm_button/hover": T.IMAGE + "enchanting_confirm_button/pressed": T.IMAGE + "enchanting_confirm_button/arrow_active": T.IMAGE + "enchanting_confirm_button/arrow_inactive": T.IMAGE + "enchanting_confirm_button/input_item_renderer": T.CUSTOM + "enchanting_confirm_button/output_item_renderer": T.CUSTOM + enchanting_confirm_panel: T.PANEL + "enchanting_confirm_panel/confirm": T.BUTTON + "enchanting_confirm_panel/enchantment_hint_text": T.LABEL + enchanting_book_contents_panel: T.PANEL + "enchanting_book_contents_panel/enchanting_book": T.CUSTOM + "enchanting_book_contents_panel/player_level_label": T.LABEL + "enchanting_book_contents_panel/level_label": T.LABEL + enchanting_book_panel: T.PANEL + "enchanting_book_panel/enchanting_slots_panel": T.PANEL + enchanting_slots_and_selection: T.STACK_PANEL + "enchanting_slots_and_selection/enchanting_slots_panel": T.PANEL + "enchanting_slots_and_selection/pad1": T.PANEL + "enchanting_slots_and_selection/enchant_selection_panel": T.PANEL + enchanting_contents_panel: T.STACK_PANEL + "enchanting_contents_panel/fill1": T.PANEL + "enchanting_contents_panel/enchanting_book_panel": T.PANEL + "enchanting_contents_panel/pad1": T.PANEL + "enchanting_contents_panel/enchanting_slots_and_selection": T.STACK_PANEL + "enchanting_contents_panel/pad2": T.PANEL + "enchanting_contents_panel/enchanting_confirm_panel": T.PANEL + "enchanting_contents_panel/fill2": T.PANEL + header: T.PANEL + "header/header_background": T.IMAGE + "header/legacy_pocket_close_button": T.BUTTON + "header/panel": T.PANEL + "header/panel/title_label": T.LABEL + inventory_and_enchanting_panel: T.PANEL + "inventory_and_enchanting_panel/inventory_half_screen": T.PANEL + "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": T.PANEL + "inventory_and_enchanting_panel/enchanting_half_screen": T.PANEL + "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": T.STACK_PANEL + header_and_content_stack_panel: T.STACK_PANEL + "header_and_content_stack_panel/header": T.PANEL + "header_and_content_stack_panel/inventory_and_enchanting_panel": T.PANEL + error_text_panel: T.PANEL + "error_text_panel/item_text_label": T.LABEL + enchanting_panel: T.PANEL + "enchanting_panel/bg": T.IMAGE + "enchanting_panel/root_panel": T.INPUT_PANEL + "enchanting_panel/header_and_content_stack_panel": T.STACK_PANEL + "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL + "enchanting_panel/inventory_selected_icon_button": T.BUTTON + "enchanting_panel/hold_icon": T.BUTTON + "enchanting_panel/selected_item_details_factory": T.FACTORY + "enchanting_panel/item_lock_notification_factory": T.FACTORY + "enchanting_panel/flying_item_renderer": T.CUSTOM +} + +export type EncyclopediaType = { + encyclopedia_screen: T.SCREEN + encyclopedia_selector_stack_panel: T.STACK_PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": T.PANEL + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": T.PANEL + encyclopedia_section_content_panels: T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL + "encyclopedia_section_content_panels/general_tips_sections/armor_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/banners_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/beacons_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/beds_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/blocks_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/chests_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/conduits_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/dyes_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/farming_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/fishing_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/jigsaw": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/mounts_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/navigation_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/pets_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/raids_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/ranching_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/tools_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/transportation_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/trading_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/weapons_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/anvil_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/furnace_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/loom_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/droppers_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/redstone_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/the_end_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/elytra_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/commands_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/addons_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/worlds_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/textures_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/skins_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/mashups_section": T.STACK_PANEL + "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL + adventure_mode_button: T.PANEL + adventure_mode_section: T.STACK_PANEL + "adventure_mode_section/paragraph_1": T.PANEL + "adventure_mode_section/padding_1": T.PANEL + "adventure_mode_section/paragraph_2": T.PANEL + anvil_button: T.PANEL + anvil_section: T.STACK_PANEL + "anvil_section/paragraph_1": T.PANEL + "anvil_section/padding_1": T.PANEL + "anvil_section/header_1": T.PANEL + "anvil_section/paragraph_2": T.PANEL + "anvil_section/padding_2": T.PANEL + "anvil_section/header_2": T.PANEL + "anvil_section/paragraph_3": T.PANEL + "anvil_section/padding_3": T.PANEL + "anvil_section/paragraph_4": T.PANEL + "anvil_section/padding_4": T.PANEL + "anvil_section/paragraph_5": T.PANEL + armor_button: T.PANEL + armor_section: T.STACK_PANEL + "armor_section/paragraph_1": T.PANEL + "armor_section/padding_1": T.PANEL + "armor_section/header_1": T.PANEL + "armor_section/paragraph_2": T.PANEL + "armor_section/padding_2": T.PANEL + "armor_section/paragraph_3": T.PANEL + "armor_section/padding_3": T.PANEL + "armor_section/paragraph_4": T.PANEL + "armor_section/padding_4": T.PANEL + "armor_section/header_2": T.PANEL + "armor_section/paragraph_5_keyboard": T.PANEL + "armor_section/paragraph_5_gamepad": T.PANEL + "armor_section/paragraph_5a_touch": T.PANEL + "armor_section/padding_5a_touch": T.PANEL + "armor_section/paragraph_5b_touch": T.PANEL + "armor_section/padding_5b_touch": T.PANEL + "armor_section/paragraph_5c_touch": T.PANEL + "armor_section/padding_5": T.PANEL + "armor_section/paragraph_6": T.PANEL + "armor_section/padding_6": T.PANEL + "armor_section/header_3": T.PANEL + "armor_section/paragraph_7": T.PANEL + armor_stand_button: T.PANEL + armor_stand_section: T.STACK_PANEL + "armor_stand_section/paragraph_1": T.PANEL + "armor_stand_section/padding_1": T.PANEL + "armor_stand_section/header_1": T.PANEL + "armor_stand_section/paragraph_2_keyboard": T.PANEL + "armor_stand_section/paragraph_2_gamepad": T.PANEL + "armor_stand_section/paragraph_2_touch": T.PANEL + "armor_stand_section/padding_2": T.PANEL + "armor_stand_section/paragraph_3_keyboard": T.PANEL + "armor_stand_section/paragraph_3_gamepad": T.PANEL + "armor_stand_section/paragraph_3_touch": T.PANEL + "armor_stand_section/padding_3": T.PANEL + "armor_stand_section/header_2": T.PANEL + "armor_stand_section/paragraph_4_keyboard": T.PANEL + "armor_stand_section/paragraph_4_gamepad": T.PANEL + "armor_stand_section/paragraph_4_touch": T.PANEL + "armor_stand_section/padding_4": T.PANEL + "armor_stand_section/header_3": T.PANEL + "armor_stand_section/paragraph_5": T.PANEL + banners_button: T.PANEL + banners_section: T.STACK_PANEL + "banners_section/paragraph_1": T.PANEL + "banners_section/padding_1": T.PANEL + "banners_section/paragraph_2": T.PANEL + "banners_section/padding_2": T.PANEL + "banners_section/header_1": T.PANEL + "banners_section/paragraph_3": T.PANEL + "banners_section/padding_3": T.PANEL + "banners_section/paragraph_4": T.PANEL + "banners_section/padding_4": T.PANEL + "banners_section/paragraph_5": T.PANEL + "banners_section/padding_5": T.PANEL + "banners_section/paragraph_6": T.PANEL + "banners_section/padding_6": T.PANEL + "banners_section/paragraph_7": T.PANEL + "banners_section/padding_7": T.PANEL + "banners_section/header_2": T.PANEL + "banners_section/paragraph_8": T.PANEL + "banners_section/padding_8": T.PANEL + "banners_section/header_3": T.PANEL + "banners_section/paragraph_9": T.PANEL + beacons_button: T.PANEL + beacons_section: T.STACK_PANEL + "beacons_section/paragraph_1": T.PANEL + "beacons_section/padding_1": T.PANEL + "beacons_section/paragraph_2": T.PANEL + "beacons_section/padding_2": T.PANEL + "beacons_section/header_1": T.PANEL + "beacons_section/paragraph_3": T.PANEL + "beacons_section/padding_3": T.PANEL + "beacons_section/paragraph_4": T.PANEL + "beacons_section/padding_4": T.PANEL + "beacons_section/header_2": T.PANEL + "beacons_section/paragraph_5": T.PANEL + "beacons_section/padding_5": T.PANEL + "beacons_section/paragraph_6": T.PANEL + "beacons_section/padding_6": T.PANEL + "beacons_section/paragraph_7": T.PANEL + "beacons_section/padding_7": T.PANEL + "beacons_section/paragraph_8": T.PANEL + conduits_button: T.PANEL + conduits_section: T.STACK_PANEL + "conduits_section/paragraph_1": T.PANEL + "conduits_section/padding_1": T.PANEL + "conduits_section/paragraph_2": T.PANEL + "conduits_section/padding_2": T.PANEL + "conduits_section/header_1": T.PANEL + "conduits_section/paragraph_3": T.PANEL + "conduits_section/padding_3": T.PANEL + "conduits_section/paragraph_4": T.PANEL + beds_button: T.PANEL + beds_section: T.STACK_PANEL + "beds_section/paragraph_1": T.PANEL + "beds_section/padding_1": T.PANEL + "beds_section/paragraph_2_keyboard": T.PANEL + "beds_section/paragraph_2_gamepad": T.PANEL + "beds_section/paragraph_2_touch": T.PANEL + "beds_section/padding_2": T.PANEL + "beds_section/paragraph_3": T.PANEL + "beds_section/padding_3": T.PANEL + "beds_section/paragraph_4": T.PANEL + "beds_section/padding_4": T.PANEL + "beds_section/paragraph_5": T.PANEL + blocks_button: T.PANEL + blocks_section: T.STACK_PANEL + "blocks_section/paragraph_1": T.PANEL + "blocks_section/padding_1": T.PANEL + "blocks_section/paragraph_2": T.PANEL + "blocks_section/padding_2": T.PANEL + "blocks_section/header_1": T.PANEL + "blocks_section/paragraph_3": T.PANEL + "blocks_section/padding_3": T.PANEL + "blocks_section/header_2": T.PANEL + "blocks_section/paragraph_4": T.PANEL + "blocks_section/padding_4": T.PANEL + "blocks_section/paragraph_5": T.PANEL + "blocks_section/padding_5": T.PANEL + "blocks_section/paragraph_6": T.PANEL + "blocks_section/padding_6": T.PANEL + "blocks_section/paragraph_7": T.PANEL + "blocks_section/padding_7": T.PANEL + "blocks_section/paragraph_8": T.PANEL + "blocks_section/padding_8": T.PANEL + "blocks_section/paragraph_9": T.PANEL + book_and_quill_button: T.PANEL + book_and_quill_section: T.STACK_PANEL + "book_and_quill_section/paragraph_1": T.PANEL + brewing_stand_button: T.PANEL + brewing_stand_section: T.STACK_PANEL + "brewing_stand_section/paragraph_1": T.PANEL + "brewing_stand_section/padding_1": T.PANEL + "brewing_stand_section/header_1": T.PANEL + "brewing_stand_section/paragraph_2": T.PANEL + "brewing_stand_section/padding_2": T.PANEL + "brewing_stand_section/header_2": T.PANEL + "brewing_stand_section/paragraph_3": T.PANEL + "brewing_stand_section/padding_3": T.PANEL + "brewing_stand_section/paragraph_4": T.PANEL + cauldron_button: T.PANEL + cauldron_section: T.STACK_PANEL + "cauldron_section/paragraph_1": T.PANEL + "cauldron_section/padding_1": T.PANEL + "cauldron_section/header_1": T.PANEL + "cauldron_section/paragraph_2_keyboard": T.PANEL + "cauldron_section/paragraph_2_gamepad": T.PANEL + "cauldron_section/paragraph_2_touch": T.PANEL + "cauldron_section/padding_2": T.PANEL + "cauldron_section/paragraph_3": T.PANEL + "cauldron_section/padding_3": T.PANEL + "cauldron_section/header_2": T.PANEL + "cauldron_section/paragraph_4_keyboard": T.PANEL + "cauldron_section/paragraph_4_gamepad": T.PANEL + "cauldron_section/paragraph_4_touch": T.PANEL + "cauldron_section/padding_4": T.PANEL + "cauldron_section/header_3": T.PANEL + "cauldron_section/paragraph_5_keyboard": T.PANEL + "cauldron_section/paragraph_5_gamepad": T.PANEL + "cauldron_section/paragraph_5_touch": T.PANEL + "cauldron_section/padding_5": T.PANEL + "cauldron_section/paragraph_6": T.PANEL + chests_button: T.PANEL + chests_section: T.STACK_PANEL + "chests_section/paragraph_1_keyboard": T.PANEL + "chests_section/paragraph_1_gamepad": T.PANEL + "chests_section/paragraph_1_touch": T.PANEL + "chests_section/padding_1": T.PANEL + "chests_section/paragraph_2": T.PANEL + "chests_section/padding_2": T.PANEL + "chests_section/paragraph_3": T.PANEL + command_blocks_button: T.PANEL + command_blocks_section: T.STACK_PANEL + "command_blocks_section/paragraph_1": T.PANEL + "command_blocks_section/padding_1": T.PANEL + "command_blocks_section/paragraph_2": T.PANEL + "command_blocks_section/padding_2": T.PANEL + "command_blocks_section/paragraph_3": T.PANEL + "command_blocks_section/padding_3": T.PANEL + "command_blocks_section/paragraph_4": T.PANEL + "command_blocks_section/padding_4": T.PANEL + "command_blocks_section/paragraph_5": T.PANEL + "command_blocks_section/paragraph_5_1": T.PANEL + "command_blocks_section/paragraph_5_2": T.PANEL + "command_blocks_section/paragraph_5_3": T.PANEL + "command_blocks_section/padding_5": T.PANEL + "command_blocks_section/paragraph_6": T.PANEL + "command_blocks_section/paragraph_6_1": T.PANEL + "command_blocks_section/paragraph_6_2": T.PANEL + "command_blocks_section/padding_6": T.PANEL + "command_blocks_section/paragraph_7": T.PANEL + "command_blocks_section/paragraph_7_1": T.PANEL + "command_blocks_section/paragraph_7_2": T.PANEL + "command_blocks_section/padding_7": T.PANEL + "command_blocks_section/paragraph_8": T.PANEL + commands_button: T.PANEL + commands_section: T.STACK_PANEL + "commands_section/paragraph_1": T.PANEL + "commands_section/padding_1": T.PANEL + "commands_section/paragraph_2": T.PANEL + crafting_table_button: T.PANEL + crafting_table_section: T.STACK_PANEL + "crafting_table_section/paragraph_1": T.PANEL + "crafting_table_section/padding_1": T.PANEL + "crafting_table_section/paragraph_2_keyboard": T.PANEL + "crafting_table_section/paragraph_2_gamepad": T.PANEL + "crafting_table_section/paragraph_2_touch": T.PANEL + creative_mode_button: T.PANEL + creative_mode_section: T.STACK_PANEL + "creative_mode_section/paragraph_1": T.PANEL + "creative_mode_section/padding_1": T.PANEL + "creative_mode_section/header_1": T.PANEL + "creative_mode_section/paragraph_2": T.PANEL + "creative_mode_section/padding_2": T.PANEL + "creative_mode_section/paragraph_3": T.PANEL + "creative_mode_section/padding_3": T.PANEL + "creative_mode_section/header_2": T.PANEL + "creative_mode_section/paragraph_4_keyboard": T.PANEL + "creative_mode_section/paragraph_4_gamepad": T.PANEL + "creative_mode_section/paragraph_4a_touch_joystick_tap": T.PANEL + "creative_mode_section/paragraph_4a_touch_classic_dpad": T.PANEL + "creative_mode_section/paragraph_4a_touch_joystick_crosshair": T.PANEL + "creative_mode_section/padding_4a_touch": T.PANEL + "creative_mode_section/paragraph_4b_touch_joystick_tap": T.PANEL + "creative_mode_section/paragraph_4b_touch_classic_dpad": T.PANEL + "creative_mode_section/paragraph_4b_touch_joystick_crosshair": T.PANEL + difficulty_button: T.PANEL + difficulty_section: T.STACK_PANEL + "difficulty_section/paragraph_1": T.PANEL + "difficulty_section/padding_1": T.PANEL + "difficulty_section/header_1": T.PANEL + "difficulty_section/paragraph_2": T.PANEL + "difficulty_section/padding_2": T.PANEL + "difficulty_section/header_2": T.PANEL + "difficulty_section/paragraph_3": T.PANEL + "difficulty_section/padding_3": T.PANEL + "difficulty_section/header_3": T.PANEL + "difficulty_section/paragraph_4": T.PANEL + "difficulty_section/padding_4": T.PANEL + "difficulty_section/header_4": T.PANEL + "difficulty_section/paragraph_5": T.PANEL + dispensers_button: T.PANEL + dispensers_section: T.STACK_PANEL + "dispensers_section/paragraph_1": T.PANEL + "dispensers_section/padding_1": T.PANEL + "dispensers_section/paragraph_2_keyboard": T.PANEL + "dispensers_section/paragraph_2_gamepad": T.PANEL + "dispensers_section/paragraph_2_touch": T.PANEL + "dispensers_section/padding_2": T.PANEL + "dispensers_section/header_1": T.PANEL + "dispensers_section/paragraph_3": T.PANEL + "dispensers_section/padding_3": T.PANEL + "dispensers_section/paragraph_4": T.PANEL + droppers_button: T.PANEL + droppers_section: T.STACK_PANEL + "droppers_section/paragraph_1_keyboard": T.PANEL + "droppers_section/paragraph_1_gamepad": T.PANEL + "droppers_section/paragraph_1_touch": T.PANEL + "droppers_section/padding_1": T.PANEL + "droppers_section/header_1": T.PANEL + "droppers_section/paragraph_2": T.PANEL + dyes_button: T.PANEL + dyes_section: T.STACK_PANEL + "dyes_section/paragraph_1": T.PANEL + "dyes_section/padding_1": T.PANEL + "dyes_section/paragraph_2": T.PANEL + "dyes_section/padding_2": T.PANEL + "dyes_section/paragraph_3": T.PANEL + "dyes_section/padding_3": T.PANEL + "dyes_section/paragraph_4": T.PANEL + "dyes_section/padding_4": T.PANEL + "dyes_section/paragraph_5": T.PANEL + "dyes_section/padding_5": T.PANEL + "dyes_section/paragraph_6": T.PANEL + "dyes_section/padding_6": T.PANEL + "dyes_section/paragraph_7": T.PANEL + elytra_button: T.PANEL + elytra_section: T.STACK_PANEL + "elytra_section/paragraph_1": T.PANEL + "elytra_section/padding_1": T.PANEL + "elytra_section/paragraph_2": T.PANEL + "elytra_section/padding_2": T.PANEL + "elytra_section/header_1": T.PANEL + "elytra_section/paragraph_3_keyboard": T.PANEL + "elytra_section/paragraph_3_gamepad": T.PANEL + "elytra_section/paragraph_3_touch": T.PANEL + "elytra_section/padding_3": T.PANEL + "elytra_section/paragraph_4": T.PANEL + "elytra_section/paragraph_4_touch": T.PANEL + "elytra_section/padding_4": T.PANEL + "elytra_section/paragraph_5": T.PANEL + "elytra_section/padding_5": T.PANEL + "elytra_section/header_2": T.PANEL + "elytra_section/paragraph_6": T.PANEL + enchanting_table_button: T.PANEL + enchanting_table_section: T.STACK_PANEL + "enchanting_table_section/paragraph_1": T.PANEL + "enchanting_table_section/padding_1": T.PANEL + "enchanting_table_section/header_1": T.PANEL + "enchanting_table_section/paragraph_2": T.PANEL + "enchanting_table_section/padding_2": T.PANEL + "enchanting_table_section/paragraph_3": T.PANEL + "enchanting_table_section/padding_3": T.PANEL + "enchanting_table_section/header_2": T.PANEL + "enchanting_table_section/paragraph_4": T.PANEL + "enchanting_table_section/padding_4": T.PANEL + "enchanting_table_section/header_3": T.PANEL + "enchanting_table_section/paragraph_5": T.PANEL + end_cities_button: T.PANEL + end_cities_section: T.STACK_PANEL + "end_cities_section/paragraph_1": T.PANEL + "end_cities_section/padding_1": T.PANEL + "end_cities_section/paragraph_2": T.PANEL + eye_of_ender_button: T.PANEL + eye_of_ender_section: T.STACK_PANEL + "eye_of_ender_section/paragraph_1": T.PANEL + "eye_of_ender_section/padding_1": T.PANEL + "eye_of_ender_section/paragraph_2": T.PANEL + farming_button: T.PANEL + farming_section: T.STACK_PANEL + "farming_section/paragraph_1": T.PANEL + "farming_section/padding_1": T.PANEL + "farming_section/header_1": T.PANEL + "farming_section/paragraph_2": T.PANEL + "farming_section/padding_2": T.PANEL + "farming_section/paragraph_3": T.PANEL + "farming_section/padding_3": T.PANEL + "farming_section/header_2": T.PANEL + "farming_section/paragraph_4": T.PANEL + "farming_section/padding_4": T.PANEL + "farming_section/paragraph_5": T.PANEL + "farming_section/padding_5": T.PANEL + "farming_section/paragraph_6": T.PANEL + "farming_section/padding_6": T.PANEL + "farming_section/paragraph_7": T.PANEL + fireworks_button: T.PANEL + fireworks_section: T.STACK_PANEL + "fireworks_section/paragraph_1": T.PANEL + "fireworks_section/padding_1": T.PANEL + "fireworks_section/paragraph_2": T.PANEL + "fireworks_section/padding_2": T.PANEL + "fireworks_section/header_1": T.PANEL + "fireworks_section/paragraph_3_keyboard": T.PANEL + "fireworks_section/paragraph_3_gamepad": T.PANEL + "fireworks_section/paragraph_3_touch": T.PANEL + "fireworks_section/padding_3": T.PANEL + "fireworks_section/paragraph_4": T.PANEL + "fireworks_section/padding_4": T.PANEL + "fireworks_section/header_2": T.PANEL + "fireworks_section/paragraph_5": T.PANEL + "fireworks_section/padding_5": T.PANEL + "fireworks_section/paragraph_6": T.PANEL + "fireworks_section/padding_5a": T.PANEL + "fireworks_section/paragraph_6_1": T.PANEL + "fireworks_section/padding_5b": T.PANEL + "fireworks_section/paragraph_6_2": T.PANEL + "fireworks_section/padding_5c": T.PANEL + "fireworks_section/paragraph_6_3": T.PANEL + "fireworks_section/padding_5d": T.PANEL + "fireworks_section/paragraph_6_4": T.PANEL + "fireworks_section/padding_5e": T.PANEL + "fireworks_section/paragraph_6_5": T.PANEL + "fireworks_section/padding_5f": T.PANEL + "fireworks_section/paragraph_6_6": T.PANEL + "fireworks_section/padding_6": T.PANEL + "fireworks_section/header_3": T.PANEL + "fireworks_section/paragraph_7": T.PANEL + jigsaw_blocks_button: T.PANEL + jigsaw_blocks_section: T.STACK_PANEL + "jigsaw_blocks_section/paragraph_1": T.PANEL + "jigsaw_blocks_section/padding_1": T.PANEL + "jigsaw_blocks_section/header_1": T.PANEL + "jigsaw_blocks_section/paragraph_2": T.PANEL + "jigsaw_blocks_section/padding_2": T.PANEL + "jigsaw_blocks_section/header_2": T.PANEL + "jigsaw_blocks_section/paragraph_3": T.PANEL + "jigsaw_blocks_section/padding_3": T.PANEL + "jigsaw_blocks_section/paragraph_4": T.PANEL + "jigsaw_blocks_section/padding_4": T.PANEL + "jigsaw_blocks_section/paragraph_5": T.PANEL + "jigsaw_blocks_section/padding_5": T.PANEL + "jigsaw_blocks_section/paragraph_6": T.PANEL + "jigsaw_blocks_section/padding_6": T.PANEL + "jigsaw_blocks_section/paragraph_7": T.PANEL + "jigsaw_blocks_section/padding_7": T.PANEL + "jigsaw_blocks_section/paragraph_8": T.PANEL + "jigsaw_blocks_section/padding_8": T.PANEL + "jigsaw_blocks_section/paragraph_9": T.PANEL + fishing_button: T.PANEL + fishing_section: T.STACK_PANEL + "fishing_section/paragraph_1": T.PANEL + "fishing_section/padding_1": T.PANEL + "fishing_section/header_1": T.PANEL + "fishing_section/paragraph_2_keyboard": T.PANEL + "fishing_section/paragraph_2_gamepad": T.PANEL + "fishing_section/paragraph_2_touch": T.PANEL + "fishing_section/padding_2": T.PANEL + "fishing_section/header_2": T.PANEL + "fishing_section/paragraph_3": T.PANEL + "fishing_section/padding_3": T.PANEL + "fishing_section/paragraph_4_keyboard": T.PANEL + "fishing_section/paragraph_4_gamepad": T.PANEL + "fishing_section/paragraph_4_touch": T.PANEL + furnace_button: T.PANEL + furnace_section: T.STACK_PANEL + "furnace_section/paragraph_1": T.PANEL + "furnace_section/padding_1": T.PANEL + "furnace_section/paragraph_2_keyboard": T.PANEL + "furnace_section/paragraph_2_gamepad": T.PANEL + "furnace_section/paragraph_2_touch": T.PANEL + "furnace_section/padding_2": T.PANEL + "furnace_section/paragraph_3": T.PANEL + game_settings_button: T.PANEL + game_settings_section: T.STACK_PANEL + "game_settings_section/paragraph_1": T.PANEL + "game_settings_section/padding_1": T.PANEL + "game_settings_section/paragraph_2": T.PANEL + "game_settings_section/padding_2": T.PANEL + "game_settings_section/paragraph_3": T.PANEL + "game_settings_section/padding_3": T.PANEL + "game_settings_section/paragraph_4": T.PANEL + "game_settings_section/padding_4": T.PANEL + "game_settings_section/header_1": T.PANEL + "game_settings_section/paragraph_5": T.PANEL + "game_settings_section/padding_5": T.PANEL + "game_settings_section/paragraph_6": T.PANEL + "game_settings_section/padding_6": T.PANEL + "game_settings_section/paragraph_7": T.PANEL + "game_settings_section/paragraph_7_1": T.PANEL + "game_settings_section/paragraph_7_2": T.PANEL + "game_settings_section/padding_7": T.PANEL + "game_settings_section/paragraph_8": T.PANEL + "game_settings_section/padding_8": T.PANEL + "game_settings_section/header_2": T.PANEL + "game_settings_section/paragraph_9": T.PANEL + "game_settings_section/padding_9": T.PANEL + "game_settings_section/paragraph_10": T.PANEL + "game_settings_section/padding_10": T.PANEL + "game_settings_section/paragraph_11": T.PANEL + "game_settings_section/padding_11": T.PANEL + "game_settings_section/paragraph_12": T.PANEL + "game_settings_section/padding_12": T.PANEL + "game_settings_section/paragraph_13": T.PANEL + "game_settings_section/padding_13": T.PANEL + "game_settings_section/paragraph_14": T.PANEL + "game_settings_section/padding_14": T.PANEL + "game_settings_section/paragraph_15": T.PANEL + "game_settings_section/padding_15": T.PANEL + "game_settings_section/paragraph_16": T.PANEL + "game_settings_section/padding_16": T.PANEL + "game_settings_section/paragraph_17": T.PANEL + hoppers_button: T.PANEL + hoppers_section: T.STACK_PANEL + "hoppers_section/paragraph_1": T.PANEL + "hoppers_section/padding_1": T.PANEL + "hoppers_section/paragraph_2": T.PANEL + "hoppers_section/padding_2": T.PANEL + "hoppers_section/header_1": T.PANEL + "hoppers_section/paragraph_3": T.PANEL + "hoppers_section/padding_3": T.PANEL + "hoppers_section/paragraph_4": T.PANEL + host_and_player_options_button: T.PANEL + host_and_player_options_section: T.STACK_PANEL + "host_and_player_options_section/paragraph_1_not_touch": T.PANEL + "host_and_player_options_section/paragraph_1_touch": T.PANEL + jukebox_button: T.PANEL + jukebox_section: T.STACK_PANEL + "jukebox_section/paragraph_1": T.PANEL + "jukebox_section/padding_1": T.PANEL + "jukebox_section/header_1": T.PANEL + "jukebox_section/paragraph_2_not_touch": T.PANEL + "jukebox_section/paragraph_2_touch": T.PANEL + "jukebox_section/padding_2": T.PANEL + "jukebox_section/header_2": T.PANEL + "jukebox_section/paragraph_3": T.PANEL + "jukebox_section/padding_3": T.PANEL + "jukebox_section/paragraph_4": T.PANEL + "jukebox_section/padding_4": T.PANEL + "jukebox_section/paragraph_5": T.PANEL + "jukebox_section/padding_5": T.PANEL + "jukebox_section/paragraph_6": T.PANEL + "jukebox_section/padding_6": T.PANEL + "jukebox_section/header_3": T.PANEL + "jukebox_section/paragraph_7": T.PANEL + "jukebox_section/padding_7": T.PANEL + "jukebox_section/paragraph_8": T.PANEL + loom_button: T.PANEL + loom_section: T.STACK_PANEL + "loom_section/paragraph_1": T.PANEL + "loom_section/padding_1": T.PANEL + "loom_section/header_1": T.PANEL + "loom_section/paragraph_2": T.PANEL + "loom_section/padding_2": T.PANEL + "loom_section/paragraph_3": T.PANEL + "loom_section/padding_3": T.PANEL + "loom_section/header_2": T.PANEL + "loom_section/paragraph_4": T.PANEL + realms_stories_button: T.PANEL + realms_stories_section: T.STACK_PANEL + "realms_stories_section/paragraph_1": T.PANEL + "realms_stories_section/padding_1": T.PANEL + "realms_stories_section/header_1": T.PANEL + "realms_stories_section/paragraph_2": T.PANEL + "realms_stories_section/padding_2": T.PANEL + "realms_stories_section/header_2": T.PANEL + "realms_stories_section/paragraph_3": T.PANEL + "realms_stories_section/padding_3": T.PANEL + "realms_stories_section/header_3": T.PANEL + "realms_stories_section/paragraph_4": T.PANEL + "realms_stories_section/padding_4": T.PANEL + "realms_stories_section/header_4": T.PANEL + "realms_stories_section/paragraph_5": T.PANEL + "realms_stories_section/padding_5": T.PANEL + "realms_stories_section/header_5": T.PANEL + "realms_stories_section/paragraph_6": T.PANEL + smithing_table_button: T.PANEL + smithing_table_section: T.STACK_PANEL + "smithing_table_section/paragraph_1": T.PANEL + "smithing_table_section/padding_1": T.PANEL + "smithing_table_section/paragraph_2": T.PANEL + "smithing_table_section/padding_2": T.PANEL + "smithing_table_section/header_1": T.PANEL + "smithing_table_section/paragraph_3": T.PANEL + "smithing_table_section/padding_3": T.PANEL + "smithing_table_section/paragraph_4": T.PANEL + "smithing_table_section/padding_4": T.PANEL + "smithing_table_section/paragraph_5": T.PANEL + "smithing_table_section/padding_5": T.PANEL + "smithing_table_section/paragraph_6": T.PANEL + "smithing_table_section/padding_6": T.PANEL + "smithing_table_section/header_2": T.PANEL + "smithing_table_section/paragraph_7": T.PANEL + "smithing_table_section/padding_7": T.PANEL + "smithing_table_section/paragraph_8": T.PANEL + "smithing_table_section/padding_8": T.PANEL + "smithing_table_section/paragraph_9": T.PANEL + mounts_button: T.PANEL + mounts_section: T.STACK_PANEL + "mounts_section/paragraph_1": T.PANEL + "mounts_section/padding_1": T.PANEL + "mounts_section/paragraph_2": T.PANEL + "mounts_section/padding_2": T.PANEL + "mounts_section/header_1": T.PANEL + "mounts_section/paragraph_3_not_touch": T.PANEL + "mounts_section/paragraph_3_touch": T.PANEL + "mounts_section/padding_3": T.PANEL + "mounts_section/paragraph_4": T.PANEL + "mounts_section/padding_4": T.PANEL + "mounts_section/header_2": T.PANEL + "mounts_section/paragraph_5": T.PANEL + "mounts_section/padding_5": T.PANEL + "mounts_section/paragraph_6": T.PANEL + "mounts_section/padding_6": T.PANEL + "mounts_section/paragraph_6b": T.PANEL + "mounts_section/padding_6b": T.PANEL + "mounts_section/paragraph_7": T.PANEL + "mounts_section/padding_7": T.PANEL + "mounts_section/paragraph_8": T.PANEL + "mounts_section/padding_8": T.PANEL + "mounts_section/header_3": T.PANEL + "mounts_section/paragraph_9": T.PANEL + "mounts_section/padding_9": T.PANEL + "mounts_section/paragraph_10": T.PANEL + "mounts_section/padding_10": T.PANEL + "mounts_section/paragraph_11": T.PANEL + "mounts_section/padding_11": T.PANEL + "mounts_section/paragraph_12": T.PANEL + "mounts_section/padding_12": T.PANEL + "mounts_section/header_4": T.PANEL + "mounts_section/paragraph_13": T.PANEL + "mounts_section/padding_13": T.PANEL + "mounts_section/paragraph_14": T.PANEL + "mounts_section/padding_14": T.PANEL + "mounts_section/header_5": T.PANEL + "mounts_section/paragraph_15_not_touch": T.PANEL + "mounts_section/paragraph_15a_touch": T.PANEL + "mounts_section/padding_15": T.PANEL + "mounts_section/paragraph_15b_touch": T.PANEL + navigation_button: T.PANEL + navigation_section: T.STACK_PANEL + "navigation_section/paragraph_1": T.PANEL + "navigation_section/padding_1": T.PANEL + "navigation_section/paragraph_2": T.PANEL + "navigation_section/padding_2": T.PANEL + "navigation_section/header_1": T.PANEL + "navigation_section/paragraph_3": T.PANEL + "navigation_section/padding_3": T.PANEL + "navigation_section/paragraph_4": T.PANEL + "navigation_section/padding_4": T.PANEL + "navigation_section/paragraph_5": T.PANEL + "navigation_section/padding_5": T.PANEL + "navigation_section/paragraph_6": T.PANEL + "navigation_section/padding_6": T.PANEL + "navigation_section/paragraph_7": T.PANEL + "navigation_section/padding_7": T.PANEL + "navigation_section/header_2": T.PANEL + "navigation_section/paragraph_8": T.PANEL + "navigation_section/padding_8": T.PANEL + "navigation_section/paragraph_9": T.PANEL + "navigation_section/padding_9": T.PANEL + "navigation_section/header_3": T.PANEL + "navigation_section/paragraph_10": T.PANEL + nether_portals_button: T.PANEL + nether_portals_section: T.STACK_PANEL + "nether_portals_section/paragraph_1": T.PANEL + "nether_portals_section/padding_1": T.PANEL + "nether_portals_section/paragraph_2": T.PANEL + "nether_portals_section/padding_2": T.PANEL + "nether_portals_section/paragraph_3": T.PANEL + "nether_portals_section/padding_3": T.PANEL + "nether_portals_section/image_1": T.IMAGE + pets_button: T.PANEL + pets_section: T.STACK_PANEL + "pets_section/header_1": T.PANEL + "pets_section/paragraph_1_not_touch": T.PANEL + "pets_section/paragraph_1_touch": T.PANEL + "pets_section/padding_1": T.PANEL + "pets_section/header_2": T.PANEL + "pets_section/paragraph_2": T.PANEL + "pets_section/padding_2": T.PANEL + "pets_section/header_3": T.PANEL + "pets_section/paragraph_3": T.PANEL + "pets_section/padding_3": T.PANEL + "pets_section/header_4": T.PANEL + "pets_section/paragraph_4": T.PANEL + raids_button: T.PANEL + raids_section: T.STACK_PANEL + "raids_section/paragraph_1": T.PANEL + "raids_section/padding_1": T.PANEL + "raids_section/paragraph_2": T.PANEL + "raids_section/padding_2": T.PANEL + "raids_section/header_1": T.PANEL + "raids_section/paragraph_3": T.PANEL + ranching_button: T.PANEL + ranching_section: T.STACK_PANEL + "ranching_section/paragraph_1": T.PANEL + "ranching_section/padding_1": T.PANEL + "ranching_section/header_1": T.PANEL + "ranching_section/paragraph_2": T.PANEL + "ranching_section/padding_2": T.PANEL + "ranching_section/paragraph_3": T.PANEL + "ranching_section/padding_3": T.PANEL + "ranching_section/header_2": T.PANEL + "ranching_section/paragraph_4": T.PANEL + "ranching_section/padding_4": T.PANEL + "ranching_section/paragraph_5": T.PANEL + redstone_button: T.PANEL + redstone_section: T.STACK_PANEL + "redstone_section/paragraph_1": T.PANEL + "redstone_section/padding_1": T.PANEL + "redstone_section/header_1": T.PANEL + "redstone_section/paragraph_2": T.PANEL + "redstone_section/padding_2": T.PANEL + "redstone_section/paragraph_3": T.PANEL + "redstone_section/padding_3": T.PANEL + "redstone_section/paragraph_4": T.PANEL + "redstone_section/padding_4": T.PANEL + "redstone_section/paragraph_5": T.PANEL + scaffolding_button: T.PANEL + scaffolding_section: T.STACK_PANEL + "scaffolding_section/header_1": T.PANEL + "scaffolding_section/paragraph_1_keyboard": T.PANEL + "scaffolding_section/paragraph_1_gamepad": T.PANEL + "scaffolding_section/paragraph_1a_touch": T.PANEL + "scaffolding_section/padding_1a_touch": T.PANEL + "scaffolding_section/paragraph_1b_touch": T.PANEL + "scaffolding_section/padding_1b_touch": T.PANEL + "scaffolding_section/paragraph_1c_touch": T.PANEL + "scaffolding_section/padding_1": T.PANEL + "scaffolding_section/header_2": T.PANEL + "scaffolding_section/paragraph_2": T.PANEL + "scaffolding_section/image_1": T.IMAGE + "scaffolding_section/padding_2": T.PANEL + "scaffolding_section/header_3": T.PANEL + "scaffolding_section/paragraph_3": T.PANEL + "scaffolding_section/padding_3": T.PANEL + structure_blocks_button: T.PANEL + structure_blocks_section: T.STACK_PANEL + "structure_blocks_section/paragraph_1": T.PANEL + "structure_blocks_section/padding_1": T.PANEL + "structure_blocks_section/header_1": T.PANEL + "structure_blocks_section/paragraph_2": T.PANEL + "structure_blocks_section/padding_2": T.PANEL + "structure_blocks_section/header_2": T.PANEL + "structure_blocks_section/paragraph_3": T.PANEL + "structure_blocks_section/padding_3": T.PANEL + "structure_blocks_section/paragraph_4": T.PANEL + "structure_blocks_section/padding_4": T.PANEL + "structure_blocks_section/paragraph_5": T.PANEL + "structure_blocks_section/padding_5": T.PANEL + "structure_blocks_section/paragraph_6": T.PANEL + "structure_blocks_section/padding_6": T.PANEL + "structure_blocks_section/paragraph_7": T.PANEL + "structure_blocks_section/padding_7": T.PANEL + "structure_blocks_section/header_3": T.PANEL + "structure_blocks_section/paragraph_8": T.PANEL + "structure_blocks_section/padding_8": T.PANEL + "structure_blocks_section/paragraph_9_keyboard": T.PANEL + "structure_blocks_section/paragraph_9_gamepad": T.PANEL + "structure_blocks_section/paragraph_9_touch": T.PANEL + "structure_blocks_section/padding_9": T.PANEL + "structure_blocks_section/header_4": T.PANEL + "structure_blocks_section/paragraph_10": T.PANEL + "structure_blocks_section/padding_10": T.PANEL + "structure_blocks_section/header_5": T.PANEL + "structure_blocks_section/paragraph_11": T.PANEL + "structure_blocks_section/padding_11": T.PANEL + "structure_blocks_section/paragraph_12": T.PANEL + "structure_blocks_section/padding_12": T.PANEL + "structure_blocks_section/paragraph_13": T.PANEL + "structure_blocks_section/padding_13": T.PANEL + "structure_blocks_section/header_6": T.PANEL + "structure_blocks_section/paragraph_14": T.PANEL + "structure_blocks_section/padding_14": T.PANEL + "structure_blocks_section/paragraph_15": T.PANEL + "structure_blocks_section/padding_15": T.PANEL + "structure_blocks_section/header_7": T.PANEL + "structure_blocks_section/paragraph_16": T.PANEL + "structure_blocks_section/padding_16": T.PANEL + "structure_blocks_section/paragraph_17": T.PANEL + shulker_boxes_button: T.PANEL + shulker_boxes_section: T.STACK_PANEL + "shulker_boxes_section/paragraph_1": T.PANEL + the_end_button: T.PANEL + the_end_section: T.STACK_PANEL + "the_end_section/paragraph_1": T.PANEL + "the_end_section/padding_1": T.PANEL + "the_end_section/paragraph_2": T.PANEL + "the_end_section/padding_2": T.PANEL + "the_end_section/header_1": T.PANEL + "the_end_section/paragraph_3": T.PANEL + "the_end_section/padding_3": T.PANEL + "the_end_section/paragraph_4": T.PANEL + "the_end_section/padding_4": T.PANEL + "the_end_section/paragraph_5": T.PANEL + tools_button: T.PANEL + tools_section: T.STACK_PANEL + "tools_section/paragraph_1": T.PANEL + "tools_section/padding_1": T.PANEL + "tools_section/paragraph_2": T.PANEL + "tools_section/padding_2": T.PANEL + "tools_section/header_1": T.PANEL + "tools_section/paragraph_3": T.PANEL + "tools_section/padding_3": T.PANEL + "tools_section/paragraph_4": T.PANEL + "tools_section/padding_4": T.PANEL + "tools_section/paragraph_5_not_touch": T.PANEL + "tools_section/paragraph_5_touch": T.PANEL + "tools_section/padding_5": T.PANEL + "tools_section/paragraph_6_not_touch": T.PANEL + "tools_section/paragraph_6_touch": T.PANEL + "tools_section/padding_6": T.PANEL + "tools_section/paragraph_7": T.PANEL + "tools_section/padding_7": T.PANEL + "tools_section/header_2": T.PANEL + "tools_section/paragraph_8": T.PANEL + "tools_section/padding_8": T.PANEL + "tools_section/paragraph_9": T.PANEL + "tools_section/padding_9": T.PANEL + "tools_section/paragraph_10": T.PANEL + "tools_section/padding_10": T.PANEL + "tools_section/paragraph_11": T.PANEL + "tools_section/padding_11": T.PANEL + "tools_section/paragraph_12": T.PANEL + trading_button: T.PANEL + trading_section: T.STACK_PANEL + "trading_section/paragraph_1": T.PANEL + "trading_section/padding_1": T.PANEL + "trading_section/header_1": T.PANEL + "trading_section/paragraph_2": T.PANEL + "trading_section/padding_2": T.PANEL + "trading_section/paragraph_3": T.PANEL + "trading_section/padding_3": T.PANEL + "trading_section/paragraph_4": T.PANEL + transportation_button: T.PANEL + transportation_section: T.STACK_PANEL + "transportation_section/paragraph_1": T.PANEL + "transportation_section/padding_1": T.PANEL + "transportation_section/header_1": T.PANEL + "transportation_section/paragraph_2": T.PANEL + "transportation_section/paragraph_2_touch": T.PANEL + "transportation_section/padding_2": T.PANEL + "transportation_section/paragraph_3_keyboard": T.PANEL + "transportation_section/paragraph_3_gamepad": T.PANEL + "transportation_section/paragraph_3a_touch": T.PANEL + "transportation_section/padding_3a": T.PANEL + "transportation_section/paragraph_3b_touch": T.PANEL + "transportation_section/padding_3b": T.PANEL + "transportation_section/paragraph_3c_touch": T.PANEL + "transportation_section/padding_3": T.PANEL + "transportation_section/header_2": T.PANEL + "transportation_section/paragraph_4": T.PANEL + "transportation_section/paragraph_4_touch": T.PANEL + "transportation_section/padding_4": T.PANEL + "transportation_section/paragraph_5_keyboard": T.PANEL + "transportation_section/paragraph_5_gamepad": T.PANEL + "transportation_section/paragraph_5a_touch": T.PANEL + "transportation_section/padding_5a": T.PANEL + "transportation_section/paragraph_5b_touch": T.PANEL + "transportation_section/padding_5b": T.PANEL + "transportation_section/paragraph_5c_touch": T.PANEL + weapons_button: T.PANEL + weapons_section: T.STACK_PANEL + "weapons_section/header_1": T.PANEL + "weapons_section/paragraph_1": T.PANEL + "weapons_section/padding_1": T.PANEL + "weapons_section/paragraph_2_not_touch": T.PANEL + "weapons_section/paragraph_2_touch": T.PANEL + "weapons_section/padding_2": T.PANEL + "weapons_section/header_2": T.PANEL + "weapons_section/paragraph_3_not_touch": T.PANEL + "weapons_section/paragraph_3_touch": T.PANEL + "weapons_section/padding_3": T.PANEL + "weapons_section/paragraph_4": T.PANEL + "weapons_section/padding_5": T.PANEL + "weapons_section/header_3": T.PANEL + "weapons_section/paragraph_5_not_touch": T.PANEL + "weapons_section/paragraph_5a_touch": T.PANEL + "weapons_section/padding_5a_touch": T.PANEL + "weapons_section/paragraph_5b_touch": T.PANEL + "weapons_section/padding_5b_touch": T.PANEL + "weapons_section/paragraph_5c_touch": T.PANEL + "weapons_section/padding_5c_touch": T.PANEL + "weapons_section/paragraph_5d_touch": T.PANEL + "weapons_section/padding_6": T.PANEL + "weapons_section/header_4": T.PANEL + "weapons_section/paragraph_6_not_touch": T.PANEL + "weapons_section/paragraph_6_touch": T.PANEL + "weapons_section/padding_7": T.PANEL + "weapons_section/header_5": T.PANEL + "weapons_section/paragraph_7": T.PANEL + minecoins_button: T.PANEL + minecoins_section: T.STACK_PANEL + "minecoins_section/paragraph_1": T.PANEL + "minecoins_section/padding_1": T.PANEL + "minecoins_section/paragraph_2": T.PANEL + "minecoins_section/padding_2": T.PANEL + "minecoins_section/get_minecoins_button": T.BUTTON + "minecoins_section/padding_3": T.PANEL + "minecoins_section/header_1": T.PANEL + "minecoins_section/paragraph_3": T.PANEL + addons_button: T.PANEL + addons_section: T.STACK_PANEL + "addons_section/paragraph_1": T.PANEL + "addons_section/padding_1": T.PANEL + "addons_section/paragraph_2": T.PANEL + "addons_section/padding_2": T.PANEL + "addons_section/header_1": T.PANEL + "addons_section/paragraph_3": T.PANEL + "addons_section/padding_3": T.PANEL + "addons_section/paragraph_4": T.PANEL + "addons_section/padding_4": T.PANEL + "addons_section/paragraph_5": T.PANEL + "addons_section/addons_faq_button": T.BUTTON + worlds_button: T.PANEL + worlds_section: T.STACK_PANEL + "worlds_section/paragraph_1": T.PANEL + "worlds_section/padding_1": T.PANEL + "worlds_section/paragraph_2": T.PANEL + "worlds_section/padding_2": T.PANEL + "worlds_section/paragraph_3": T.PANEL + "worlds_section/padding_3": T.PANEL + "worlds_section/paragraph_4": T.PANEL + "worlds_section/padding_4": T.PANEL + "worlds_section/header_1": T.PANEL + "worlds_section/paragraph_5": T.PANEL + "worlds_section/padding_5": T.PANEL + "worlds_section/paragraph_6": T.PANEL + "worlds_section/padding_6": T.PANEL + "worlds_section/header_2": T.PANEL + "worlds_section/paragraph_7": T.PANEL + "worlds_section/padding_7": T.PANEL + "worlds_section/paragraph_8": T.PANEL + "worlds_section/padding_8": T.PANEL + "worlds_section/header_3": T.PANEL + "worlds_section/paragraph_9": T.PANEL + "worlds_section/padding_9": T.PANEL + "worlds_section/paragraph_10": T.PANEL + "worlds_section/padding_10": T.PANEL + "worlds_section/header_4": T.PANEL + "worlds_section/paragraph_11": T.PANEL + "worlds_section/padding_11": T.PANEL + "worlds_section/paragraph_12": T.PANEL + "worlds_section/padding_12": T.PANEL + textures_button: T.PANEL + textures_section: T.STACK_PANEL + "textures_section/paragraph_1": T.PANEL + skins_button: T.PANEL + skins_section: T.STACK_PANEL + "skins_section/paragraph_1": T.PANEL + mashups_button: T.PANEL + mashups_section: T.STACK_PANEL + "mashups_section/paragraph_1": T.PANEL +} + +export type ExpandedSkinPackType = { + banner_fill: T.IMAGE + title_label: T.LABEL + label: T.LABEL + undo_image: T.IMAGE + lock_icon: T.IMAGE + skin_button: T.BUTTON + "skin_button/hover": T.IMAGE + "skin_button/pressed": T.IMAGE + skin_rotation_arrows: T.IMAGE + skin_viewer_panel: T.INPUT_PANEL + "skin_viewer_panel/skin_model_panel": T.PANEL + "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM + "skin_viewer_panel/lock": T.IMAGE + undo_skin_button: T.BUTTON + confirm_skin_button: T.BUTTON + stack_item: T.PANEL + accept_skin_panel: T.STACK_PANEL + "accept_skin_panel/stack_item_0": T.PANEL + "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON + "accept_skin_panel/stack_item_1": T.PANEL + "accept_skin_panel/stack_item_1/confirm_button": T.BUTTON + preview_skin_panel: T.PANEL + "preview_skin_panel/preview": T.INPUT_PANEL + "preview_skin_panel/button_frame": T.STACK_PANEL + "preview_skin_panel/button_frame/stack_item_0": T.PANEL + "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE + "preview_skin_panel/button_frame/stack_item_1": T.PANEL + "preview_skin_panel/button_frame/stack_item_1/accept": T.STACK_PANEL + skin_model: T.CUSTOM + scrolling_content: T.STACK_PANEL + "scrolling_content/padding_0": T.PANEL + "scrolling_content/pack_info_panel": T.PANEL + "scrolling_content/pack_info_panel/pack_info_panel": T.STACK_PANEL + "scrolling_content/skin_grid_panel": T.PANEL + "scrolling_content/skin_grid_panel/skins_grid": T.GRID + pack_info_panel: T.STACK_PANEL + "pack_info_panel/lock_icon_panel": T.PANEL + "pack_info_panel/lock_icon_panel/lock_icon": T.IMAGE + "pack_info_panel/pack_info_panel": T.STACK_PANEL + "pack_info_panel/pack_info_panel/pack_name": T.LABEL + "pack_info_panel/pack_info_panel/creator_name": T.LABEL + skins_grid_item: T.PANEL + "skins_grid_item/clip": T.PANEL + "skins_grid_item/clip/model": T.CUSTOM + "skins_grid_item/lock": T.IMAGE + "skins_grid_item/button": T.BUTTON + skins_grid: T.GRID + select_skin_button: T.BUTTON + "select_skin_button/default": T.PANEL + "select_skin_button/hover": T.IMAGE + "select_skin_button/pressed": T.IMAGE + all_skins_content: T.INPUT_PANEL + "all_skins_content/scrolling_frame": T.PANEL + "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL + all_skins_frame: T.PANEL + "all_skins_frame/all_skins_content": T.INPUT_PANEL + title_bar: T.STACK_PANEL + "title_bar/padding_0": T.PANEL + "title_bar/fill_panel": T.PANEL + "title_bar/fill_panel/title_holder": T.PANEL + "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL + "title_bar/padding_1": T.PANEL + "title_bar/skin_name_holder": T.PANEL + "title_bar/skin_name_holder/preview_skin_name": T.LABEL + "title_bar/padding_2": T.PANEL + content: T.PANEL + "content/title": T.STACK_PANEL + "content/selector_area": T.INPUT_PANEL + "content/content_area": T.INPUT_PANEL + "content/section_divider": T.IMAGE + expanded_skin_pack_screen: T.SCREEN + skin_picker_screen_content: T.PANEL + "skin_picker_screen_content/bg": T.STACK_PANEL + "skin_picker_screen_content/container": T.PANEL + "skin_picker_screen_content/container/content": T.PANEL + scrollable_selector_area_content: T.PANEL + selector_area: T.INPUT_PANEL + "selector_area/all_skins": T.PANEL + "selector_area/inactive_modal_pane_fade": T.IMAGE + content_area: T.INPUT_PANEL + "content_area/preview_skin": T.PANEL + "content_area/inactive_modal_pane_fade": T.IMAGE + section_divider: T.IMAGE +} + +export type FeedCommonType = { + top_bar_gradient: T.CUSTOM + label: T.LABEL + smooth_label: T.LABEL + share_label: T.LABEL + title_label: T.LABEL + feed_label: T.LABEL + item_label: T.LABEL + return_label: T.LABEL + prev_label: T.LABEL + next_label: T.LABEL + delete_label: T.LABEL + report_to_club_label: T.LABEL + report_to_xbox_label: T.LABEL + new_post_header_text: T.LABEL + feed_button: T.BUTTON + return_button: T.BUTTON + prev_button: T.BUTTON + prev_panel: T.STACK_PANEL + "prev_panel/padding_1": T.PANEL + "prev_panel/lab_panel": T.STACK_PANEL + "prev_panel/lab_panel/vert_pad": T.PANEL + "prev_panel/lab_panel/prevlab": T.LABEL + next_button: T.BUTTON + next_panel: T.STACK_PANEL + "next_panel/lab_panel2": T.STACK_PANEL + "next_panel/lab_panel2/vert_pad2": T.PANEL + "next_panel/lab_panel2/nextlab": T.LABEL + "next_panel/padding_2": T.PANEL + like_button: T.BUTTON + delete_button: T.BUTTON + report_to_xbox_button: T.BUTTON + report_to_club_button: T.BUTTON + options_button: T.BUTTON + options_close_button_high_contrast: T.BUTTON + "options_close_button_high_contrast/background": T.IMAGE + "options_close_button_high_contrast/default": T.PANEL + "options_close_button_high_contrast/hover": T.PANEL + "options_close_button_high_contrast/pressed": T.PANEL + share_button: T.BUTTON + spacing_gap: T.PANEL + platform_icon: T.IMAGE + platform_icon_panel: T.PANEL + "platform_icon_panel/platform_icon": T.IMAGE + account_link_image: T.IMAGE + account_link_icon: T.STACK_PANEL + "account_link_icon/space_01": T.PANEL + "account_link_icon/account_link_image": T.IMAGE + "account_link_icon/space_02": T.PANEL + player_pic_bevel: T.IMAGE + no_feed_item_content: T.LABEL + gamepad_helpers: T.STACK_PANEL + share_text_box: T.EDIT_BOX + progress_loading_bars: T.IMAGE + popup_dialog_bg: T.IMAGE + pagination_panel: T.PANEL + "pagination_panel/prev_button": T.BUTTON + "pagination_panel/page_text": T.LABEL + "pagination_panel/next_button": T.BUTTON + pagination_panel_gamepad: T.PANEL + "pagination_panel_gamepad/prev_panel": T.STACK_PANEL + "pagination_panel_gamepad/page_text": T.LABEL + "pagination_panel_gamepad/next_panel": T.STACK_PANEL + like_image: T.IMAGE + like_image_default: T.IMAGE + like_image_panel: T.PANEL + "like_image_panel/like_image_instance": T.IMAGE + "like_image_panel/like_image_default": T.IMAGE + feed_like_content_panel: T.STACK_PANEL + "feed_like_content_panel/like_image_panel": T.PANEL + "feed_like_content_panel/like_label": T.LABEL + white_banner: T.IMAGE + page_text: T.LABEL + options_icon: T.IMAGE + transparent_background: T.IMAGE + black_arrow: T.IMAGE + faded_background_image: T.IMAGE + unviewed_post_badge: T.IMAGE + "unviewed_post_badge/unviewed_post_text": T.LABEL +} + +export type FileUploadType = { + empty_progress_bar_icon: T.IMAGE + full_progress_bar_icon: T.IMAGE + progress_bar_nub: T.IMAGE + progress_bar_icon: T.PANEL + "progress_bar_icon/empty_progress_bar_icon": T.IMAGE + "progress_bar_icon/progress_percent_panel": T.PANEL + "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE + "progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE + common_label: T.LABEL + progress_text_panel: T.PANEL + "progress_text_panel/progress": T.LABEL + "progress_text_panel/total": T.LABEL + message_text_panel: T.PANEL + "message_text_panel/message_text": T.LABEL + button_common: T.BUTTON + lets_go_button: T.BUTTON + cancel_button: T.BUTTON + continue_button: T.BUTTON + continue_or_cancel_button: T.PANEL + "continue_or_cancel_button/continue": T.BUTTON + "continue_or_cancel_button/cancel": T.BUTTON + single_title_panel: T.PANEL + "single_title_panel/center": T.LABEL + dual_title_panel: T.PANEL + "dual_title_panel/left": T.LABEL + "dual_title_panel/right": T.LABEL + upload_title_panel: T.PANEL + "upload_title_panel/single_label": T.PANEL + "upload_title_panel/dual_label": T.PANEL + content_panel: T.PANEL + "content_panel/stack_panel_0": T.STACK_PANEL + "content_panel/stack_panel_1": T.PANEL + content_stack_panel: T.STACK_PANEL + "content_stack_panel/message": T.PANEL + "content_stack_panel/description": T.PANEL + "content_stack_panel/progress": T.PANEL + warning_content_panel: T.PANEL + "warning_content_panel/message": T.LABEL + button_panel: T.PANEL + "button_panel/play": T.BUTTON + "button_panel/cancel": T.BUTTON + "button_panel/continue_cancel": T.PANEL + file_upload_content: T.PANEL + "file_upload_content/title_panel_content": T.PANEL + "file_upload_content/content": T.PANEL + "file_upload_content/content/background": T.PANEL + "file_upload_content/content/title": T.PANEL + "file_upload_content/content/content": T.PANEL + "file_upload_content/content/buttons": T.PANEL + file_transmission_screen: T.SCREEN +} + +export type FurnaceType = { + flame_panel: T.PANEL + "flame_panel/flame_empty_image": T.IMAGE + "flame_panel/flame_full_image": T.IMAGE + furnace_arrow_empty_image: T.IMAGE + furnace_arrow_full_image: T.IMAGE + flame_empty_image: T.IMAGE + flame_full_image: T.IMAGE + furnace_label: T.LABEL + furnace_input_panel: T.PANEL + "furnace_input_panel/panel": T.PANEL + "furnace_input_panel/panel/furnace_ingredient_panel": T.PANEL + "furnace_input_panel/panel/flame_panel": T.PANEL + "furnace_input_panel/panel/furnace_fuel_panel": T.PANEL + furnace_ingredient_panel: T.PANEL + "furnace_ingredient_panel/ingredient_item": T.INPUT_PANEL + furnace_fuel_panel: T.PANEL + "furnace_fuel_panel/fuel_item": T.INPUT_PANEL + furnace_output_panel: T.PANEL + "furnace_output_panel/output_item": T.INPUT_PANEL + furnace_panel_top_half: T.PANEL + "furnace_panel_top_half/furnace_label": T.LABEL + "furnace_panel_top_half/input": T.PANEL + "furnace_panel_top_half/furnace_arrow_empty_image": T.IMAGE + "furnace_panel_top_half/furnace_arrow_full_image": T.IMAGE + "furnace_panel_top_half/output": T.PANEL + furnace_panel: T.PANEL + "furnace_panel/container_gamepad_helpers": T.STACK_PANEL + "furnace_panel/selected_item_details_factory": T.FACTORY + "furnace_panel/item_lock_notification_factory": T.FACTORY + "furnace_panel/root_panel": T.INPUT_PANEL + "furnace_panel/root_panel/common_panel": T.PANEL + "furnace_panel/root_panel/furnace_screen_inventory": T.PANEL + "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": T.PANEL + "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID + "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON + "furnace_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "furnace_panel/root_panel/gamepad_cursor": T.BUTTON + "furnace_panel/flying_item_renderer": T.CUSTOM + furnace_screen: T.SCREEN +} + +export type FurnacePocketType = { + generic_label: T.LABEL + background_image: T.IMAGE + empty_arrow: T.IMAGE + full_arrow: T.IMAGE + flame_empty: T.IMAGE + flame_full: T.IMAGE + input_label: T.LABEL + fuel_label: T.LABEL + result_label: T.LABEL + result_name_label: T.LABEL + furnace_content: T.PANEL + "furnace_content/input_panel": T.PANEL + "furnace_content/input_panel/input_label": T.LABEL + "furnace_content/input_panel/ingredient_item": T.INPUT_PANEL + "furnace_content/flame_empty": T.IMAGE + "furnace_content/flame_full": T.IMAGE + "furnace_content/fuel_panel": T.PANEL + "furnace_content/fuel_panel/fuel_label": T.LABEL + "furnace_content/fuel_panel/fuel_item": T.INPUT_PANEL + "furnace_content/empty_arrow": T.IMAGE + "furnace_content/full_arrow": T.IMAGE + "furnace_content/output_panel": T.PANEL + "furnace_content/output_panel/result_label": T.LABEL + "furnace_content/output_panel/result_name_label": T.LABEL + "furnace_content/output_panel/output_item": T.INPUT_PANEL + inventory_grid: T.GRID + inventory_content: T.PANEL + "inventory_content/scrolling_panel": T.PANEL + header: T.PANEL + "header/header_background": T.IMAGE + "header/close_button": T.BUTTON + "header/panel": T.PANEL + "header/panel/title_label": T.LABEL + inventory_and_furnace_panel: T.PANEL + "inventory_and_furnace_panel/inventory_half_screen": T.PANEL + "inventory_and_furnace_panel/inventory_half_screen/inventory_content": T.PANEL + "inventory_and_furnace_panel/furnace_half_screen": T.PANEL + "inventory_and_furnace_panel/furnace_half_screen/furnace_content": T.PANEL + header_and_content_stack_panel: T.STACK_PANEL + "header_and_content_stack_panel/header": T.PANEL + "header_and_content_stack_panel/inventory_and_furnace_panel": T.PANEL + furnace_panel: T.PANEL + "furnace_panel/bg": T.IMAGE + "furnace_panel/root_panel": T.INPUT_PANEL + "furnace_panel/header_and_content_stack_panel": T.STACK_PANEL + "furnace_panel/container_gamepad_helpers": T.STACK_PANEL + "furnace_panel/inventory_selected_icon_button": T.BUTTON + "furnace_panel/hold_icon": T.BUTTON + "furnace_panel/selected_item_details_factory": T.FACTORY + "furnace_panel/item_lock_notification_factory": T.FACTORY + "furnace_panel/flying_item_renderer": T.CUSTOM +} + +export type GameTipType = { + game_tip_animation: T.IMAGE + game_tip_animation_panel: T.PANEL + "game_tip_animation_panel/animated_icon": T.IMAGE + game_tip_label: T.LABEL + game_tip_text_panel: T.STACK_PANEL + "game_tip_text_panel/upper_padding": T.PANEL + "game_tip_text_panel/label": T.LABEL + "game_tip_text_panel/lower_padding": T.PANEL + game_tip_arrow_image: T.IMAGE + game_tip_arrow_panel: T.PANEL + "game_tip_arrow_panel/tip_arrow": T.IMAGE + game_tip_panel: T.STACK_PANEL + "game_tip_panel/animated_panel": T.PANEL + "game_tip_panel/middle_padding": T.PANEL + "game_tip_panel/label": T.STACK_PANEL + "game_tip_panel/right_padding": T.PANEL + game_tip_item_background: T.IMAGE + "game_tip_item_background/horizontal_container": T.STACK_PANEL + "game_tip_item_background/arrow_panel": T.PANEL + chat_stack_game_tip_panel: T.STACK_PANEL + "chat_stack_game_tip_panel/top_padding": T.PANEL + "chat_stack_game_tip_panel/game_tip_background": T.IMAGE + game_tip_factory: T.PANEL + game_tip_chat_stack_factory: T.PANEL +} + +export type GamepadDisconnectedType = { + gamepad_disconnected_modal: T.PANEL + "gamepad_disconnected_modal/dialog_background_hollow_3": T.IMAGE + "gamepad_disconnected_modal/dialog_background_hollow_3/control": T.IMAGE + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": T.LABEL + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": T.LABEL + gamepad_disconnected_screen: T.SCREEN +} + +export type GameplayType = { + bundle_selected_item_icon: T.CUSTOM + bundle_open_icon_back: T.CUSTOM + bundle_open_icon_front: T.CUSTOM + bundle_selected_item_background: T.PANEL + "bundle_selected_item_background/bundle_selected_item_background_colour_green": T.IMAGE + "bundle_selected_item_background/bundle_selected_item_background_colour": T.IMAGE + "bundle_selected_item_background/bundle_selected_item_frame": T.IMAGE + bundle_selected_item_panel: T.PANEL + "bundle_selected_item_panel/bundle_selected_item_background": T.PANEL + "bundle_selected_item_panel/bundle_open_icon_back": T.CUSTOM + "bundle_selected_item_panel/bundle_selected_item_icon": T.CUSTOM + "bundle_selected_item_panel/bundle_open_icon_front": T.CUSTOM + "bundle_selected_item_panel/storage_bar": T.CUSTOM + bundle_slot_panel: T.PANEL + "bundle_slot_panel/bundle_selected_item_panel": T.PANEL + bundle_cell_image: T.PANEL + "bundle_cell_image/background_panel": T.PANEL + "bundle_cell_image/background_panel/item_background": T.IMAGE + "bundle_cell_image/highlight_panel": T.PANEL + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": T.IMAGE + "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": T.IMAGE + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": T.IMAGE + bundle_tooltip_slot_button: T.BUTTON + bundle_tooltip_slot_pocket: T.PANEL + "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": T.INPUT_PANEL + "bundle_tooltip_slot_pocket/more_hidden_items_label": T.LABEL + bundle_tooltip_slot_classic: T.PANEL + "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": T.INPUT_PANEL + "bundle_tooltip_slot_classic/more_hidden_items_label": T.LABEL + bundle_tooltip: T.PANEL + "bundle_tooltip/background": T.IMAGE + "bundle_tooltip/background/empty_button": T.BUTTON + "bundle_tooltip/background/empty_button/default": T.PANEL + "bundle_tooltip/background/empty_button/hover": T.PANEL + "bundle_tooltip/background/empty_button/pressed": T.PANEL + "bundle_tooltip/background/selected_item_tooltip": T.IMAGE + "bundle_tooltip/background/selected_item_tooltip/item_text_label": T.LABEL + "bundle_tooltip/header_stack": T.STACK_PANEL + "bundle_tooltip/header_stack/bundle_label": T.LABEL + "bundle_tooltip/header_stack/close_button": T.BUTTON + "bundle_tooltip/header_stack/close_button/default": T.PANEL + "bundle_tooltip/header_stack/close_button/hover": T.PANEL + "bundle_tooltip/header_stack/close_button/pressed": T.PANEL + "bundle_tooltip/wrapper": T.PANEL + "bundle_tooltip/wrapper/vertical_layout_stack": T.STACK_PANEL + "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": T.PANEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": T.STACK_PANEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": T.PANEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": T.STACK_PANEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": T.GRID + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": T.LABEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": T.PANEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": T.PANEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": T.LABEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": T.IMAGE + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": T.IMAGE + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": T.LABEL + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": T.IMAGE + bundle_touch_tooltip: T.PANEL + bundle_tooltip_factory_wrapper: T.PANEL + "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": T.CUSTOM + bundle_cursor_tooltip: T.CUSTOM + "bundle_cursor_tooltip/tooltip": T.PANEL +} + +export type GatheringInfoType = { + gathering_info_screen: T.SCREEN + info_content: T.PANEL + "info_content/header": T.STACK_PANEL + "info_content/left_panel": T.PANEL + "info_content/left_panel/stack": T.STACK_PANEL + "info_content/left_panel/stack/event_image": T.IMAGE + "info_content/left_panel/stack/pad_2": T.PANEL + "info_content/left_panel/stack/button_and_caption": T.PANEL + "info_content/left_panel/stack/button_and_caption/caption": T.IMAGE + "info_content/left_panel/stack/button_and_caption/action_button": T.BUTTON + "info_content/left_panel/stack/pad_3": T.PANEL + "info_content/left_panel/stack/info_button": T.BUTTON + "info_content/left_panel/stack/pad_4": T.PANEL + "info_content/left_panel/stack/gamepad_helper_panel": T.PANEL + "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": T.STACK_PANEL + "info_content/left_panel/stack/pad_fill": T.PANEL + "info_content/left_panel/stack/gathering_id_label": T.LABEL + "info_content/left_panel/stack/pad_5": T.PANEL + "info_content/section_divider": T.IMAGE + "info_content/right_panel": T.PANEL + "info_content/right_panel/scroll": T.PANEL + right_panel_content: T.STACK_PANEL + "right_panel_content/pad": T.PANEL + "right_panel_content/sign_in_panel": T.STACK_PANEL + "right_panel_content/sign_in_panel/sign_in_image": T.IMAGE + "right_panel_content/sign_in_panel/horizontal_pad": T.PANEL + "right_panel_content/sign_in_panel/text_stack": T.STACK_PANEL + "right_panel_content/sign_in_panel/text_stack/sign_in_title": T.PANEL + "right_panel_content/sign_in_panel/text_stack/text_pad": T.PANEL + "right_panel_content/sign_in_panel/text_stack/sign_in_body": T.PANEL + "right_panel_content/sign_in_pad": T.PANEL + "right_panel_content/qr_panel": T.STACK_PANEL + "right_panel_content/qr_panel/qr_background": T.IMAGE + "right_panel_content/qr_panel/qr_background/qr_image": T.IMAGE + "right_panel_content/qr_panel/horizontal_pad": T.PANEL + "right_panel_content/qr_panel/text_stack": T.STACK_PANEL + "right_panel_content/qr_panel/text_stack/qr_title": T.PANEL + "right_panel_content/qr_panel/text_stack/text_pad": T.PANEL + "right_panel_content/qr_panel/text_stack/qr_body": T.PANEL + "right_panel_content/qr_pad": T.PANEL + "right_panel_content/title": T.PANEL + "right_panel_content/pad_1": T.PANEL + "right_panel_content/body": T.PANEL + "right_panel_content/pad_2": T.PANEL + "right_panel_content/body_image": T.IMAGE + "right_panel_content/footer": T.INPUT_PANEL + tts_label: T.PANEL + tts_label_title: T.PANEL + sign_in_title: T.LABEL + sign_in_body: T.LABEL + qr_title: T.LABEL + qr_body: T.LABEL + title_panel: T.LABEL + body_panel: T.LABEL + section_divider: T.IMAGE + gamepad_helpers: T.STACK_PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL +} + +export type GlobalpauseType = { + message: T.LABEL + quit_button: T.BUTTON + globalpause_screen: T.SCREEN + pause_screen_content: T.PANEL + "pause_screen_content/transparentFill": T.IMAGE + "pause_screen_content/message": T.LABEL + "pause_screen_content/quit_button": T.BUTTON +} + +export type GrindstoneType = { + title_label: T.LABEL + arrow_icon: T.IMAGE + cross_out_icon: T.IMAGE + grindstone_output_slot_button: T.BUTTON + grindstone_item_slot: T.PANEL + "grindstone_item_slot/container_item": T.INPUT_PANEL + grindstone_middle_panel: T.PANEL + "grindstone_middle_panel/input_item_slot": T.PANEL + "grindstone_middle_panel/additional_item_slot": T.PANEL + grindstone_slots_panel: T.PANEL + "grindstone_slots_panel/grindstone_middle_panel": T.PANEL + "grindstone_slots_panel/yields": T.PANEL + "grindstone_slots_panel/yields/arrow_icon": T.IMAGE + "grindstone_slots_panel/yields/cross_out_icon": T.IMAGE + "grindstone_slots_panel/result_item_slot": T.PANEL + top_half_panel: T.PANEL + "top_half_panel/title_label": T.LABEL + "top_half_panel/grindstone_slots_panel": T.PANEL + grindstone_panel: T.PANEL + "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL + "grindstone_panel/selected_item_details_factory": T.FACTORY + "grindstone_panel/item_lock_notification_factory": T.FACTORY + "grindstone_panel/root_panel": T.INPUT_PANEL + "grindstone_panel/root_panel/common_panel": T.PANEL + "grindstone_panel/root_panel/grindstone_screen_inventory": T.PANEL + "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": T.PANEL + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": T.GRID + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": T.BUTTON + "grindstone_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "grindstone_panel/root_panel/gamepad_cursor": T.BUTTON + "grindstone_panel/flying_item_renderer": T.CUSTOM + grindstone_screen: T.SCREEN +} + +export type GrindstonePocketType = { + background_image: T.IMAGE + repair_title_label: T.LABEL + grindstone_middle_panel: T.PANEL + "grindstone_middle_panel/input_slot": T.INPUT_PANEL + "grindstone_middle_panel/additional_slot": T.INPUT_PANEL + slots_panel: T.PANEL + "slots_panel/grindstone_middle_panel": T.PANEL + "slots_panel/arrow": T.IMAGE + "slots_panel/arrow/cross_out": T.IMAGE + "slots_panel/result_slot": T.INPUT_PANEL + grindstone_contents_panel: T.PANEL + "grindstone_contents_panel/repair_title_label": T.LABEL + "grindstone_contents_panel/slots_panel": T.PANEL + inventory_grid: T.GRID + inventory_content: T.PANEL + "inventory_content/scrolling_panel": T.PANEL + header: T.PANEL + "header/header_background": T.IMAGE + "header/legacy_pocket_close_button": T.BUTTON + "header/panel": T.PANEL + "header/panel/title_label": T.LABEL + inventory_and_grindstone_panel: T.PANEL + "inventory_and_grindstone_panel/inventory_half_screen": T.PANEL + "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": T.PANEL + "inventory_and_grindstone_panel/grindstone_half_screen": T.PANEL + "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": T.PANEL + header_and_content_stack_panel: T.STACK_PANEL + "header_and_content_stack_panel/header": T.PANEL + "header_and_content_stack_panel/inventory_and_grindstone_panel": T.PANEL + grindstone_panel: T.PANEL + "grindstone_panel/bg": T.IMAGE + "grindstone_panel/root_panel": T.INPUT_PANEL + "grindstone_panel/header_and_content_stack_panel": T.STACK_PANEL + "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL + "grindstone_panel/inventory_selected_icon_button": T.BUTTON + "grindstone_panel/hold_icon": T.BUTTON + "grindstone_panel/selected_item_details_factory": T.FACTORY + "grindstone_panel/item_lock_notification_factory": T.FACTORY + "grindstone_panel/flying_item_renderer": T.CUSTOM +} + +export type GammaCalibrationType = { + stack_panel_centering_panel: T.PANEL + "stack_panel_centering_panel/child": T.UNKNOWN + stack_panel_align_left_panel: T.PANEL + "stack_panel_align_left_panel/child": T.UNKNOWN + stack_panel_align_right_panel: T.PANEL + "stack_panel_align_right_panel/child": T.UNKNOWN + image_panel: T.STACK_PANEL + "image_panel/padding": T.PANEL + "image_panel/image": T.IMAGE + horizontal_padding: T.PANEL + image_stack: T.STACK_PANEL + "image_stack/not_visible_image": T.STACK_PANEL + "image_stack/padding_0": T.PANEL + "image_stack/barely_visible_image": T.STACK_PANEL + "image_stack/padding_1": T.PANEL + "image_stack/easily_visible_image": T.STACK_PANEL + button_stack: T.STACK_PANEL + "button_stack/continue_button_panel": T.PANEL + "button_stack/padding": T.PANEL + "button_stack/reset_button_panel": T.PANEL + message_panel: T.PANEL + "message_panel/message_label": T.LABEL + calibration_slider: T.PANEL + "calibration_slider/slider": T.PANEL + continue_button: T.BUTTON + reset_button: T.BUTTON + main_panel: T.STACK_PANEL + "main_panel/hdr_message_panel": T.PANEL + "main_panel/image_stack_panel": T.PANEL + "main_panel/padding_0": T.PANEL + "main_panel/slider_panel": T.PANEL + "main_panel/padding_1": T.PANEL + "main_panel/button_stack_panel": T.PANEL + gamma_calibration_screen: T.SCREEN +} + +export type HorseType = { + renderer_bg: T.IMAGE + overlay_image: T.IMAGE + saddle_image: T.IMAGE + horse_armor_image: T.IMAGE + carpet_image: T.IMAGE + nautilus_armor_image: T.IMAGE + horse_label: T.LABEL + equip_grid: T.GRID + inv_grid: T.GRID + inv_bg_panel: T.PANEL + "inv_bg_panel/cell_image": T.IMAGE + equip_panel: T.PANEL + "equip_panel/equip_grid": T.GRID + "equip_panel/saddle": T.IMAGE + "equip_panel/horse_armor_0": T.IMAGE + "equip_panel/carpet_0": T.IMAGE + "equip_panel/nautilus_armor_0": T.IMAGE + "equip_panel/horse_armor_1": T.IMAGE + "equip_panel/carpet_1": T.IMAGE + "equip_panel/nautilus_armor_1": T.IMAGE + inv_panel: T.PANEL + "inv_panel/inv_bg_panel": T.PANEL + "inv_panel/inv_grid": T.GRID + horse_renderer: T.PANEL + "horse_renderer/renderer_bg": T.IMAGE + "horse_renderer/horse_custom_panel": T.PANEL + "horse_renderer/horse_custom_panel/horse_custom": T.CUSTOM + horse_panel: T.PANEL + "horse_panel/container_gamepad_helpers": T.STACK_PANEL + "horse_panel/selected_item_details_factory": T.FACTORY + "horse_panel/item_lock_notification_factory": T.FACTORY + "horse_panel/root_panel": T.INPUT_PANEL + "horse_panel/root_panel/common_panel": T.PANEL + "horse_panel/root_panel/horse_section_label": T.LABEL + "horse_panel/root_panel/inv_panel": T.PANEL + "horse_panel/root_panel/equipment": T.PANEL + "horse_panel/root_panel/renderer": T.PANEL + "horse_panel/root_panel/inventory_panel_bottom_half_with_label": T.PANEL + "horse_panel/root_panel/hotbar_grid_template": T.GRID + "horse_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "horse_panel/root_panel/gamepad_cursor": T.BUTTON + "horse_panel/flying_item_renderer": T.CUSTOM + horse_screen: T.SCREEN +} + +export type HorsePocketType = { + horse_panel: T.PANEL + "horse_panel/gamepad_helpers": T.STACK_PANEL + "horse_panel/inventory_selected_icon_button": T.BUTTON + "horse_panel/gamepad_cursor": T.BUTTON + "horse_panel/selected_item_details_factory": T.FACTORY + "horse_panel/item_lock_notification_factory": T.FACTORY + "horse_panel/base_panel": T.PANEL + "horse_panel/base_panel/root_panel": T.INPUT_PANEL + "horse_panel/base_panel/hold_icon": T.BUTTON + "horse_panel/base_panel/bg": T.PANEL + "horse_panel/base_panel/interactive_tabs": T.PANEL + "horse_panel/base_panel/close_button": T.BUTTON + "horse_panel/base_panel/inventory": T.PANEL + "horse_panel/base_panel/equipment": T.PANEL + "horse_panel/base_panel/chest_tab": T.PANEL + "horse_panel/base_panel/chest_tab/visual_tabs_chest": T.PANEL + "horse_panel/base_panel/chest_tab/chest": T.PANEL + "horse_panel/base_panel/renderer_tab": T.PANEL + "horse_panel/base_panel/renderer_tab/visual_tabs_equip": T.PANEL + "horse_panel/base_panel/renderer_tab/renderer": T.PANEL + "horse_panel/flying_item_renderer": T.CUSTOM + background_image: T.IMAGE + dark_bg: T.IMAGE + renderer_bg: T.IMAGE + saddle_image: T.IMAGE + horse_armor_image: T.IMAGE + carpet_image: T.IMAGE + nautilus_armor_image: T.IMAGE + panel_outline: T.IMAGE + close_button_default: T.IMAGE + close_button_pressed: T.IMAGE + close_button: T.BUTTON + "close_button/default": T.IMAGE + "close_button/hover": T.IMAGE + "close_button/pressed": T.IMAGE + base_grid: T.GRID + inventory_grid: T.GRID + chest_grid: T.GRID + base_grid_panel: T.PANEL + "base_grid_panel/panel_outline": T.IMAGE + "base_grid_panel/dark_bg": T.IMAGE + "base_grid_panel/scrolling_panel": T.PANEL + inventory_panel: T.PANEL + chest_panel: T.PANEL + half_screen: T.PANEL + middle_screen: T.PANEL + half_screen_inventory: T.PANEL + "half_screen_inventory/inventory_panel": T.PANEL + half_screen_chest: T.PANEL + "half_screen_chest/chest_panel": T.PANEL + horse_renderer: T.PANEL + "horse_renderer/horse_custom": T.CUSTOM + half_screen_renderer: T.PANEL + "half_screen_renderer/renderer_bg": T.IMAGE + "half_screen_renderer/horse_custom_panel": T.PANEL + "half_screen_renderer/camel_custom_panel": T.PANEL + equip_item_panel: T.PANEL + "equip_item_panel/equip_container_item": T.INPUT_PANEL + equip_grid: T.GRID + equip_middle_screen: T.PANEL + "equip_middle_screen/equip_grid_panel": T.PANEL + "equip_middle_screen/equip_grid_panel/equip_grid": T.GRID + "equip_middle_screen/equip_grid_panel/centered_0": T.IMAGE + "equip_middle_screen/equip_grid_panel/offset": T.IMAGE + "equip_middle_screen/equip_grid_panel/centered_1": T.IMAGE + "equip_middle_screen/equip_grid_panel/centered_2": T.IMAGE + "equip_middle_screen/equip_grid_panel/horse_armor_image": T.IMAGE + "equip_middle_screen/equip_grid_panel/carpet_image": T.IMAGE + horse_screen_tab_toggle: T.TOGGLE + interactive_tabs: T.PANEL + "interactive_tabs/renderer_tab_interactive": T.TOGGLE + "interactive_tabs/chest_tab_interactive": T.TOGGLE + tab_front: T.IMAGE + tab_back: T.IMAGE + close_tab: T.IMAGE + item_icon_renderer: T.CUSTOM + saddle_icon_front: T.CUSTOM + chest_icon_front: T.CUSTOM + visual_tabs_equip: T.PANEL + "visual_tabs_equip/close_tab": T.IMAGE + "visual_tabs_equip/close_tab/nodrop_zone": T.INPUT_PANEL + "visual_tabs_equip/chest": T.IMAGE + "visual_tabs_equip/chest/chest_icon": T.CUSTOM + "visual_tabs_equip/equip": T.IMAGE + "visual_tabs_equip/equip/equip_icon": T.CUSTOM + visual_tabs_chest: T.PANEL + "visual_tabs_chest/close_tab": T.IMAGE + "visual_tabs_chest/chest": T.IMAGE + "visual_tabs_chest/chest/chest_icon": T.CUSTOM + "visual_tabs_chest/equip": T.IMAGE + "visual_tabs_chest/equip/equip_icon": T.CUSTOM +} + +export type HowToPlayCommonType = { + dynamic_dialog_screen: T.SCREEN + screen_background: T.IMAGE + top_bar: T.IMAGE + button_panel: T.LABEL + light_text_button: T.BUTTON + action_button: T.BUTTON + topic_category: T.PANEL + "topic_category/top_padding": T.PANEL + "topic_category/category_text": T.LABEL + toggle_button_control: T.PANEL + "toggle_button_control/tab_button_text": T.LABEL + glyph_button_control: T.PANEL + "glyph_button_control/tab_button_text": T.LABEL + "glyph_button_control/glyph": T.IMAGE + section_toggle_button: T.PANEL + "section_toggle_button/section_toggle_button": T.PANEL + edu_section_toggle_button: T.PANEL + padding: T.PANEL + touch_padding: T.PANEL + small_padding: T.PANEL + large_padding: T.PANEL + section_contents_header: T.INPUT_PANEL + section_contents_footer: T.INPUT_PANEL + main_sections: T.STACK_PANEL + splitscreen_only_content: T.STACK_PANEL + "splitscreen_only_content/0": T.UNKNOWN + tts_focus_border: T.BUTTON + header_tts_focus_border: T.BUTTON + header_background: T.IMAGE + "header_background/header_label": T.LABEL + "header_background/focus_border": T.BUTTON + header: T.PANEL + "header/header": T.IMAGE + paragraph_panel: T.PANEL + paragraph_label: T.LABEL + paragraph_tts_focus_border: T.BUTTON + paragraph: T.PANEL + "paragraph/label": T.LABEL + "paragraph/focus_border": T.BUTTON + paragraph_with_icons: T.PANEL + "paragraph_with_icons/label": T.LABEL + "paragraph_with_icons/focus_border": T.BUTTON + input_conditional_paragraph: T.PANEL + input_conditional_paragraph_with_icons: T.PANEL + paragraph_keyboard: T.PANEL + paragraph_gamepad: T.PANEL + paragraph_gamepad_no_icons: T.PANEL + paragraph_touch: T.PANEL + paragraph_touch_classic_dpad_spacing: T.PANEL + paragraph_touch_no_icons: T.PANEL + paragraph_touch_joystick_tap: T.PANEL + paragraph_touch_classic_dpad: T.PANEL + paragraph_touch_joystick_crosshair: T.PANEL + paragraph_not_touch: T.PANEL + image: T.IMAGE + how_to_play_header: T.PANEL + "how_to_play_header/top_bar": T.IMAGE + "how_to_play_header/top_bar/back_button": T.STACK_PANEL + "how_to_play_header/top_bar/how_to_play_title": T.PANEL + "how_to_play_header/top_bar/gamepad_bumper_helpers": T.STACK_PANEL + how_to_play_content: T.PANEL + "how_to_play_content/header": T.PANEL + "how_to_play_content/container": T.PANEL + dialog_content: T.PANEL + "dialog_content/selector_area": T.PANEL + "dialog_content/content_area": T.PANEL + "dialog_content/section_divider": T.IMAGE + scrollable_selector_area_content: T.PANEL + selector_area: T.PANEL + "selector_area/scrolling_panel": T.PANEL + section_divider: T.IMAGE + content_area_wrapper: T.PANEL + "content_area_wrapper/content_area": T.PANEL + content_area: T.PANEL + "content_area/control": T.STACK_PANEL + "content_area/control/scrolling_panel": T.PANEL + screen_base: T.SCREEN + gamepad_bumper_helper_description: T.LABEL + gamepad_bumper_helpers: T.STACK_PANEL + "gamepad_bumper_helpers/gamepad_helper_left_bumper": T.STACK_PANEL + "gamepad_bumper_helpers/padding": T.PANEL + "gamepad_bumper_helpers/gamepad_helper_right_bumper": T.STACK_PANEL +} + +export type HowToPlayType = { + how_to_play_screen: T.SCREEN + how_to_play_selector_stack_panel: T.STACK_PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": T.PANEL + "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": T.PANEL + how_to_play_section_content_panels: T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL + "how_to_play_section_content_panels/general_tips_sections/moving_around_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/inventory_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/mining_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/food_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/beds_new_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/world_builder_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/chemistry_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/npc_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/camera_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/portfolio_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/code_builder_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/playing_together_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": T.STACK_PANEL + "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL + moving_around_button: T.PANEL + moving_around_section: T.STACK_PANEL + "moving_around_section/paragraph_1": T.PANEL + "moving_around_section/padding_1": T.PANEL + "moving_around_section/paragraph_2_keyboard": T.PANEL + "moving_around_section/paragraph_2_gamepad": T.PANEL + "moving_around_section/paragraph_touch_joystick_tap": T.PANEL + "moving_around_section/padding_2": T.PANEL + "moving_around_section/paragraph_3a_keyboard": T.PANEL + "moving_around_section/paragraph_3b_keyboard": T.PANEL + "moving_around_section/paragraph_3a_gamepad": T.PANEL + "moving_around_section/paragraph_3b_gamepad": T.PANEL + "moving_around_section/paragraph_3_touch_joystick_tap": T.PANEL + "moving_around_section/paragraph_3a_touch_classic_dpad": T.PANEL + "moving_around_section/paragraph_3b_touch_classic_dpad": T.PANEL + "moving_around_section/paragraph_3c_touch_classic_dpad": T.PANEL + "moving_around_section/paragraph_3d_touch_classic_dpad": T.PANEL + "moving_around_section/paragraph_3e_touch_classic_dpad": T.PANEL + "moving_around_section/paragraph_3_touch_joystick_crosshair": T.PANEL + "moving_around_section/image_1": T.IMAGE + gathering_resources_button: T.PANEL + gathering_resources_section: T.STACK_PANEL + "gathering_resources_section/paragraph_1": T.PANEL + "gathering_resources_section/padding_1": T.PANEL + "gathering_resources_section/paragraph_2_keyboard": T.PANEL + "gathering_resources_section/paragraph_2_gamepad": T.PANEL + "gathering_resources_section/paragraph_2_touch_joystick_tap": T.PANEL + "gathering_resources_section/paragraph_2_touch_classic_dpad": T.PANEL + "gathering_resources_section/paragraph_2_touch_joystick_crosshair": T.PANEL + "gathering_resources_section/padding_2": T.PANEL + "gathering_resources_section/paragraph_3": T.PANEL + selecting_items_button: T.PANEL + selecting_items_section: T.STACK_PANEL + "selecting_items_section/paragraph_1": T.PANEL + "selecting_items_section/padding_1": T.PANEL + "selecting_items_section/paragraph_2_keyboard": T.PANEL + "selecting_items_section/paragraph_2_gamepad": T.PANEL + "selecting_items_section/paragraph_touch_joystick_tap": T.PANEL + "selecting_items_section/padding_2": T.PANEL + "selecting_items_section/paragraph_3_keyboard": T.PANEL + "selecting_items_section/paragraph_3_gamepad": T.PANEL + "selecting_items_section/paragraph_3_touch_joystick_tap": T.PANEL + "selecting_items_section/paragraph_3_touch_classic_dpad": T.PANEL + "selecting_items_section/paragraph_3_touch_joystick_crosshair": T.PANEL + "selecting_items_section/padding_3": T.PANEL + "selecting_items_section/header_1": T.PANEL + "selecting_items_section/image_1_not_touch": T.IMAGE + "selecting_items_section/image_1_touch": T.IMAGE + placing_blocks_button: T.PANEL + placing_blocks_section: T.STACK_PANEL + "placing_blocks_section/paragraph_1": T.PANEL + "placing_blocks_section/padding_1": T.PANEL + "placing_blocks_section/paragraph_2_keyboard": T.PANEL + "placing_blocks_section/paragraph_2_gamepad": T.PANEL + "placing_blocks_section/paragraph_2_touch_joystick_tap": T.PANEL + "placing_blocks_section/paragraph_2_touch_classic_dpad": T.PANEL + "placing_blocks_section/paragraph_2_touch_joystick_crosshair": T.PANEL + "placing_blocks_section/padding_2": T.PANEL + "placing_blocks_section/paragraph_3": T.PANEL + inventory_button: T.PANEL + inventory_section: T.STACK_PANEL + "inventory_section/image_1_not_touch": T.IMAGE + "inventory_section/image_1_touch": T.IMAGE + "inventory_section/header_1": T.PANEL + "inventory_section/paragraph_1_keyboard": T.PANEL + "inventory_section/paragraph_1_gamepad": T.PANEL + "inventory_section/paragraph_1_touch": T.PANEL + "inventory_section/padding_2": T.PANEL + "inventory_section/header_2": T.PANEL + "inventory_section/paragraph_2_keyboard": T.PANEL + "inventory_section/paragraph_2_gamepad": T.PANEL + "inventory_section/paragraph_2_touch": T.PANEL + your_first_craft_button: T.PANEL + your_first_craft_section: T.STACK_PANEL + "your_first_craft_section/image_1_not_touch": T.IMAGE + "your_first_craft_section/image_1_touch": T.IMAGE + "your_first_craft_section/header_1": T.PANEL + "your_first_craft_section/paragraph_1": T.PANEL + "your_first_craft_section/padding_2": T.PANEL + "your_first_craft_section/paragraph_2": T.PANEL + "your_first_craft_section/padding_3": T.PANEL + "your_first_craft_section/paragraph_3_touch": T.PANEL + "your_first_craft_section/paragraph_3_keyboard": T.PANEL + "your_first_craft_section/paragraph_3_gamepad": T.PANEL + "your_first_craft_section/padding_4": T.PANEL + "your_first_craft_section/header_2": T.PANEL + "your_first_craft_section/paragraph_4": T.PANEL + "your_first_craft_section/padding_5": T.PANEL + "your_first_craft_section/paragraph_5": T.PANEL + recipe_book_button: T.PANEL + recipe_book_section: T.STACK_PANEL + "recipe_book_section/paragraph_1_keyboard": T.PANEL + "recipe_book_section/paragraph_1_gamepad": T.PANEL + "recipe_book_section/paragraph_1_touch": T.PANEL + "recipe_book_section/padding_1": T.PANEL + "recipe_book_section/paragraph_2_keyboard": T.PANEL + "recipe_book_section/paragraph_2_gamepad": T.PANEL + "recipe_book_section/paragraph_2_touch": T.PANEL + the_crafting_table_button: T.PANEL + the_crafting_table_section: T.STACK_PANEL + "the_crafting_table_section/image_1": T.IMAGE + "the_crafting_table_section/paragraph_1": T.PANEL + "the_crafting_table_section/padding_2": T.PANEL + "the_crafting_table_section/paragraph_2_keyboard": T.PANEL + "the_crafting_table_section/paragraph_2_gamepad": T.PANEL + "the_crafting_table_section/paragraph_2_touch": T.PANEL + crafting_a_tool_button: T.PANEL + crafting_a_tool_section: T.STACK_PANEL + "crafting_a_tool_section/paragraph_1": T.PANEL + "crafting_a_tool_section/padding_1": T.PANEL + "crafting_a_tool_section/paragraph_2_keyboard": T.PANEL + "crafting_a_tool_section/paragraph_2_gamepad": T.PANEL + "crafting_a_tool_section/paragraph_2_touch": T.PANEL + mining_button: T.PANEL + mining_section: T.STACK_PANEL + "mining_section/image_1": T.IMAGE + "mining_section/paragraph_1": T.PANEL + "mining_section/padding_2": T.PANEL + "mining_section/paragraph_2": T.PANEL + "mining_section/padding_3": T.PANEL + "mining_section/paragraph_3": T.PANEL + nightfall_new_button: T.PANEL + nightfall_new_section: T.STACK_PANEL + "nightfall_new_section/paragraph_1": T.PANEL + "nightfall_new_section/padding_1": T.PANEL + "nightfall_new_section/paragraph_2": T.PANEL + "nightfall_new_section/padding_2": T.PANEL + "nightfall_new_section/paragraph_3": T.PANEL + "nightfall_new_section/padding_3": T.PANEL + "nightfall_new_section/paragraph_4_keyboard": T.PANEL + "nightfall_new_section/paragraph_4_gamepad": T.PANEL + "nightfall_new_section/paragraph_4_touch_joystick_tap": T.PANEL + "nightfall_new_section/paragraph_4_touch_classic_dpad": T.PANEL + "nightfall_new_section/paragraph_4_touch_joystick_crosshair": T.PANEL + building_a_shelter_button: T.PANEL + building_a_shelter_section: T.STACK_PANEL + "building_a_shelter_section/image_1": T.IMAGE + "building_a_shelter_section/paragraph_1": T.PANEL + "building_a_shelter_section/padding_2": T.PANEL + "building_a_shelter_section/paragraph_2": T.PANEL + "building_a_shelter_section/padding_3": T.PANEL + "building_a_shelter_section/paragraph_3": T.PANEL + death_and_respawn_button: T.PANEL + death_and_respawn_section: T.STACK_PANEL + "death_and_respawn_section/paragraph_1": T.PANEL + "death_and_respawn_section/padding_1": T.PANEL + "death_and_respawn_section/paragraph_2": T.PANEL + food_button: T.PANEL + food_section: T.STACK_PANEL + "food_section/paragraph_1": T.PANEL + "food_section/padding_1": T.PANEL + "food_section/paragraph_2_keyboard": T.PANEL + "food_section/paragraph_2_gamepad": T.PANEL + "food_section/paragraph_2_touch": T.PANEL + "food_section/padding_2": T.PANEL + "food_section/paragraph_3": T.PANEL + beds_new_button: T.PANEL + beds_new_section: T.STACK_PANEL + "beds_new_section/paragraph_1": T.PANEL + "beds_new_section/padding_1": T.PANEL + "beds_new_section/paragraph_2": T.PANEL + "beds_new_section/padding_2": T.PANEL + "beds_new_section/paragraph_3": T.PANEL + improved_tools_button: T.PANEL + improved_tools_section: T.STACK_PANEL + "improved_tools_section/paragraph_1": T.PANEL + "improved_tools_section/padding_1": T.PANEL + "improved_tools_section/paragraph_2": T.PANEL + world_builder_button: T.PANEL + world_builder_section: T.STACK_PANEL + "world_builder_section/paragraph_1": T.PANEL + "world_builder_section/padding_1": T.PANEL + "world_builder_section/paragraph_2": T.PANEL + "world_builder_section/padding_2": T.PANEL + "world_builder_section/paragraph_3": T.PANEL + "world_builder_section/padding_3": T.PANEL + "world_builder_section/paragraph_4": T.PANEL + "world_builder_section/padding_4": T.PANEL + "world_builder_section/paragraph_5": T.PANEL + "world_builder_section/padding_5": T.PANEL + "world_builder_section/paragraph_6": T.PANEL + "world_builder_section/paragraph_7": T.PANEL + "world_builder_section/padding_7": T.PANEL + "world_builder_section/paragraph_8": T.PANEL + "world_builder_section/padding_8": T.PANEL + "world_builder_section/paragraph_9": T.PANEL + permission_blocks_button: T.PANEL + permission_blocks_section: T.STACK_PANEL + "permission_blocks_section/paragraph_1": T.PANEL + "permission_blocks_section/padding_1": T.PANEL + "permission_blocks_section/header_1": T.PANEL + "permission_blocks_section/paragraph_2": T.PANEL + "permission_blocks_section/padding_3": T.PANEL + "permission_blocks_section/paragraph_3": T.PANEL + "permission_blocks_section/padding_4": T.PANEL + "permission_blocks_section/paragraph_4": T.PANEL + "permission_blocks_section/padding_5": T.PANEL + "permission_blocks_section/paragraph_5": T.PANEL + "permission_blocks_section/padding_7": T.PANEL + "permission_blocks_section/header_2": T.PANEL + "permission_blocks_section/paragraph_6": T.PANEL + chalkboard_button: T.PANEL + chalkboard_section: T.STACK_PANEL + "chalkboard_section/paragraph_1_keyboard": T.PANEL + "chalkboard_section/paragraph_1_gamepad": T.PANEL + "chalkboard_section/paragraph_1_touch": T.PANEL + chemistry_button: T.PANEL + chemistry_section: T.STACK_PANEL + "chemistry_section/paragraph_1": T.PANEL + "chemistry_section/padding_1": T.PANEL + "chemistry_section/paragraph_2": T.PANEL + npc_button: T.PANEL + npc_section: T.STACK_PANEL + "npc_section/paragraph_1": T.PANEL + "npc_section/padding_1": T.PANEL + "npc_section/paragraph_2": T.PANEL + "npc_section/padding_2": T.PANEL + "npc_section/paragraph_3": T.PANEL + camera_button: T.PANEL + camera_section: T.STACK_PANEL + "camera_section/paragraph_1": T.PANEL + "camera_section/padding_1": T.PANEL + "camera_section/paragraph_2_keyboard": T.PANEL + "camera_section/paragraph_2_gamepad": T.PANEL + "camera_section/paragraph_2_touch": T.PANEL + "camera_section/padding_2": T.PANEL + "camera_section/paragraph_3_keyboard": T.PANEL + "camera_section/paragraph_3_gamepad": T.PANEL + "camera_section/paragraph_3_touch": T.PANEL + "camera_section/padding_3": T.PANEL + "camera_section/paragraph_4": T.PANEL + portfolio_button: T.PANEL + portfolio_section: T.STACK_PANEL + "portfolio_section/paragraph_1_keyboard": T.PANEL + "portfolio_section/paragraph_1_gamepad": T.PANEL + "portfolio_section/paragraph_1_touch": T.PANEL + classroom_mode_button: T.PANEL + classroom_mode_section: T.STACK_PANEL + "classroom_mode_section/paragraph_1": T.PANEL + "classroom_mode_section/padding_1": T.PANEL + "classroom_mode_section/paragraph_2": T.PANEL + code_builder_button: T.PANEL + code_builder_section: T.STACK_PANEL + "code_builder_section/paragraph_1": T.PANEL + "code_builder_section/padding_1": T.PANEL + "code_builder_section/paragraph_2_keyboard": T.PANEL + "code_builder_section/paragraph_2_gamepad": T.PANEL + "code_builder_section/paragraph_2_touch": T.PANEL + playing_together_button: T.PANEL + playing_together_section: T.STACK_PANEL + "playing_together_section/paragraph_1": T.PANEL + "playing_together_section/padding_1": T.PANEL + "playing_together_section/header_1": T.PANEL + "playing_together_section/paragraph_2": T.PANEL + "playing_together_section/padding_2": T.PANEL + "playing_together_section/header_2": T.PANEL + "playing_together_section/paragraph_3": T.PANEL + "playing_together_section/padding_3": T.PANEL + "playing_together_section/paragraph_4": T.PANEL + "playing_together_section/padding_4": T.PANEL + "playing_together_section/paragraph_5": T.PANEL + "playing_together_section/padding_5": T.PANEL + "playing_together_section/header_3": T.PANEL + "playing_together_section/paragraph_6": T.PANEL + "playing_together_section/padding_6": T.PANEL + "playing_together_section/paragraph_7": T.PANEL + "playing_together_section/padding_7": T.PANEL + "playing_together_section/paragraph_8": T.PANEL + "playing_together_section/realms_button": T.BUTTON + "playing_together_section/sign_in_button": T.BUTTON + "playing_together_section/padding_8": T.PANEL + "playing_together_section/header_4": T.PANEL + "playing_together_section/paragraph_9": T.PANEL + "playing_together_section/padding_9": T.PANEL + "playing_together_section/paragraph_10": T.PANEL + try_realms_action_button: T.BUTTON + encyclopedia_button: T.PANEL + encyclopedia_section: T.STACK_PANEL + "encyclopedia_section/paragraph_1": T.PANEL +} + +export type HudType = { + hud_player_renderer: T.PANEL + "hud_player_renderer/hud_player": T.CUSTOM + hotbar_renderer: T.CUSTOM + "hotbar_renderer/hotbar_slot_image": T.IMAGE + cooldown_renderer: T.CUSTOM + heart_renderer: T.CUSTOM + horse_heart_renderer: T.CUSTOM + armor_renderer: T.CUSTOM + exp_progress_bar_and_hotbar: T.PANEL + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": T.PANEL + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": T.CUSTOM + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": T.CUSTOM + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend/hotbar": T.PANEL + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": T.PANEL + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": T.CUSTOM + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": T.CUSTOM + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": T.PANEL + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": T.PANEL + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": T.PANEL + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": T.PANEL + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": T.PANEL + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": T.CUSTOM + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": T.CUSTOM + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": T.CUSTOM + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": T.LABEL + "exp_progress_bar_and_hotbar/item_text_factory": T.FACTORY + exp_progress_bar_and_hotbar_pocket: T.PANEL + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": T.PANEL + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": T.PANEL + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": T.CUSTOM + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": T.LABEL + "exp_progress_bar_and_hotbar_pocket/hotbar_panel": T.STACK_PANEL + "exp_progress_bar_and_hotbar_pocket/item_text": T.PANEL + "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": T.FACTORY + "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": T.CUSTOM + "exp_progress_bar_and_hotbar_pocket/dash_rend": T.CUSTOM + full_progress_bar: T.IMAGE + empty_progress_bar: T.IMAGE + progress_bar_nub: T.IMAGE + progress_text_label: T.LABEL + horse_jump_renderer: T.CUSTOM + dash_renderer: T.CUSTOM + locator_bar: T.CUSTOM + hunger_renderer: T.CUSTOM + bubbles_renderer: T.CUSTOM + mob_effects_renderer: T.CUSTOM + vignette_renderer: T.CUSTOM + editor_gizmo_renderer: T.CUSTOM + cursor_renderer: T.CUSTOM + progress_indicator_renderer: T.CUSTOM + camera_renderer: T.CUSTOM + editor_volume_highlight_renderer: T.CUSTOM + editor_compass_renderer: T.CUSTOM + hotbar_hud_item_icon: T.CUSTOM + elipses_image: T.IMAGE + bound_button_label: T.UNKNOWN + default_borderless_button_layout: T.IMAGE + hover_borderless_button_layout: T.IMAGE + pressed_borderless_button_layout: T.IMAGE + borderless_button: T.BUTTON + "borderless_button/default": T.IMAGE + "borderless_button/hover": T.IMAGE + "borderless_button/pressed": T.IMAGE + "borderless_button/elipses": T.IMAGE + hotbar_elipses_button: T.BUTTON + start_cap_image: T.IMAGE + end_cap_image: T.IMAGE + hotbar_start_cap: T.PANEL + "hotbar_start_cap/start_cap_image": T.IMAGE + hotbar_end_cap: T.PANEL + "hotbar_end_cap/end_cap_image": T.IMAGE + heart_image: T.IMAGE + hotbar_slot_image: T.IMAGE + hotbar_slot_selected_image: T.IMAGE + gui_hotbar_slot_button_prototype: T.BUTTON + player_position: T.IMAGE + "player_position/player_position_text": T.LABEL + number_of_days_played: T.IMAGE + "number_of_days_played/number_of_days_played_text": T.LABEL + chat_label: T.LABEL + chat_grid_item: T.PANEL + "chat_grid_item/chat_background": T.IMAGE + "chat_grid_item/chat_background/chat_text": T.LABEL + chat_panel: T.PANEL + "chat_panel/stack_panel": T.STACK_PANEL + item_durability: T.CUSTOM + item_storage: T.CUSTOM + container_item_lock_overlay: T.PANEL + item_lock_cell_image: T.IMAGE + gui_hotbar_grid_item: T.PANEL + "gui_hotbar_grid_item/hotbar_slot_selected_image": T.IMAGE + "gui_hotbar_grid_item/hotbar_renderer": T.CUSTOM + "gui_hotbar_grid_item/hotbar_parent": T.PANEL + "gui_hotbar_grid_item/hotbar_parent/item_icon": T.CUSTOM + "gui_hotbar_grid_item/hotbar_parent/item_count": T.LABEL + "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": T.PANEL + "gui_hotbar_grid_item/hotbar_parent/item_dura": T.CUSTOM + "gui_hotbar_grid_item/hotbar_parent/item_store": T.CUSTOM + "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": T.PANEL + "gui_hotbar_grid_item/cooldown_renderer": T.CUSTOM + "gui_hotbar_grid_item/hotbar_slot_button": T.BUTTON + gui_hotbar_grid_item_pocket: T.PANEL + "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": T.IMAGE + "gui_hotbar_grid_item_pocket/hotbar_renderer": T.CUSTOM + "gui_hotbar_grid_item_pocket/hotbar_parent": T.PANEL + "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": T.CUSTOM + "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": T.LABEL + "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": T.CUSTOM + "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": T.CUSTOM + "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": T.PANEL + "gui_hotbar_grid_item_pocket/cooldown_renderer": T.CUSTOM + "gui_hotbar_grid_item_pocket/hotbar_slot_button": T.BUTTON + centered_gui_elements: T.PANEL + "centered_gui_elements/hud_player_rend_desktop": T.PANEL + centered_gui_elements_at_bottom_middle: T.PANEL + "centered_gui_elements_at_bottom_middle/heart_rend": T.CUSTOM + "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": T.CUSTOM + "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": T.CUSTOM + "centered_gui_elements_at_bottom_middle/armor_rend": T.CUSTOM + "centered_gui_elements_at_bottom_middle/hunger_rend": T.CUSTOM + "centered_gui_elements_at_bottom_middle/bubbles_rend_0": T.CUSTOM + "centered_gui_elements_at_bottom_middle/bubbles_rend_1": T.CUSTOM + "centered_gui_elements_at_bottom_middle/exp_rend": T.PANEL + centered_gui_elements_at_bottom_middle_touch: T.PANEL + "centered_gui_elements_at_bottom_middle_touch/heart_rend": T.CUSTOM + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": T.CUSTOM + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": T.CUSTOM + "centered_gui_elements_at_bottom_middle_touch/armor_rend": T.CUSTOM + "centered_gui_elements_at_bottom_middle_touch/hunger_rend": T.CUSTOM + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": T.CUSTOM + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": T.CUSTOM + "centered_gui_elements_at_bottom_middle_touch/exp_rend": T.PANEL + not_centered_gui_elements: T.PANEL + "not_centered_gui_elements/heart_rend": T.CUSTOM + "not_centered_gui_elements/horse_heart_rend": T.CUSTOM + "not_centered_gui_elements/hunger_rend": T.CUSTOM + "not_centered_gui_elements/armor_rend": T.CUSTOM + "not_centered_gui_elements/hud_player_rend_pocket": T.PANEL + "not_centered_gui_elements/bubbles_rend_0": T.CUSTOM + "not_centered_gui_elements/bubbles_rend_1": T.CUSTOM + hotbar_chooser: T.PANEL + "hotbar_chooser/desktop_hotbar": T.STACK_PANEL + "hotbar_chooser/pocket_hotbar": T.STACK_PANEL + hotbar_elipses_panel_right_content: T.STACK_PANEL + "hotbar_elipses_panel_right_content/elipses_content": T.PANEL + hotbar_elipses_panel_right_art: T.PANEL + "hotbar_elipses_panel_right_art/slot": T.IMAGE + "hotbar_elipses_panel_right_art/button": T.BUTTON + hotbar_elipses_panel_left_content: T.STACK_PANEL + "hotbar_elipses_panel_left_content/button": T.PANEL + hotbar_elipses_panel_left_art: T.PANEL + "hotbar_elipses_panel_left_art/slot": T.IMAGE + "hotbar_elipses_panel_left_art/button": T.BUTTON + hotbar_panel: T.STACK_PANEL + "hotbar_panel/hotbar_start_cap": T.PANEL + "hotbar_panel/hotbar_elipses_panel_left": T.STACK_PANEL + "hotbar_panel/hotbar_grid": T.GRID + "hotbar_panel/hotbar_elipses_panel_right": T.STACK_PANEL + "hotbar_panel/hotbar_end_cap": T.PANEL + hotbar_panel_pocket: T.STACK_PANEL + "hotbar_panel_pocket/hotbar_start_cap_frame": T.PANEL + "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": T.PANEL + "hotbar_panel_pocket/hotbar_elipses_panel_left": T.PANEL + "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": T.PANEL + "hotbar_panel_pocket/hotbar_grid": T.GRID + "hotbar_panel_pocket/hotbar_elipses_panel_right": T.PANEL + "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": T.PANEL + "hotbar_panel_pocket/hotbar_end_cap_frame": T.PANEL + "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": T.PANEL + hotbar_grid: T.GRID + edu_hotbar_grid: T.GRID + item_name_text_root: T.PANEL + "item_name_text_root/item_text_aligner": T.STACK_PANEL + "item_name_text_root/item_text_aligner/item_text_control": T.PANEL + "item_name_text_root/item_text_aligner/item_text_control/item_text_background": T.IMAGE + "item_name_text_root/item_text_aligner/item_text_control/item_text_label": T.LABEL + "item_name_text_root/item_text_aligner/interact_padding": T.PANEL + "item_name_text_root/item_text_aligner/survival_buffer": T.PANEL + item_name_text: T.PANEL + jukebox_popup_text: T.PANEL + hud_tip_text: T.IMAGE + "hud_tip_text/item_text_label": T.LABEL + auto_save: T.IMAGE + hud_actionbar_text: T.IMAGE + "hud_actionbar_text/actionbar_message": T.LABEL + hud_title_text: T.STACK_PANEL + "hud_title_text/title_frame": T.PANEL + "hud_title_text/title_frame/title_background": T.IMAGE + "hud_title_text/title_frame/title": T.LABEL + "hud_title_text/subtitle_frame": T.PANEL + "hud_title_text/subtitle_frame/subtitle_background": T.IMAGE + "hud_title_text/subtitle_frame/subtitle": T.LABEL + boss_name_panel: T.PANEL + "boss_name_panel/boss_name": T.LABEL + tooltip_helper_icon_description: T.LABEL + "tooltip_helper_icon_description/label_background": T.IMAGE + tooltip_helper: T.STACK_PANEL + "tooltip_helper/icon": T.UNKNOWN + "tooltip_helper/padding": T.PANEL + "tooltip_helper/centerer": T.PANEL + "tooltip_helper/centerer/desc": T.LABEL + tooltip_helper_form_fitting: T.STACK_PANEL + "tooltip_helper_form_fitting/icon": T.UNKNOWN + "tooltip_helper_form_fitting/padding": T.PANEL + "tooltip_helper_form_fitting/centerer": T.PANEL + "tooltip_helper_form_fitting/centerer/desc": T.LABEL + keyboard_tooltip_helper: T.STACK_PANEL + keyboard_tooltip_helper_form_fitting: T.STACK_PANEL + mixed_tooltip_helper: T.PANEL + "mixed_tooltip_helper/gamepad_tooltip": T.STACK_PANEL + "mixed_tooltip_helper/keyboard_tooltip": T.STACK_PANEL + mixed_tooltip_helper_form_fitting: T.PANEL + "mixed_tooltip_helper_form_fitting/gamepad_tooltip": T.STACK_PANEL + "mixed_tooltip_helper_form_fitting/keyboard_tooltip": T.STACK_PANEL + base_icon_image: T.STACK_PANEL + "base_icon_image/icon": T.IMAGE + "base_icon_image/postfix_label_wrapper": T.PANEL + "base_icon_image/postfix_label_wrapper/label": T.LABEL + base_keyboard_icon: T.PANEL + "base_keyboard_icon/icon": T.PANEL + "base_keyboard_icon/icon/key_backing": T.IMAGE + "base_keyboard_icon/icon/key_backing/key_label": T.LABEL + "base_keyboard_icon/icon/mouse_buttons": T.LABEL + left_helpers_edu: T.STACK_PANEL + "left_helpers_edu/tip_window": T.IMAGE + "left_helpers_edu/tip_window/stack_panel": T.STACK_PANEL + "left_helpers_edu/tip_paddding": T.PANEL + "left_helpers_edu/controls_toggle_label": T.PANEL + "left_helpers_edu/controls_toggle_label/tip": T.PANEL + "left_helpers_edu/controls_inventory_label": T.PANEL + "left_helpers_edu/controls_inventory_label/tip": T.PANEL + "left_helpers_edu/controls_menu_label": T.PANEL + "left_helpers_edu/controls_menu_label/tip": T.PANEL + left_helpers: T.PANEL + "left_helpers/stack_panel": T.STACK_PANEL + emote_label_background: T.IMAGE + emote_tip: T.IMAGE + "emote_tip/emote_keyboard_centerer": T.PANEL + "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": T.STACK_PANEL + "emote_tip/emote_gamepad_helper": T.UNKNOWN + emote_expediate_helpers: T.PANEL + "emote_expediate_helpers/stack_panel": T.STACK_PANEL + "emote_expediate_helpers/stack_panel/emote_tip_0": T.IMAGE + "emote_expediate_helpers/stack_panel/emote_tip_1": T.IMAGE + "emote_expediate_helpers/stack_panel/emote_tip_2": T.IMAGE + "emote_expediate_helpers/stack_panel/emote_tip_3": T.IMAGE + right_helpers: T.PANEL + "right_helpers/stack_panel": T.STACK_PANEL + boss_health_panel: T.PANEL + "boss_health_panel/boss_name": T.PANEL + "boss_health_panel/progress_bar_for_collections": T.PANEL + boss_health_grid: T.GRID + wysiwyg_reset_modal_ok: T.BUTTON + wysiwyg_reset_modal_cancel: T.BUTTON + wysiwyg_close_without_saving_modal_ok: T.BUTTON + wysiwyg_close_without_saving_modal_cancel: T.BUTTON + root_panel: T.PANEL + "root_panel/layout_customization_reset": T.IMAGE + "root_panel/layout_customization_reset/layout_customization_reset_modal": T.PANEL + "root_panel/layout_customization_close_without_saving": T.IMAGE + "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": T.PANEL + "root_panel/layout_customization_main_panel": T.PANEL + "root_panel/layout_customization_sub_panel": T.PANEL + "root_panel/layout_customization_hint_drag_frame": T.IMAGE + "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": T.LABEL + "root_panel/layout_customization_hint_deselect_frame": T.IMAGE + "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": T.LABEL + "root_panel/layout_customization_hint_saved": T.IMAGE + "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": T.LABEL + "root_panel/left_helpers": T.UNKNOWN + "root_panel/right_helpers": T.PANEL + "root_panel/emote_expediate_helpers": T.PANEL + "root_panel/centered_gui_elements": T.PANEL + "root_panel/centered_gui_elements_at_bottom_middle": T.PANEL + "root_panel/centered_gui_elements_at_bottom_middle_touch": T.PANEL + "root_panel/not_centered_gui_elements": T.PANEL + "root_panel/gamertag_label_for_splitscreen": T.LABEL + "root_panel/exp_rend": T.PANEL + "root_panel/exp_rend_resizable": T.PANEL + "root_panel/hud_tip_text_factory": T.FACTORY + "root_panel/hud_actionbar_text_area": T.PANEL + "root_panel/hud_title_text_area": T.PANEL + "root_panel/mob_effects_renderer": T.CUSTOM + "root_panel/vignette_rend": T.CUSTOM + "root_panel/curor_rend": T.CUSTOM + "root_panel/game_tip": T.PANEL + "root_panel/sidebar": T.PANEL + "root_panel/progress_rend": T.CUSTOM + "root_panel/chat_stack": T.STACK_PANEL + "root_panel/chat_stack/paper_doll_padding": T.PANEL + "root_panel/chat_stack/non_centered_gui_padding": T.PANEL + "root_panel/chat_stack/player_position": T.IMAGE + "root_panel/chat_stack/number_of_days_played": T.IMAGE + "root_panel/chat_stack/game_tip": T.PANEL + "root_panel/chat_stack/chat_panel": T.PANEL + "root_panel/boss_health_panel": T.STACK_PANEL + "root_panel/boss_health_panel/boss_hud_padding": T.PANEL + "root_panel/boss_health_panel/boss_hud_touch_padding": T.PANEL + "root_panel/boss_health_panel/boss_hud_panel": T.PANEL + "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": T.GRID + "root_panel/save_icon": T.IMAGE + hud_screen: T.SCREEN + hud_content: T.PANEL + "hud_content/root_panel": T.PANEL + "hud_content/editor_gizmo_renderer": T.CUSTOM + "hud_content/editor_compass_renderer": T.CUSTOM + "hud_content/editor_volume_highlight_renderer": T.CUSTOM + "hud_content/camera_renderer": T.CUSTOM + layout_customization_main_panel_button: T.PANEL + "layout_customization_main_panel_button/button": T.BUTTON + layout_customization_main_panel: T.PANEL + "layout_customization_main_panel/main_panel_frame": T.IMAGE + "layout_customization_main_panel/main_panel_frame/main_panel_content": T.STACK_PANEL + "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": T.PANEL + "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": T.PANEL + "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": T.PANEL + "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": T.PANEL + layout_customization_option_slider: T.STACK_PANEL + "layout_customization_option_slider/slider": T.PANEL + "layout_customization_option_slider/reset": T.PANEL + "layout_customization_option_slider/reset/reset_button": T.BUTTON + "layout_customization_option_slider/reset/reset_button/default": T.IMAGE + "layout_customization_option_slider/reset/reset_button/hover": T.IMAGE + "layout_customization_option_slider/reset/reset_button/pressed": T.IMAGE + layout_customization_option_content: T.PANEL + "layout_customization_option_content/scale_option": T.STACK_PANEL + "layout_customization_option_content/opacity_option": T.STACK_PANEL + "layout_customization_option_content/apply_to_all_toggle": T.STACK_PANEL + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": T.PANEL + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": T.IMAGE + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": T.IMAGE + "layout_customization_option_content/apply_to_all_toggle/caption_frame": T.PANEL + "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": T.LABEL + layout_customization_option: T.PANEL + "layout_customization_option/content": T.PANEL + layout_customization_sub_panel: T.PANEL + "layout_customization_sub_panel/background": T.IMAGE + "layout_customization_sub_panel/background/sub_panel_content": T.GRID +} + +export type HostOptionsType = { + button_label: T.LABEL + host_image_panel: T.PANEL + "host_image_panel/host_image": T.LABEL + host_glyph_panel: T.IMAGE + scrollable_selector_area: T.PANEL + host_main_button: T.BUTTON + scrolling_panel: T.PANEL + "scrolling_panel/background": T.IMAGE + "scrolling_panel/scrollable_tab": T.PANEL + button_content: T.PANEL + "button_content/button_label": T.LABEL + "button_content/image": T.IMAGE + main_light_button: T.BUTTON + main_dark_button: T.BUTTON + host_grid: T.GRID + host_sub_command_grid_item: T.PANEL + "host_sub_command_grid_item/host_option_banner": T.BUTTON + return_from_sub_command_button: T.BUTTON + platform_icon_panel: T.PANEL + gamertag_wrapper: T.PANEL + player_pic_panel: T.PANEL + "player_pic_panel/player_gamer_pic": T.IMAGE + "player_pic_panel/player_local_icon": T.IMAGE + player_button_content: T.STACK_PANEL + "player_button_content/player_pic_panel": T.PANEL + "player_button_content/player_gamertag": T.PANEL + "player_button_content/platform_icon": T.PANEL + player_grid_item: T.PANEL + "player_grid_item/player_banner": T.BUTTON + host_friends_tab: T.PANEL + "host_friends_tab/players_grid": T.GRID + host_teleport_grid_item: T.PANEL + "host_teleport_grid_item/host_option_toggle": T.PANEL + "host_teleport_grid_item/host_option_button": T.BUTTON + host_teleport_buttons: T.STACK_PANEL + "host_teleport_buttons/return": T.BUTTON + "host_teleport_buttons/sub_tab": T.PANEL + "host_teleport_buttons/sub_tab/host_main_grid": T.GRID + host_teleport_player_list_buttons: T.STACK_PANEL + "host_teleport_player_list_buttons/toggle": T.PANEL + "host_teleport_player_list_buttons/toggle/host_time_panel": T.PANEL + host_teleport_player_buttons: T.STACK_PANEL + host_time_buttons: T.STACK_PANEL + "host_time_buttons/return": T.BUTTON + "host_time_buttons/sub_tab": T.PANEL + "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": T.PANEL + host_weather_buttons: T.STACK_PANEL + "host_weather_buttons/return": T.BUTTON + "host_weather_buttons/sub_tab": T.PANEL + "host_weather_buttons/sub_tab/host_main_grid": T.GRID + host_menu_grid_item: T.PANEL + "host_menu_grid_item/host_option_banner": T.BUTTON + host_main_buttons: T.STACK_PANEL + "host_main_buttons/host_main_grid": T.GRID + host_panel: T.PANEL + "host_panel/host_main_panel": T.STACK_PANEL + "host_panel/host_teleport_panel": T.STACK_PANEL + "host_panel/host_teleport_player_panel": T.STACK_PANEL + "host_panel/host_time_panel": T.STACK_PANEL + "host_panel/host_weather_panel": T.STACK_PANEL +} + +export type BedType = { + in_bed_screen: T.SCREEN + in_bed_screen_content: T.PANEL + "in_bed_screen_content/wake_up_button_panel": T.STACK_PANEL + "in_bed_screen_content/wake_up_button_panel/wake_up_button": T.BUTTON + "in_bed_screen_content/wake_up_button_panel/spacer": T.PANEL + "in_bed_screen_content/wake_up_button_panel/chat_button": T.BUTTON + "in_bed_screen_content/wake_up_label_panel": T.LABEL + "in_bed_screen_content/select_button": T.PANEL + background: T.IMAGE +} + +export type ImReaderType = { + reader_button_contents: T.IMAGE + reader_button: T.BUTTON + webview: T.CUSTOM + loading: T.STACK_PANEL + "loading/animation_item": T.PANEL + "loading/animation_item/animation": T.IMAGE + "loading/loading_text_item": T.PANEL + "loading/loading_text_item/loading_text": T.LABEL + "loading/bottom_padding": T.PANEL + "loading/cancel_button": T.BUTTON + no_retry_error_button: T.BUTTON + retry_error_buttons: T.STACK_PANEL + "retry_error_buttons/try_again": T.BUTTON + "retry_error_buttons/middle_padding": T.PANEL + "retry_error_buttons/cancel": T.BUTTON + error: T.STACK_PANEL + "error/error_text": T.LABEL + "error/error_buttons": T.PANEL + "error/error_buttons/retry": T.STACK_PANEL + "error/error_buttons/no_retry": T.BUTTON + loading_and_error_panel: T.PANEL + "loading_and_error_panel/loading": T.STACK_PANEL + "loading_and_error_panel/error": T.STACK_PANEL + immersive_reader_screen_content: T.PANEL + "immersive_reader_screen_content/loading_and_error": T.PANEL + "immersive_reader_screen_content/webview": T.CUSTOM + immersive_reader_screen: T.SCREEN +} + +export type CraftingType = { + inventory_x_gamepad_helper: T.STACK_PANEL + inventory_y_gamepad_helper: T.STACK_PANEL + inventory_a_gamepad_helper: T.STACK_PANEL + inventory_b_gamepad_helper: T.STACK_PANEL + gamepad_helper_bumpers: T.PANEL + "gamepad_helper_bumpers/gamepad_helper_left_bumper": T.STACK_PANEL + "gamepad_helper_bumpers/gamepad_helper_right_bumper": T.STACK_PANEL + gamepad_helper_left_trigger: T.STACK_PANEL + gamepad_helper_right_trigger: T.STACK_PANEL + container_gamepad_helpers_second_row: T.STACK_PANEL + "container_gamepad_helpers_second_row/buffer_panel_left": T.PANEL + "container_gamepad_helpers_second_row/left_thumbstick_visibility": T.PANEL + "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": T.STACK_PANEL + "container_gamepad_helpers_second_row/fill_panel": T.PANEL + "container_gamepad_helpers_second_row/right_thumbstick_visibility": T.PANEL + "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": T.STACK_PANEL + "container_gamepad_helpers_second_row/buffer_panel_right": T.PANEL + crafting_root_panel: T.INPUT_PANEL + drop_item_panel: T.INPUT_PANEL + inventory_container_slot_button: T.BUTTON + creative_hotbar_container_slot_button: T.BUTTON + no_coalesce_container_slot_button: T.BUTTON + creative_no_coalesce_container_slot_button: T.BUTTON + output_no_coalesce_container_slot_button: T.BUTTON + tab_image: T.IMAGE + item_renderer: T.CUSTOM + inventory_icon: T.IMAGE + recipe_book_icon: T.IMAGE + creative_icon: T.IMAGE + icon_image: T.IMAGE + tab_front: T.IMAGE + tab_back: T.IMAGE + equipment_icon: T.IMAGE + construction_icon: T.IMAGE + nature_icon: T.IMAGE + search_icon: T.IMAGE + miscellaneous_icon: T.IMAGE + empty_tab_panel: T.PANEL + "empty_tab_panel/img": T.UNKNOWN + top_tab: T.PANEL + search_tab: T.PANEL + construction_tab: T.PANEL + equipment_tab: T.PANEL + nature_tab: T.PANEL + items_tab: T.PANEL + tab_navigation_panel_layout: T.STACK_PANEL + "tab_navigation_panel_layout/navigation_tabs": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content": T.STACK_PANEL + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": T.FACTORY + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": T.FACTORY + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": T.FACTORY + "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": T.PANEL + tab_content_padding: T.PANEL + tab_content: T.PANEL + "tab_content/tab_content_search_bar_panel": T.STACK_PANEL + "tab_content/tab_content_search_bar_panel/vertical_padding_1": T.PANEL + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": T.STACK_PANEL + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": T.PANEL + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": T.LABEL + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": T.PANEL + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": T.PANEL + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": T.PANEL + "tab_content/tab_content_search_bar_panel/vertical_padding_2": T.PANEL + "tab_content/tab_content_search_bar_panel/search_and_filter_panel": T.STACK_PANEL + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": T.EDIT_BOX + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": T.PANEL + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": T.PANEL + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": T.PANEL + "tab_content/tab_content_search_bar_panel/vertical_padding_3": T.PANEL + "tab_content/tab_content_search_bar_panel/scroll_pane": T.UNKNOWN + "tab_content/nodrop_zone": T.INPUT_PANEL + armor_overlay: T.IMAGE + offhand_overlay: T.IMAGE + armor_overlay_helmet: T.IMAGE + armor_overlay_chest: T.IMAGE + armor_overlay_legs: T.IMAGE + armor_image_feet: T.IMAGE + armor_overlay_shield: T.IMAGE + player_armor_panel: T.PANEL + "player_armor_panel/player_bg": T.IMAGE + "player_armor_panel/player_bg/player_renderer_panel": T.PANEL + "player_armor_panel/player_bg/player_renderer_panel/player_renderer": T.CUSTOM + "player_armor_panel/player_preview_border": T.IMAGE + "player_armor_panel/armor_grid": T.GRID + "player_armor_panel/armor_grid/head_grid_item": T.INPUT_PANEL + "player_armor_panel/armor_grid/chest_grid_item": T.INPUT_PANEL + "player_armor_panel/armor_grid/legs_grid_item": T.INPUT_PANEL + "player_armor_panel/armor_grid/feet_grid_item": T.INPUT_PANEL + "player_armor_panel/offhand_grid": T.GRID + "player_armor_panel/offhand_grid/offhand_grid_item": T.INPUT_PANEL + crafting_label: T.LABEL + inventory_label: T.LABEL + crafting_arrow: T.IMAGE + crafting_arrow_large: T.IMAGE + crafting_input_grid_item: T.INPUT_PANEL + crafting_grid_3x3: T.GRID + "crafting_grid_3x3/crafting_input_item_top_left": T.INPUT_PANEL + "crafting_grid_3x3/crafting_input_item_top_mid": T.INPUT_PANEL + "crafting_grid_3x3/crafting_input_item_top_right": T.INPUT_PANEL + "crafting_grid_3x3/crafting_input_item_mid_left": T.INPUT_PANEL + "crafting_grid_3x3/crafting_input_item_middle": T.INPUT_PANEL + "crafting_grid_3x3/crafting_input_item_mid_right": T.INPUT_PANEL + "crafting_grid_3x3/crafting_input_item_bot_left": T.INPUT_PANEL + "crafting_grid_3x3/crafting_input_item_bot_mid": T.INPUT_PANEL + "crafting_grid_3x3/crafting_input_item_bot_right": T.INPUT_PANEL + crafting_grid_2x2: T.GRID + "crafting_grid_2x2/crafting_input_item_top_left": T.INPUT_PANEL + "crafting_grid_2x2/crafting_input_item_top_right": T.INPUT_PANEL + "crafting_grid_2x2/crafting_input_item_bot_left": T.INPUT_PANEL + "crafting_grid_2x2/crafting_input_item_bot_right": T.INPUT_PANEL + output_grid_3x3: T.GRID + "output_grid_3x3/work_bench_output": T.INPUT_PANEL + output_grid_2x2: T.GRID + "output_grid_2x2/work_bench_output": T.INPUT_PANEL + work_bench_panel_3x3: T.PANEL + "work_bench_panel_3x3/inventory_label": T.LABEL + "work_bench_panel_3x3/crafting_arrow_large": T.IMAGE + "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": T.PANEL + "work_bench_panel_3x3/work_bench_output_grid": T.GRID + crafting_grid_3x3_with_label: T.PANEL + "crafting_grid_3x3_with_label/crafting_label": T.LABEL + "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID + crafting_grid_2x2_with_label: T.PANEL + "crafting_grid_2x2_with_label/crafting_label": T.LABEL + "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID + crafting_panel_2x2: T.PANEL + "crafting_panel_2x2/crafting_arrow": T.IMAGE + "crafting_panel_2x2/crafting_table": T.CUSTOM + "crafting_panel_2x2/crafting_grid_2x2": T.PANEL + "crafting_panel_2x2/survival_crafting_output_grid": T.GRID + survival_panel_top_half: T.PANEL + "survival_panel_top_half/player_armor_panel": T.PANEL + "survival_panel_top_half/crafting_panel": T.PANEL + crafting_panel_top_half: T.PANEL + "crafting_panel_top_half/crafting_panel": T.PANEL + recipe_container_cell_images: T.IMAGE + cell_image_recipe_default: T.IMAGE + cell_image_recipe_group_head_collapsed: T.IMAGE + cell_image_recipe_group_head_expanded: T.IMAGE + cell_image_recipe_group_item: T.IMAGE + cell_image_recipe_selected: T.IMAGE + cell_image_recipe_default_red: T.IMAGE + container_cell_images: T.PANEL + "container_cell_images/cell_classic": T.IMAGE + "container_cell_images/cell_normal": T.IMAGE + "container_cell_images/cell_invert": T.IMAGE + "container_cell_images/cell_red": T.IMAGE + "container_cell_images/cell_selected": T.IMAGE + "container_cell_images/cell_darkgrey": T.IMAGE + crafting_container_cell_images: T.PANEL + cell_image: T.IMAGE + cell_image_classic: T.IMAGE + cell_image_normal: T.IMAGE + cell_image_invert: T.IMAGE + cell_image_red: T.IMAGE + cell_image_selected: T.IMAGE + cell_image_darkgrey: T.IMAGE + container_overlay_images: T.PANEL + "container_overlay_images/expand": T.IMAGE + "container_overlay_images/contract": T.IMAGE + item_overlay_image: T.IMAGE + item_overlay_contract: T.IMAGE + item_overlay_expand: T.IMAGE + inventory_container_item: T.INPUT_PANEL + "inventory_container_item/item_cell": T.PANEL + "inventory_container_item/item_cell/item": T.PANEL + "inventory_container_item/item_cell/item/stack_count_label": T.LABEL + "inventory_container_item/item_cell/durability_bar": T.CUSTOM + "inventory_container_item/item_cell/storage_bar": T.CUSTOM + "inventory_container_item/item_cell_overlay_ref": T.UNKNOWN + "inventory_container_item/item_selected_image": T.IMAGE + "inventory_container_item/item_button_ref": T.UNKNOWN + "inventory_container_item/container_item_lock_overlay": T.PANEL + "inventory_container_item/item_lock_cell_image": T.IMAGE + "inventory_container_item/bundle_slot_panel": T.PANEL + grid_item_for_recipe_book: T.INPUT_PANEL + scroll_grid_panel: T.INPUT_PANEL + "scroll_grid_panel/grid": T.GRID + scroll_grid: T.GRID + scroll_panel: T.PANEL + recipe_book_scroll_panel: T.PANEL + creative_label: T.LABEL + filter_toggle: T.PANEL + toolbar_background: T.IMAGE + layout_toggle_content: T.PANEL + "layout_toggle_content/image": T.UNKNOWN + "layout_toggle_content/icon": T.UNKNOWN + layout_template_toggle: T.TOGGLE + layout_toggle: T.PANEL + creative_layout_toggle: T.PANEL + recipe_book_layout_toggle: T.PANEL + survival_layout_toggle: T.PANEL + help_button: T.BUTTON + "help_button/default": T.IMAGE + "help_button/hover": T.IMAGE + "help_button/pressed": T.IMAGE + player_inventory: T.INPUT_PANEL + "player_inventory/common_panel": T.PANEL + "player_inventory/inventory_panel_top_half": T.UNKNOWN + "player_inventory/inventory_panel_bottom_half": T.PANEL + "player_inventory/hotbar_grid": T.GRID + recipe_book: T.INPUT_PANEL + "recipe_book/gamepad_helper_bumpers": T.PANEL + "recipe_book/tab_navigation_panel": T.STACK_PANEL + "recipe_book/bg": T.PANEL + "recipe_book/tab_content_panel": T.PANEL + "recipe_book/creative_hotbar_panel": T.INPUT_PANEL + creative_hotbar_panel: T.INPUT_PANEL + "creative_hotbar_panel/creative_hotbar_background": T.IMAGE + "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": T.GRID + center_fold: T.INPUT_PANEL + "center_fold/center_bg": T.IMAGE + toolbar_panel: T.INPUT_PANEL + "toolbar_panel/toolbar_background": T.IMAGE + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": T.STACK_PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": T.STACK_PANEL + inventory_screen_base: T.SCREEN + crafting_screen: T.SCREEN + inventory_screen: T.SCREEN + recipe_book_toggle_image: T.IMAGE + recipe_inventory_screen_content: T.PANEL + "recipe_inventory_screen_content/content_stack_panel": T.STACK_PANEL + "recipe_inventory_screen_content/content_stack_panel/recipe_book": T.INPUT_PANEL + "recipe_inventory_screen_content/content_stack_panel/center_fold": T.INPUT_PANEL + "recipe_inventory_screen_content/content_stack_panel/survival_padding": T.PANEL + "recipe_inventory_screen_content/content_stack_panel/player_inventory": T.INPUT_PANEL + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": T.PANEL + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": T.INPUT_PANEL + "recipe_inventory_screen_content/inventory_take_progress_icon_button": T.BUTTON + "recipe_inventory_screen_content/inventory_selected_icon_button": T.BUTTON + "recipe_inventory_screen_content/hold_icon": T.BUTTON + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": T.STACK_PANEL + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": T.STACK_PANEL + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": T.STACK_PANEL + "recipe_inventory_screen_content/selected_item_details_factory": T.FACTORY + "recipe_inventory_screen_content/item_lock_notification_factory": T.FACTORY + "recipe_inventory_screen_content/flying_item_renderer": T.CUSTOM +} + +export type CraftingPocketType = { + survival_icon: T.CUSTOM + full_screen_icon: T.IMAGE + crafting_icon: T.IMAGE + armor_icon: T.IMAGE + crafting_arrow_down: T.IMAGE + empty_tab_panel: T.PANEL + left_tab: T.PANEL + right_tab: T.PANEL + full_screen_tab: T.PANEL + crafting_tab: T.PANEL + armor_tab: T.PANEL + search_tab: T.PANEL + construction_tab: T.PANEL + equipment_tab: T.PANEL + items_tab: T.PANEL + nature_tab: T.PANEL + inventory_tab: T.PANEL + left_tab_navigation_panel_pocket: T.PANEL + "left_tab_navigation_panel_pocket/content": T.STACK_PANEL + "left_tab_navigation_panel_pocket/content/search_tab_panel": T.PANEL + "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": T.PANEL + "left_tab_navigation_panel_pocket/content/construction_tab_panel": T.PANEL + "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": T.FACTORY + "left_tab_navigation_panel_pocket/content/equipment_tab_panel": T.PANEL + "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY + "left_tab_navigation_panel_pocket/content/items_tab_panel": T.PANEL + "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": T.FACTORY + "left_tab_navigation_panel_pocket/content/nature_tab_panel": T.PANEL + "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": T.FACTORY + "left_tab_navigation_panel_pocket/content/fill": T.PANEL + "left_tab_navigation_panel_pocket/content/inventory_tab": T.PANEL + right_tab_navigation_panel_pocket: T.PANEL + "right_tab_navigation_panel_pocket/content": T.STACK_PANEL + "right_tab_navigation_panel_pocket/content/close": T.IMAGE + "right_tab_navigation_panel_pocket/content/close/nodrop_zone": T.INPUT_PANEL + "right_tab_navigation_panel_pocket/content/close/close_button": T.BUTTON + "right_tab_navigation_panel_pocket/content/fill": T.PANEL + "right_tab_navigation_panel_pocket/content/full_screen_tab": T.PANEL + "right_tab_navigation_panel_pocket/content/crafting_tab": T.PANEL + "right_tab_navigation_panel_pocket/content/armor_tab": T.PANEL + recipe_book_tab_content: T.PANEL + inventory_tab_content: T.PANEL + right_tab_content: T.PANEL + "right_tab_content/bg": T.PANEL + "right_tab_content/content": T.UNKNOWN + crafting_input_grid_item: T.INPUT_PANEL + crafting_grid_3x3: T.GRID + crafting_grid_2x2: T.GRID + output_grid_and_label: T.PANEL + "output_grid_and_label/recipe_item_label": T.LABEL + "output_grid_and_label/output_grid": T.GRID + output_grid: T.GRID + "output_grid/work_bench_output": T.INPUT_PANEL + crafting_grid_3x3_with_label: T.PANEL + "crafting_grid_3x3_with_label/crafting_label": T.LABEL + "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID + crafting_grid_2x2_with_label: T.PANEL + "crafting_grid_2x2_with_label/crafting_label": T.LABEL + "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID + scroll_background_image: T.IMAGE + grid_item_for_inventory: T.INPUT_PANEL + survival_inventory_grid: T.INPUT_PANEL + scroll_panel_pocket: T.PANEL + recipe_book_scroll_panel_pocket: T.PANEL + survival_scroll_panel: T.PANEL + pocket_armor_tab_content: T.STACK_PANEL + "pocket_armor_tab_content/label_and_renderer": T.PANEL + "pocket_armor_tab_content/label_and_renderer/label_panel": T.PANEL + "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": T.LABEL + "pocket_armor_tab_content/label_and_renderer/renderer_panel": T.PANEL + "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": T.CUSTOM + "pocket_armor_tab_content/equipment_and_renderer": T.STACK_PANEL + "pocket_armor_tab_content/equipment_and_renderer/equipment": T.STACK_PANEL + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": T.GRID + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": T.INPUT_PANEL + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": T.INPUT_PANEL + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": T.INPUT_PANEL + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": T.INPUT_PANEL + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": T.GRID + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": T.INPUT_PANEL + "pocket_armor_tab_content/equipment_and_renderer/armor_panel": T.PANEL + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": T.PANEL + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": T.IMAGE + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": T.IMAGE + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": T.PANEL + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": T.CUSTOM + hotbar_panel: T.INPUT_PANEL + "hotbar_panel/bg": T.PANEL + "hotbar_panel/hotbar_grid": T.GRID + hotbar_grid_item: T.INPUT_PANEL + survival_panel_pocket: T.PANEL + "survival_panel_pocket/crafting_panel": T.PANEL + "survival_panel_pocket/crafting_arrow_down": T.IMAGE + "survival_panel_pocket/crafting_table": T.CUSTOM + "survival_panel_pocket/output": T.PANEL + survival_panel_crafting_pocket: T.PANEL + "survival_panel_crafting_pocket/crafting_panel": T.PANEL + "survival_panel_crafting_pocket/crafting_arrow_down": T.IMAGE + "survival_panel_crafting_pocket/output": T.PANEL + inventory_screen_pocket_base: T.SCREEN + crafting_screen_pocket: T.SCREEN + inventory_screen_pocket: T.SCREEN + left_panel: T.PANEL + "left_panel/left_background": T.PANEL + "left_panel/recipe_book_tab_content": T.PANEL + "left_panel/inventory_tab_content": T.PANEL + right_panel: T.INPUT_PANEL + "right_panel/right_background": T.PANEL + "right_panel/help_button": T.BUTTON + "right_panel/crafting_tab_content": T.PANEL + "right_panel/armor_tab_content": T.PANEL + both_panels: T.STACK_PANEL + "both_panels/left_tab_navigation_panel_pocket": T.PANEL + "both_panels/left_panel": T.PANEL + "both_panels/offset_panel": T.PANEL + "both_panels/offset_panel/center_bg": T.IMAGE + "both_panels/right_panel": T.INPUT_PANEL + "both_panels/right_tab_navigation_panel_pocket": T.PANEL + gamepad_helper_border: T.STACK_PANEL + "gamepad_helper_border/left_gamepad_panel": T.PANEL + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": T.STACK_PANEL + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": T.STACK_PANEL + "gamepad_helper_border/both_panels": T.STACK_PANEL + "gamepad_helper_border/right_gamepad_panel": T.PANEL + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": T.STACK_PANEL + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": T.STACK_PANEL + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": T.STACK_PANEL + hotbar_and_panels: T.STACK_PANEL + "hotbar_and_panels/padding_1": T.PANEL + "hotbar_and_panels/gamepad_helper_border": T.STACK_PANEL + "hotbar_and_panels/hotbar_section_panel": T.INPUT_PANEL + "hotbar_and_panels/hotbar_section_panel/hotbar": T.INPUT_PANEL + recipe_inventory_screen_content_pocket: T.INPUT_PANEL + "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": T.STACK_PANEL + "recipe_inventory_screen_content_pocket/toast_screen_content": T.PANEL + "recipe_inventory_screen_content_pocket/selected_item_details_factory": T.FACTORY + "recipe_inventory_screen_content_pocket/item_lock_notification_factory": T.FACTORY + "recipe_inventory_screen_content_pocket/base_panel": T.PANEL + "recipe_inventory_screen_content_pocket/base_panel/root_panel": T.INPUT_PANEL + "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": T.BUTTON + "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": T.BUTTON + "recipe_inventory_screen_content_pocket/base_panel/hold_icon": T.BUTTON + "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": T.STACK_PANEL + "recipe_inventory_screen_content_pocket/flying_item_renderer": T.CUSTOM +} + +export type InviteType = { + black_border: T.IMAGE + black_border_hover: T.IMAGE + platform_icon: T.IMAGE + grey_borderless_locked: T.IMAGE + checked_locked_image: T.IMAGE + unchecked_locked_image: T.IMAGE + left_arrow_image: T.IMAGE + right_arrow_image: T.IMAGE + account_link_image: T.IMAGE + panel_text: T.LABEL + loading_friends: T.LABEL + account_link_icon: T.STACK_PANEL + "account_link_icon/space_01": T.PANEL + "account_link_icon/account_link_image": T.IMAGE + "account_link_icon/space_03": T.PANEL + gamerpic: T.CUSTOM + third_party_profile_pic: T.IMAGE + gamerpic_panel: T.PANEL + "gamerpic_panel/black_border": T.IMAGE + "gamerpic_panel/gamerpic": T.CUSTOM + "gamerpic_panel/online_indication_positioner": T.PANEL + "gamerpic_panel/online_indication_positioner/indicator_images": T.PANEL + third_party_profile_pic_panel: T.PANEL + "third_party_profile_pic_panel/black_border": T.IMAGE + "third_party_profile_pic_panel/third_party_profile_pic": T.IMAGE + platform_icon_panel: T.PANEL + "platform_icon_panel/platform_icon": T.IMAGE + status_image: T.IMAGE + online_image: T.IMAGE + offline_image: T.IMAGE + online_indicator: T.PANEL + "online_indicator/online_image": T.IMAGE + checkbox_panel: T.PANEL + checked_panel: T.PANEL + "checked_panel/checked_image": T.IMAGE + unchecked_panel: T.PANEL + "unchecked_panel/unchecked_image": T.IMAGE + checked_locked_panel: T.PANEL + "checked_locked_panel/checked_image": T.IMAGE + unchecked_locked_panel: T.PANEL + "unchecked_locked_panel/unchecked_image": T.IMAGE + checked_hover_panel: T.PANEL + "checked_hover_panel/checked_hover_image": T.IMAGE + unchecked_hover_panel: T.PANEL + "unchecked_hover_panel/unchecked_hover_image": T.IMAGE + friend_label: T.LABEL + friend_grid_xbl_gamertag: T.LABEL + friend_grid_current_game_label: T.LABEL + friend_grid_third_party_tag: T.LABEL + friend_background: T.IMAGE + friend_background_hover: T.IMAGE + friend_background_borderless: T.IMAGE + hover_friend_button: T.PANEL + "hover_friend_button/friend_button_layout": T.UNKNOWN + "hover_friend_button/hover_text": T.CUSTOM + linked_hover_friend_button: T.PANEL + "linked_hover_friend_button/hover_text": T.CUSTOM + msa_friend_button_layout: T.STACK_PANEL + "msa_friend_button_layout/spacer01": T.PANEL + "msa_friend_button_layout/platform_icon_spacer": T.PANEL + "msa_friend_button_layout/spacer_02": T.PANEL + "msa_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL + "msa_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": T.LABEL + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL + platform_friend_button_layout: T.STACK_PANEL + "platform_friend_button_layout/spacer01": T.PANEL + "platform_friend_button_layout/platform_icon_spacer": T.PANEL + "platform_friend_button_layout/third_party_pic_panel_positioner": T.PANEL + "platform_friend_button_layout/third_party_pic_panel_positioner/pp": T.PANEL + "platform_friend_button_layout/spacer_02": T.PANEL + "platform_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL + "platform_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": T.LABEL + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL + "platform_friend_button_layout/platform_icon_positioner": T.PANEL + "platform_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL + "platform_friend_button_layout/online_indication_positioner": T.PANEL + "platform_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL + linked_friend_button_layout: T.STACK_PANEL + "linked_friend_button_layout/spacer01": T.PANEL + "linked_friend_button_layout/platform_icon_positioner": T.PANEL + "linked_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL + "linked_friend_button_layout/spacer02": T.PANEL + "linked_friend_button_layout/platform_profile_pictures": T.STACK_PANEL + "linked_friend_button_layout/platform_profile_pictures/spacer_01": T.PANEL + "linked_friend_button_layout/platform_profile_pictures/pp2": T.PANEL + "linked_friend_button_layout/platform_profile_pictures/account_link": T.STACK_PANEL + "linked_friend_button_layout/platform_profile_pictures/pp1": T.PANEL + "linked_friend_button_layout/platform_profile_pictures/spacer_03": T.PANEL + "linked_friend_button_layout/spacer03": T.PANEL + "linked_friend_button_layout/platform_profile_names": T.STACK_PANEL + "linked_friend_button_layout/platform_profile_names/spacer_01": T.PANEL + "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": T.LABEL + "linked_friend_button_layout/platform_profile_names/spacer_02": T.PANEL + "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": T.LABEL + "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": T.LABEL + "linked_friend_button_layout/online_indication_positioner": T.PANEL + "linked_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL + template_msa_friend_button_layout: T.PANEL + "template_msa_friend_button_layout/friend_background": T.IMAGE + "template_msa_friend_button_layout/friend_button_layout": T.STACK_PANEL + "template_msa_friend_button_layout/unchecked": T.UNKNOWN + template_platform_friend_button_layout: T.PANEL + "template_platform_friend_button_layout/friend_background": T.IMAGE + "template_platform_friend_button_layout/friend_button_layout": T.STACK_PANEL + "template_platform_friend_button_layout/unchecked": T.UNKNOWN + template_linked_friend_button_layout: T.PANEL + "template_linked_friend_button_layout/friend_background": T.IMAGE + "template_linked_friend_button_layout/horizontal_spacer_panel": T.STACK_PANEL + "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": T.UNKNOWN + "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": T.STACK_PANEL + msa_friend_button: T.TOGGLE + "msa_friend_button/checked": T.PANEL + "msa_friend_button/unchecked": T.PANEL + "msa_friend_button/checked_hover": T.PANEL + "msa_friend_button/unchecked_hover": T.PANEL + "msa_friend_button/checked_locked": T.PANEL + "msa_friend_button/unchecked_locked": T.PANEL + "msa_friend_button/checked_locked_hover": T.PANEL + "msa_friend_button/unchecked_locked_hover": T.PANEL + platform_friend_button: T.TOGGLE + "platform_friend_button/checked": T.PANEL + "platform_friend_button/unchecked": T.PANEL + "platform_friend_button/checked_hover": T.PANEL + "platform_friend_button/unchecked_hover": T.PANEL + "platform_friend_button/checked_locked": T.PANEL + "platform_friend_button/unchecked_locked": T.PANEL + "platform_friend_button/checked_locked_hover": T.PANEL + "platform_friend_button/unchecked_locked_hover": T.PANEL + linked_friend_button: T.TOGGLE + "linked_friend_button/checked": T.PANEL + "linked_friend_button/unchecked": T.PANEL + "linked_friend_button/checked_hover": T.PANEL + "linked_friend_button/unchecked_hover": T.PANEL + "linked_friend_button/checked_locked": T.PANEL + "linked_friend_button/unchecked_locked": T.PANEL + "linked_friend_button/checked_locked_hover": T.PANEL + "linked_friend_button/unchecked_locked_hover": T.PANEL + msa_friend_grid_item_template: T.STACK_PANEL + "msa_friend_grid_item_template/friend_button_Panel": T.PANEL + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": T.PANEL + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": T.PANEL + "msa_friend_grid_item_template/friend_button_Panel/friend_button": T.TOGGLE + "msa_friend_grid_item_template/profile_button_pannel": T.PANEL + "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": T.BUTTON + "msa_friend_grid_item_template/spacer_03": T.PANEL + platform_friend_grid_item_template: T.PANEL + "platform_friend_grid_item_template/friend_button": T.TOGGLE + friend_linked_account_grid_item_template: T.PANEL + "friend_linked_account_grid_item_template/friend_button": T.TOGGLE + online_xbox_live_friend_grid_item: T.STACK_PANEL + offline_xbox_live_friend_grid_item: T.STACK_PANEL + online_linked_account_friend_grid_item: T.PANEL + offline_linked_account_friend_grid_item: T.PANEL + online_platform_friend_grid_item: T.PANEL + offline_platform_friend_grid_item: T.PANEL + online_xbox_live_friend_list_grid: T.GRID + offline_xbox_live_friend_list_grid: T.GRID + online_platform_friend_list_grid: T.GRID + offline_platform_friend_list_grid: T.GRID + online_linked_account_friend_list_grid: T.GRID + offline_linked_account_friend_list_grid: T.GRID + friends_pagination_controls: T.STACK_PANEL + "friends_pagination_controls/previous_button": T.BUTTON + "friends_pagination_controls/center_panel": T.PANEL + "friends_pagination_controls/center_panel/page_counter": T.LABEL + "friends_pagination_controls/next_button": T.BUTTON + friends_category: T.STACK_PANEL + "friends_category/friends_grid": T.UNKNOWN + "friends_category/pagination_stack_panel": T.STACK_PANEL + "friends_category/pagination_stack_panel/padding_1": T.PANEL + "friends_category/pagination_stack_panel/pagination_controls": T.STACK_PANEL + "friends_category/pagination_stack_panel/padding_2": T.PANEL + "friends_category/pagination_stack_panel/divider": T.PANEL + "friends_category/padding": T.PANEL + frame_label: T.LABEL + friend_panel: T.PANEL + scrolling_content_stack: T.STACK_PANEL + "scrolling_content_stack/message": T.PANEL + "scrolling_content_stack/message/frame_label": T.LABEL + "scrolling_content_stack/online_platform": T.PANEL + "scrolling_content_stack/online_platform/frame_label": T.LABEL + "scrolling_content_stack/vertical_padding_0": T.PANEL + "scrolling_content_stack/online_platform_friend_list_category": T.STACK_PANEL + "scrolling_content_stack/crossplatform_disabled_panel": T.IMAGE + "scrolling_content_stack/crossplatform_disabled_panel/disable_text": T.LABEL + "scrolling_content_stack/crossplatform_disable_spacer": T.PANEL + "scrolling_content_stack/online_cross_platform": T.PANEL + "scrolling_content_stack/online_cross_platform/frame_label": T.LABEL + "scrolling_content_stack/vertical_padding_1": T.PANEL + "scrolling_content_stack/online_linked_account_friend_list_category": T.STACK_PANEL + "scrolling_content_stack/online_xbox_live_friend_list_category": T.STACK_PANEL + "scrolling_content_stack/offline_platform": T.PANEL + "scrolling_content_stack/offline_platform/frame_label": T.LABEL + "scrolling_content_stack/vertical_padding_2": T.PANEL + "scrolling_content_stack/offline_platform_friend_list_category": T.STACK_PANEL + "scrolling_content_stack/no_platform_friends": T.PANEL + "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": T.PANEL + "scrolling_content_stack/offline_cross_platform": T.PANEL + "scrolling_content_stack/offline_cross_platform/frame_label": T.LABEL + "scrolling_content_stack/vertical_padding_3": T.PANEL + "scrolling_content_stack/offline_linked_account_friend_list_category": T.STACK_PANEL + "scrolling_content_stack/offline_xbox_live_friend_list_category": T.STACK_PANEL + "scrolling_content_stack/no_xbox_live_friends": T.PANEL + "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": T.PANEL + progress_bar_and_scrolling_content_panel: T.PANEL + "progress_bar_and_scrolling_content_panel/progress_loading_bars": T.IMAGE + "progress_bar_and_scrolling_content_panel/invite_scrolling_area": T.STACK_PANEL + no_xbox_live_friends_frame_label: T.LABEL + no_platform_friends_frame_label: T.LABEL + horizontal_invite_panel: T.PANEL + vertical_invite_panel: T.PANEL + scrolling_area: T.PANEL + invite_button_content: T.PANEL + "invite_button_content/gameplay_helper": T.UNKNOWN + "invite_button_content/button_label": T.LABEL + invite_button_content_hover: T.PANEL + invite_button_content_pressed: T.PANEL + invite_button_content_locked: T.PANEL + add_friend_button: T.BUTTON + profile_button_content: T.PANEL + "profile_button_content/button_label": T.LABEL + profile_button_content_hover: T.PANEL + profile_button_content_pressed: T.PANEL + profile_button_content_locked: T.PANEL + add_member_button: T.BUTTON + send_button: T.BUTTON + profile_button: T.BUTTON + horizontal_button_stack_panel: T.STACK_PANEL + "horizontal_button_stack_panel/add_friend_button": T.BUTTON + "horizontal_button_stack_panel/add_member_button": T.BUTTON + "horizontal_button_stack_panel/padding": T.PANEL + "horizontal_button_stack_panel/send_button": T.BUTTON + vertical_buttons_top_panel: T.PANEL + "vertical_buttons_top_panel/add_friend_button": T.BUTTON + "vertical_buttons_top_panel/add_member_button": T.BUTTON + vertical_buttons_bottom_panel: T.PANEL + "vertical_buttons_bottom_panel/send_button": T.BUTTON + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + invite_screen: T.SCREEN + invite_screen_content: T.PANEL + "invite_screen_content/gamepad_helpers": T.PANEL + "invite_screen_content/invite_panel": T.UNKNOWN +} + +export type JigsawEditorType = { + horizontal_buffer: T.PANEL + vertical_buffer: T.PANEL + common_text_label: T.LABEL + text_edit_box: T.EDIT_BOX + help_icon: T.IMAGE + toggle_with_label: T.STACK_PANEL + "toggle_with_label/toggle": T.TOGGLE + "toggle_with_label/toggle_label_padding": T.PANEL + "toggle_with_label/toggle_label_wrapper": T.PANEL + "toggle_with_label/toggle_label_wrapper/toggle_label": T.LABEL + "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": T.LABEL + data_item_title_and_edit: T.STACK_PANEL + "data_item_title_and_edit/data_title": T.LABEL + "data_item_title_and_edit/data_text_edit": T.EDIT_BOX + data_item_title_and_edit_fill: T.STACK_PANEL + data_item_title_and_toggle: T.STACK_PANEL + "data_item_title_and_toggle/data_title": T.LABEL + "data_item_title_and_toggle/toggle": T.STACK_PANEL + exit_buttons: T.STACK_PANEL + "exit_buttons/done_button": T.BUTTON + "exit_buttons/buffer": T.PANEL + "exit_buttons/help_button": T.BUTTON + scrolling_panel_wrapper: T.IMAGE + "scrolling_panel_wrapper/scrolling_panel": T.PANEL + scrolling_panel: T.PANEL + scroll_panel_content: T.STACK_PANEL + "scroll_panel_content/target_pool_title_and_edit": T.STACK_PANEL + "scroll_panel_content/buffer_1": T.PANEL + "scroll_panel_content/name_title_and_edit": T.STACK_PANEL + "scroll_panel_content/buffer_2": T.PANEL + "scroll_panel_content/target_title_and_edit": T.STACK_PANEL + "scroll_panel_content/buffer_3": T.PANEL + "scroll_panel_content/final_block_title_and_edit": T.STACK_PANEL + "scroll_panel_content/buffer_4": T.PANEL + "scroll_panel_content/selection_and_placement_priority": T.STACK_PANEL + "scroll_panel_content/buffer_5": T.PANEL + "scroll_panel_content/joint_type_title_and_toggle": T.STACK_PANEL + "scroll_panel_content/buffer_6": T.PANEL + selection_and_placement_priority: T.STACK_PANEL + "selection_and_placement_priority/selection_priority_title_and_edit": T.STACK_PANEL + "selection_and_placement_priority/buffer_1": T.PANEL + "selection_and_placement_priority/placement_priority_title_and_edit": T.STACK_PANEL + button_panel_wrapper: T.IMAGE + "button_panel_wrapper/exit_buttons": T.STACK_PANEL + jigsaw_editor_panel: T.STACK_PANEL + "jigsaw_editor_panel/scrolling_panel": T.IMAGE + "jigsaw_editor_panel/button_wrapper": T.PANEL + "jigsaw_editor_panel/button_wrapper/buttons": T.IMAGE + jigsaw_editor_content: T.PANEL + "jigsaw_editor_content/background_panel": T.STACK_PANEL + "jigsaw_editor_content/title": T.LABEL + "jigsaw_editor_content/jigsaw_editor_panel": T.STACK_PANEL + jigsaw_editor_screen: T.SCREEN +} + +export type LateJoinType = { + animation_panel: T.PANEL + "animation_panel/stacked_column": T.STACK_PANEL + "animation_panel/stacked_column/waiting_animating_text": T.LABEL + gamepad_helpers: T.STACK_PANEL + "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL + late_join_pregame_screen: T.SCREEN + late_join_screen_content: T.PANEL + "late_join_screen_content/animation_panel": T.PANEL + "late_join_screen_content/gamepad_helpers": T.STACK_PANEL +} + +export type LibraryModalType = { + modal_button: T.BUTTON + modal_text_content: T.LABEL + modal_ok: T.BUTTON + modal_cancel: T.BUTTON + in_game_prompt: T.PANEL + fetch_error: T.PANEL + content: T.PANEL + "content/fetch": T.PANEL + "content/ingame": T.PANEL + content_wrapper: T.INPUT_PANEL + "content_wrapper/content": T.PANEL + background: T.IMAGE + library_modal_screen: T.SCREEN + text_panel: T.STACK_PANEL + edu_icon: T.IMAGE + continue_button: T.BUTTON + paragraph: T.LABEL + welcome_text_panel: T.STACK_PANEL + "welcome_text_panel/padding_1": T.PANEL + "welcome_text_panel/paragraph_1_wrapper": T.STACK_PANEL + "welcome_text_panel/paragraph_1_wrapper/edu_icon": T.IMAGE + "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": T.PANEL + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": T.PANEL + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": T.LABEL + "welcome_text_panel/padding_2": T.PANEL + "welcome_text_panel/paragraph_two": T.LABEL + "welcome_text_panel/padding_3": T.PANEL + "welcome_text_panel/paragraph_three": T.LABEL + welcome_scrolling_panel: T.PANEL + welcome_panel_content: T.PANEL + "welcome_panel_content/background_panel": T.PANEL + "welcome_panel_content/welcome_scrolling_panel": T.PANEL + "welcome_panel_content/continue_button": T.BUTTON + welcome_panel: T.INPUT_PANEL + "welcome_panel/welcome": T.PANEL +} + +export type LocalWorldPickerType = { + local_world_picker_screen: T.SCREEN + local_world_picker_content: T.PANEL + "local_world_picker_content/background": T.PANEL + "local_world_picker_content/panel_label": T.LABEL + "local_world_picker_content/content": T.INPUT_PANEL +} + +export type LoomType = { + loom_label: T.LABEL + arrow_icon: T.IMAGE + pattern_cell_image: T.IMAGE + container_cell_image: T.IMAGE + banner_outline: T.IMAGE + item_empty_image: T.IMAGE + banner_empty_image: T.IMAGE + dye_empty_image: T.IMAGE + pattern_item_empty_image: T.IMAGE + toolbar_background: T.IMAGE + highlight_slot_panel: T.PANEL + "highlight_slot_panel/highlight": T.IMAGE + "highlight_slot_panel/white_border": T.IMAGE + pattern_slot_button: T.BUTTON + "pattern_slot_button/hover": T.UNKNOWN + banner_pattern: T.CUSTOM + pattern_button: T.INPUT_PANEL + "pattern_button/banner_pattern": T.UNKNOWN + "pattern_button/item_button_ref": T.UNKNOWN + scroll_grid: T.GRID + scroll_grid_panel: T.INPUT_PANEL + "scroll_grid_panel/grid": T.GRID + scroll_panel: T.PANEL + pattern_book_panel: T.INPUT_PANEL + "pattern_book_panel/bg": T.PANEL + "pattern_book_panel/scroll_panel": T.PANEL + result_slot_button: T.BUTTON + input_item_slot: T.INPUT_PANEL + dye_item_slot: T.INPUT_PANEL + material_item_slot: T.INPUT_PANEL + result_item_slot: T.INPUT_PANEL + input_slots_stack_panel: T.STACK_PANEL + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL + "input_slots_stack_panel/padding_1": T.PANEL + "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL + "input_slots_stack_panel/padding_2": T.PANEL + "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL + result_banner_renderer: T.CUSTOM + top_half_stack_panel: T.STACK_PANEL + "top_half_stack_panel/input_slots_holder": T.PANEL + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL + "top_half_stack_panel/padding_1": T.PANEL + "top_half_stack_panel/arrow_holder": T.PANEL + "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE + "top_half_stack_panel/padding_2": T.PANEL + "top_half_stack_panel/result_item_slot_holder": T.PANEL + "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL + "top_half_stack_panel/padding_3": T.PANEL + "top_half_stack_panel/result_banner_outline": T.IMAGE + "top_half_stack_panel/result_banner_outline/result_banner_renderer": T.CUSTOM + top_half_panel: T.PANEL + "top_half_panel/top_half_stack_panel": T.STACK_PANEL + right_panel: T.INPUT_PANEL + "right_panel/common_panel": T.PANEL + "right_panel/loom_screen_inventory": T.PANEL + "right_panel/loom_screen_inventory/loom_label": T.LABEL + "right_panel/loom_screen_inventory/top_half_panel": T.PANEL + "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "right_panel/loom_screen_inventory/hotbar_grid": T.GRID + help_button: T.BUTTON + toolbar_panel: T.INPUT_PANEL + "toolbar_panel/toolbar_background": T.IMAGE + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL + toolbar_anchor: T.PANEL + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL + center_fold: T.INPUT_PANEL + "center_fold/center_bg": T.IMAGE + screen_stack_panel: T.STACK_PANEL + "screen_stack_panel/pattern_book_panel": T.INPUT_PANEL + "screen_stack_panel/center_fold": T.INPUT_PANEL + "screen_stack_panel/right_panel": T.INPUT_PANEL + "screen_stack_panel/toolbar_anchor": T.PANEL + loom_panel: T.PANEL + "loom_panel/screen_stack_panel": T.STACK_PANEL + "loom_panel/container_gamepad_helpers": T.STACK_PANEL + "loom_panel/selected_item_details_factory": T.FACTORY + "loom_panel/item_lock_notification_factory": T.FACTORY + "loom_panel/inventory_selected_icon_button": T.BUTTON + "loom_panel/inventory_take_progress_icon_button": T.BUTTON + "loom_panel/flying_item_renderer": T.CUSTOM + loom_screen: T.SCREEN +} + +export type LoomPocketType = { + vertical_arrow_icon: T.IMAGE + banner_empty_image: T.IMAGE + dye_empty_image: T.IMAGE + pattern_item_empty_image: T.IMAGE + chest_item_renderer: T.CUSTOM + banner_item_renderer: T.CUSTOM + loom_item_renderer: T.CUSTOM + input_item_slot: T.INPUT_PANEL + dye_item_slot: T.INPUT_PANEL + material_item_slot: T.INPUT_PANEL + result_item_slot: T.INPUT_PANEL + right_panel: T.STACK_PANEL + "right_panel/content": T.INPUT_PANEL + "right_panel/content/bg": T.PANEL + "right_panel/content/loom_content_stack_panel": T.STACK_PANEL + "right_panel/navigation_tabs_holder": T.PANEL + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL + right_tab_loom: T.PANEL + right_navigation_tabs: T.STACK_PANEL + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE + "right_navigation_tabs/fill": T.PANEL + "right_navigation_tabs/right_tab_loom": T.PANEL + input_slots_stack_panel: T.STACK_PANEL + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL + "input_slots_stack_panel/padding_1": T.PANEL + "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL + "input_slots_stack_panel/padding_2": T.PANEL + "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL + result_banner_outline: T.IMAGE + "result_banner_outline/result_banner_renderer": T.CUSTOM + loom_content_stack_panel: T.STACK_PANEL + "loom_content_stack_panel/label_holder": T.PANEL + "loom_content_stack_panel/label_holder/loom_label": T.LABEL + "loom_content_stack_panel/padding_1": T.PANEL + "loom_content_stack_panel/input_slots_holder": T.PANEL + "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL + "loom_content_stack_panel/padding_2": T.PANEL + "loom_content_stack_panel/banner_pattern_holder": T.PANEL + "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": T.IMAGE + "loom_content_stack_panel/padding_3": T.PANEL + "loom_content_stack_panel/arrow_holder": T.PANEL + "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE + "loom_content_stack_panel/padding_4": T.PANEL + "loom_content_stack_panel/result_item_slot_holder": T.PANEL + "loom_content_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL + "loom_content_stack_panel/padding_5": T.PANEL + inventory_scroll_panel: T.PANEL + pattern_button: T.INPUT_PANEL + banner_pattern: T.CUSTOM + pattern_scroll_panel: T.PANEL + left_panel: T.STACK_PANEL + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL + "left_panel/content": T.INPUT_PANEL + "left_panel/content/bg": T.PANEL + "left_panel/content/inventory_scroll_panel": T.PANEL + "left_panel/content/pattern_scroll_panel": T.PANEL + left_tab_patterns: T.PANEL + left_tab_inventory: T.PANEL + left_navigation_tabs: T.STACK_PANEL + "left_navigation_tabs/left_tab_patterns": T.PANEL + "left_navigation_tabs/padding": T.PANEL + "left_navigation_tabs/left_tab_inventory": T.PANEL + pocket_hotbar_and_content_panels: T.STACK_PANEL + loom_panel: T.PANEL + "loom_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL + "loom_panel/container_gamepad_helpers": T.STACK_PANEL + "loom_panel/selected_item_details_factory": T.FACTORY + "loom_panel/item_lock_notification_factory": T.FACTORY + "loom_panel/inventory_selected_icon_button": T.BUTTON + "loom_panel/inventory_take_progress_icon_button": T.BUTTON + "loom_panel/flying_item_renderer": T.CUSTOM +} + +export type ManageFeedType = { + manage_feed_item_scrolling_panel: T.PANEL + "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": T.PANEL + manage_feed_item_scrolling_panel_content: T.PANEL + grid_panel: T.STACK_PANEL + "grid_panel/top_spacing_gap": T.PANEL + "grid_panel/manage_feed_loading_grid_item": T.PANEL + "grid_panel/manage_feed_grid": T.GRID + "grid_panel/spacing_gap2": T.PANEL + "grid_panel/pagination_panel": T.PANEL + pagination_panel: T.PANEL + manage_feed_grid: T.GRID + manage_feed_grid_item: T.PANEL + "manage_feed_grid_item/image_panel_instance": T.PANEL + "manage_feed_grid_item/manage_feed_buttons_panel": T.STACK_PANEL + "manage_feed_grid_item/manage_feed_text_instance": T.LABEL + "manage_feed_grid_item/feed_timesince_instance": T.LABEL + "manage_feed_grid_item/nr_of_reports": T.LABEL + "manage_feed_grid_item/manage_player_pic_panel": T.PANEL + "manage_feed_grid_item/manage_feed_gamertag_instance": T.LABEL + manage_feed_buttons_panel: T.STACK_PANEL + "manage_feed_buttons_panel/ignore_button": T.BUTTON + "manage_feed_buttons_panel/delete_button": T.BUTTON + manage_feed_loading_grid_item: T.PANEL + "manage_feed_loading_grid_item/loading_image_panel": T.PANEL + feed_buttons_panel_loading: T.STACK_PANEL + "feed_buttons_panel_loading/like_button_loading": T.UNKNOWN + "feed_buttons_panel_loading/spacing_gap1": T.PANEL + "feed_buttons_panel_loading/comment_button_loading": T.UNKNOWN + "feed_buttons_panel_loading/spacing_gap2": T.PANEL + "feed_buttons_panel_loading/options_button_loading": T.UNKNOWN + like_button_loading: T.IMAGE + comment_button_loading: T.IMAGE + options_button_loading: T.IMAGE + player_pic_panel_loading: T.PANEL + "player_pic_panel_loading/player_gamer_pic_loading": T.UNKNOWN + player_gamer_pic_loading: T.IMAGE + loading_image_panel: T.PANEL + "loading_image_panel/progress_loading_bars": T.IMAGE + "loading_image_panel/manage_feed_image_loading": T.IMAGE + "loading_image_panel/no_feed_item_content": T.LABEL + manage_feed_image_loading: T.IMAGE + ignore_button: T.BUTTON + ignore_content_panel: T.PANEL + "ignore_content_panel/ignore_label": T.LABEL + delete_button: T.BUTTON + delete_content_panel: T.PANEL + "delete_content_panel/delete_label": T.LABEL + manage_feed_image: T.IMAGE + manage_feed_image_content_panel: T.PANEL + "manage_feed_image_content_panel/manage_feed_image": T.IMAGE + "manage_feed_image_content_panel/textpost_content": T.LABEL + textpost_content: T.LABEL + image_panel: T.PANEL + "image_panel/manage_feed_image_content_panel": T.PANEL + manage_player_pic_panel: T.PANEL + "manage_player_pic_panel/manage_player_gamer_pic": T.CUSTOM + manage_player_gamer_pic: T.CUSTOM + content: T.PANEL + "content/top_bar_gradient": T.CUSTOM + "content/gamepad_helpers": T.STACK_PANEL + "content/return_button": T.BUTTON + "content/reported_items_label": T.LABEL + "content/manage_feed_item_scrolling_panel_instance": T.PANEL + manage_feed_screen: T.SCREEN + manage_feed_screen_content: T.PANEL + "manage_feed_screen_content/transparent_background": T.IMAGE + "manage_feed_screen_content/container": T.PANEL + "manage_feed_screen_content/container/content": T.PANEL +} + +export type ManifestValidationType = { + clipboard_icon: T.IMAGE + clipboard_icon_wrapper: T.PANEL + "clipboard_icon_wrapper/icon": T.IMAGE + trash_icon: T.IMAGE + trash_icon_wrapper: T.PANEL + "trash_icon_wrapper/icon": T.IMAGE + "trash_icon_wrapper/progress_loading_bars": T.IMAGE + refresh_icon: T.IMAGE + refresh_icon_wrapper: T.PANEL + "refresh_icon_wrapper/icon": T.IMAGE + "refresh_icon_wrapper/progress_loading_bars": T.IMAGE + section_divider: T.PANEL + "section_divider/divider_image": T.IMAGE + text_label: T.LABEL + icon_image: T.IMAGE + progress_loading_bars: T.IMAGE + background: T.IMAGE + black_background_fill: T.IMAGE + error_pack_secondary_layout: T.PANEL + "error_pack_secondary_layout/black": T.IMAGE + "error_pack_secondary_layout/black/stack_panel": T.PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel": T.STACK_PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": T.IMAGE + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": T.IMAGE + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": T.PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": T.STACK_PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": T.LABEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": T.PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": T.LABEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": T.STACK_PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": T.LABEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": T.PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": T.STACK_PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": T.PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": T.PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": T.BUTTON + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": T.PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": T.PANEL + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": T.BUTTON + "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel": T.STACK_PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": T.STACK_PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": T.LABEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": T.LABEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": T.STACK_PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": T.LABEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": T.LABEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": T.STACK_PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": T.LABEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": T.PANEL + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": T.LABEL + error_pack_content_layout: T.PANEL + "error_pack_content_layout/black": T.IMAGE + "error_pack_content_layout/black/error_panel": T.STACK_PANEL + "error_pack_content_layout/black/error_panel/error_header_panel": T.PANEL + "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": T.LABEL + "error_pack_content_layout/black/error_panel/error_header_panel/button": T.BUTTON + "error_pack_content_layout/black/error_panel/padding_0": T.PANEL + "error_pack_content_layout/black/error_panel/error_text_panel": T.STACK_PANEL + "error_pack_content_layout/black/error_panel/error_text_panel/error_text": T.LABEL + "error_pack_content_layout/black/error_panel/error_text_panel/space": T.PANEL + "error_pack_content_layout/black/error_panel/error_text_panel/offset": T.PANEL + "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": T.LABEL + delete_button: T.BUTTON + delete_text_button: T.BUTTON + clipboard_button: T.BUTTON + refresh_button: T.BUTTON + refresh_text_button: T.BUTTON + pack_secondary_info: T.PANEL + "pack_secondary_info/layout": T.PANEL + error_content_grid: T.STACK_PANEL + pack_error_item: T.STACK_PANEL + "pack_error_item/secondary": T.PANEL + "pack_error_item/error_header": T.PANEL + "pack_error_item/error_header/error_text": T.LABEL + "pack_error_item/error": T.STACK_PANEL + pack_error_group: T.STACK_PANEL + "pack_error_group/top_padding": T.PANEL + "pack_error_group/errors": T.STACK_PANEL + "pack_error_group/padding": T.PANEL + common_scrolling_panel: T.PANEL + common_content: T.INPUT_PANEL + scrolling_offsets: T.PANEL + manifest_validation_scroll_content: T.INPUT_PANEL + "manifest_validation_scroll_content/scrolling_panel": T.PANEL + common_scroll_panel: T.PANEL + manifest_validation_scroll_panel: T.PANEL + "manifest_validation_scroll_panel/pack_error_group": T.STACK_PANEL + manifest_validation_screen: T.SCREEN + manifest_validation_screen_content: T.PANEL + "manifest_validation_screen_content/background": T.PANEL +} + +export type SdlLabelType = { + sdl_label_factory: T.STACK_PANEL + sdl_label: T.LABEL + sdl_mc_ten_label: T.LABEL +} + +export type SdlDropdownsType = { + sdl_dropdown_rows: T.PANEL + "sdl_dropdown_rows/container_panel": T.STACK_PANEL + "sdl_dropdown_rows/container_panel/toggle": T.PANEL + "sdl_dropdown_rows/container_panel/pad": T.PANEL + sdl_rows_toggle: T.PANEL +} + +export type SdlImageRowType = { + image_row_factory: T.STACK_PANEL + buffer_panel: T.PANEL + single_image: T.PANEL + "single_image/image_with_border": T.PANEL + "single_image/image_with_border/screenshot_image": T.IMAGE + "single_image/image_with_border/dark_border": T.IMAGE + "single_image/image_with_border/progress_loading": T.PANEL + "single_image/image_selector": T.BUTTON + double_image: T.PANEL + triple_image_with_buffer: T.STACK_PANEL + "triple_image_with_buffer/buffer_panel_in_1": T.PANEL + "triple_image_with_buffer/buffer_panel_in_2": T.PANEL + "triple_image_with_buffer/triple_image": T.PANEL + "triple_image_with_buffer/buffer_panel_out_1": T.PANEL + "triple_image_with_buffer/buffer_panel_out_2": T.PANEL +} + +export type SdlTextRowType = { + sdl_text_row_factory: T.STACK_PANEL + sdl_header_component_factory: T.STACK_PANEL + label_button: T.BUTTON + sdl_header_component_panel: T.PANEL + "sdl_header_component_panel/header_background": T.IMAGE + "sdl_header_component_panel/header_internals": T.BUTTON + "sdl_header_component_panel/header_highlight": T.IMAGE + "sdl_header_component_panel/text_row_header_text": T.STACK_PANEL + sdl_text_row_component_panel: T.PANEL + "sdl_text_row_component_panel/text_background": T.IMAGE + "sdl_text_row_component_panel/text_row_selector": T.BUTTON + "sdl_text_row_component_panel/text_row_background": T.IMAGE + "sdl_text_row_component_panel/text_row_component_text": T.STACK_PANEL + solo_text_row: T.STACK_PANEL + "solo_text_row/buffer_panel_front": T.PANEL + "solo_text_row/headercomp_and_textcomp_panel": T.STACK_PANEL + "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": T.PANEL + "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": T.PANEL + "solo_text_row/buffer_panel_back": T.PANEL +} + +export type MobEffectType = { + effect_background: T.IMAGE + main_background: T.IMAGE + button_background: T.IMAGE + effect_name: T.LABEL + effect_timer: T.LABEL + effect_icon: T.IMAGE + mob_effect_grid_panel: T.PANEL + "mob_effect_grid_panel/mob_effect_grid": T.GRID + mob_effect_grid: T.GRID + mob_effect_grid_item: T.PANEL + "mob_effect_grid_item/bg": T.IMAGE + "mob_effect_grid_item/name": T.LABEL + "mob_effect_grid_item/timer": T.LABEL + "mob_effect_grid_item/icon": T.IMAGE + mob_effect_list_content_panel: T.PANEL + "mob_effect_list_content_panel/scrolling_panel": T.PANEL + mob_effect_screen_close_button: T.BUTTON + close_button_panel: T.PANEL + "close_button_panel/bg": T.IMAGE + "close_button_panel/close_button": T.BUTTON + mob_effect_content: T.PANEL + "mob_effect_content/bg": T.IMAGE + "mob_effect_content/close_panel": T.PANEL + "mob_effect_content/content_panel": T.PANEL + main_screen: T.PANEL + "main_screen/main_screen": T.PANEL + mob_effect_screen: T.SCREEN +} + +export type NonXblUserManagementType = { + black_tint_image: T.IMAGE + modal_title_text: T.LABEL + modal_label_text: T.STACK_PANEL + "modal_label_text/padding": T.PANEL + "modal_label_text/text": T.LABEL + modal_label_panel: T.PANEL + modal_left_button: T.BUTTON + modal_middle_button: T.BUTTON + modal_rightcancel_button: T.BUTTON + three_buttons_panel: T.PANEL + "three_buttons_panel/left": T.BUTTON + "three_buttons_panel/middle": T.BUTTON + "three_buttons_panel/right": T.BUTTON + two_buttons_panel: T.PANEL + "two_buttons_panel/left": T.BUTTON + "two_buttons_panel/right": T.BUTTON + single_button_panel: T.PANEL + "single_button_panel/left": T.BUTTON + modal_dialog_with_buttons: T.PANEL + "modal_dialog_with_buttons/background_with_buttons": T.PANEL + "modal_dialog_with_buttons/title": T.LABEL + "modal_dialog_with_buttons/text_with_buttons": T.PANEL + "modal_dialog_with_buttons/button_panel": T.UNKNOWN + modal_input_panel: T.INPUT_PANEL + "modal_input_panel/black_tint_image": T.IMAGE + user_confirm_dialog_screen_content: T.PANEL + "user_confirm_dialog_screen_content/modal_input": T.INPUT_PANEL + "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": T.PANEL + user_confirm_dialog_screen: T.SCREEN +} + +export type NpcInteractType = { + multiline_text_edit_control: T.EDIT_BOX + text_edit_control: T.EDIT_BOX + label_padding: T.PANEL + main_stack_panel: T.STACK_PANEL + skin_button: T.BUTTON + skin_model: T.CUSTOM + skin_model_clipper: T.PANEL + skins_grid_item: T.PANEL + "skins_grid_item/clip": T.PANEL + "skins_grid_item/clip/model": T.CUSTOM + "skins_grid_item/button": T.BUTTON + "skins_grid_item/selectFrame": T.IMAGE + skins_grid: T.GRID + cycle_pack_button: T.BUTTON + cycle_pack_left_button: T.BUTTON + cycle_pack_right_button: T.BUTTON + banner_fill: T.IMAGE + skin_picker: T.IMAGE + "skin_picker/left": T.BUTTON + "skin_picker/sg": T.GRID + "skin_picker/right": T.BUTTON + name_edit: T.EDIT_BOX + advanced_button: T.PANEL + "advanced_button/button": T.BUTTON + dialog_button: T.PANEL + "dialog_button/button": T.BUTTON + basic_stack_panel: T.STACK_PANEL + "basic_stack_panel/top_pad": T.PANEL + "basic_stack_panel/name_label": T.LABEL + "basic_stack_panel/name_padding": T.PANEL + "basic_stack_panel/name_edit": T.EDIT_BOX + "basic_stack_panel/dialog_pre_padding": T.PANEL + "basic_stack_panel/dialog_label": T.LABEL + "basic_stack_panel/dialog_post_padding": T.PANEL + "basic_stack_panel/dialog__padding": T.PANEL + "basic_stack_panel/dialog_button": T.PANEL + "basic_stack_panel/appearance_pre_padding": T.PANEL + "basic_stack_panel/appearance_label": T.LABEL + "basic_stack_panel/appearance_post_padding": T.PANEL + "basic_stack_panel/skins": T.IMAGE + "basic_stack_panel/advanced_button": T.PANEL + basic_content: T.PANEL + "basic_content/basic": T.STACK_PANEL + advanced_stack_panel: T.STACK_PANEL + "advanced_stack_panel/top_pad": T.PANEL + "advanced_stack_panel/add_help_text": T.STACK_PANEL + "advanced_stack_panel/middle_pad": T.PANEL + "advanced_stack_panel/actions": T.STACK_PANEL + "advanced_stack_panel/add_buttons": T.STACK_PANEL + "advanced_stack_panel/bottom_pad": T.PANEL + action_title: T.LABEL + plus_icon: T.IMAGE + plus_button: T.BUTTON + action_text_edit: T.EDIT_BOX + maximized_action_edit: T.EDIT_BOX + action_edit: T.STACK_PANEL + "action_edit/text_edit": T.EDIT_BOX + "action_edit/expand": T.BUTTON + button_name_edit: T.EDIT_BOX + command_toggle: T.TOGGLE + command_toggle_panel: T.PANEL + "command_toggle_panel/command_toggle": T.TOGGLE + "command_toggle_panel/toggle_label": T.LABEL + action_mode: T.STACK_PANEL + "action_mode/button_mode_toggle_panel": T.PANEL + "action_mode/on_enter_toggle_panel": T.PANEL + "action_mode/on_exit_toggle_panel": T.PANEL + button_name_label: T.LABEL + url_notifications: T.STACK_PANEL + "url_notifications/empty_uri_warning": T.IMAGE + "url_notifications/invalid_uri_warning": T.IMAGE + action_template: T.STACK_PANEL + "action_template/title": T.LABEL + "action_template/label_pad": T.PANEL + "action_template/edit": T.STACK_PANEL + "action_template/edit_pad": T.PANEL + "action_template/url_warning": T.STACK_PANEL + "action_template/url_pad": T.PANEL + "action_template/action_mode": T.STACK_PANEL + "action_template/mode_pad": T.PANEL + "action_template/button_name_label": T.LABEL + "action_template/button_name": T.EDIT_BOX + action_command: T.STACK_PANEL + action_url: T.STACK_PANEL + padded_action: T.STACK_PANEL + "padded_action/action": T.IMAGE + "padded_action/padding": T.PANEL + action: T.IMAGE + "action/trash": T.BUTTON + "action/command": T.STACK_PANEL + "action/url": T.STACK_PANEL + action_panel: T.STACK_PANEL + add_button: T.BUTTON + help_label: T.LABEL + add_help_section: T.STACK_PANEL + "add_help_section/text_url": T.PANEL + "add_help_section/text_url/tts_border": T.BUTTON + "add_help_section/text_url/wrapper_panel_url": T.STACK_PANEL + "add_help_section/text_url/wrapper_panel_url/text_url_a": T.LABEL + "add_help_section/text_url/wrapper_panel_url/padding": T.PANEL + "add_help_section/text_url/wrapper_panel_url/text_url_b": T.LABEL + "add_help_section/padding": T.PANEL + "add_help_section/text_command": T.PANEL + "add_help_section/text_command/tts_border": T.BUTTON + "add_help_section/text_command/wrapper_panel_command": T.STACK_PANEL + "add_help_section/text_command/wrapper_panel_command/text_command_a": T.LABEL + "add_help_section/text_command/wrapper_panel_command/padding": T.PANEL + "add_help_section/text_command/wrapper_panel_command/text_command_b": T.LABEL + add_help_text: T.STACK_PANEL + add_buttons: T.STACK_PANEL + "add_buttons/add_url": T.BUTTON + "add_buttons/padding": T.PANEL + "add_buttons/add_command": T.BUTTON + advanced_scrolling_panel: T.PANEL + advanced_scrolling_content: T.PANEL + "advanced_scrolling_content/advanced": T.STACK_PANEL + message_model: T.PANEL + "message_model/model": T.CUSTOM + clipped_message_model: T.PANEL + "clipped_message_model/model": T.PANEL + message_model_window: T.IMAGE + "message_model_window/model": T.PANEL + "message_model_window/immersive_reader_button": T.BUTTON + edit_box_background: T.PANEL + npc_message: T.EDIT_BOX + "npc_message/label": T.LABEL + "npc_message/visibility_panel": T.PANEL + "npc_message/visibility_panel/place_holder": T.LABEL + "npc_message/background": T.PANEL + text_scroll: T.PANEL + student_message_bubble: T.IMAGE + "student_message_bubble/dialog_panel": T.PANEL + "student_message_bubble/dialog_panel/text_scroll": T.PANEL + bubble_point: T.IMAGE + student_message_section: T.PANEL + "student_message_section/model": T.IMAGE + "student_message_section/point": T.IMAGE + "student_message_section/message": T.IMAGE + student_button_label: T.LABEL + student_button_label_panel: T.PANEL + "student_button_label_panel/url": T.LABEL + "student_button_label_panel/command": T.LABEL + student_button: T.PANEL + "student_button/button": T.BUTTON + student_buttons: T.PANEL + "student_buttons/buttons": T.STACK_PANEL + "student_buttons/buttons/actions": T.GRID + student_stack_panel: T.STACK_PANEL + "student_stack_panel/top_pad": T.PANEL + "student_stack_panel/message": T.PANEL + "student_stack_panel/message_pad": T.PANEL + "student_stack_panel/buttons": T.PANEL + student_view_content: T.PANEL + "student_view_content/student": T.STACK_PANEL + "student_view_content/close": T.PANEL + close_button_base: T.BUTTON + "close_button_base/default": T.PANEL + "close_button_base/hover": T.PANEL + "close_button_base/pressed": T.PANEL + x_close_button: T.BUTTON + ignorable_x_close_button: T.PANEL + "ignorable_x_close_button/button": T.BUTTON + close_button_holder: T.PANEL + "close_button_holder/close_basic": T.BUTTON + "close_button_holder/close_student_edit": T.PANEL + "close_button_holder/close_student": T.PANEL + "close_button_holder/close_maximized_action_edit": T.BUTTON + "close_button_holder/close_advanced": T.BUTTON + main_content: T.PANEL + "main_content/basic": T.PANEL + "main_content/advanced": T.PANEL + "main_content/maximized_action_edit": T.EDIT_BOX + "main_content/close": T.PANEL + root_panel: T.PANEL + gamepad_helper_exit_text: T.LABEL + close_text: T.STACK_PANEL + npc_screen_contents: T.PANEL + "npc_screen_contents/teacher": T.PANEL + "npc_screen_contents/student": T.PANEL + "npc_screen_contents/npc_screen_close": T.STACK_PANEL + npc_screen: T.SCREEN +} + +export type OnlineSafetyType = { + online_safety_proceed_button: T.BUTTON + online_safety_back_button: T.BUTTON + online_safety_description: T.LABEL + ip_safety_description: T.LABEL + online_safety_label_panel: T.PANEL + ip_safety_label_panel: T.PANEL + do_not_show_checkbox: T.TOGGLE + "do_not_show_checkbox/header_description_stack_panel": T.STACK_PANEL + "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL + "do_not_show_checkbox/header_description_stack_panel/buffer_panel": T.PANEL + "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL + "do_not_show_checkbox/header_description_stack_panel/another_panel": T.PANEL + online_safety_dialog: T.PANEL + ip_safety_dialog: T.PANEL + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + online_safety_screen: T.SCREEN + online_safety_screen_content: T.PANEL + "online_safety_screen_content/online_safety_dialog": T.PANEL + "online_safety_screen_content/gamepad_helpers": T.PANEL + ip_safety_screen: T.SCREEN + ip_safety_screen_content: T.PANEL + "ip_safety_screen_content/ip_safety_dialog": T.PANEL + "ip_safety_screen_content/gamepad_helpers": T.PANEL +} + +export type PackSettingsType = { + background: T.IMAGE + screen: T.SCREEN + main_screen_content: T.PANEL + pack_scroll_panel: T.PANEL + scrolling_content: T.STACK_PANEL + "scrolling_content/content_tiering_panel": T.STACK_PANEL + "scrolling_content/generated_form": T.STACK_PANEL + content_tiering_panel: T.STACK_PANEL + "content_tiering_panel/label_panel": T.PANEL + "content_tiering_panel/label_panel/content_tier_label": T.LABEL + "content_tiering_panel/label_panel/unsupported_content_tier_label": T.LABEL + "content_tiering_panel/slider_panel": T.PANEL + "content_tiering_panel/slider_panel/content_tier_slider": T.SLIDER + "content_tiering_panel/incompatible_label_panel": T.PANEL + "content_tiering_panel/incompatible_label_panel/label": T.LABEL +} + +export type PanoramaType = { + panorama_view: T.PANEL + "panorama_view/pan_left": T.BUTTON + "panorama_view/screenshot": T.INPUT_PANEL + "panorama_view/pan_right": T.BUTTON + panorama_input_panel: T.INPUT_PANEL + "panorama_input_panel/image_border": T.IMAGE + "panorama_input_panel/image_border/panorama_key_art": T.CUSTOM + "panorama_input_panel/image_border/progress_loading": T.PANEL + pan_left_button: T.BUTTON + pan_right_button: T.BUTTON +} + +export type PatchNotesType = { + solid_texture: T.IMAGE + image_with_background: T.IMAGE + "image_with_background/image": T.UNKNOWN + "image_with_background/image/loading_animation": T.PANEL + white_image: T.IMAGE + patch_main_image: T.IMAGE + store_image: T.IMAGE + patch_notes_header_background: T.PANEL + "patch_notes_header_background/black_background": T.IMAGE + "patch_notes_header_background/black_background/content": T.UNKNOWN + button_label_panel: T.PANEL + "button_label_panel/text_label": T.LABEL + button_content: T.PANEL + "button_content/button_label2": T.PANEL + patch_image: T.IMAGE + patch_notes_header_content_without_offer: T.PANEL + "patch_notes_header_content_without_offer/patch_image": T.IMAGE + patch_notes_header_content_with_offer: T.STACK_PANEL + "patch_notes_header_content_with_offer/patch_image": T.IMAGE + "patch_notes_header_content_with_offer/padding": T.PANEL + "patch_notes_header_content_with_offer/store_item_section": T.STACK_PANEL + "patch_notes_header_content_with_offer/store_item_section/store_image": T.IMAGE + "patch_notes_header_content_with_offer/store_item_section/padding": T.PANEL + "patch_notes_header_content_with_offer/store_item_section/store_button": T.PANEL + store_button: T.PANEL + "store_button/store_button": T.BUTTON + "store_button/loading_animation": T.BUTTON + patch_notes_header: T.PANEL + "patch_notes_header/patch_notes_background": T.PANEL + scroll_content: T.STACK_PANEL + "scroll_content/padding_0": T.PANEL + "scroll_content/patch_notes_header": T.PANEL + "scroll_content/padding_1": T.PANEL + "scroll_content/tts_label_wrapper": T.PANEL + patch_notes_panel: T.PANEL + "patch_notes_panel/patch_notes_text": T.LABEL + "patch_notes_panel/patch_notes_text/loading_animation": T.PANEL + patch_notes_content: T.PANEL + "patch_notes_content/scrolling_panel": T.PANEL + continue_button: T.BUTTON + patch_notes_dialog: T.PANEL + patch_notes_screen: T.SCREEN + sunsetting_button_panel: T.STACK_PANEL + "sunsetting_button_panel/padding_0": T.PANEL + "sunsetting_button_panel/more_info_button": T.BUTTON + "sunsetting_button_panel/padding_1": T.PANEL + "sunsetting_button_panel/continue_button": T.BUTTON + "sunsetting_button_panel/padding_2": T.PANEL + "sunsetting_button_panel/sunsetting_toggle_panel": T.TOGGLE + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": T.STACK_PANEL + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": T.PANEL + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": T.PANEL + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": T.LABEL + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": T.PANEL + sunsetting_content: T.PANEL + "sunsetting_content/scrolling_panel": T.PANEL + sunsetting_dialog: T.PANEL + sunsetting_screen: T.SCREEN +} + +export type PauseType = { + pause_icon: T.IMAGE + feedback_icon: T.IMAGE + change_skin_icon: T.IMAGE + take_screenshot_icon: T.IMAGE + settings_icon: T.IMAGE + achievements_icon: T.IMAGE + alex_icon: T.IMAGE + profile_gamerpic: T.CUSTOM + button_x: T.STACK_PANEL + dressing_room_controller_button_content: T.PANEL + "dressing_room_controller_button_content/button_x": T.STACK_PANEL + "dressing_room_controller_button_content/button_label_panel": T.PANEL + "dressing_room_controller_button_content/button_label_panel/button_label_text_left": T.LABEL + controller_button_label: T.LABEL + column_frame: T.PANEL + dressing_room_button_gamepad: T.BUTTON + dressing_room_button: T.BUTTON + profile_button_content: T.STACK_PANEL + "profile_button_content/button_offset_wrapper": T.PANEL + "profile_button_content/button_offset_wrapper/button_x": T.STACK_PANEL + "profile_button_content/gamerpic_offset_wrapper": T.PANEL + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE + "profile_button_content/padding_middle": T.PANEL + "profile_button_content/vertically_central_text": T.STACK_PANEL + "profile_button_content/vertically_central_text/top_padding": T.PANEL + "profile_button_content/vertically_central_text/profile_button_label": T.LABEL + "profile_button_content/padding_right": T.PANEL + profile_button: T.BUTTON + skin_viewer_panel: T.INPUT_PANEL + "skin_viewer_panel/paper_doll_panel": T.PANEL + "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM + "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM + skin_panel: T.PANEL + "skin_panel/interior": T.STACK_PANEL + skin_panel_interior: T.STACK_PANEL + "skin_panel_interior/offset_panel": T.PANEL + "skin_panel_interior/offset_panel/viewer_panel": T.INPUT_PANEL + "skin_panel_interior/fill_1": T.PANEL + "skin_panel_interior/change_profile_panel": T.STACK_PANEL + "skin_panel_interior/change_profile_panel/centering_panel_1": T.PANEL + "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": T.BUTTON + "skin_panel_interior/change_profile_panel/centering_panel_2": T.INPUT_PANEL + "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": T.BUTTON + "skin_panel_interior/change_profile_panel/centering_panel_3": T.INPUT_PANEL + "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": T.BUTTON + pause_button_template: T.BUTTON + grid_button_template: T.BUTTON + return_to_game_button: T.BUTTON + realms_stories_button_panel: T.PANEL + "realms_stories_button_panel/realms_stories_button": T.BUTTON + "realms_stories_button_panel/unread_story_count_panel": T.PANEL + realms_stories_button: T.BUTTON + unread_story_count_panel: T.PANEL + "unread_story_count_panel/text": T.LABEL + "unread_story_count_panel/text/background": T.IMAGE + store_button_panel: T.PANEL + "store_button_panel/store_button": T.BUTTON + "store_button_panel/store_error_button": T.BUTTON + store_button: T.BUTTON + store_error_button: T.BUTTON + store_error_button_content: T.IMAGE + "store_error_button_content/marketplace_button_label": T.LABEL + settings_button: T.BUTTON + how_to_play_button: T.BUTTON + invite_players_button: T.BUTTON + buy_button: T.BUTTON + quit_button: T.BUTTON + feedback_button: T.BUTTON + feedback_icon_button: T.PANEL + "feedback_icon_button/feedback_button": T.BUTTON + take_screenshot_gamepad_button_content: T.PANEL + "take_screenshot_gamepad_button_content/button_y": T.STACK_PANEL + "take_screenshot_gamepad_button_content/take_screenshot_icon": T.IMAGE + take_screenshot_gamepad_button: T.BUTTON + achievements_button_small: T.BUTTON + settings_button_small: T.BUTTON + take_screenshot_button: T.BUTTON + pause_screen: T.SCREEN + pause_screen_content: T.PANEL + "pause_screen_content/pause_screen_main_panels": T.STACK_PANEL + "pause_screen_content/skin_panel": T.PANEL + "pause_screen_content/friendsdrawer_button_panel": T.PANEL + "pause_screen_content/gamepad_helpers": T.PANEL + "pause_screen_content/keyboard_helpers": T.PANEL + friendsdrawer_button_panel: T.PANEL + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": T.PANEL + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": T.BUTTON + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": T.BUTTON + pause_screen_main_panels: T.STACK_PANEL + "pause_screen_main_panels/menu": T.IMAGE + left_buttons_panel: T.IMAGE + "left_buttons_panel/filler": T.PANEL + "left_buttons_panel/trialTime": T.CUSTOM + "left_buttons_panel/the_rest_panel": T.STACK_PANEL + smaller_buttons_panel: T.STACK_PANEL + "smaller_buttons_panel/stacked_column": T.STACK_PANEL + "smaller_buttons_panel/stacked_column/fill_1": T.PANEL + "smaller_buttons_panel/stacked_column/side_padding": T.PANEL + "smaller_buttons_panel/stacked_column/small_settings_button": T.INPUT_PANEL + "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": T.BUTTON + "smaller_buttons_panel/stacked_column/small_settings_padding": T.PANEL + "smaller_buttons_panel/stacked_column/small_achievements_button": T.INPUT_PANEL + "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": T.BUTTON + "smaller_buttons_panel/stacked_column/small_achievements_padding": T.PANEL + "smaller_buttons_panel/stacked_column/take_screenshot_btn": T.INPUT_PANEL + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": T.BUTTON + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": T.BUTTON + "smaller_buttons_panel/stacked_column/screenshot_padding": T.PANEL + "smaller_buttons_panel/stacked_column/fill_3": T.PANEL + "smaller_buttons_panel/padding_bottom": T.PANEL + social_buttons_panel: T.STACK_PANEL + "social_buttons_panel/friendsbutton_panel": T.PANEL + "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": T.BUTTON + "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": T.BUTTON + "social_buttons_panel/invitebutton_panel": T.STACK_PANEL + "social_buttons_panel/invitebutton_panel/invite_button": T.BUTTON + "social_buttons_panel/invitebutton_panel/vertical_padding_2": T.PANEL + the_rest_panel: T.STACK_PANEL + "the_rest_panel/fill_1": T.PANEL + "the_rest_panel/pause_menu": T.PANEL + "the_rest_panel/fill_3": T.PANEL + paused_text: T.LABEL + green_tag: T.IMAGE + paused_text_panel: T.IMAGE + "paused_text_panel/pause": T.LABEL + "paused_text_panel/horizontal_stack": T.STACK_PANEL + "paused_text_panel/horizontal_stack/pause_icon": T.IMAGE + "paused_text_panel/horizontal_stack/fill_1": T.PANEL + "paused_text_panel/horizontal_stack/pause": T.LABEL + transparent_background: T.IMAGE + non_transparent_background: T.IMAGE + menu_the_rest_panel: T.PANEL + "menu_the_rest_panel/menu_button_control": T.IMAGE + menu_button_control: T.IMAGE + "menu_button_control/menu_background": T.IMAGE + pause_announcement_panel_type: T.STACK_PANEL + "pause_announcement_panel_type/horizontal_stack": T.STACK_PANEL + "pause_announcement_panel_type/horizontal_stack/fill_1": T.PANEL + "pause_announcement_panel_type/horizontal_stack/pause_text": T.IMAGE + "pause_announcement_panel_type/horizontal_stack/fill_2": T.PANEL + menu_background: T.IMAGE + "menu_background/button_panel": T.STACK_PANEL + "menu_background/button_panel/title_image": T.PANEL + "menu_background/button_panel/title_image/image": T.IMAGE + "menu_background/button_panel/fill_1": T.PANEL + "menu_background/button_panel/return_to_game_button": T.BUTTON + "menu_background/button_panel/return": T.PANEL + "menu_background/button_panel/realms_stories_button_panel": T.PANEL + "menu_background/button_panel/realms_stories": T.PANEL + "menu_background/button_panel/buy_button": T.BUTTON + "menu_background/button_panel/buy": T.PANEL + "menu_background/button_panel/store_button_panel": T.PANEL + "menu_background/button_panel/store_button_panel_padding": T.PANEL + "menu_background/button_panel/quit_button": T.BUTTON + "menu_background/button_panel/smaller_buttons": T.STACK_PANEL + "menu_background/button_panel/pause_panel": T.STACK_PANEL + info_panel_content_list: T.STACK_PANEL + "info_panel_content_list/player_list_scrolling_panel": T.PANEL + "info_panel_content_list/vertical_padding": T.PANEL + info_panel_background: T.IMAGE + info_panel: T.IMAGE + "info_panel/info_panel_background": T.IMAGE + "info_panel/info_panel_list": T.STACK_PANEL + player_panel_background: T.IMAGE + "player_panel_background/player_list_scrolling_panel": T.PANEL + player_list: T.STACK_PANEL + "player_list/vertical_padding_0": T.PANEL + "player_list/social_buttons_panel": T.STACK_PANEL + "player_list/players_label": T.LABEL + "player_list/vertical_padding_4": T.PANEL + "player_list/players_grid_panel": T.GRID + "player_list/vertical_padding_5": T.PANEL + "player_list/invite_players_button_panel": T.PANEL + "player_list/vertical_padding_6": T.PANEL + "player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL + "player_list/vertical_padding_7": T.PANEL + player_lists: T.PANEL + "player_lists/normal_list": T.STACK_PANEL + "player_lists/scoreboard_list": T.STACK_PANEL + player_list_scrolling_panel: T.PANEL + disconnected_label: T.LABEL + disconnected_from_multiplayer_label_panel: T.STACK_PANEL + "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": T.LABEL + "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": T.LABEL + "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": T.LABEL + "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": T.LABEL + "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": T.LABEL + invite_players_button_panel: T.PANEL + "invite_players_button_panel/invite_players_button": T.BUTTON + ip_label: T.LABEL + players_label: T.LABEL + players_grid: T.GRID + player_grid_item: T.PANEL + "player_grid_item/player_grid_item_content": T.PANEL + player_grid_item_content: T.PANEL + "player_grid_item_content/player_button_panel": T.STACK_PANEL + "player_grid_item_content/player_button_panel/player_button_banner": T.PANEL + "player_grid_item_content/player_button_panel/player_button_banner/player_button": T.BUTTON + "player_grid_item_content/player_button_panel/player_button_banner/player_banner": T.PANEL + "player_grid_item_content/player_button_panel/player_permission_button_padding": T.PANEL + "player_grid_item_content/player_permission_button_panel": T.PANEL + "player_grid_item_content/player_permission_button_panel/player_permission_button": T.BUTTON + player_permission_button: T.BUTTON + player_permission_button_content: T.PANEL + "player_permission_button_content/permission_icon_image": T.IMAGE + vertical_padding: T.PANEL + horizontal_padding: T.PANEL + player_button_content: T.STACK_PANEL + "player_button_content/player_pic_panel": T.PANEL + "player_button_content/player_gamertag": T.PANEL + "player_button_content/platform_icon": T.PANEL + player_button: T.BUTTON + player_banner: T.PANEL + player_pic_panel: T.PANEL + "player_pic_panel/player_gamer_pic": T.IMAGE + "player_pic_panel/player_local_icon": T.IMAGE + player_local_icon: T.IMAGE + player_gamer_pic: T.IMAGE + "player_gamer_pic/player_panel_black_border": T.IMAGE + gametag_wrapper: T.PANEL + "gametag_wrapper/gamertag": T.LABEL + platform_icon_panel: T.PANEL + "platform_icon_panel/platform_icon": T.IMAGE + player_gamertag: T.LABEL + platform_icon: T.IMAGE + player_grid_banner_no_focus: T.IMAGE + player_grid_banner: T.PANEL + "player_grid_banner/player_grid_banner_no_focus": T.IMAGE + "player_grid_banner/player_grid_banner_no_focus/player_button_content": T.STACK_PANEL + "player_grid_banner/focus_border_button": T.BUTTON + focus_border_button: T.BUTTON + "focus_border_button/default": T.PANEL + "focus_border_button/hover": T.IMAGE + "focus_border_button/pressed": T.IMAGE + focus_border: T.IMAGE + pause_screen_border: T.IMAGE + filler_panel: T.PANEL + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_y": T.STACK_PANEL + keyboard_helpers: T.PANEL + "keyboard_helpers/keyboard_helper_keys": T.STACK_PANEL +} + +export type PdpType = { + download_progress: T.IMAGE + "download_progress/stacker": T.STACK_PANEL + "download_progress/stacker/sizer_text": T.PANEL + "download_progress/stacker/sizer_text/download_progress_text": T.LABEL + "download_progress/stacker/sizer_bar": T.PANEL + "download_progress/stacker/sizer_bar/download_progress_bar": T.PANEL + summary_box_button_panel: T.PANEL + "summary_box_button_panel/buttons_panel": T.STACK_PANEL + "summary_box_button_panel/download_buttons_panel": T.STACK_PANEL + "summary_box_button_panel/focus_border": T.BUTTON + interaction_button_content: T.STACK_PANEL + "interaction_button_content/line1_panel": T.PANEL + "interaction_button_content/line1_panel/upsell_text": T.LABEL + interaction_button_panel: T.PANEL + "interaction_button_panel/content_action_button": T.BUTTON + "interaction_button_panel/progress_bar": T.IMAGE + "interaction_button_panel/focus_border": T.BUTTON + download_progress_small: T.IMAGE + "download_progress_small/stacker": T.STACK_PANEL + "download_progress_small/stacker/sizer_text": T.PANEL + "download_progress_small/stacker/sizer_text/download_progress_text": T.LABEL + "download_progress_small/stacker/sizer_bar": T.PANEL + "download_progress_small/stacker/sizer_bar/download_progress_bar": T.PANEL + progress_loading_anim: T.PANEL + focus_border: T.BUTTON + "focus_border/default": T.IMAGE + "focus_border/default/loading_anim": T.PANEL + "focus_border/hover": T.IMAGE + "focus_border/hover/loading_anim": T.PANEL + "focus_border/pressed": T.IMAGE + "focus_border/pressed/loading_anim": T.PANEL + purchase_button_base: T.BUTTON + deactivated_purchase_button_base: T.BUTTON + download_buttons_panel: T.STACK_PANEL + "download_buttons_panel/progress_panel": T.STACK_PANEL + "download_buttons_panel/progress_panel/progress_bar": T.IMAGE + smooth_purchase_buttons_panel: T.STACK_PANEL + "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": T.STACK_PANEL + "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": T.STACK_PANEL + smooth_buttons_panel: T.STACK_PANEL + "smooth_buttons_panel/purchase_buttons_panel": T.STACK_PANEL + "smooth_buttons_panel/interact_filling_button": T.BUTTON + "smooth_buttons_panel/interact_exit_world_filling_button": T.BUTTON + disabled_interact_label_formfitting: T.STACK_PANEL + "disabled_interact_label_formfitting/info_icon": T.STACK_PANEL + "disabled_interact_label_formfitting/info_icon_pad": T.PANEL + "disabled_interact_label_formfitting/interact_label_panel": T.PANEL + "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": T.LABEL + "disabled_interact_label_formfitting/pad": T.PANEL + interact_label_text: T.LABEL + activated_smooth_purchase_buttons_panel: T.STACK_PANEL + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": T.PANEL + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": T.BUTTON + "activated_smooth_purchase_buttons_panel/pad_h1": T.PANEL + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": T.BUTTON + deactivated_purchase_hover_popup: T.IMAGE + deactivated_smooth_purchase_buttons_panel: T.STACK_PANEL + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": T.IMAGE + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": T.IMAGE + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": T.STACK_PANEL + "deactivated_smooth_purchase_buttons_panel/pad_h1": T.PANEL + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": T.BUTTON + smooth_save_share_button_panel: T.STACK_PANEL + "smooth_save_share_button_panel/pad_0": T.PANEL + "smooth_save_share_button_panel/share_button": T.BUTTON + "smooth_save_share_button_panel/pad_1": T.PANEL + "smooth_save_share_button_panel/save_button": T.BUTTON + currency_purchase_label: T.PANEL + "currency_purchase_label/currency_purchase_label_text": T.LABEL + coin_image: T.IMAGE + smooth_currency_purchase_label: T.PANEL + "smooth_currency_purchase_label/currency_purchase_label_text": T.LABEL + discount_label: T.STACK_PANEL + "discount_label/label_panel": T.PANEL + "discount_label/label_panel/label": T.LABEL + "discount_label/icon_panel": T.PANEL + "discount_label/icon_panel/icon": T.IMAGE + coin_purchase_label_text: T.LABEL + smooth_coin_purchase_label_formfitting: T.STACK_PANEL + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL + "smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL + "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL + "smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL + "smooth_coin_purchase_label_formfitting/pad": T.PANEL + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE + "smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL + disabled_smooth_coin_purchase_label_formfitting: T.STACK_PANEL + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": T.INPUT_PANEL + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": T.STACK_PANEL + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE + "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL + "disabled_smooth_coin_purchase_label_formfitting/pad": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL + share_icon: T.IMAGE + share_label: T.STACK_PANEL + "share_label/share_image_offset_panel": T.PANEL + "share_label/share_image_offset_panel/link_share": T.IMAGE + save_label_panel: T.PANEL + "save_label_panel/heart_image": T.PANEL + "save_label_panel/progress_loading": T.IMAGE + save_label: T.PANEL + "save_label/save_image_offset_panel": T.PANEL + "save_label/save_image_offset_panel/full_heart": T.IMAGE + "save_label/save_image_offset_panel/empty_heart": T.IMAGE + large_button_coin_purchase_label: T.STACK_PANEL + "large_button_coin_purchase_label/markdown_banner_filler_panel": T.PANEL + "large_button_coin_purchase_label/center_markdown_panel": T.PANEL + "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": T.STACK_PANEL + "large_button_coin_purchase_label/sales_padding_0": T.PANEL + "large_button_coin_purchase_label/price_markdown_panel": T.PANEL + "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": T.PANEL + "large_button_coin_purchase_label/sales_padding_1": T.PANEL + "large_button_coin_purchase_label/left_coin_image_offset_panel": T.PANEL + "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": T.IMAGE + "large_button_coin_purchase_label/coin_purchase_label_panel": T.PANEL + "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": T.LABEL + "large_button_coin_purchase_label/right_coin_image_offset_panel": T.PANEL + "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": T.IMAGE + "large_button_coin_purchase_label/fill_padding_1": T.PANEL + price_markdown_panel: T.PANEL + "price_markdown_panel/offer_price": T.LABEL + "price_markdown_panel/offer_price/text_strike_through": T.IMAGE + vertical_padding_2px: T.PANEL + vertical_padding_4px: T.PANEL + vertical_padding_fill: T.PANEL + horizontal_padding_2px: T.PANEL + horizontal_padding_4px: T.PANEL + horizontal_padding_8px: T.PANEL + horizontal_padding_fill: T.PANEL + empty_content_panel: T.PANEL + section_header: T.PANEL + "section_header/header_label": T.LABEL + content_section_bg: T.STACK_PANEL + "content_section_bg/pad": T.PANEL + "content_section_bg/section_header": T.PANEL + "content_section_bg/bg_and_content": T.PANEL + "content_section_bg/bg_and_content/bg": T.IMAGE + content_section_boarder_bg: T.STACK_PANEL + "content_section_boarder_bg/pad": T.PANEL + "content_section_boarder_bg/bg_and_content": T.PANEL + "content_section_boarder_bg/bg_and_content/bg": T.IMAGE + "content_section_boarder_bg/bg_and_content/bg/inner": T.IMAGE + "content_section_boarder_bg/pad_3": T.PANEL + "content_section_boarder_bg/divider_3": T.PANEL + summary_factory_object: T.STACK_PANEL + "summary_factory_object/summary": T.STACK_PANEL + "summary_factory_object/navigation_tab_section": T.PANEL + "summary_factory_object/update_notification_section": T.STACK_PANEL + screenshot_carousel_factory_object: T.STACK_PANEL + "screenshot_carousel_factory_object/resource_pack_content_panel": T.STACK_PANEL + "screenshot_carousel_factory_object/pad_3": T.PANEL + "screenshot_carousel_factory_object/divider_3": T.PANEL + image_gallery_factory_object: T.STACK_PANEL + "image_gallery_factory_object/resource_pack_content_panel": T.PANEL + left_text_right_image_factory_object: T.STACK_PANEL + "left_text_right_image_factory_object/resource_pack_content_panel": T.STACK_PANEL + right_text_left_image_factory_object: T.STACK_PANEL + "right_text_left_image_factory_object/resource_pack_content_panel": T.STACK_PANEL + skin_pack_section_factory_object: T.PANEL + "skin_pack_section_factory_object/skin_pack_section_factory_content": T.STACK_PANEL + "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": T.STACK_PANEL + "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": T.PANEL + "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": T.PANEL + panorama_view_factory_object: T.STACK_PANEL + "panorama_view_factory_object/panorama_view_content_panel": T.STACK_PANEL + "panorama_view_factory_object/pad_3": T.PANEL + "panorama_view_factory_object/divider_3": T.PANEL + ratings_factory_object: T.PANEL + "ratings_factory_object/rating_factory_object_content": T.STACK_PANEL + focus_container_button: T.BUTTON + "focus_container_button/default": T.PANEL + bundle_summary_factory_object: T.PANEL + "bundle_summary_factory_object/bundle_summary_factory_object_content": T.PANEL + pdp_cycle_offer_row_content: T.STACK_PANEL + "pdp_cycle_offer_row_content/store_row_panel": T.STACK_PANEL + "pdp_cycle_offer_row_content/pad_3": T.PANEL + "pdp_cycle_offer_row_content/divider_3": T.PANEL + pdp_cycle_offer_row_section: T.PANEL + recently_viewed_viewed_factory_object: T.PANEL + scrolling_content_stack: T.STACK_PANEL + warning_image: T.IMAGE + scaling_rating: T.PANEL + "scaling_rating/empty_rating": T.IMAGE + "scaling_rating/empty_rating/full_rating": T.IMAGE + scaling_rating_new: T.PANEL + "scaling_rating_new/empty_rating": T.IMAGE + "scaling_rating_new/empty_rating/full_rating": T.IMAGE + chart_section: T.PANEL + "chart_section/stack": T.STACK_PANEL + "chart_section/stack/star_number_panel": T.PANEL + "chart_section/stack/star_number_panel/star_number": T.LABEL + "chart_section/stack/star_panel": T.PANEL + "chart_section/stack/star_panel/star_img": T.IMAGE + "chart_section/stack/pad_0": T.PANEL + "chart_section/stack/bar_panel": T.PANEL + "chart_section/stack/bar_panel/bar": T.IMAGE + "chart_section/stack/bar_panel/bar/full_bar": T.IMAGE + "chart_section/stack/pad_1": T.PANEL + "chart_section/stack/percent": T.LABEL + ratings_chart: T.STACK_PANEL + "ratings_chart/5_star": T.PANEL + "ratings_chart/4_star": T.PANEL + "ratings_chart/3_star": T.PANEL + "ratings_chart/2_star": T.PANEL + "ratings_chart/1_star": T.PANEL + ratings_chart_panel: T.PANEL + "ratings_chart_panel/ratings_chart_content": T.STACK_PANEL + "ratings_chart_panel/ratings_chart_content/pad_0": T.PANEL + "ratings_chart_panel/ratings_chart_content/title": T.PANEL + "ratings_chart_panel/ratings_chart_content/title/title_text": T.LABEL + "ratings_chart_panel/ratings_chart_content/pad_1": T.PANEL + "ratings_chart_panel/ratings_chart_content/rating_panel": T.PANEL + "ratings_chart_panel/ratings_chart_content/rating_panel/rating": T.STACK_PANEL + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": T.PANEL + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": T.PANEL + "ratings_chart_panel/ratings_chart_content/rating_text_panel": T.PANEL + "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": T.LABEL + "ratings_chart_panel/ratings_chart_content/count_panel": T.PANEL + "ratings_chart_panel/ratings_chart_content/count_panel/count": T.LABEL + "ratings_chart_panel/ratings_chart_content/pad_2": T.PANEL + "ratings_chart_panel/ratings_chart_content/chart": T.STACK_PANEL + "ratings_chart_panel/ratings_chart_content/pad_3": T.PANEL + ratings_box: T.PANEL + "ratings_box/ratings_panel_focus_point": T.BUTTON + "ratings_box/ratings_full_panel": T.PANEL + "ratings_box/ratings_full_panel/ratings_chart_and_button": T.STACK_PANEL + "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": T.PANEL + "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": T.PANEL + "ratings_box/divider": T.IMAGE + user_rating_star_button: T.BUTTON + "user_rating_star_button/default": T.PANEL + "user_rating_star_button/default/default_user_rating_star": T.IMAGE + "user_rating_star_button/hover": T.PANEL + "user_rating_star_button/hover/hover_user_rating_star": T.IMAGE + user_rating_star_list_grid: T.GRID + ratings_interact_panel: T.STACK_PANEL + "ratings_interact_panel/title_text": T.LABEL + "ratings_interact_panel/pad_vertical_4px": T.PANEL + "ratings_interact_panel/rating_stars_and_button_panel": T.STACK_PANEL + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": T.PANEL + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": T.GRID + "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": T.PANEL + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": T.PANEL + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": T.BUTTON + "ratings_interact_panel/pad_vertical_8px": T.PANEL + "ratings_interact_panel/fill_pad": T.PANEL + "ratings_interact_panel/fill_pad/text": T.LABEL + "ratings_interact_panel/send_feedback_button": T.BUTTON + "ratings_interact_panel/pad_1": T.PANEL + ratings_info_panel: T.PANEL + "ratings_info_panel/ratings": T.PANEL + "ratings_info_panel/ratings_right": T.PANEL + "ratings_info_panel/ratings_right/ratings_interact_panel": T.STACK_PANEL + ratings_content_panel: T.STACK_PANEL + panorama_view_content: T.STACK_PANEL + "panorama_view_content/panorama_panel": T.PANEL + "panorama_view_content/panorama_panel/panorama_content": T.PANEL + skins: T.PANEL + skin_pack_content_panel: T.STACK_PANEL + resource_pack_content: T.PANEL + "resource_pack_content/screenshots": T.PANEL + image_row_left_text_content: T.STACK_PANEL + "image_row_left_text_content/buffer_panel_front": T.PANEL + "image_row_left_text_content/text_section": T.STACK_PANEL + "image_row_left_text_content/text_section/left_header": T.PANEL + "image_row_left_text_content/text_section/left_text": T.PANEL + "image_row_left_text_content/text_section/buffer_panel_bottom": T.PANEL + "image_row_left_text_content/buffer_panel_mid": T.PANEL + "image_row_left_text_content/screenshots_single": T.PANEL + "image_row_left_text_content/buffer_panel_back": T.PANEL + image_row_right_text_content: T.STACK_PANEL + "image_row_right_text_content/buffer_panel_front": T.PANEL + "image_row_right_text_content/screenshots_single": T.PANEL + "image_row_right_text_content/buffer_panel_mid": T.PANEL + "image_row_right_text_content/text_section": T.STACK_PANEL + "image_row_right_text_content/text_section/right_header": T.PANEL + "image_row_right_text_content/text_section/right_text": T.PANEL + "image_row_right_text_content/text_section/buffer_panel_bottom": T.PANEL + "image_row_right_text_content/buffer_panel_back": T.PANEL + image_row_content: T.PANEL + "image_row_content/screenshots_triple": T.STACK_PANEL + play_button: T.IMAGE + csb_expiration: T.PANEL + "csb_expiration/background": T.IMAGE + "csb_expiration/background/content_stack_panel": T.STACK_PANEL + "csb_expiration/background/content_stack_panel/icon_wrapper": T.PANEL + "csb_expiration/background/content_stack_panel/icon_wrapper/icon": T.IMAGE + "csb_expiration/background/content_stack_panel/text_wrapper": T.PANEL + "csb_expiration/background/content_stack_panel/text_wrapper/text": T.LABEL + summary_content_left_side: T.STACK_PANEL + "summary_content_left_side/pad_left": T.PANEL + "summary_content_left_side/full_content": T.STACK_PANEL + "summary_content_left_side/full_content/top": T.STACK_PANEL + "summary_content_left_side/full_content/top/image": T.PANEL + "summary_content_left_side/full_content/top/image/key_image": T.IMAGE + "summary_content_left_side/full_content/top/image/key_image/border": T.IMAGE + "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": T.PANEL + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": T.BUTTON + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": T.IMAGE + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": T.IMAGE + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": T.IMAGE + "summary_content_left_side/full_content/top/image/key_image/rtx_label": T.PANEL + "summary_content_left_side/full_content/top/divider": T.PANEL + "summary_content_left_side/full_content/top/info": T.STACK_PANEL + "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": T.STACK_PANEL + "summary_content_left_side/full_content/top/info/pad_fill": T.PANEL + "summary_content_left_side/full_content/top/info/glyph_section": T.PANEL + "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": T.STACK_PANEL + "summary_content_left_side/full_content/top/info/ratings_summary": T.STACK_PANEL + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": T.STACK_PANEL + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": T.PANEL + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": T.PANEL + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": T.BUTTON + "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": T.PANEL + "summary_content_left_side/full_content/bottom": T.PANEL + offer_title_label: T.PANEL + title_and_author_panel: T.STACK_PANEL + "title_and_author_panel/title_panel": T.PANEL + "title_and_author_panel/author_button_panel": T.PANEL + "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON + description_label: T.LABEL + warning_stack_panel: T.STACK_PANEL + "warning_stack_panel/warning_icon": T.IMAGE + "warning_stack_panel/pad_0": T.PANEL + "warning_stack_panel/warning_text_panel": T.PANEL + "warning_stack_panel/warning_text_panel/warning_text": T.LABEL + warning_panel: T.PANEL + "warning_panel/background": T.IMAGE + "warning_panel/content_stack_panel": T.STACK_PANEL + description_toggle_show_button_panel: T.PANEL + "description_toggle_show_button_panel/description_bottom_right_button_border": T.IMAGE + "description_toggle_show_button_panel/description_toggle_show_button": T.BUTTON + "description_toggle_show_button_panel/warning_icon": T.IMAGE + vibrant_visuals_underline_button: T.BUTTON + vibrant_visuals_hover_popup: T.IMAGE + vibrant_visuals_badge_display: T.IMAGE + "vibrant_visuals_badge_display/vibrant_visuals_underline_button": T.BUTTON + vibrant_visuals_badge_and_hover: T.PANEL + "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": T.IMAGE + "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": T.IMAGE + glyph_icon: T.IMAGE + glyph_count_label: T.LABEL + glyph_count_underline_button: T.BUTTON + glyph_count_hover_underline_button_panel: T.PANEL + "glyph_count_hover_underline_button_panel/glyph_hover_popup": T.UNKNOWN + "glyph_count_hover_underline_button_panel/glyph_count_underline_button": T.BUTTON + glyph_icon_with_count: T.STACK_PANEL + "glyph_icon_with_count/glyph_icon": T.IMAGE + "glyph_icon_with_count/horizontal_padding": T.PANEL + "glyph_icon_with_count/item_glyph_count_panel_label": T.UNKNOWN + glyph_panel_hover_popup: T.IMAGE + glyph_panel_mashup_hover_popup: T.IMAGE + mashup_glyph_tooltip_content: T.STACK_PANEL + "mashup_glyph_tooltip_content/mashup_text_row": T.STACK_PANEL + "mashup_glyph_tooltip_content/mashup_text_row/info_icon": T.STACK_PANEL + "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": T.PANEL + "mashup_glyph_tooltip_content/mashup_line_two": T.PANEL + "mashup_glyph_tooltip_content/offset_panel": T.PANEL + "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL + glyph_section_mashup: T.STACK_PANEL + glyph_section_skin: T.STACK_PANEL + glyph_section_resource_pack: T.STACK_PANEL + glyph_section_world: T.STACK_PANEL + glyph_section_addon: T.STACK_PANEL + basic_vertical_glyph_section_panel: T.STACK_PANEL + "basic_vertical_glyph_section_panel/glyph_section_skin": T.STACK_PANEL + "basic_vertical_glyph_section_panel/glyph_section_world": T.STACK_PANEL + "basic_vertical_glyph_section_panel/glyph_section_resource_pack": T.STACK_PANEL + "basic_vertical_glyph_section_panel/glyph_section_addon": T.STACK_PANEL + vertical_glyph_section_panel: T.STACK_PANEL + "vertical_glyph_section_panel/glyph_section_mashup": T.STACK_PANEL + "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL + summary_text_panel: T.STACK_PANEL + "summary_text_panel/top_interact_button_stack": T.STACK_PANEL + "summary_text_panel/top_interact_button_stack/top_interact": T.PANEL + "summary_text_panel/apply_to_realm_panel": T.PANEL + "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": T.BUTTON + "summary_text_panel/in_csb_panel": T.PANEL + "summary_text_panel/in_csb_panel/in_csb_button": T.BUTTON + "summary_text_panel/progress_loading_anim_panel": T.PANEL + "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": T.PANEL + "summary_text_panel/pad_0": T.PANEL + "summary_text_panel/disclaimer_panel": T.PANEL + "summary_text_panel/pad_1": T.PANEL + "summary_text_panel/save_share_button_panel": T.STACK_PANEL + "summary_text_panel/pad_2": T.PANEL + info_bulb_image: T.IMAGE + info_bulb_image_small: T.IMAGE + info_bulb_image_small_centered: T.STACK_PANEL + "info_bulb_image_small_centered/top_filler": T.PANEL + "info_bulb_image_small_centered/middle_panel": T.STACK_PANEL + "info_bulb_image_small_centered/middle_panel/front_filler": T.PANEL + "info_bulb_image_small_centered/middle_panel/info_bulb": T.IMAGE + "info_bulb_image_small_centered/middle_panel/bottom_filler": T.PANEL + "info_bulb_image_small_centered/bottom_filler": T.PANEL + realms_incompatable_content: T.IMAGE + "realms_incompatable_content/realms_content_stack_panel": T.STACK_PANEL + "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": T.IMAGE + "realms_incompatable_content/realms_content_stack_panel/padding": T.PANEL + "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": T.LABEL + apply_to_realm_button: T.BUTTON + in_csb_button: T.BUTTON + read_more_button: T.BUTTON + "read_more_button/default": T.PANEL + "read_more_button/hover": T.IMAGE + "read_more_button/pressed": T.IMAGE + summary_content_right_side: T.STACK_PANEL + "summary_content_right_side/pad_middle": T.PANEL + "summary_content_right_side/text": T.STACK_PANEL + "summary_content_right_side/entitlements_progress_panel": T.PANEL + "summary_content_right_side/entitlements_progress_panel/progress_loading": T.IMAGE + "summary_content_right_side/pad_right": T.PANEL + summary_content_whole_stack_panel: T.STACK_PANEL + "summary_content_whole_stack_panel/left_side": T.STACK_PANEL + "summary_content_whole_stack_panel/divider_panel": T.PANEL + "summary_content_whole_stack_panel/right_side": T.STACK_PANEL + summary_content_panel: T.STACK_PANEL + "summary_content_panel/pad_top": T.PANEL + "summary_content_panel/summary_content_whole_stack": T.STACK_PANEL + "summary_content_panel/pad_3": T.PANEL + "summary_content_panel/divider_3": T.PANEL + appearance_status_image_panel: T.PANEL + "appearance_status_image_panel/limited_status_image": T.IMAGE + "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE + appearance_status_content: T.STACK_PANEL + "appearance_status_content/appearance_status_image_panel": T.PANEL + "appearance_status_content/last_update_panel": T.PANEL + "appearance_status_content/last_update_panel/last_update_label": T.LABEL + dynamic_tooltip_notification_panel: T.BUTTON + "dynamic_tooltip_notification_panel/default": T.PANEL + "dynamic_tooltip_notification_panel/hover": T.IMAGE + "dynamic_tooltip_notification_panel/pressed": T.IMAGE + update_notification_content: T.PANEL + "update_notification_content/dynamic_tooltip_notification_panel": T.BUTTON + "update_notification_content/status": T.STACK_PANEL + update_notification_stack_panel: T.STACK_PANEL + "update_notification_stack_panel/pad_0": T.PANEL + "update_notification_stack_panel/content": T.PANEL + "update_notification_stack_panel/pad_1": T.PANEL + tag_base: T.IMAGE + tag_button_panel: T.PANEL + "tag_button_panel/button": T.BUTTON + "tag_button_panel/button/default": T.IMAGE + "tag_button_panel/button/hover": T.IMAGE + "tag_button_panel/button/pressed": T.IMAGE + "tag_button_panel/button/label": T.LABEL + tag_row_factory: T.STACK_PANEL + player_count_button_panel: T.PANEL + "player_count_button_panel/player_count_button": T.BUTTON + "player_count_button_panel/comma": T.LABEL + player_count_factory: T.STACK_PANEL + language_button_panel: T.PANEL + "language_button_panel/language_button": T.BUTTON + "language_button_panel/comma": T.LABEL + language_row_factory: T.STACK_PANEL + description_inner_panel: T.PANEL + "description_inner_panel/description_stack_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/pad_0": T.PANEL + "description_inner_panel/description_stack_panel/title_stack_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": T.IMAGE + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": T.PANEL + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": T.PANEL + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": T.LABEL + "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": T.PANEL + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": T.PANEL + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": T.PANEL + "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": T.PANEL + "description_inner_panel/description_stack_panel/description_text_panel_full": T.STACK_PANEL + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": T.STACK_PANEL + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": T.LABEL + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": T.PANEL + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": T.PANEL + "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": T.PANEL + "description_inner_panel/description_stack_panel/description_text_panel_collapsed": T.STACK_PANEL + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": T.LABEL + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": T.PANEL + "description_inner_panel/description_stack_panel/pad_1": T.PANEL + "description_inner_panel/description_stack_panel/divider_panel": T.PANEL + "description_inner_panel/description_stack_panel/divider_panel/divider": T.PANEL + "description_inner_panel/description_stack_panel/pad_2": T.PANEL + "description_inner_panel/description_stack_panel/tags_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": T.PANEL + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": T.LABEL + "description_inner_panel/description_stack_panel/tags_panel/pad": T.PANEL + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": T.PANEL + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": T.STACK_PANEL + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": T.STACK_PANEL + "description_inner_panel/description_stack_panel/genre_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/genre_panel/label_text": T.LABEL + "description_inner_panel/description_stack_panel/genre_panel/pad": T.PANEL + "description_inner_panel/description_stack_panel/genre_panel/text_panel": T.PANEL + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": T.BUTTON + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": T.PANEL + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": T.LABEL + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": T.BUTTON + "description_inner_panel/description_stack_panel/players_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/players_panel/label_text": T.LABEL + "description_inner_panel/description_stack_panel/players_panel/pad": T.PANEL + "description_inner_panel/description_stack_panel/players_panel/text_panel": T.PANEL + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": T.STACK_PANEL + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": T.PANEL + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": T.PANEL + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel/player_count_range_text": T.LABEL + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": T.LABEL + "description_inner_panel/description_stack_panel/languages_panel": T.STACK_PANEL + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": T.PANEL + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": T.LABEL + "description_inner_panel/description_stack_panel/languages_panel/pad": T.PANEL + "description_inner_panel/description_stack_panel/languages_panel/languages_factory": T.STACK_PANEL + "description_inner_panel/description_stack_panel/pad_3": T.PANEL + "description_inner_panel/description_stack_panel/show_less_button_panel": T.PANEL + description_section: T.STACK_PANEL + changelog_section: T.STACK_PANEL + bundle_thumbnail: T.IMAGE + bundle_thumbnail_section_content: T.PANEL + "bundle_thumbnail_section_content/bundle_thumbnail_grid": T.GRID + bundle_thumbnail_section: T.STACK_PANEL + price_panel: T.STACK_PANEL + "price_panel/coin_non_sale_price_label": T.PANEL + "price_panel/price_padding": T.PANEL + "price_panel/offer_prompt_panel": T.PANEL + "price_panel/offer_prompt_panel/offer_status_text": T.LABEL + "price_panel/padding_3": T.PANEL + "price_panel/coin_panel": T.PANEL + "price_panel/coin_panel/offer_coin_icon": T.IMAGE + rating_and_coins_panel: T.STACK_PANEL + "rating_and_coins_panel/rating_panel": T.STACK_PANEL + "rating_and_coins_panel/rating_padding_coin": T.PANEL + "rating_and_coins_panel/price_panel": T.STACK_PANEL + bundle_offer_texture: T.PANEL + "bundle_offer_texture/texture": T.IMAGE + "bundle_offer_texture/texture/border": T.IMAGE + bundle_offer_info: T.STACK_PANEL + "bundle_offer_info/top_padding": T.PANEL + "bundle_offer_info/offer_title_and_author_panel": T.STACK_PANEL + "bundle_offer_info/glyph_section": T.UNKNOWN + "bundle_offer_info/glyph_description_padding": T.PANEL + "bundle_offer_info/description_panel": T.UNKNOWN + "bundle_offer_info/description_padding": T.PANEL + "bundle_offer_info/description_padding_bottom": T.PANEL + "bundle_offer_info/rating_and_price_panel": T.STACK_PANEL + "bundle_offer_info/bottom_padding": T.PANEL + bundle_offer_summary_grid_item_content: T.IMAGE + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": T.PANEL + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": T.IMAGE + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": T.STACK_PANEL + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": T.PANEL + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": T.PANEL + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": T.STACK_PANEL + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": T.PANEL + bundle_offer_summary_grid_item: T.PANEL + "bundle_offer_summary_grid_item/bundle_offer_summary_button": T.BUTTON + bundle_offer_content_section: T.PANEL + "bundle_offer_content_section/bundle_grid": T.GRID + bundle_summary_section_panel: T.PANEL + "bundle_summary_section_panel/bundle_summary_section": T.STACK_PANEL + "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": T.STACK_PANEL + "bundle_summary_section_panel/bundle_summary_section/mid_padding": T.PANEL + "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": T.PANEL + "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": T.PANEL + "bundle_summary_section_panel/bundle_summary_section/interact_panel": T.PANEL + "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": T.PANEL + "bundle_summary_section_panel/divider_3": T.PANEL + pdp_screen: T.SCREEN + mashup_screen_content: T.PANEL + "mashup_screen_content/header": T.STACK_PANEL + "mashup_screen_content/popup_dialog_factory": T.FACTORY + mashup_screen_main: T.INPUT_PANEL + "mashup_screen_main/pack_content": T.PANEL + "mashup_screen_main/progress_loading": T.PANEL +} + +export type PdpScreenshotsType = { + banner_empty: T.IMAGE + screenshot_carousel: T.PANEL + "screenshot_carousel/screenshot_carousel_content": T.PANEL + "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": T.BUTTON + "screenshot_carousel/screenshot_carousel_content/screenshots_grid": T.STACK_PANEL + "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": T.BUTTON + screenshots_grid: T.STACK_PANEL + "screenshots_grid/left_image_panel": T.PANEL + "screenshots_grid/middle_image_panel": T.PANEL + "screenshots_grid/right_image_panel": T.PANEL + screenshots_grid_item: T.PANEL + "screenshots_grid_item/frame": T.IMAGE + "screenshots_grid_item/frame/screenshot_button": T.BUTTON + "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE + "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE + "screenshots_grid_item/screenshot_image": T.IMAGE + "screenshots_grid_item/progress_loading": T.PANEL +} + +export type PermissionsType = { + permissions_screen: T.SCREEN + permissions_screen_content: T.STACK_PANEL + "permissions_screen_content/top_bar_panel": T.PANEL + "permissions_screen_content/content_panel": T.PANEL + top_bar_panel: T.PANEL + "top_bar_panel/top_bar": T.IMAGE + "top_bar_panel/back_button": T.BUTTON + "top_bar_panel/gamepad_helper_b": T.STACK_PANEL + "top_bar_panel/title_label": T.LABEL + content_panel: T.PANEL + "content_panel/content_stack_panel": T.STACK_PANEL + "content_panel/content_stack_panel/content_padding_1": T.PANEL + "content_panel/content_stack_panel/ip_label": T.LABEL + "content_panel/content_stack_panel/world_label": T.LABEL + "content_panel/content_stack_panel/content_padding_2": T.PANEL + "content_panel/content_stack_panel/player_and_permissions_panel": T.STACK_PANEL + player_and_permissions_panel: T.STACK_PANEL + "player_and_permissions_panel/selector_area": T.INPUT_PANEL + "player_and_permissions_panel/content_area": T.INPUT_PANEL + selector_area: T.INPUT_PANEL + "selector_area/player_scrolling_panel": T.PANEL + content_area: T.INPUT_PANEL + "content_area/permissions_options_background": T.PANEL + "content_area/permissions_options_background/permissions_options_background_image": T.IMAGE + "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": T.PANEL + "content_area/inactive_modal_pane_fade": T.IMAGE + kick_button: T.BUTTON + ban_button: T.BUTTON + players_grid_panel: T.PANEL + "players_grid_panel/players_grid": T.GRID + players_grid: T.GRID + player_grid_item: T.PANEL + "player_grid_item/player_toggle": T.PANEL + "player_grid_item/inactive_modal_pane_fade": T.IMAGE + permissions_options_scrolling_panel: T.PANEL + permissions_options_panel: T.PANEL + "permissions_options_panel/inner_permissions_options_panel": T.PANEL + "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": T.STACK_PANEL + permissions_options_stack_panel: T.STACK_PANEL + "permissions_options_stack_panel/permissions_padding_0": T.PANEL + "permissions_options_stack_panel/world_template_option_lock_panel": T.PANEL + "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL + "permissions_options_stack_panel/permissions_padding_1": T.PANEL + "permissions_options_stack_panel/permission_level_dropdown": T.PANEL + "permissions_options_stack_panel/permissions_padding_2": T.PANEL + "permissions_options_stack_panel/permissions_options_grid": T.GRID + "permissions_options_stack_panel/permissions_padding_3": T.PANEL + "permissions_options_stack_panel/permissions_kick_button_panel": T.PANEL + "permissions_options_stack_panel/permissions_padding_4": T.PANEL + "permissions_options_stack_panel/permissions_ban_button_panel": T.PANEL + "permissions_options_stack_panel/permissions_padding_5": T.PANEL + permissions_options_grid: T.GRID + permissions_options_grid_item: T.STACK_PANEL + "permissions_options_grid_item/option_label_panel": T.PANEL + "permissions_options_grid_item/option_label_panel/option_label": T.LABEL + "permissions_options_grid_item/option_state_label_panel": T.PANEL + "permissions_options_grid_item/option_state_label_panel/option_state_label": T.LABEL + "permissions_options_grid_item/option_toggle": T.PANEL + permissions_kick_button_panel: T.PANEL + "permissions_kick_button_panel/kick_button": T.BUTTON + permissions_ban_button_panel: T.PANEL + "permissions_ban_button_panel/ban_button": T.BUTTON + title_label: T.LABEL + ip_label: T.LABEL + world_label: T.LABEL + gamertag_label: T.LABEL + option_state_label: T.LABEL + option_label: T.LABEL + top_bar: T.IMAGE + banner_background: T.IMAGE + player_local_icon: T.IMAGE + player_gamer_pic: T.IMAGE + "player_gamer_pic/player_panel_black_border": T.IMAGE + back_button: T.BUTTON + back_button_content: T.STACK_PANEL + "back_button_content/chevron_panel": T.PANEL + "back_button_content/chevron_panel/left_chevron": T.IMAGE + "back_button_content/back_button_padding": T.PANEL + "back_button_content/label_panel": T.PANEL + "back_button_content/label_panel/label": T.LABEL + player_toggle: T.PANEL + player_button_content: T.STACK_PANEL + "player_button_content/player_pic_panel": T.PANEL + "player_button_content/player_button_padding_1": T.PANEL + "player_button_content/gamertag_panel": T.PANEL + "player_button_content/gamertag_panel/gamertag_label": T.LABEL + "player_button_content/icon_panel": T.PANEL + "player_button_content/icon_panel/dropdown_icon_image": T.IMAGE + "player_button_content/player_button_padding_2": T.PANEL + player_pic_panel: T.PANEL + "player_pic_panel/player_gamer_pic": T.IMAGE + "player_pic_panel/player_local_icon": T.IMAGE + option_toggle: T.PANEL + permission_level_dropdown: T.PANEL + radio_title_and_icon: T.PANEL + "radio_title_and_icon/radio_icon": T.IMAGE + "radio_title_and_icon/radio_title": T.LABEL + radio_content_with_title_bar: T.STACK_PANEL + "radio_content_with_title_bar/title_and_icon": T.PANEL + "radio_content_with_title_bar/helper_text": T.LABEL + "radio_content_with_title_bar/bottom_padding": T.PANEL + radio_visuals_with_title: T.PANEL + "radio_visuals_with_title/radio_content": T.STACK_PANEL + radio_visuals_with_title_hover: T.IMAGE + "radio_visuals_with_title_hover/radio_content": T.STACK_PANEL + permissions_visitor_visuals_with_title_normal: T.PANEL + permissions_visitor_visuals_with_title_hover: T.IMAGE + permissions_member_visuals_with_title_normal: T.PANEL + permissions_member_visuals_with_title_hover: T.IMAGE + permissions_op_visuals_with_title_normal: T.PANEL + permissions_op_visuals_with_title_hover: T.IMAGE + permissions_visitor_radio_visuals_normal: T.PANEL + permissions_visitor_radio_visuals_hover: T.PANEL + permissions_member_radio_visuals_normal: T.PANEL + permissions_member_radio_visuals_hover: T.PANEL + permissions_op_radio_visuals_normal: T.PANEL + permissions_op_radio_visuals_hover: T.PANEL + permissions_custom_radio_visuals_normal: T.PANEL + permissions_custom_radio_visuals_hover: T.PANEL + permission_level_radio: T.PANEL + "permission_level_radio/radio_with_label_core": T.TOGGLE + permission_level_dropdown_content: T.PANEL + permission_level_dropdown_state_content: T.STACK_PANEL + "permission_level_dropdown_state_content/icon_panel": T.PANEL + "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": T.IMAGE + "permission_level_dropdown_state_content/dropdown_label_padding": T.PANEL + "permission_level_dropdown_state_content/label_panel": T.PANEL + "permission_level_dropdown_state_content/label_panel/label": T.LABEL + "permission_level_dropdown_state_content/arrow_panel": T.PANEL + "permission_level_dropdown_state_content/arrow_panel/arrow_image": T.IMAGE +} + +export type PersonaCastCharacterScreenType = { + cast_modal_bottom_bar: T.STACK_PANEL + "cast_modal_bottom_bar/0": T.UNKNOWN + cast_common_dialog_background: T.IMAGE + "cast_common_dialog_background/top_bar": T.PANEL + "cast_common_dialog_background/popup_inner_contents": T.UNKNOWN + "cast_common_dialog_background/cast_modal_bottom_bar": T.STACK_PANEL + cast_modal_panel: T.INPUT_PANEL + "cast_modal_panel/cast_preview_modal_content": T.IMAGE + popup_dialog__cast_character_select: T.INPUT_PANEL + "popup_dialog__cast_character_select/background": T.IMAGE + "popup_dialog__cast_character_select/popup_background": T.INPUT_PANEL + common_dcast_popup_framework: T.INPUT_PANEL + common_cast_modal_top_bar: T.PANEL + "common_cast_modal_top_bar/title_panel": T.LABEL + "common_cast_modal_top_bar/close_button_holder": T.STACK_PANEL + cast_character_select_main: T.PANEL + "cast_character_select_main/modal_inner_background": T.IMAGE + "cast_character_select_main/main_content_horizontal_stack": T.STACK_PANEL + "cast_character_select_main/main_content_horizontal_stack/cast_grid": T.PANEL + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": T.PANEL + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": T.PANEL + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": T.PANEL + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": T.PANEL + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": T.PANEL + cast_scroll_view_panel: T.PANEL + cast_grid_with_buttons: T.STACK_PANEL + "cast_grid_with_buttons/top_spacing": T.PANEL + "cast_grid_with_buttons/cast_grid": T.GRID + "cast_grid_with_buttons/bottom_spacing": T.PANEL + cast_grid_panel: T.PANEL + "cast_grid_panel/cast_grid": T.STACK_PANEL + cast_single_character_button_panel: T.PANEL + "cast_single_character_button_panel/cast_character_button": T.BUTTON + "cast_single_character_button_panel/cast_character_button/background_image": T.IMAGE + "cast_single_character_button_panel/cast_character_button/selected": T.IMAGE + "cast_single_character_button_panel/cast_character_button/default": T.PANEL + "cast_single_character_button_panel/cast_character_button/hover": T.IMAGE + "cast_single_character_button_panel/cast_character_button/pressed": T.IMAGE + "cast_single_character_button_panel/cast_character_button/button_outline": T.IMAGE + "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": T.PANEL + cast_character_button_content_panel: T.PANEL + "cast_character_button_content_panel/cast_single_character_content_visible_panel": T.PANEL + "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": T.IMAGE + in_use_grid_item: T.IMAGE + persona_cast_paper_doll_panel: T.PANEL + "persona_cast_paper_doll_panel/preset_input_panel": T.INPUT_PANEL + character_loading_anim: T.IMAGE + character_loading_anim_panel: T.IMAGE + "character_loading_anim_panel/character_loading_anim": T.IMAGE + skin_viewer_panel_skin_model: T.PANEL + "skin_viewer_panel_skin_model/skin_model": T.CUSTOM + cast_character_screen_right_side_model: T.INPUT_PANEL + "cast_character_screen_right_side_model/skin_model_panel": T.PANEL + "cast_character_screen_right_side_model/skin_model_loading_anim": T.IMAGE + "cast_character_screen_right_side_model/skin_model_label": T.LABEL + common_background_blocker: T.IMAGE + "common_background_blocker/modal_background_button": T.BUTTON + common_preview_page_framework: T.INPUT_PANEL + "common_preview_page_framework/background": T.IMAGE + "common_preview_page_framework/cast_preview_modal": T.INPUT_PANEL + cast_preview_page_one: T.INPUT_PANEL + cast_preview_page_two: T.INPUT_PANEL + cast_preview_page_one_inner_section: T.PANEL + "cast_preview_page_one_inner_section/modal_inner_background": T.IMAGE + "cast_preview_page_one_inner_section/cast_content": T.INPUT_PANEL + "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": T.IMAGE_CYCLER + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": T.STACK_PANEL + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": T.PANEL + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": T.LABEL_CYCLER + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": T.PANEL + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": T.PANEL + chevron_image_panel: T.PANEL + "chevron_image_panel/chevron_image": T.IMAGE + chevron_button: T.BUTTON + shift_page_panel: T.PANEL + "shift_page_panel/centering_panel": T.PANEL + "shift_page_panel/centering_panel/0": T.UNKNOWN + shift_page_left_panel: T.PANEL + shift_page_right_panel: T.PANEL + horizontal_8px_padding: T.PANEL + horizontal_20px_padding: T.PANEL + ftue_subpage_indicator_panel: T.PANEL + "ftue_subpage_indicator_panel/controls_shoulder_button_display": T.STACK_PANEL + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": T.PANEL + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": T.PANEL + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": T.PANEL + "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": T.GRID_PAGE_INDICATOR + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": T.PANEL + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": T.PANEL + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": T.PANEL + individaul_cast_page_indicator: T.PANEL + "individaul_cast_page_indicator/panel_when_current_page": T.PANEL + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": T.PANEL + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": T.IMAGE + "individaul_cast_page_indicator/panel_when_not_current_page": T.PANEL + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": T.PANEL + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": T.IMAGE + how_to_section: T.STACK_PANEL + "how_to_section/how_to_image": T.IMAGE + "how_to_section/how_to_label_section": T.PANEL + "how_to_section/how_to_label_section/how_to_label": T.LABEL + cast_preview_page_two_inner_section: T.IMAGE + "cast_preview_page_two_inner_section/how_to_section_stack": T.STACK_PANEL + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": T.STACK_PANEL + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": T.PANEL + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": T.IMAGE + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": T.STACK_PANEL +} + +export type PersonaCommonType = { + icon_image: T.IMAGE + mashup_world: T.IMAGE + mashup_hangar: T.IMAGE + mashup_paintbrush: T.IMAGE + info_bulb_icon: T.IMAGE + green_checkmark_icon: T.IMAGE + persona_screen_background_content: T.IMAGE + loading_icon: T.IMAGE + focus_border: T.IMAGE + selected_border: T.IMAGE + equipped_border: T.IMAGE + progress_loading: T.IMAGE + "progress_loading/progress_loading": T.PANEL + title_rarity_positionable_title: T.LABEL + generic_title_panel: T.IMAGE + "generic_title_panel/title_label": T.LABEL + rarity_bar: T.IMAGE + item_rarity_color_background: T.IMAGE + piece_item_display: T.PANEL + "piece_item_display/item_renderer": T.PANEL + "piece_item_display/item_renderer/background": T.IMAGE + "piece_item_display/item_renderer/item_image": T.IMAGE + "piece_item_display/item_renderer/rarity_bar_panel": T.IMAGE + "piece_item_display/item_renderer/extra_control": T.PANEL + "piece_item_display/item_renderer/extra_control/control_instance": T.UNKNOWN + "piece_item_display/loading_progress_spinner": T.IMAGE + wheel_state: T.IMAGE + emote_label: T.LABEL + touch_name_label: T.LABEL + emote_image: T.PANEL + "emote_image/empty": T.IMAGE + "emote_image/emote_preview": T.PANEL + "emote_image/emote_preview/valid": T.IMAGE + "emote_image/emote_preview/valid_no_image": T.PANEL + "emote_image/emote_preview/valid_no_image/valid_text": T.LABEL + keyboard_hotkey_helpers: T.PANEL + "keyboard_hotkey_helpers/keyboard_1": T.STACK_PANEL + "keyboard_hotkey_helpers/keyboard_2": T.STACK_PANEL + "keyboard_hotkey_helpers/keyboard_3": T.STACK_PANEL + "keyboard_hotkey_helpers/keyboard_4": T.STACK_PANEL + gamepad_hotkey_helpers: T.PANEL + "gamepad_hotkey_helpers/quick_select_gamepad_helpers": T.PANEL + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": T.STACK_PANEL + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": T.UNKNOWN + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": T.UNKNOWN + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": T.STACK_PANEL + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": T.PANEL + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": T.STACK_PANEL + emote_wheel_slot_content: T.PANEL + "emote_wheel_slot_content/image_0": T.PANEL + "emote_wheel_slot_content/touch_label_0": T.LABEL + selection_wheel: T.SELECTION_WHEEL + emote_selection_wheel: T.SELECTION_WHEEL + "emote_selection_wheel/default_state": T.IMAGE + "emote_selection_wheel/emote_slot_0_content": T.PANEL + "emote_selection_wheel/emote_slot_1_content": T.PANEL + "emote_selection_wheel/emote_slot_2_content": T.PANEL + "emote_selection_wheel/emote_slot_3_content": T.PANEL + emote_wheel_panel: T.PANEL + "emote_wheel_panel/emote_name": T.LABEL + "emote_wheel_panel/emote_wheel_content_panel": T.PANEL + "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": T.PANEL + "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": T.PANEL + "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": T.SELECTION_WHEEL +} + +export type PersonaPopupsType = { + no_content_panel: T.PANEL + common_image: T.IMAGE + common_icon: T.IMAGE + create_persona_choice_checked_image: T.IMAGE + create_persona_choice_unchecked_image: T.IMAGE + modal_window_input_blocker: T.IMAGE + modal_popup_background: T.IMAGE + general_text_field: T.LABEL + title_text: T.LABEL + popup_title: T.LABEL + popup_content: T.PANEL + popup_ok_button: T.BUTTON + popup_frame: T.IMAGE + "popup_frame/title_label": T.LABEL + "popup_frame/close_button": T.BUTTON + "popup_frame/content": T.PANEL + "popup_frame/ok_button": T.BUTTON + popup_info_panel: T.PANEL + "popup_info_panel/background": T.IMAGE + "popup_info_panel/frame": T.IMAGE + common_dialog: T.INPUT_PANEL + "common_dialog/background": T.IMAGE + "common_dialog/panel": T.PANEL + popup_dialog_bg: T.IMAGE + "popup_dialog_bg/background_image": T.IMAGE + "popup_dialog_bg/title_panel": T.PANEL + "popup_dialog_bg/title_panel/title": T.LABEL + "popup_dialog_bg/popup_content": T.UNKNOWN + icon_title_bar: T.STACK_PANEL + "icon_title_bar/icon": T.IMAGE + "icon_title_bar/padding": T.PANEL + "icon_title_bar/text_title_panel": T.LABEL + popup_common: T.INPUT_PANEL + "popup_common/background": T.IMAGE + "popup_common/background/text_stack_panel": T.LABEL + popup_dialog__difference_information: T.INPUT_PANEL + differences_left_details: T.LABEL + differences_left_section: T.STACK_PANEL + "differences_left_section/title_bar": T.STACK_PANEL + "differences_left_section/padding_1": T.PANEL + "differences_left_section/details": T.LABEL + differences_detail_image: T.IMAGE + differences_title_card_display: T.STACK_PANEL + "differences_title_card_display/left": T.STACK_PANEL + "differences_title_card_display/padding_1": T.PANEL + "differences_title_card_display/right": T.IMAGE + differences_persona_detail_section: T.STACK_PANEL + differences_classic_skin_detail_section: T.STACK_PANEL + different_info_panel_contents: T.STACK_PANEL + "different_info_panel_contents/character_display": T.STACK_PANEL + "different_info_panel_contents/item_1_padding": T.PANEL + "different_info_panel_contents/divider": T.PANEL + "different_info_panel_contents/item_2_padding": T.PANEL + "different_info_panel_contents/classic_skin_display": T.STACK_PANEL + popup_dialog__preview_difference_information: T.INPUT_PANEL + popup_dialog__delete_persona: T.INPUT_PANEL + "popup_dialog__delete_persona/popup_dialog_bg": T.IMAGE + popup_dialog_delete_persona_content: T.PANEL + "popup_dialog_delete_persona_content/image": T.IMAGE + "popup_dialog_delete_persona_content/message": T.LABEL + "popup_dialog_delete_persona_content/buttons": T.STACK_PANEL + alex_warning: T.IMAGE + delete_popup_dialog_message: T.LABEL + delete_persona_button_stack: T.STACK_PANEL + "delete_persona_button_stack/left_button": T.BUTTON + "delete_persona_button_stack/padding": T.PANEL + "delete_persona_button_stack/right_button": T.BUTTON + delete_persona_left_button: T.BUTTON + delete_persona_right_button: T.BUTTON + popup_dialog__create_persona: T.INPUT_PANEL + create_persona_display: T.STACK_PANEL + "create_persona_display/vertical_padding_2px": T.PANEL + "create_persona_display/stack_content": T.STACK_PANEL + create_persona_choice_stack: T.STACK_PANEL + "create_persona_choice_stack/background1": T.PANEL + "create_persona_choice_stack/background2": T.PANEL + create_persona_choice_character: T.PANEL + "create_persona_choice_character/create_persona_choice_character": T.PANEL + select_default_character_button_vertical_panel: T.STACK_PANEL + "select_default_character_button_vertical_panel/padding": T.PANEL + "select_default_character_button_vertical_panel/select_default_character_button_panel": T.PANEL + "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": T.BUTTON + select_default_character_button: T.BUTTON + create_persona_choice_classic_skin: T.PANEL + create_persona_choice_button: T.PANEL + "create_persona_choice_button/choice_toggle": T.PANEL + create_persona_choice_background: T.STACK_PANEL + "create_persona_choice_background/choice_title_bar": T.STACK_PANEL + "create_persona_choice_background/choice_details_body": T.STACK_PANEL + "create_persona_choice_background/choice_bottom_content": T.UNKNOWN + create_persona_choice_title_bar: T.STACK_PANEL + "create_persona_choice_title_bar/checkbox": T.PANEL + "create_persona_choice_title_bar/spacing": T.PANEL + "create_persona_choice_title_bar/icon_title": T.STACK_PANEL + create_persona_choice_check_positioning: T.PANEL + "create_persona_choice_check_positioning/toggle_image": T.UNKNOWN + create_persona_choice_icon_title: T.STACK_PANEL + create_persona_choice_detail_panel: T.STACK_PANEL + "create_persona_choice_detail_panel/spacing": T.PANEL + "create_persona_choice_detail_panel/choice_details_body": T.LABEL + create_persona_choice_detail: T.LABEL + popup_dialog__invalid_custom_skin: T.INPUT_PANEL + "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE + popup_dialog_invalid_custom_skin_content: T.PANEL + "popup_dialog_invalid_custom_skin_content/popup_dialog_message": T.LABEL + "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": T.BUTTON + popup_dialog__upsell_without_store: T.INPUT_PANEL + popup_dialog__choose_skin_type: T.INPUT_PANEL + "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE + popup_dialog_choose_skin_type_content: T.PANEL + "popup_dialog_choose_skin_type_content/popup_dialog_message": T.LABEL + "popup_dialog_choose_skin_type_content/left": T.PANEL + "popup_dialog_choose_skin_type_content/right": T.PANEL + popup_dialog_choose_skin_type_panel: T.PANEL + "popup_dialog_choose_skin_type_panel/choose_skin_type_button": T.BUTTON + popup_dialog_skin_model: T.PANEL + "popup_dialog_skin_model/paper_doll": T.CUSTOM + popup_dialog__custom_skin_info: T.INPUT_PANEL + "popup_dialog__custom_skin_info/background_image": T.IMAGE + "popup_dialog__custom_skin_info/popup_dialog_bg": T.IMAGE + custom_skin_info_panel_text: T.LABEL + custom_skin_info_panel: T.PANEL + "custom_skin_info_panel/message": T.LABEL + "custom_skin_info_panel/button_group": T.STACK_PANEL + custom_skin_info_button_collection: T.STACK_PANEL + "custom_skin_info_button_collection/settings": T.BUTTON + "custom_skin_info_button_collection/vertical_4_padding": T.PANEL + "custom_skin_info_button_collection/close": T.BUTTON + popup_dialog_close_button: T.BUTTON + usage_limited_settings_profile_button: T.BUTTON + custom_skin_popup_dialog_bg: T.IMAGE + "custom_skin_popup_dialog_bg/background_image": T.IMAGE + "custom_skin_popup_dialog_bg/vertical_align_title": T.PANEL + "custom_skin_popup_dialog_bg/vertical_align_title/title": T.LABEL + "custom_skin_popup_dialog_bg/popup_content": T.UNKNOWN + popup_dialog__emote_equip_slot_editor: T.INPUT_PANEL + "popup_dialog__emote_equip_slot_editor/background_image": T.IMAGE + "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": T.PANEL + popup_emote_wheel_dialog: T.PANEL + "popup_emote_wheel_dialog/popup_background": T.IMAGE + emote_equip_slot_content: T.PANEL + "emote_equip_slot_content/close": T.BUTTON + "emote_equip_slot_content/emote_wheel_content_panel": T.PANEL + "emote_equip_slot_content/emote_wheel_content_panel/cancel": T.PANEL + "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": T.PANEL + close_emote_popup_controller: T.PANEL + "close_emote_popup_controller/close_ui": T.STACK_PANEL + emote_wheel_content: T.PANEL + popup_dialog__realms_plus_extra_info: T.INPUT_PANEL + "popup_dialog__realms_plus_extra_info/background_image": T.IMAGE + "popup_dialog__realms_plus_extra_info/dialog_bg": T.IMAGE + realms_plus_extra_info_popup_dialog_bg: T.IMAGE + "realms_plus_extra_info_popup_dialog_bg/background_image": T.IMAGE + "realms_plus_extra_info_popup_dialog_bg/title": T.LABEL + "realms_plus_extra_info_popup_dialog_bg/popup_content": T.UNKNOWN + realms_extra_info_panel_text: T.LABEL + realms_extra_info_panel: T.PANEL + "realms_extra_info_panel/realms_extra": T.PANEL + "realms_extra_info_panel/button_group": T.STACK_PANEL + realms_extra_info_button_collection: T.STACK_PANEL + "realms_extra_info_button_collection/close": T.BUTTON + realms_extra_info_content: T.PANEL + "realms_extra_info_content/the_spread": T.STACK_PANEL + "realms_extra_info_content/the_spread/pack_image": T.IMAGE + "realms_extra_info_content/the_spread/horizontal_6_padding": T.PANEL + "realms_extra_info_content/the_spread/the_info_stack": T.STACK_PANEL + "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": T.STACK_PANEL + "realms_extra_info_content/the_spread/the_info_stack/padding": T.PANEL + "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": T.STACK_PANEL + pack_information_textures_and_usage_tooltip: T.STACK_PANEL + "pack_information_textures_and_usage_tooltip/textures": T.PANEL + "pack_information_textures_and_usage_tooltip/mid_padding": T.PANEL + "pack_information_textures_and_usage_tooltip/appearance_status": T.INPUT_PANEL + roamable_status_notification_panel: T.INPUT_PANEL + "roamable_status_notification_panel/appearance_status_notification": T.BUTTON + "roamable_status_notification_panel/roamable_status": T.PANEL + appearance_status_image_panel: T.PANEL + "appearance_status_image_panel/usage_limited": T.IMAGE + "appearance_status_image_panel/usage_not_limited": T.IMAGE + pack_information_skins_and_world: T.STACK_PANEL + "pack_information_skins_and_world/skins": T.PANEL + "pack_information_skins_and_world/mid_padding": T.PANEL + "pack_information_skins_and_world/worlds": T.PANEL + skin_info_label_and_image: T.PANEL + "skin_info_label_and_image/content_stack": T.STACK_PANEL + skin_info_image_panel: T.PANEL + "skin_info_image_panel/image": T.UNKNOWN + skin_info_label_panel_label: T.LABEL + skin_info_label_panel: T.PANEL + "skin_info_label_panel/label": T.LABEL + skin_info_content_stack: T.STACK_PANEL + "skin_info_content_stack/image_panel": T.PANEL + "skin_info_content_stack/horizontal_2_padding": T.PANEL + "skin_info_content_stack/label_panel": T.PANEL + realms_extra_info_pack_info: T.IMAGE + popup_toast: T.INPUT_PANEL +} + +export type PlayType = { + label_background: T.IMAGE + dark_label_background: T.IMAGE + world_screenshot_base: T.IMAGE + collection_world_screenshot: T.IMAGE + "collection_world_screenshot/screenshot_picture": T.IMAGE + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": T.STACK_PANEL + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": T.IMAGE + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": T.IMAGE + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": T.LABEL + world_item_grid_base: T.GRID + edit_icon: T.IMAGE + realms_stories_icon: T.IMAGE + realms_stories_icon_animated: T.IMAGE + realms_slots_edit_icon: T.IMAGE + worlds_icon: T.IMAGE + realms_icon: T.IMAGE + realms_chevron: T.IMAGE + friends_icon_1: T.IMAGE + friends_icon_2: T.IMAGE + bell_icon: T.IMAGE + invite_icon: T.IMAGE + delete_icon: T.IMAGE + world_download_icon: T.IMAGE + third_party_servers_icon: T.IMAGE + lan_icon: T.IMAGE + friends_server_icon: T.IMAGE + cross_platform_friends_server_icon: T.IMAGE + realms_remove_icon: T.IMAGE + game_online_icon: T.IMAGE + game_offline_icon: T.IMAGE + game_unavailable_icon: T.IMAGE + import_icon: T.IMAGE + add_server_icon: T.IMAGE + server_tab_icon: T.IMAGE + realms_art_icon: T.IMAGE + realms_text_background: T.IMAGE + connected_storage: T.IMAGE + feedback_icon: T.IMAGE + local_only_storage: T.IMAGE + local_and_cloud_storage: T.IMAGE + cloud_only_storage: T.IMAGE + left_arrow_icon: T.IMAGE + right_arrow_icon: T.IMAGE + small_progress_panel: T.IMAGE + sign_in_realms_image: T.PANEL + "sign_in_realms_image/chevron": T.IMAGE + "sign_in_realms_image/portal": T.IMAGE + realms_sign_in_prompt_label: T.LABEL + realms_sign_in_prompt: T.PANEL + "realms_sign_in_prompt/realms_sign_in_prompt_label": T.LABEL + realms_sign_in_prompt_friends: T.PANEL + "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": T.LABEL + sign_in_to_view_realms_content_panel: T.STACK_PANEL + "sign_in_to_view_realms_content_panel/sign_in_realms_image": T.PANEL + "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": T.UNKNOWN + sign_in_to_view_realms_content_panel_friends: T.STACK_PANEL + sign_in_to_view_realms_button: T.BUTTON + sign_in_to_view_realms_button_friends: T.BUTTON + realms_list_text: T.LABEL + realms_world_header: T.LABEL + realms_world_details: T.LABEL + realms_world_type: T.LABEL + realms_world_player_count: T.LABEL + realms_world_game_status_icon: T.PANEL + "realms_world_game_status_icon/game_online_icon": T.IMAGE + "realms_world_game_status_icon/game_unavailable_icon": T.IMAGE + "realms_world_game_status_icon/game_offline_icon": T.IMAGE + realms_world_text_panel: T.PANEL + "realms_world_text_panel/realms_world_header": T.LABEL + "realms_world_text_panel/realms_world_details": T.LABEL + realms_world_trial_text_panel: T.PANEL + "realms_world_trial_text_panel/realms_world_header_text": T.LABEL + "realms_world_trial_text_panel/realms_world_details": T.LABEL + realms_world_content_text_area_panel: T.PANEL + "realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL + realms_trial_content_text_area_panel: T.PANEL + "realms_trial_content_text_area_panel/realms_world_trial_text_panel": T.PANEL + realms_world_content_status_area_panel: T.STACK_PANEL + "realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL + "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL + "realms_world_content_status_area_panel/padding": T.PANEL + "realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL + realms_world_content_status_area_panel_container: T.STACK_PANEL + "realms_world_content_status_area_panel_container/realms_world_status_panel": T.PANEL + "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": T.STACK_PANEL + "realms_world_content_status_area_panel_container/realms_world_type": T.LABEL + realms_world_content_panel: T.STACK_PANEL + "realms_world_content_panel/realm_screenshot": T.IMAGE + "realms_world_content_panel/padding": T.PANEL + "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL + "realms_world_content_panel/realms_world_content_status_area_panel": T.PANEL + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": T.STACK_PANEL + realms_trial_content_panel: T.STACK_PANEL + "realms_trial_content_panel/realm_screenshot": T.IMAGE + "realms_trial_content_panel/padding": T.PANEL + "realms_trial_content_panel/realms_trial_content_text_area_panel": T.PANEL + realms_world_item_button: T.BUTTON + realms_world_edit_button: T.BUTTON + realms_feed_button_content: T.IMAGE + "realms_feed_button_content/default_icon": T.IMAGE + "realms_feed_button_content/unread_icon_active": T.IMAGE + persistent_realms_feed_button_control: T.PANEL + realms_feed_button: T.BUTTON + leave_friends_realm_button: T.BUTTON + unread_story_count_text: T.LABEL + unread_story_count_text_background: T.IMAGE + unread_story_count_panel: T.PANEL + "unread_story_count_panel/text": T.LABEL + "unread_story_count_panel/text/background": T.IMAGE + realms_world_item: T.STACK_PANEL + "realms_world_item/realms_button_panel": T.PANEL + "realms_world_item/realms_button_panel/realms_world_item_button": T.BUTTON + "realms_world_item/realms_button_panel/tts_border": T.BUTTON + "realms_world_item/edit_panel": T.PANEL + "realms_world_item/edit_panel/realms_world_edit_button": T.BUTTON + "realms_world_item/edit_panel/realms_world_expiry_notification_image": T.IMAGE + "realms_world_item/feed_panel_with_unread_count": T.PANEL + "realms_world_item/feed_panel_with_unread_count/feed_panel": T.PANEL + "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON + "realms_world_item/feed_panel_with_unread_count/unread_story_count": T.PANEL + "realms_world_item/leave_realm_panel": T.PANEL + "realms_world_item/leave_realm_panel/leave_friends_realm_button": T.BUTTON + realms_world_item_grid: T.GRID + network_world_header: T.STACK_PANEL + "network_world_header/network_world_header_icon": T.IMAGE + "network_world_header/spacer": T.PANEL + "network_world_header/header_panel": T.PANEL + "network_world_header/header_panel/network_world_header_text": T.LABEL + network_world_details: T.LABEL + network_world_player_count: T.PANEL + "network_world_player_count/count": T.LABEL + network_world_game_status_icon: T.PANEL + "network_world_game_status_icon/game_online_icon": T.IMAGE + "network_world_game_status_icon/game_unavailable_icon": T.IMAGE + "network_world_game_status_icon/game_offline_icon": T.IMAGE + network_world_text_panel: T.PANEL + "network_world_text_panel/network_world_header": T.STACK_PANEL + "network_world_text_panel/network_world_details": T.LABEL + network_world_content_text_area_panel: T.PANEL + "network_world_content_text_area_panel/network_world_text_panel": T.PANEL + network_world_content_status_area_panel: T.STACK_PANEL + "network_world_content_status_area_panel/network_player_count_text_panel": T.PANEL + "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": T.PANEL + "network_world_content_status_area_panel/padding": T.PANEL + "network_world_content_status_area_panel/network_world_game_status_icon": T.PANEL + network_world_content_status_area_panel_container: T.STACK_PANEL + "network_world_content_status_area_panel_container/network_world_status_panel": T.PANEL + "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": T.STACK_PANEL + "network_world_content_status_area_panel_container/network_world_type": T.PANEL + network_world_type: T.PANEL + "network_world_type/type": T.LABEL + network_world_item_button_content: T.STACK_PANEL + "network_world_item_button_content/network_world_content_text_area_panel": T.PANEL + "network_world_item_button_content/network_status_area_panel": T.PANEL + "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": T.STACK_PANEL + "network_world_item_button_content/network_world_type_icon": T.LABEL + "network_world_item_button_content/network_world_type_icon/padding": T.PANEL + network_world_item_button: T.BUTTON + network_server_world_edit_button: T.BUTTON + network_world_item: T.PANEL + "network_world_item/network_world_item_button": T.BUTTON + "network_world_item/tts_border": T.BUTTON + network_world_item_grid: T.GRID + network_world_item_ignore_crossplay: T.PANEL + "network_world_item_ignore_crossplay/network_world_item_button": T.BUTTON + label_content_template: T.STACK_PANEL + "label_content_template/label_panel": T.PANEL + "label_content_template/label_panel/label_panel_layout": T.PANEL + "label_content_template/label_panel/label_panel_layout/label": T.LABEL + "label_content_template/content": T.UNKNOWN + information_panel: T.PANEL + "information_panel/background": T.IMAGE + "information_panel/background/label_panel_layout": T.PANEL + "information_panel/background/label_panel_layout/label": T.LABEL + "information_panel/focus_button": T.BUTTON + blocked_multiplayer_privileges_panel: T.PANEL + "blocked_multiplayer_privileges_panel/background": T.IMAGE + "blocked_multiplayer_privileges_panel/background/label_panel_layout": T.PANEL + "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": T.LABEL + more_servers_grid: T.GRID + additional_server_toggle_content: T.STACK_PANEL + "additional_server_toggle_content/network_world_content_text_area_panel": T.PANEL + more_servers_label_panel: T.PANEL + "more_servers_label_panel/list_label": T.LABEL + more_servers_world_item: T.STACK_PANEL + "more_servers_world_item/additional_server_toggle_base": T.PANEL + "more_servers_world_item/network_server_world_edit_button": T.BUTTON + additional_server_info_panel: T.PANEL + "additional_server_info_panel/server_info_stack_panel": T.STACK_PANEL + "additional_server_info_panel/server_info_stack_panel/padding_1": T.PANEL + "additional_server_info_panel/server_info_stack_panel/server_name": T.LABEL + "additional_server_info_panel/server_info_stack_panel/padding_2": T.PANEL + "additional_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL + "additional_server_info_panel/server_info_stack_panel/padding_3": T.PANEL + "additional_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL + "additional_server_info_panel/server_info_stack_panel/padding_4": T.PANEL + "additional_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON + ping_rate_icon: T.IMAGE + ping_rate_panel: T.PANEL + "ping_rate_panel/concurrency_stack": T.STACK_PANEL + "ping_rate_panel/concurrency_stack/player_count": T.LABEL + "ping_rate_panel/concurrency_stack/padding_0": T.PANEL + "ping_rate_panel/concurrency_stack/ping_rate_icon": T.IMAGE + add_server_info_panel: T.PANEL + "add_server_info_panel/server_info_stack_panel": T.STACK_PANEL + "add_server_info_panel/server_info_stack_panel/padding_0": T.PANEL + "add_server_info_panel/server_info_stack_panel/add_server_title": T.LABEL + "add_server_info_panel/server_info_stack_panel/padding_1": T.PANEL + "add_server_info_panel/server_info_stack_panel/add_server_description": T.LABEL + third_party_featured_server_grid: T.GRID + featured_server_world_item: T.PANEL + "featured_server_world_item/server_button": T.PANEL + server_button_content_panel: T.STACK_PANEL + "server_button_content_panel/top_panel": T.STACK_PANEL + "server_button_content_panel/top_panel/third_party_server_screenshot": T.IMAGE + "server_button_content_panel/top_panel/padding_0": T.PANEL + "server_button_content_panel/top_panel/title_panel": T.PANEL + "server_button_content_panel/top_panel/title_panel/third_party_server_name": T.LABEL + "server_button_content_panel/top_panel/title_panel/progress": T.IMAGE + "server_button_content_panel/padding": T.PANEL + "server_button_content_panel/bottom_panel": T.PANEL + "server_button_content_panel/bottom_panel/third_party_server_message": T.LABEL + third_party_server_content_panel: T.STACK_PANEL + "third_party_server_content_panel/ping_rate_panel": T.PANEL + loading_featured_servers_panel: T.PANEL + "loading_featured_servers_panel/load_bars": T.PANEL + "loading_featured_servers_panel/load_bars/progress_loading_bars": T.IMAGE + third_party_server_screenshot: T.IMAGE + "third_party_server_screenshot/picture": T.IMAGE + third_party_server_info_panel: T.PANEL + "third_party_server_info_panel/server_info_stack_panel": T.STACK_PANEL + "third_party_server_info_panel/server_info_stack_panel/padding_0": T.PANEL + "third_party_server_info_panel/server_info_stack_panel/server_screenshot": T.IMAGE + "third_party_server_info_panel/server_info_stack_panel/padding_1": T.PANEL + "third_party_server_info_panel/server_info_stack_panel/server_name": T.LABEL + "third_party_server_info_panel/server_info_stack_panel/padding_2": T.PANEL + "third_party_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL + "third_party_server_info_panel/server_info_stack_panel/padding_3": T.PANEL + "third_party_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL + "third_party_server_info_panel/server_info_stack_panel/padding_4": T.PANEL + "third_party_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON + "third_party_server_info_panel/server_info_stack_panel/view_offers_button": T.BUTTON + "third_party_server_info_panel/server_info_stack_panel/padding_5": T.PANEL + "third_party_server_info_panel/server_info_stack_panel/screenshots_section": T.STACK_PANEL + "third_party_server_info_panel/server_info_stack_panel/description_section": T.STACK_PANEL + "third_party_server_info_panel/server_info_stack_panel/games_section": T.STACK_PANEL + "third_party_server_info_panel/server_info_stack_panel/news_section": T.STACK_PANEL + "third_party_server_info_panel/progress": T.IMAGE + text_icon_number_panel: T.STACK_PANEL + "text_icon_number_panel/text": T.LABEL + "text_icon_number_panel/padding_0": T.PANEL + "text_icon_number_panel/stack_panel": T.STACK_PANEL + "text_icon_number_panel/stack_panel/icon_panel": T.PANEL + "text_icon_number_panel/stack_panel/icon_panel/icon": T.IMAGE + "text_icon_number_panel/stack_panel/padding_1": T.PANEL + "text_icon_number_panel/stack_panel/number": T.LABEL + grey_bar_panel: T.STACK_PANEL + "grey_bar_panel/grey_bar": T.IMAGE + "grey_bar_panel/green_bar": T.IMAGE + "grey_bar_panel/padding": T.PANEL + screenshots_section_panel: T.STACK_PANEL + "screenshots_section_panel/divider_0": T.PANEL + "screenshots_section_panel/padding_0": T.PANEL + "screenshots_section_panel/screenshots_label": T.LABEL + "screenshots_section_panel/padding_1": T.PANEL + "screenshots_section_panel/screenshots": T.IMAGE + "screenshots_section_panel/padding_2": T.PANEL + "screenshots_section_panel/navigation_panel": T.STACK_PANEL + "screenshots_section_panel/navigation_panel/left_arrow_button": T.BUTTON + "screenshots_section_panel/navigation_panel/padding_0": T.PANEL + "screenshots_section_panel/navigation_panel/navigation_bar": T.PANEL + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": T.IMAGE + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL + "screenshots_section_panel/navigation_panel/padding_1": T.PANEL + "screenshots_section_panel/navigation_panel/right_arrow_button": T.BUTTON + "screenshots_section_panel/padding_3": T.PANEL + description_text_panel: T.PANEL + "description_text_panel/contents_description": T.LABEL + description_section_panel: T.STACK_PANEL + "description_section_panel/divider_0": T.PANEL + "description_section_panel/padding_0": T.PANEL + "description_section_panel/description_label": T.LABEL + "description_section_panel/padding_1": T.PANEL + "description_section_panel/read_more_panel": T.IMAGE + "description_section_panel/read_more_panel/description_text_small": T.PANEL + "description_section_panel/read_more_panel/description_text_full": T.PANEL + "description_section_panel/read_more_panel/description_read_more_button_panel": T.PANEL + "description_section_panel/read_more_panel/description_read_less_button_panel": T.PANEL + "description_section_panel/padding_3": T.PANEL + games_factory_object: T.STACK_PANEL + "games_factory_object/games_factory_panel": T.IMAGE + "games_factory_object/games_factory_panel/top_panel": T.STACK_PANEL + "games_factory_object/games_factory_panel/top_panel/game_image_panel": T.PANEL + "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": T.IMAGE + "games_factory_object/games_factory_panel/top_panel/padding": T.PANEL + "games_factory_object/games_factory_panel/top_panel/game_title_panel": T.STACK_PANEL + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": T.LABEL + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": T.LABEL + "games_factory_object/games_factory_panel/bottom_panel": T.PANEL + "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": T.LABEL + "games_factory_object/padding": T.PANEL + games_section_panel: T.STACK_PANEL + "games_section_panel/divider_0": T.PANEL + "games_section_panel/padding_0": T.PANEL + "games_section_panel/description_label": T.LABEL + "games_section_panel/padding_1": T.PANEL + "games_section_panel/games_factory_panel": T.STACK_PANEL + "games_section_panel/padding_3": T.PANEL + news_text_panel: T.PANEL + "news_text_panel/contents_news": T.LABEL + news_section_panel: T.STACK_PANEL + "news_section_panel/divider_0": T.PANEL + "news_section_panel/padding_0": T.PANEL + "news_section_panel/news_label": T.LABEL + "news_section_panel/padding_1": T.PANEL + "news_section_panel/read_more_panel": T.IMAGE + "news_section_panel/read_more_panel/text_stack_panel": T.STACK_PANEL + "news_section_panel/read_more_panel/text_stack_panel/news_title_text": T.LABEL + "news_section_panel/read_more_panel/text_stack_panel/divider_panel": T.PANEL + "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": T.PANEL + "news_section_panel/read_more_panel/text_stack_panel/news_text_small": T.PANEL + "news_section_panel/read_more_panel/text_stack_panel/news_text_full": T.PANEL + "news_section_panel/read_more_panel/news_read_more_button_panel": T.PANEL + "news_section_panel/read_more_panel/news_read_less_button_panel": T.PANEL + "news_section_panel/padding_3": T.PANEL + divider: T.IMAGE + blue_diskspace_bar: T.IMAGE + green_diskspace_bar: T.IMAGE + empty_diskspace_bar: T.IMAGE + legacy_world_content_status_area_panel: T.PANEL + "legacy_world_content_status_area_panel/world_storage_content_panel": T.PANEL + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": T.IMAGE + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": T.STACK_PANEL + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": T.LABEL + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": T.PANEL + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": T.PANEL + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": T.IMAGE + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": T.IMAGE + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": T.IMAGE + world_list_text: T.LABEL + realm_screenshot: T.IMAGE + "realm_screenshot/picture": T.IMAGE + local_world_name: T.LABEL + legacy_world_name: T.LABEL + world_lock: T.IMAGE + local_world_game_mode: T.LABEL + legacy_world_game_mode: T.LABEL + local_world_date: T.LABEL + legacy_world_date: T.LABEL + local_world_filesize: T.LABEL + legacy_world_filesize: T.LABEL + local_world_connected_storage: T.PANEL + "local_world_connected_storage/local_and_cloud": T.IMAGE + "local_world_connected_storage/local_only": T.IMAGE + "local_world_connected_storage/cloud_only": T.IMAGE + local_world_lock_panel: T.PANEL + "local_world_lock_panel/lock": T.IMAGE + realms_plus_banner: T.PANEL + "realms_plus_banner/realms_banner": T.STACK_PANEL + local_world_text_panel: T.PANEL + "local_world_text_panel/text_indent": T.PANEL + "local_world_text_panel/text_indent/top_side": T.STACK_PANEL + "local_world_text_panel/text_indent/top_side/local_world_name": T.LABEL + "local_world_text_panel/text_indent/top_side/lock_1": T.PANEL + "local_world_text_panel/text_indent/top_side/local_world_date": T.LABEL + "local_world_text_panel/text_indent/bottom_side": T.STACK_PANEL + "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": T.PANEL + "local_world_text_panel/text_indent/bottom_side/pad": T.PANEL + "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": T.LABEL + "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": T.PANEL + "local_world_text_panel/text_indent/bottom_side/local_world_filesize": T.LABEL + legacy_world_text_panel: T.PANEL + "legacy_world_text_panel/text_indent": T.PANEL + "legacy_world_text_panel/text_indent/top_side": T.STACK_PANEL + "legacy_world_text_panel/text_indent/top_side/legacy_world_name": T.LABEL + "legacy_world_text_panel/text_indent/top_side/legacy_world_date": T.LABEL + "legacy_world_text_panel/text_indent/bottom_side": T.STACK_PANEL + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": T.LABEL + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": T.LABEL + beta_retail_world_text_panel: T.PANEL + "beta_retail_world_text_panel/text_indent": T.PANEL + "beta_retail_world_text_panel/text_indent/top_side": T.STACK_PANEL + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": T.LABEL + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": T.LABEL + "beta_retail_world_text_panel/text_indent/bottom_side": T.STACK_PANEL + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": T.LABEL + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": T.LABEL + world_content_panel: T.STACK_PANEL + "world_content_panel/world_screenshot": T.IMAGE + "world_content_panel/world_text_panel": T.UNKNOWN + ownership_verification_in_progress_content: T.STACK_PANEL + "ownership_verification_in_progress_content/top_padding": T.PANEL + "ownership_verification_in_progress_content/loading_bar_panel": T.PANEL + "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": T.IMAGE + "ownership_verification_in_progress_content/mid_padding": T.PANEL + "ownership_verification_in_progress_content/loading_label": T.LABEL + "ownership_verification_in_progress_content/bottom_padding": T.PANEL + ownership_verification_in_progress_panel: T.IMAGE + "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": T.STACK_PANEL + local_world_item_button: T.BUTTON + legacy_world_item_button: T.BUTTON + beta_retail_world_item_button: T.BUTTON + local_world_edit_button: T.BUTTON + legacy_world_delete_button: T.BUTTON + legacy_world_migrate_button: T.BUTTON + local_world_item: T.PANEL + "local_world_item/header_button_panel": T.PANEL + "local_world_item/signin_in_progress_panel": T.IMAGE + legacy_world_item: T.STACK_PANEL + "legacy_world_item/header_button_panel_with_delete": T.PANEL + "legacy_world_item/header_button_panel_with_migrate": T.PANEL + "legacy_world_item/header_button_panel_no_delete": T.PANEL + beta_retail_world_item: T.PANEL + local_world_item_grid: T.GRID + legacy_world_item_grid: T.GRID + beta_retail_local_world_item_grid: T.GRID + beta_retail_legacy_world_item_grid: T.GRID + common_button_template: T.BUTTON + common_button_text: T.LABEL + add_friend_and_invite_panel: T.STACK_PANEL + "add_friend_and_invite_panel/add_friend_button": T.BUTTON + "add_friend_and_invite_panel/padding_1": T.PANEL + "add_friend_and_invite_panel/join_by_code_button": T.BUTTON + "add_friend_and_invite_panel/padding_2": T.PANEL + "add_friend_and_invite_panel/notification_button_panel": T.PANEL + "add_friend_and_invite_panel/notification_button_panel/notification_button": T.BUTTON + add_friend_button: T.BUTTON + join_by_code_button: T.BUTTON + add_server_toggle_button: T.PANEL + server_toggle_base: T.PANEL + quick_play_button: T.BUTTON + create_new_world_button: T.BUTTON + create_on_realms_button_panel: T.PANEL + "create_on_realms_button_panel/create_on_realms_button": T.BUTTON + import_world_button: T.BUTTON + sync_legacy_worlds_button: T.BUTTON + notification_button_text_layout: T.PANEL + "notification_button_text_layout/image1": T.IMAGE + "notification_button_text_layout/image2": T.IMAGE + "notification_button_text_layout/count": T.PANEL + notification_button_label_panel: T.PANEL + "notification_button_label_panel/notification_button_label": T.LABEL + notification_content: T.PANEL + notification_button: T.BUTTON + header_button_panel: T.PANEL + "header_button_panel/buttons": T.STACK_PANEL + "header_button_panel/buttons/primary_panel": T.PANEL + "header_button_panel/buttons/primary_panel/primary": T.UNKNOWN + "header_button_panel/buttons/secondary": T.UNKNOWN + header_button_panel_opt_in: T.PANEL + "header_button_panel_opt_in/buttons": T.STACK_PANEL + "header_button_panel_opt_in/buttons/primary_panel": T.PANEL + "header_button_panel_opt_in/buttons/primary_panel/primary": T.UNKNOWN + "header_button_panel_opt_in/buttons/secondary": T.UNKNOWN + "header_button_panel_opt_in/buttons/ternary": T.UNKNOWN + header_single_button_panel: T.PANEL + "header_single_button_panel/buttons": T.STACK_PANEL + "header_single_button_panel/buttons/primary": T.UNKNOWN + open_account_setting_button_gamecore: T.BUTTON + common_scroll_pane: T.PANEL + worlds_scroll_panel: T.PANEL + "worlds_scroll_panel/worlds_list_stack_panel": T.STACK_PANEL + game_tip_item_panel: T.STACK_PANEL + "game_tip_item_panel/info_bulb": T.IMAGE + "game_tip_item_panel/padding_1": T.PANEL + "game_tip_item_panel/label_panel": T.STACK_PANEL + "game_tip_item_panel/label_panel/padding_vertical": T.PANEL + "game_tip_item_panel/label_panel/realms_warning_text": T.LABEL + "game_tip_item_panel/label_panel/padding_vertical_1": T.PANEL + "game_tip_item_panel/more_info_button": T.BUTTON + realm_warning_tip: T.IMAGE + "realm_warning_tip/padding_vertical": T.PANEL + "realm_warning_tip/info_panel": T.STACK_PANEL + new_ui_switch_button_options_panel: T.STACK_PANEL + "new_ui_switch_button_options_panel/unlock_template_options_button": T.BUTTON + new_ui_servers_switch_button_options_panel: T.STACK_PANEL + "new_ui_servers_switch_button_options_panel/unlock_template_options_button": T.BUTTON + "new_ui_servers_switch_button_options_panel/padding_0": T.PANEL + worlds_stack_panel: T.STACK_PANEL + "worlds_stack_panel/padding_0": T.PANEL + "worlds_stack_panel/play_screen_warning": T.IMAGE + "worlds_stack_panel/header_button": T.STACK_PANEL + "worlds_stack_panel/header_button/quick_play": T.BUTTON + "worlds_stack_panel/header_button/buttons": T.PANEL + "worlds_stack_panel/worlds_crossplatform_disabled_panel": T.PANEL + "worlds_stack_panel/worlds_crossplatform_disable_spacer": T.PANEL + "worlds_stack_panel/realms_panel": T.STACK_PANEL + "worlds_stack_panel/realms_panel/realms_label": T.PANEL + "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": T.BUTTON + "worlds_stack_panel/realms_panel/realms_previews_panel": T.PANEL + "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": T.IMAGE + "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": T.BUTTON + "worlds_stack_panel/realms_panel/create_on_realms_button_panel": T.PANEL + "worlds_stack_panel/realms_panel/personal_realms": T.GRID + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": T.IMAGE + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": T.GRID + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": T.LABEL + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": T.PANEL + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": T.IMAGE + "worlds_stack_panel/realms_panel/realms_trial_panel": T.PANEL + "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": T.BUTTON + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": T.PANEL + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": T.BUTTON + "worlds_stack_panel/realms_panel/padding_1": T.PANEL + "worlds_stack_panel/realms_multiplayer_blocked_panel": T.STACK_PANEL + "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": T.STACK_PANEL + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": T.BUTTON + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": T.BUTTON + "worlds_stack_panel/worlds_label": T.STACK_PANEL + "worlds_stack_panel/grid": T.GRID + "worlds_stack_panel/no_local_worlds_label": T.STACK_PANEL + "worlds_stack_panel/no_local_worlds_switch_setting": T.PANEL + "worlds_stack_panel/beta_retail_local_padding": T.PANEL + "worlds_stack_panel/beta_retail_local_worlds_label": T.PANEL + "worlds_stack_panel/beta_retail_local_grid": T.GRID + "worlds_stack_panel/loading_legacy_worlds_panel_padding": T.PANEL + "worlds_stack_panel/legacy_worlds_button": T.STACK_PANEL + "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": T.PANEL + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": T.PANEL + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": T.BUTTON + "worlds_stack_panel/loading_legacy_worlds_panel": T.IMAGE + "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL + "worlds_stack_panel/loading_legacy_worlds_panel/padding": T.PANEL + "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE + "worlds_stack_panel/padding_2": T.PANEL + "worlds_stack_panel/upgrade_legacy_worlds_label": T.STACK_PANEL + "worlds_stack_panel/legacy_world_item_grid": T.GRID + "worlds_stack_panel/beta_retail_legacy_padding": T.PANEL + "worlds_stack_panel/beta_retail_legacy_worlds_label": T.PANEL + "worlds_stack_panel/beta_retail_legacy_grid": T.GRID + "worlds_stack_panel/pad_hack_panel": T.PANEL + no_local_worlds_switch_setting: T.PANEL + "no_local_worlds_switch_setting/bg": T.IMAGE + "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": T.STACK_PANEL + "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": T.STACK_PANEL + no_local_worlds_launch_help: T.BUTTON + storage_location_dropdown_panel: T.STACK_PANEL + "storage_location_dropdown_panel/padding1": T.PANEL + "storage_location_dropdown_panel/storage_location_dropdown": T.PANEL + storage_location_dropdown: T.PANEL + switch_storage_type_content: T.PANEL + light_centered_loading_label: T.LABEL + light_loading_label: T.LABEL + loading_label: T.LABEL + progress_loading_bars: T.IMAGE + world_list_label_panel: T.PANEL + "world_list_label_panel/list_label": T.LABEL + world_list_label_with_color_panel: T.STACK_PANEL + "world_list_label_with_color_panel/colored_square_sizer": T.PANEL + "world_list_label_with_color_panel/colored_square_sizer/colored_square": T.IMAGE + "world_list_label_with_color_panel/padding": T.PANEL + "world_list_label_with_color_panel/list_label": T.LABEL + empty_panel: T.PANEL + empty_grid: T.PANEL + lan_servers_scroll_content: T.STACK_PANEL + friends_scroll_panel: T.PANEL + "friends_scroll_panel/stack_panel": T.STACK_PANEL + "friends_scroll_panel/stack_panel/padding_0": T.PANEL + "friends_scroll_panel/stack_panel/friends_screen_warning": T.IMAGE + "friends_scroll_panel/stack_panel/header_button": T.STACK_PANEL + "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": T.STACK_PANEL + "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": T.PANEL + "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": T.PANEL + "friends_scroll_panel/stack_panel/joinable_realms_panel": T.STACK_PANEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": T.PANEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": T.BUTTON + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": T.GRID + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": T.IMAGE + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": T.GRID + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": T.LABEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": T.PANEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": T.IMAGE + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": T.IMAGE + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": T.STACK_PANEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": T.PANEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": T.LABEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": T.PANEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": T.IMAGE + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": T.BUTTON + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": T.IMAGE + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": T.IMAGE + "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": T.STACK_PANEL + "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": T.PANEL + "friends_scroll_panel/stack_panel/friends_grid": T.STACK_PANEL + "friends_scroll_panel/stack_panel/pad_hack_panel": T.PANEL + "friends_scroll_panel/stack_panel/no_friends_grid_message": T.STACK_PANEL + "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": T.BUTTON + "friends_scroll_panel/stack_panel/add_friend_button_padding": T.PANEL + "friends_scroll_panel/stack_panel/cross_platform_friends_grid": T.STACK_PANEL + "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": T.STACK_PANEL + "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": T.STACK_PANEL + "friends_scroll_panel/stack_panel/lan_grid": T.STACK_PANEL + "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": T.BUTTON + manually_added_servers_scrolling_content: T.STACK_PANEL + "manually_added_servers_scrolling_content/padding_0": T.PANEL + "manually_added_servers_scrolling_content/more_servers_label": T.LABEL + "manually_added_servers_scrolling_content/padding_1": T.PANEL + "manually_added_servers_scrolling_content/more_servers_grid": T.GRID + "manually_added_servers_scrolling_content/padding_3": T.PANEL + servers_content_panel: T.STACK_PANEL + "servers_content_panel/new_ui_servers_switch_button_options_panel": T.STACK_PANEL + "servers_content_panel/featured_servers_panel": T.STACK_PANEL + "servers_content_panel/featured_servers_panel/loading_featured_panel": T.IMAGE + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": T.LABEL + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": T.PANEL + "servers_content_panel/featured_servers_panel/padding_1": T.PANEL + "servers_content_panel/featured_servers_panel/featured_servers_label": T.LABEL + "servers_content_panel/featured_servers_panel/padding_2": T.PANEL + "servers_content_panel/featured_servers_panel/third_party_featured_grid": T.GRID + "servers_content_panel/featured_servers_panel/padding_3": T.PANEL + "servers_content_panel/more_servers_divider": T.PANEL + "servers_content_panel/more_servers_panel": T.STACK_PANEL + server_scroll_panel: T.PANEL + "server_scroll_panel/stack_panel": T.STACK_PANEL + "server_scroll_panel/stack_panel/padding_0": T.PANEL + "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": T.PANEL + "server_scroll_panel/stack_panel/no_featured_server_connection": T.PANEL + "server_scroll_panel/stack_panel/more_servers_blocked_panel": T.STACK_PANEL + "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": T.PANEL + "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": T.BUTTON + "server_scroll_panel/stack_panel/padding_1": T.PANEL + "server_scroll_panel/stack_panel/server_content": T.UNKNOWN + "server_scroll_panel/stack_panel/add_server_button": T.PANEL + crossplatform_disabled_panel: T.PANEL + crossplatform_disable_spacer: T.PANEL + common_scrolling_panel: T.PANEL + common_content: T.INPUT_PANEL + scrolling_offsets: T.PANEL + worlds_scroll_content: T.INPUT_PANEL + "worlds_scroll_content/worlds_stack_panel": T.STACK_PANEL + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": T.PANEL + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": T.PANEL + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": T.PANEL + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": T.PANEL + friends_scroll_content: T.INPUT_PANEL + "friends_scroll_content/scrolling_panel": T.PANEL + show_servers_panel: T.STACK_PANEL + "show_servers_panel/left_panel": T.PANEL + "show_servers_panel/left_panel/scrolling_panel": T.PANEL + "show_servers_panel/divider_panel": T.PANEL + "show_servers_panel/divider_panel/main_divider": T.IMAGE + "show_servers_panel/right_panel": T.PANEL + server_scroll_content: T.INPUT_PANEL + "server_scroll_content/severs_panel": T.STACK_PANEL + "server_scroll_content/severs_panel/offset_panel": T.PANEL + "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": T.IMAGE + "server_scroll_content/severs_panel/show_servers_panel": T.STACK_PANEL + "server_scroll_content/feature_server_message_panel": T.STACK_PANEL + "server_scroll_content/feature_server_message_panel/featured_servers_label": T.LABEL + "server_scroll_content/feature_server_message_panel/pad": T.PANEL + "server_scroll_content/feature_server_message_panel/feature_server_message_panel": T.IMAGE + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": T.PANEL + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": T.LABEL + "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": T.BUTTON + server_content_area: T.PANEL + "server_content_area/third_party_scrolling_panel": T.PANEL + "server_content_area/additional_server_scrolling_panel": T.PANEL + "server_content_area/add_server_pane": T.PANEL + tab_front: T.IMAGE + tab_front_middle: T.IMAGE + tab_back: T.IMAGE + X_tab_back: T.IMAGE + tab_text_stack_panel: T.STACK_PANEL + "tab_text_stack_panel/padding": T.PANEL + "tab_text_stack_panel/text_section": T.PANEL + "tab_text_stack_panel/text_section/text": T.LABEL + "tab_text_stack_panel/count_section": T.PANEL + "tab_text_stack_panel/count_section/count_background_image": T.IMAGE + "tab_text_stack_panel/count_section/count_background_image/count": T.LABEL + common_navigation_tab_content: T.STACK_PANEL + "common_navigation_tab_content/padding_0": T.PANEL + "common_navigation_tab_content/icon_section": T.PANEL + "common_navigation_tab_content/icon_section/icon": T.UNKNOWN + "common_navigation_tab_content/padding_1": T.PANEL + "common_navigation_tab_content/count_text": T.STACK_PANEL + friends_navigation_tab_content: T.STACK_PANEL + "friends_navigation_tab_content/padding": T.PANEL + "friends_navigation_tab_content/icon_section": T.PANEL + "friends_navigation_tab_content/icon_section/icon": T.UNKNOWN + "friends_navigation_tab_content/icon_section_2": T.PANEL + "friends_navigation_tab_content/icon_section_2/icon": T.UNKNOWN + "friends_navigation_tab_content/icon_section_nobounce": T.PANEL + "friends_navigation_tab_content/icon_section_nobounce/icon": T.UNKNOWN + "friends_navigation_tab_content/icon_section_nobounce_2": T.PANEL + "friends_navigation_tab_content/icon_section_nobounce_2/icon": T.UNKNOWN + "friends_navigation_tab_content/icon_section_notification": T.PANEL + "friends_navigation_tab_content/icon_section_notification/icon1": T.IMAGE + "friends_navigation_tab_content/icon_section_notification/icon2": T.IMAGE + "friends_navigation_tab_content/count_text": T.STACK_PANEL + top_tab: T.PANEL + world_navigation_tab: T.PANEL + friends_navigation_tab: T.PANEL + server_navigation_tab: T.PANEL + close_navigation_tab: T.PANEL + "close_navigation_tab/background": T.IMAGE + "close_navigation_tab/x_image": T.BUTTON + common_tab_content_panel: T.PANEL + "common_tab_content_panel/background": T.PANEL + "common_tab_content_panel/content": T.UNKNOWN + worlds_tab_content_panel: T.PANEL + friends_tab_content_panel: T.PANEL + server_tab_content_panel: T.PANEL + common_tab_content_panel_type: T.INPUT_PANEL + edu_tab_content_panel_layout: T.INPUT_PANEL + "edu_tab_content_panel_layout/worlds_tab_content": T.PANEL + "edu_tab_content_panel_layout/friends_tab_content": T.PANEL + "edu_tab_content_panel_layout/server_tab_content_panel": T.PANEL + trial_tab_content_panel_layout: T.INPUT_PANEL + "trial_tab_content_panel_layout/worlds_tab_content": T.PANEL + default_tab_content_panel_layout: T.INPUT_PANEL + "default_tab_content_panel_layout/worlds_tab_content": T.PANEL + "default_tab_content_panel_layout/friends_tab_content": T.PANEL + "default_tab_content_panel_layout/server_tab_content_panel": T.PANEL + tab_navigation_panel_layout: T.STACK_PANEL + "tab_navigation_panel_layout/navigation_tabs": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN + "tab_navigation_panel_layout/close_navigation_tab": T.PANEL + "tab_navigation_panel_layout/close_navigation_tab/close_button": T.UNKNOWN + common_tab_navigation_panel_layout: T.STACK_PANEL + edu_tab_navigation_panel_layout: T.STACK_PANEL + "edu_tab_navigation_panel_layout/world_navigation_tab": T.PANEL + "edu_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL + "edu_tab_navigation_panel_layout/server_navigation_tab": T.PANEL + trial_tab_navigation_panel_layout: T.STACK_PANEL + "trial_tab_navigation_panel_layout/world_navigation_tab": T.PANEL + default_tab_navigation_panel_layout: T.STACK_PANEL + "default_tab_navigation_panel_layout/world_navigation_tab": T.PANEL + "default_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL + "default_tab_navigation_panel_layout/server_navigation_tab": T.PANEL + common_play_screen_panel: T.PANEL + play_screen_panel: T.PANEL + "play_screen_panel/tab_navigation_panel": T.STACK_PANEL + "play_screen_panel/tab_content_panel": T.UNKNOWN + "play_screen_panel/gamepad_helper_left_bumper": T.STACK_PANEL + "play_screen_panel/gamepad_helper_right_bumper": T.STACK_PANEL + "play_screen_panel/keyboard_helper_left_bracket": T.STACK_PANEL + "play_screen_panel/keyboard_helper_right_bracket": T.STACK_PANEL + default_play_screen_panel: T.PANEL + trial_play_screen_panel: T.PANEL + edu_play_screen_panel: T.PANEL + play_screen: T.SCREEN + play_screen_content: T.PANEL + "play_screen_content/main_control": T.UNKNOWN + "play_screen_content/editor_text_panel": T.PANEL + "play_screen_content/popup_dialog_factory": T.FACTORY + popup_dialog_join_by_code: T.INPUT_PANEL + "popup_dialog_join_by_code/join_by_code_popup_background": T.IMAGE + "popup_dialog_join_by_code/join_by_code_popup_content": T.PANEL + "popup_dialog_join_by_code/gamepad_helpers": T.STACK_PANEL + join_by_code_popup_background: T.IMAGE + join_by_code_popup_content: T.PANEL + "join_by_code_popup_content/popup_dialog_bg": T.IMAGE + "join_by_code_popup_content/popup_stack_panel": T.STACK_PANEL + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": T.PANEL + "join_by_code_popup_content/popup_stack_panel/spacing_1": T.PANEL + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": T.STACK_PANEL + "join_by_code_popup_content/popup_stack_panel/spacing_2": T.PANEL + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": T.PANEL + join_by_code_popup_dialog_header: T.PANEL + "join_by_code_popup_dialog_header/join_by_code_popup_header_text": T.LABEL + "join_by_code_popup_dialog_header/close_button": T.BUTTON + join_by_code_popup_header_text: T.LABEL + join_by_code_popup_dialog_upper_body: T.STACK_PANEL + "join_by_code_popup_dialog_upper_body/margin1": T.PANEL + "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": T.EDIT_BOX + "join_by_code_popup_dialog_upper_body/spacing": T.PANEL + "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": T.BUTTON + "join_by_code_popup_dialog_upper_body/margin2": T.PANEL + join_by_code_popup_code_text_field: T.EDIT_BOX + join_by_code_popup_join_button: T.BUTTON + join_by_code_popup_help_text: T.LABEL + lower_body_default_content: T.PANEL + "lower_body_default_content/info_text": T.LABEL + join_by_code_popup_dialog_lower_body: T.PANEL + "join_by_code_popup_dialog_lower_body/default": T.PANEL + open_account_setting_button: T.BUTTON + popup_dialog_high_ping: T.INPUT_PANEL + "popup_dialog_high_ping/high_ping_popup_background": T.IMAGE + "popup_dialog_high_ping/high_ping_popup_content": T.PANEL + "popup_dialog_high_ping/gamepad_helpers": T.STACK_PANEL + popup_two_buttons: T.PANEL + "popup_two_buttons/common_panel": T.PANEL + "popup_two_buttons/title_label": T.PANEL + "popup_two_buttons/panel_indent": T.PANEL + "popup_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN + "popup_two_buttons/button_panel": T.STACK_PANEL + "popup_two_buttons/button_panel/left_button_panel": T.BUTTON + "popup_two_buttons/button_panel/pad": T.PANEL + "popup_two_buttons/button_panel/right_button_panel": T.BUTTON + high_ping_popup_content_stack_panel: T.STACK_PANEL + "high_ping_popup_content_stack_panel/pad_0": T.PANEL + "high_ping_popup_content_stack_panel/ping_images_panel": T.PANEL + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": T.STACK_PANEL + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": T.IMAGE + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": T.PANEL + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": T.IMAGE + "high_ping_popup_content_stack_panel/pad_1": T.PANEL + "high_ping_popup_content_stack_panel/text_line_1": T.LABEL + "high_ping_popup_content_stack_panel/pad_2": T.PANEL + "high_ping_popup_content_stack_panel/text_line_2": T.LABEL + "high_ping_popup_content_stack_panel/pad_3": T.PANEL + high_ping_popup_join_button: T.BUTTON + high_ping_popup_cancel_button: T.BUTTON + copyright: T.LABEL + development_version: T.LABEL + version: T.LABEL + editor_text_panel: T.PANEL + "editor_text_panel/copyright": T.LABEL + "editor_text_panel/development_version": T.LABEL + "editor_text_panel/version": T.LABEL + editor_settings_image_content: T.IMAGE + editor_settings_menu_button: T.BUTTON + editor_server_content_panel: T.STACK_PANEL + "editor_server_content_panel/more_servers_panel": T.STACK_PANEL + editor_tab_content_panel_layout: T.INPUT_PANEL + "editor_tab_content_panel_layout/worlds_tab_content": T.PANEL + "editor_tab_content_panel_layout/friends_tab_content": T.PANEL + "editor_tab_content_panel_layout/server_tab_content_panel": T.PANEL + editor_play_screen_panel: T.PANEL +} + +export type PerfTurtleType = { + perf_turtle_panel: T.PANEL + "perf_turtle_panel/perf_turtle_background": T.IMAGE + "perf_turtle_panel/stack_panel": T.STACK_PANEL + "perf_turtle_panel/stack_panel/turtle": T.IMAGE + "perf_turtle_panel/stack_panel/turtle_text": T.LABEL +} + +export type PocketContainersType = { + generic_label: T.LABEL + header_panel: T.PANEL + "header_panel/header_background": T.IMAGE + "header_panel/title_label": T.LABEL + header_area: T.PANEL + "header_area/x": T.BUTTON + "header_area/inventory_header": T.PANEL + "header_area/container_header": T.PANEL + dark_bg: T.IMAGE + panel_outline: T.IMAGE + background_panel: T.IMAGE + inventory_grid: T.GRID + inventory_panel: T.PANEL + "inventory_panel/scrolling_panel": T.PANEL + half_screen: T.PANEL + "half_screen/inventory_panel": T.PANEL + panel: T.PANEL + "panel/container_gamepad_helpers": T.STACK_PANEL + "panel/header": T.PANEL + "panel/bg": T.IMAGE + "panel/inventory": T.PANEL + "panel/container": T.PANEL + "panel/selected_item_details_factory": T.FACTORY + "panel/item_lock_notification_factory": T.FACTORY + "panel/gamepad_cursor": T.BUTTON + "panel/inventory_selected_icon_button": T.BUTTON + "panel/hold_icon": T.BUTTON + "panel/flying_item_renderer": T.CUSTOM + small_chest_panel: T.PANEL + large_chest_panel: T.PANEL + hopper_panel: T.PANEL + dispenser_panel: T.PANEL + dropper_panel: T.PANEL + ender_chest_panel: T.PANEL + shulker_box_panel: T.PANEL + barrel_panel: T.PANEL +} + +export type PopupDialogType = { + popup_dialog_bg: T.IMAGE + popup_dialog_message: T.LABEL + popup_dialog_button: T.BUTTON + popup_dialog_button_with_binding: T.BUTTON + popup_dialog_left_button: T.BUTTON + popup_dialog_middle_button: T.BUTTON + popup_dialog_right_button: T.BUTTON + popup_dialog: T.INPUT_PANEL + modal_background_image: T.IMAGE + black_tint_image: T.IMAGE + modal_title_text: T.LABEL + modal_label_text: T.STACK_PANEL + "modal_label_text/padding": T.PANEL + "modal_label_text/text": T.LABEL + modal_checkbox_button: T.TOGGLE + "modal_checkbox_button/header_description_stack_panel": T.STACK_PANEL + "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": T.PANEL + "modal_checkbox_button/header_description_stack_panel/buffer_panel": T.PANEL + "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": T.LABEL + "modal_checkbox_button/header_description_stack_panel/padding_panel": T.PANEL + dialog_text_wrapper: T.PANEL + modal_label_panel: T.PANEL + modal_left_button: T.BUTTON + modal_middle_button: T.BUTTON + modal_rightcancel_button: T.BUTTON + three_buttons_panel: T.PANEL + "three_buttons_panel/left": T.BUTTON + "three_buttons_panel/middle": T.BUTTON + "three_buttons_panel/right": T.BUTTON + two_buttons_checkbox_panel: T.PANEL + "two_buttons_checkbox_panel/left": T.BUTTON + "two_buttons_checkbox_panel/middle": T.BUTTON + "two_buttons_checkbox_panel/checkbox": T.TOGGLE + destructive_three_buttons_panel: T.PANEL + "destructive_three_buttons_panel/left": T.BUTTON + "destructive_three_buttons_panel/middle": T.BUTTON + "destructive_three_buttons_panel/right": T.BUTTON + two_buttons_panel: T.PANEL + "two_buttons_panel/left": T.BUTTON + "two_buttons_panel/right": T.BUTTON + destructive_two_buttons_panel: T.PANEL + "destructive_two_buttons_panel/left": T.BUTTON + "destructive_two_buttons_panel/right": T.BUTTON + single_button_panel: T.PANEL + "single_button_panel/left": T.BUTTON + single_button_checkbox_panel: T.PANEL + "single_button_checkbox_panel/left": T.BUTTON + "single_button_checkbox_panel/checkbox": T.TOGGLE + modal_dialog_base: T.UNKNOWN + modal_dialog_with_buttons: T.PANEL + "modal_dialog_with_buttons/background_with_buttons": T.PANEL + "modal_dialog_with_buttons/title": T.LABEL + "modal_dialog_with_buttons/text": T.PANEL + "modal_dialog_with_buttons/button_panel": T.UNKNOWN + modal_input_panel: T.INPUT_PANEL + "modal_input_panel/black_tint_image": T.IMAGE + modal_dialog_popup: T.PANEL + "modal_dialog_popup/modal_input": T.INPUT_PANEL + "modal_dialog_popup/modal_input/modal_bg_buttons": T.PANEL + "modal_dialog_popup/modal_input/black_background": T.IMAGE + hollow_2_bottom_button_panel: T.PANEL + "hollow_2_bottom_button_panel/lower_button_controls": T.UNKNOWN + form_fit_screen_with_title_and_close_and_bottom_buttons: T.PANEL + form_fit_screen_with_title_and_close: T.PANEL + "form_fit_screen_with_title_and_close/panel_background": T.UNKNOWN + "form_fit_screen_with_title_and_close/panel_content": T.PANEL + "form_fit_screen_with_title_and_close/panel_content/header": T.PANEL + "form_fit_screen_with_title_and_close/panel_content/header/header_content": T.LABEL + "form_fit_screen_with_title_and_close/panel_content/close_button_panel": T.PANEL + "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": T.BUTTON + "form_fit_screen_with_title_and_close/panel_content/contents": T.PANEL + "form_fit_screen_with_title_and_close/panel_content/contents/contents": T.UNKNOWN + "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": T.PANEL + "form_fit_screen_with_title_and_close/panel_content/lower_contents": T.PANEL + "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": T.UNKNOWN + form_fit_modal_dialog_popup: T.INPUT_PANEL + "form_fit_modal_dialog_popup/background": T.UNKNOWN + "form_fit_modal_dialog_popup/content": T.UNKNOWN + progress_dialog_popup: T.PANEL + "progress_dialog_popup/background": T.PANEL + "progress_dialog_popup/title": T.LABEL + "progress_dialog_popup/progress_content": T.STACK_PANEL + "progress_dialog_popup/button": T.PANEL + progress_content: T.STACK_PANEL + "progress_content/progress_titles": T.PANEL + "progress_content/progress_titles/current_progress_label": T.LABEL + "progress_content/progress_titles/total_progress_label": T.LABEL + "progress_content/progress_bar": T.PANEL + progress_label: T.LABEL + current_progress_label: T.LABEL + total_progress_label: T.LABEL + progress_bar_icon: T.PANEL + "progress_bar_icon/full_progress_bar_icon": T.IMAGE + "progress_bar_icon/empty_progress_bar_icon": T.IMAGE + "progress_bar_icon/progress_bar_nub": T.IMAGE + empty_progress_bar_icon: T.IMAGE + full_progress_bar_icon: T.IMAGE + progress_bar_nub: T.IMAGE +} + +export type PortfolioType = { + screenshot: T.IMAGE + screenshot_frame: T.IMAGE + trash_default: T.IMAGE + trash_hover: T.IMAGE + trash_pressed: T.IMAGE + photo_trash_button_left: T.BUTTON + "photo_trash_button_left/default": T.IMAGE + "photo_trash_button_left/hover": T.IMAGE + "photo_trash_button_left/pressed": T.IMAGE + photo_trash_button_right: T.BUTTON + "photo_trash_button_right/default": T.IMAGE + "photo_trash_button_right/hover": T.IMAGE + "photo_trash_button_right/pressed": T.IMAGE + photo_number: T.LABEL + photo_number_left: T.LABEL + photo_number_right: T.LABEL + photo_corner_bl: T.IMAGE + photo_corner_br: T.IMAGE + photo_corner_tr: T.IMAGE + photo_corner_tl: T.IMAGE + page_photo: T.PANEL + "page_photo/screenshot": T.IMAGE + "page_photo/screenshot_frame": T.IMAGE + "page_photo/photo_corner_bl": T.IMAGE + "page_photo/photo_corner_br": T.IMAGE + "page_photo/photo_corner_tl": T.IMAGE + "page_photo/photo_corner_tr": T.IMAGE + pick_item: T.PANEL + "pick_item/photo": T.PANEL + "pick_item/button": T.BUTTON + header: T.LABEL + screenshot_grid: T.STACK_PANEL + text_centering_panel: T.PANEL + "text_centering_panel/header": T.LABEL + pick_scrolling_content: T.STACK_PANEL + "pick_scrolling_content/header": T.PANEL + "pick_scrolling_content/portfolio_grid": T.STACK_PANEL + no_pick_photos_alert_label: T.LABEL + pick_panel: T.IMAGE + "pick_panel/scroll": T.PANEL + "pick_panel/close_button": T.BUTTON + "pick_panel/no_pick_photos_alert_label": T.LABEL + text_edit_box_default_indent: T.PANEL + text_edit_box_hover_indent: T.PANEL + "text_edit_box_hover_indent/focus_border_white": T.IMAGE + text_edit_control: T.EDIT_BOX + "text_edit_control/clipper_panel": T.PANEL + "text_edit_control/clipper_panel/display_text": T.LABEL + "text_edit_control/clipper_panel/place_holder_control": T.UNKNOWN + "text_edit_control/locked": T.PANEL + "text_edit_control/locked/edit_box_indent": T.IMAGE + "text_edit_control/default": T.PANEL + "text_edit_control/hover": T.PANEL + "text_edit_control/pressed": T.PANEL + photo_item: T.PANEL + "photo_item/screenshot": T.IMAGE + "photo_item/screenshot_frame": T.IMAGE + "photo_item/text_edit_control": T.EDIT_BOX + "photo_item/photo_corner_bl": T.IMAGE + "photo_item/photo_corner_br": T.IMAGE + "photo_item/photo_corner_tl": T.IMAGE + "photo_item/photo_corner_tr": T.IMAGE + photo_grid_item: T.PANEL + "photo_grid_item/photo_item": T.PANEL + photo_list_grid: T.GRID + prev_button_default: T.IMAGE + prev_button_hover: T.IMAGE + prev_button_pressed: T.IMAGE + photo_page_prev_button: T.BUTTON + "photo_page_prev_button/default": T.IMAGE + "photo_page_prev_button/hover": T.IMAGE + "photo_page_prev_button/pressed": T.IMAGE + next_button_default: T.IMAGE + next_button_hover: T.IMAGE + next_button_pressed: T.IMAGE + photo_page_next_button: T.BUTTON + "photo_page_next_button/default": T.IMAGE + "photo_page_next_button/hover": T.IMAGE + "photo_page_next_button/pressed": T.IMAGE + convert_button_default: T.IMAGE + convert_button_hover: T.IMAGE + convert_button_pressed: T.IMAGE + photo_convert_left_button: T.BUTTON + "photo_convert_left_button/default": T.IMAGE + "photo_convert_left_button/hover": T.IMAGE + "photo_convert_left_button/pressed": T.IMAGE + photo_convert_right_button: T.BUTTON + "photo_convert_right_button/default": T.IMAGE + "photo_convert_right_button/hover": T.IMAGE + "photo_convert_right_button/pressed": T.IMAGE + bottom_button_panel: T.PANEL + "bottom_button_panel/export_button": T.BUTTON + "bottom_button_panel/im_content_button": T.BUTTON + "bottom_button_panel/add_photo_button": T.BUTTON + im_content_button: T.BUTTON + export_button: T.BUTTON + add_photo_button: T.BUTTON + book_binding: T.IMAGE + book_spine: T.IMAGE + book_background: T.IMAGE + "book_background/book_binding": T.IMAGE + "book_background/top_spine": T.IMAGE + "book_background/bottom_spine": T.IMAGE + header_panel: T.PANEL + "header_panel/header_background": T.IMAGE + close_button_default: T.IMAGE + close_button_hover: T.IMAGE + close_button_pressed: T.IMAGE + close_button: T.BUTTON + "close_button/default": T.IMAGE + "close_button/hover": T.IMAGE + "close_button/pressed": T.IMAGE + no_photos_alert_label: T.LABEL + book_and_buttons_panel: T.PANEL + "book_and_buttons_panel/book_panel": T.PANEL + "book_and_buttons_panel/book_panel/book_background": T.IMAGE + "book_and_buttons_panel/book_panel/close_button": T.BUTTON + "book_and_buttons_panel/book_panel/photo_list_grid": T.GRID + "book_and_buttons_panel/book_panel/photo_number_left": T.LABEL + "book_and_buttons_panel/book_panel/photo_number_right": T.LABEL + "book_and_buttons_panel/book_panel/photo_trash_button_left": T.BUTTON + "book_and_buttons_panel/book_panel/photo_trash_button_right": T.BUTTON + "book_and_buttons_panel/book_panel/photo_page_prev_button": T.BUTTON + "book_and_buttons_panel/book_panel/photo_page_next_button": T.BUTTON + "book_and_buttons_panel/book_panel/photo_convert_left_button": T.BUTTON + "book_and_buttons_panel/book_panel/photo_convert_right_button": T.BUTTON + "book_and_buttons_panel/book_panel/no_photos_alert_label": T.LABEL + "book_and_buttons_panel/bottom_button_panel": T.PANEL + root_panel: T.PANEL + portfolio_screen: T.SCREEN + portfolio_screen_content: T.PANEL + "portfolio_screen_content/root_panel": T.PANEL + "portfolio_screen_content/root_panel/book_and_buttons_panel": T.PANEL + "portfolio_screen_content/root_panel/pick_panel": T.IMAGE +} + +export type ProgressType = { + popup_dialog_base: T.INPUT_PANEL + "popup_dialog_base/background": T.IMAGE + "popup_dialog_base/scrolling_panel": T.PANEL + "popup_dialog_base/totalSelected": T.LABEL + "popup_dialog_base/totalSelectedSize": T.LABEL + "popup_dialog_base/left": T.BUTTON + "popup_dialog_base/right": T.BUTTON + checkbox_visual: T.PANEL + "checkbox_visual/control": T.LABEL + checkbox_visuals_unchecked: T.PANEL + checkbox_visuals_checked: T.PANEL + checkbox_visuals_unchecked_locked: T.PANEL + checkbox_visuals_checked_locked: T.PANEL + checkbox_visuals_unchecked_hover: T.PANEL + checkbox_visuals_checked_hover: T.PANEL + checkbox_with_label_core: T.TOGGLE + checkbox_with_label: T.PANEL + "checkbox_with_label/checkbox_with_label_core": T.TOGGLE + resource_pack_grid_item: T.PANEL + resource_pack_section: T.STACK_PANEL + "resource_pack_section/required_resource_pack_list_grid": T.GRID + "resource_pack_section/optional_resource_pack_list_grid": T.GRID + simple_popup_dialog_base: T.INPUT_PANEL + "simple_popup_dialog_base/dialog_background_hollow_3": T.IMAGE + "simple_popup_dialog_base/dialog_background_hollow_3/control": T.IMAGE + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": T.LABEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": T.LABEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": T.PANEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": T.LABEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": T.PANEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": T.BUTTON + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": T.PANEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": T.BUTTON + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": T.PANEL + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": T.BUTTON + resource_pack_download_popup_base: T.INPUT_PANEL + resource_pack_download_server_required: T.INPUT_PANEL + resource_pack_download_optional_and_required: T.INPUT_PANEL + resource_pack_download_optional: T.INPUT_PANEL + resource_pack_download_required: T.INPUT_PANEL + normal_stroke_button: T.IMAGE + progress_screen_text: T.LABEL + progress_title_text: T.LABEL + progress_bar_text: T.LABEL + code_text: T.LABEL + code_number: T.LABEL + progress_loading_bars: T.IMAGE + progress_loading_spinner: T.IMAGE + fancy_progress_loading_bars: T.PANEL + "fancy_progress_loading_bars/full_progress_bar_icon": T.IMAGE + "fancy_progress_loading_bars/empty_progress_bar_icon": T.IMAGE + "fancy_progress_loading_bars/progress_bar_nub": T.IMAGE + progress_bar: T.CUSTOM + progress_bar_nub: T.IMAGE + thick_progress_bar_icon_base: T.IMAGE + thick_progress_bar_icon_empty: T.IMAGE + thick_progress_bar: T.PANEL + "thick_progress_bar/full_progress_bar_icon": T.IMAGE + "thick_progress_bar/empty_progress_bar_icon": T.IMAGE + edu_cloud_upload_progress_bar: T.PANEL + "edu_cloud_upload_progress_bar/waveform_loading_bar": T.IMAGE + "edu_cloud_upload_progress_bar/determinate_loading_bar": T.PANEL + cancel_button: T.BUTTON + retry_button: T.BUTTON + abort_button: T.BUTTON + ok_button: T.BUTTON + title_panel: T.PANEL + "title_panel/progress_title_text": T.LABEL + "title_panel/progress_bar_text": T.LABEL + "title_panel/progress_bar": T.CUSTOM + button_panel: T.PANEL + "button_panel/cancel_button": T.BUTTON + modal_button_panel: T.PANEL + "modal_button_panel/cancel_button": T.BUTTON + modal_button_panel_with_retry: T.PANEL + "modal_button_panel_with_retry/abort_button": T.BUTTON + "modal_button_panel_with_retry/cancel_button": T.BUTTON + "modal_button_panel_with_retry/retry_button": T.BUTTON + modal_ok_button_panel: T.PANEL + "modal_ok_button_panel/ok_button": T.BUTTON + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + world_image: T.IMAGE + cloud_image: T.IMAGE + server_image: T.IMAGE + edu_cloud_upload_image: T.STACK_PANEL + "edu_cloud_upload_image/world_image_wrapper": T.PANEL + "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": T.IMAGE + "edu_cloud_upload_image/arrow_image_wrapper": T.PANEL + "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": T.IMAGE + "edu_cloud_upload_image/cloud_image_wrapper": T.PANEL + "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": T.IMAGE + edu_cloud_fetch_image: T.STACK_PANEL + "edu_cloud_fetch_image/cloud_image_wrapper": T.PANEL + "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": T.IMAGE + "edu_cloud_fetch_image/spyglass_image_wrapper": T.PANEL + "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE + "edu_cloud_fetch_image/world_image_wrapper": T.PANEL + "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": T.IMAGE + edu_cloud_download_image: T.STACK_PANEL + "edu_cloud_download_image/cloud_image_wrapper": T.PANEL + "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": T.IMAGE + "edu_cloud_download_image/arrow_image_wrapper": T.PANEL + "edu_cloud_download_image/arrow_image_wrapper/arrow_image": T.IMAGE + "edu_cloud_download_image/world_image_wrapper": T.PANEL + "edu_cloud_download_image/world_image_wrapper/download_world_image": T.IMAGE + edu_server_fetch_image: T.STACK_PANEL + "edu_server_fetch_image/server_image_wrapper_left": T.PANEL + "edu_server_fetch_image/server_image_wrapper_left/server_image": T.IMAGE + "edu_server_fetch_image/spyglass_image_wrapper": T.PANEL + "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE + "edu_server_fetch_image/server_image_wrapper_right": T.PANEL + "edu_server_fetch_image/server_image_wrapper_right/server_image": T.IMAGE + modal_progress_panel_no_cancel: T.PANEL + "modal_progress_panel_no_cancel/common_panel": T.PANEL + "modal_progress_panel_no_cancel/content": T.PANEL + "modal_progress_panel_no_cancel/content/title_panel": T.PANEL + "modal_progress_panel_no_cancel/content/progress_loading_bars": T.IMAGE + modal_progress_panel_with_cancel: T.PANEL + "modal_progress_panel_with_cancel/common_panel": T.PANEL + "modal_progress_panel_with_cancel/content": T.PANEL + "modal_progress_panel_with_cancel/content/title_panel": T.PANEL + "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE + "modal_progress_panel_with_cancel/modal_button_panel": T.PANEL + progress_panel: T.PANEL + "progress_panel/progress_loading_bars": T.IMAGE + "progress_panel/title_panel": T.PANEL + "progress_panel/button_panel": T.PANEL + modal_progress_screen: T.SCREEN + delete_progress_screen: T.SCREEN + realms_loading_background: T.PANEL + "realms_loading_background/solid_blue": T.IMAGE + "realms_loading_background/solid_blue/gradient": T.IMAGE + realms_stories_loading_progress_screen: T.SCREEN + world_loading_progress_screen: T.SCREEN + world_loading_screen_background: T.IMAGE + overworld_loading_background: T.IMAGE + "overworld_loading_background/background_gradient": T.CUSTOM + overworld_loading_progress_screen: T.SCREEN + nether_loading_background: T.IMAGE + "nether_loading_background/background_gradient": T.CUSTOM + nether_loading_progress_screen: T.SCREEN + theend_loading_background: T.IMAGE + "theend_loading_background/background_gradient": T.CUSTOM + theend_loading_progress_screen: T.SCREEN + world_saving_progress_screen: T.SCREEN + fetching_edu_cloud_worlds: T.SCREEN + edu_cloud_download_progress_screen: T.SCREEN + fetching_edu_servers: T.SCREEN + world_convert_modal_progress_screen: T.SCREEN + progress_screen: T.SCREEN + popup_dialog_factory: T.FACTORY + progress_screen_content: T.PANEL + "progress_screen_content/progress_content_panel": T.PANEL + "progress_screen_content/popup_dialog_factory": T.FACTORY + progress_content_panel: T.PANEL + "progress_content_panel/progress_panel": T.PANEL + "progress_content_panel/gamepad_helpers": T.PANEL + modal_screen_content: T.PANEL + "modal_screen_content/modal_progress_panel": T.PANEL + world_modal_progress_panel: T.PANEL + "world_modal_progress_panel/common_panel": T.PANEL + "world_modal_progress_panel/base_content": T.PANEL + "world_modal_progress_panel/base_content/progress_title_text": T.LABEL + "world_modal_progress_panel/base_content/progress_bar_text": T.LABEL + "world_modal_progress_panel/inside_content": T.STACK_PANEL + "world_modal_progress_panel/inside_content/loading_bar_panel": T.PANEL + "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL + "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE + "world_modal_progress_panel/inside_content/vertical_padding": T.PANEL + "world_modal_progress_panel/inside_content/modal_button_panel": T.UNKNOWN + "world_modal_progress_panel/inside_content/vertical_padding_2": T.PANEL + cloud_upload_panel: T.PANEL + "cloud_upload_panel/common_panel": T.PANEL + "cloud_upload_panel/base_content": T.PANEL + "cloud_upload_panel/base_content/progress_title_text": T.LABEL + "cloud_upload_panel/base_content/progress_text": T.LABEL + "cloud_upload_panel/base_content/edu_cloud_upload_image": T.STACK_PANEL + "cloud_upload_panel/base_content/loading_bar_panel": T.PANEL + "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": T.PANEL + cloud_error_panel: T.PANEL + "cloud_error_panel/common_panel": T.PANEL + "cloud_error_panel/content_wrapper": T.PANEL + "cloud_error_panel/content_wrapper/title_wrapper": T.PANEL + "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": T.LABEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper": T.PANEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": T.BUTTON + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": T.STACK_PANEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": T.LABEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": T.PANEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": T.STACK_PANEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": T.LABEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": T.LABEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": T.PANEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": T.STACK_PANEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": T.BUTTON + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": T.PANEL + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": T.IMAGE + "cloud_error_panel/content_wrapper/button_content": T.STACK_PANEL + "cloud_error_panel/content_wrapper/button_content/modal_button_panel": T.UNKNOWN + "cloud_error_panel/content_wrapper/error_button_content": T.STACK_PANEL + "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": T.BUTTON + "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": T.BUTTON + cloud_fetch_panel: T.PANEL + "cloud_fetch_panel/common_panel": T.PANEL + "cloud_fetch_panel/base_content": T.PANEL + "cloud_fetch_panel/base_content/progress_title_text": T.LABEL + "cloud_fetch_panel/base_content/progress_text": T.LABEL + "cloud_fetch_panel/base_content/edu_cloud_fetch_image": T.STACK_PANEL + "cloud_fetch_panel/base_content/loading_bar_panel": T.PANEL + "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE + server_fetch_panel: T.PANEL + "server_fetch_panel/common_panel": T.PANEL + "server_fetch_panel/base_content": T.PANEL + "server_fetch_panel/base_content/progress_title_text": T.LABEL + "server_fetch_panel/base_content/progress_text": T.LABEL + "server_fetch_panel/base_content/edu_server_fetch_image": T.STACK_PANEL + "server_fetch_panel/base_content/loading_bar_panel": T.PANEL + "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE + cloud_download_panel: T.PANEL + "cloud_download_panel/common_panel": T.PANEL + "cloud_download_panel/base_content": T.PANEL + "cloud_download_panel/base_content/progress_title_text": T.LABEL + "cloud_download_panel/base_content/progress_bar_text": T.LABEL + "cloud_download_panel/base_content/edu_cloud_download_image": T.STACK_PANEL + "cloud_download_panel/loading_bar_panel": T.PANEL + "cloud_download_panel/loading_bar_panel/progress_loading_bars": T.IMAGE + world_convert_modal_progress_screen_content: T.PANEL + "world_convert_modal_progress_screen_content/mobile_data_icon": T.PANEL + "world_convert_modal_progress_screen_content/title_panel_content": T.PANEL + "world_convert_modal_progress_screen_content/world_modal_progress_panel": T.PANEL + "world_convert_modal_progress_screen_content/popup_dialog_factory": T.FACTORY + realms_loading_world_modal_progress_screen_content: T.PANEL + "realms_loading_world_modal_progress_screen_content/mobile_data_icon": T.PANEL + "realms_loading_world_modal_progress_screen_content/realms_title_image": T.IMAGE + "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": T.PANEL + "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": T.FACTORY + "realms_loading_world_modal_progress_screen_content/server_region_connected": T.STACK_PANEL + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": T.LABEL + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": T.LABEL + "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": T.PANEL + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": T.IMAGE + world_save_modal_progress_screen_content: T.PANEL + "world_save_modal_progress_screen_content/title_panel_content": T.PANEL + "world_save_modal_progress_screen_content/world_modal_progress_panel": T.PANEL + "world_save_modal_progress_screen_content/save_icon": T.IMAGE + "world_save_modal_progress_screen_content/popup_dialog_factory": T.FACTORY + cloud_upload_screen_content: T.PANEL + "cloud_upload_screen_content/title_panel_content": T.PANEL + "cloud_upload_screen_content/cloud_upload_panel": T.PANEL + "cloud_upload_screen_content/cloud_upload_error_panel": T.PANEL + "cloud_upload_screen_content/popup_dialog_factory": T.FACTORY + "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": T.FACTORY + edu_cloud_fetch_screen_content: T.PANEL + "edu_cloud_fetch_screen_content/cloud_fetch_panel": T.PANEL + "edu_cloud_fetch_screen_content/popup_dialog_factory": T.FACTORY + edu_server_fetch_screen_content: T.PANEL + "edu_server_fetch_screen_content/server_fetch_panel": T.PANEL + "edu_server_fetch_screen_content/popup_dialog_factory": T.FACTORY + cloud_download_screen_content: T.PANEL + "cloud_download_screen_content/background": T.IMAGE + "cloud_download_screen_content/cloud_download_panel": T.PANEL + "cloud_download_screen_content/cloud_download_error_panel": T.PANEL + "cloud_download_screen_content/popup_dialog_factory": T.FACTORY + auto_save: T.IMAGE + mobile_data_ios_icon: T.IMAGE + mobile_data_android_icon: T.IMAGE + mobile_data_icon_text: T.LABEL + mobile_data_icon: T.PANEL + "mobile_data_icon/icon_android": T.IMAGE + "mobile_data_icon/icon_ios": T.IMAGE + "mobile_data_icon/text": T.LABEL +} + +export type RatingPromptType = { + padding_horizontal: T.PANEL + padding_vertical: T.PANEL + rating_prompt_yes_label: T.PANEL + "rating_prompt_yes_label/button_label": T.LABEL + rating_prompt_no_label: T.PANEL + "rating_prompt_no_label/button_label": T.LABEL + rating_prompt_yes_button: T.BUTTON + rating_prompt_no_button: T.BUTTON + dialog_image: T.IMAGE + dialog_image_with_border: T.IMAGE + "dialog_image_with_border/dialog_image": T.IMAGE + button_panel: T.STACK_PANEL + "button_panel/padding_3": T.PANEL + "button_panel/yes_button": T.BUTTON + "button_panel/no_button": T.BUTTON + image_panel: T.STACK_PANEL + "image_panel/padding_2": T.PANEL + "image_panel/dialog_image_with_border": T.IMAGE + main_panel: T.STACK_PANEL + "main_panel/padding_0": T.PANEL + "main_panel/image_panel": T.STACK_PANEL + "main_panel/padding_1": T.PANEL + "main_panel/button_panel": T.STACK_PANEL + rating_prompt_screen: T.SCREEN + rating_prompt_screen_content: T.PANEL +} + +export type RealmsCommonType = { + pending_invites_icon: T.IMAGE + dark_banner: T.IMAGE + dark_banner_hover: T.IMAGE + legacy_banner: T.IMAGE + main_banner: T.IMAGE + hollow_banner: T.IMAGE + popup_dialog_bg: T.IMAGE + popup_dialog__play_on_realm: T.INPUT_PANEL + "popup_dialog__play_on_realm/play_on_realm_popup_background": T.IMAGE + "popup_dialog__play_on_realm/gamepad_helpers": T.STACK_PANEL + "popup_dialog__play_on_realm/play_on_realm_popup_content": T.PANEL + play_on_realm_popup_background: T.IMAGE + play_on_realm_popup_content: T.PANEL + "play_on_realm_popup_content/popup_dialog_bg": T.IMAGE + "play_on_realm_popup_content/play_on_realm_popup_dialog_header": T.PANEL + "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": T.PANEL + "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": T.PANEL + play_on_realm_popup_dialog_header: T.PANEL + "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": T.LABEL + "play_on_realm_popup_dialog_header/close_button": T.BUTTON + play_on_realm_popup_dialog_header_text: T.LABEL + play_on_realm_popup_dialog_upper_body: T.PANEL + "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": T.IMAGE + "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": T.PANEL + "play_on_realm_popup_dialog_upper_body/background_panel": T.PANEL + "play_on_realm_popup_dialog_upper_body/background_panel/black_background": T.IMAGE + play_on_realm_panel: T.PANEL + "play_on_realm_panel/play_on_realm_content_panel": T.STACK_PANEL + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": T.STACK_PANEL + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": T.PANEL + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": T.IMAGE + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": T.STACK_PANEL + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": T.PANEL + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": T.LABEL + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": T.PANEL + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": T.LABEL + play_on_realm_popup_dialog_lower_body: T.PANEL + "play_on_realm_popup_dialog_lower_body/button_panel": T.STACK_PANEL + "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": T.BUTTON + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": T.PANEL + "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": T.BUTTON + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": T.PANEL + "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": T.BUTTON +} + +export type RealmsCreateType = { + title_label: T.LABEL + label: T.LABEL + enter_name_panel: T.PANEL + "enter_name_panel/name_label_0": T.LABEL + "enter_name_panel/name_edit": T.EDIT_BOX + selected_option_checkbox: T.IMAGE + selected_option_checkbox_empty: T.IMAGE + selected_option_checkbox_filled: T.IMAGE + checkbox_panel: T.PANEL + "checkbox_panel/selected_option_checkbox_empty": T.IMAGE + "checkbox_panel/selected_option_checkbox_filled": T.IMAGE + "checkbox_panel/button_label": T.LABEL + realms_option_button: T.BUTTON + choose_duration_panel: T.PANEL + "choose_duration_panel/name_label": T.LABEL + "choose_duration_panel/choose_duration_stack_panel": T.INPUT_PANEL + "choose_duration_panel/choose_duration_stack_panel/short": T.BUTTON + "choose_duration_panel/choose_duration_stack_panel/long": T.BUTTON + choose_tier_panel: T.PANEL + "choose_tier_panel/name_label": T.LABEL + "choose_tier_panel/choose_tier_stack_panel": T.INPUT_PANEL + "choose_tier_panel/choose_tier_stack_panel/player_count_2": T.BUTTON + view_terms_button: T.BUTTON + privacy_policy_button: T.BUTTON + terms_and_conditions_panel: T.PANEL + "terms_and_conditions_panel/name_label": T.LABEL + "terms_and_conditions_panel/terms_string_panel": T.PANEL + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON + confirmation_panel: T.PANEL + "confirmation_panel/create_realms_button": T.BUTTON + create_realms_stack_panel: T.STACK_PANEL + "create_realms_stack_panel/padding_0": T.PANEL + "create_realms_stack_panel/create_realms_text_panel": T.PANEL + create_realms_text_panel: T.PANEL + "create_realms_text_panel/create": T.LABEL + stack_item: T.PANEL + scroll_stack_panel: T.STACK_PANEL + "scroll_stack_panel/name": T.PANEL + "scroll_stack_panel/name/enter_name_panel": T.PANEL + "scroll_stack_panel/padding_0": T.PANEL + "scroll_stack_panel/duration": T.PANEL + "scroll_stack_panel/duration/choose_duration_panel": T.PANEL + "scroll_stack_panel/tier": T.PANEL + "scroll_stack_panel/tier/choose_tier_panel": T.PANEL + "scroll_stack_panel/toc": T.PANEL + "scroll_stack_panel/toc/terms_and_conditions_panel": T.PANEL + "scroll_stack_panel/padding_1": T.PANEL + "scroll_stack_panel/realms_terms_info": T.IMAGE + "scroll_stack_panel/realms_terms_info/label_panel": T.STACK_PANEL + "scroll_stack_panel/realms_terms_info/label_panel/padding_1": T.PANEL + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": T.PANEL + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": T.PANEL + "scroll_stack_panel/realms_terms_info/label_panel/padding_2": T.PANEL + "scroll_stack_panel/realms_switch_nso_info": T.PANEL + terms_section: T.PANEL + "terms_section/terms_section_label": T.LABEL + terms_section_extra: T.PANEL + "terms_section_extra/terms_section_label": T.LABEL + main_panel: T.STACK_PANEL + "main_panel/scrolling_panel": T.PANEL + "main_panel/padding_0": T.PANEL + "main_panel/confirmation_panel": T.PANEL + "main_panel/padding_1": T.PANEL + content: T.PANEL + "content/main_panel": T.STACK_PANEL + realms_create_screen: T.SCREEN + realms_create_content_and_factory: T.PANEL + "realms_create_content_and_factory/realms_create_content": T.PANEL + "realms_create_content_and_factory/popup_dialog_factory": T.FACTORY +} + +export type RealmsPendingInvitationsType = { + panel_text: T.LABEL + banner_panel_base: T.PANEL + "banner_panel_base/background": T.UNKNOWN + "banner_panel_base/indent_panel": T.PANEL + "banner_panel_base/indent_panel/content": T.UNKNOWN + banner_panel: T.PANEL + banner_panel_hover: T.PANEL + realm_invite_button: T.BUTTON + realm_name_label: T.LABEL + realm_owner_label: T.LABEL + tts_gamertag_item_info_wrapper: T.PANEL + gamertag_item_info: T.PANEL + "gamertag_item_info/rnl": T.LABEL + "gamertag_item_info/rol": T.LABEL + accept_button_content: T.IMAGE + decline_button_content: T.IMAGE + realm_accept_button: T.BUTTON + realm_decline_button: T.BUTTON + realm_accepted_panel: T.LABEL + gamertag_item_content: T.PANEL + "gamertag_item_content/lb": T.PANEL + "gamertag_item_content/a": T.BUTTON + "gamertag_item_content/d": T.BUTTON + "gamertag_item_content/ap": T.LABEL + gamertag_item: T.PANEL + gamertag_item_grid: T.GRID + show_friends_only_toggle_state_content: T.STACK_PANEL + "show_friends_only_toggle_state_content/checkbox_holding_panel": T.PANEL + "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": T.UNKNOWN + "show_friends_only_toggle_state_content/hide_invites_text_panel": T.PANEL + "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": T.LABEL + show_friends_only_toggle_on_state_content: T.STACK_PANEL + show_friends_only_toggle_on_state: T.PANEL + show_friends_only_toggle_off_state_content: T.STACK_PANEL + show_friends_only_toggle_off_state: T.PANEL + show_friends_only_toggle_on_hover_state_content: T.STACK_PANEL + show_friends_only_toggle_on_hover_state: T.PANEL + show_friends_only_toggle_off_hover_state_content: T.STACK_PANEL + show_friends_only_toggle_off_hover_state: T.PANEL + show_friends_only_toggle_on_locked_state_content: T.STACK_PANEL + show_friends_only_toggle_on_locked_state: T.PANEL + show_friends_only_toggle_off_locked_state_content: T.STACK_PANEL + show_friends_only_toggle_off_locked_state: T.PANEL + show_friends_only_toggle: T.TOGGLE + gamepad_helpers: T.PANEL + "gamepad_helpers/a": T.STACK_PANEL + "gamepad_helpers/b": T.STACK_PANEL + no_invites_label_wrapper: T.PANEL + no_invites_label: T.PANEL + "no_invites_label/label": T.LABEL + realms_pending_invitation_list: T.STACK_PANEL + "realms_pending_invitation_list/upper_padding": T.PANEL + "realms_pending_invitation_list/sfop": T.TOGGLE + "realms_pending_invitation_list/gig": T.GRID + "realms_pending_invitation_list/lower_padding": T.PANEL + "realms_pending_invitation_list/nil": T.PANEL + content_panel: T.PANEL + realms_pending_invitations_screen: T.SCREEN + realms_invitation_screen_content: T.PANEL + "realms_invitation_screen_content/root_panel": T.INPUT_PANEL + "realms_invitation_screen_content/root_panel/main_panel": T.PANEL + "realms_invitation_screen_content/root_panel/sgh": T.PANEL +} + +export type RealmsSlotsType = { + vertical_padding: T.PANEL + horizontal_padding: T.PANEL + horizontal_padding_sibling_height: T.PANEL + realms_background: T.PANEL + "realms_background/gradient": T.IMAGE + "realms_background/particle_1": T.IMAGE + "realms_background/particle_2": T.IMAGE + plus: T.IMAGE + check: T.IMAGE + world_thumbnail: T.IMAGE + realms_stories_icon_glyph: T.IMAGE + "realms_stories_icon_glyph/realms_stories_icon": T.IMAGE + play_button: T.BUTTON + edit_realm_button: T.BUTTON + realms_feed_button: T.BUTTON + unread_story_count_text: T.LABEL + unread_story_count_text_background: T.IMAGE + unread_story_count_panel: T.PANEL + "unread_story_count_panel/text": T.LABEL + "unread_story_count_panel/text/background": T.IMAGE + edit_world_button_panel: T.STACK_PANEL + "edit_world_button_panel/edit_world_button": T.BUTTON + "edit_world_button_panel/padding": T.PANEL + "edit_world_button_panel/activate_world_button": T.BUTTON + world_slot_button: T.BUTTON + world_slot_button_content: T.STACK_PANEL + "world_slot_button_content/world_slot_top": T.PANEL + "world_slot_button_content/world_slot_top/background": T.IMAGE + "world_slot_button_content/world_slot_top/add_world_image_panel": T.PANEL + "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": T.IMAGE + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": T.PANEL + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": T.IMAGE + "world_slot_button_content/world_slot_top/edit_world_button_panel": T.STACK_PANEL + "world_slot_button_content/world_slot_top/foreground": T.IMAGE + "world_slot_button_content/world_slot_top/check_image": T.IMAGE + "world_slot_button_content/world_slot_bottom": T.PANEL + "world_slot_button_content/world_slot_bottom/divider_line_black": T.IMAGE + "world_slot_button_content/world_slot_bottom/divider_line_white": T.IMAGE + "world_slot_button_content/world_slot_bottom/add_world_text_panel": T.PANEL + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": T.IMAGE + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": T.IMAGE + "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": T.LABEL + "world_slot_button_content/world_slot_bottom/world_info_panel": T.PANEL + "world_slot_button_content/world_slot_bottom/world_info_panel/background": T.IMAGE + "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": T.IMAGE + "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": T.STACK_PANEL + world_info_stack_panel: T.STACK_PANEL + "world_info_stack_panel/world_name_panel": T.PANEL + "world_info_stack_panel/world_name_panel/world_name": T.LABEL + "world_info_stack_panel/world_type_panel": T.PANEL + "world_info_stack_panel/world_type_panel/world_type": T.LABEL + "world_info_stack_panel/bottom_padding": T.PANEL + main_stack_panel: T.STACK_PANEL + "main_stack_panel/padding_0": T.PANEL + "main_stack_panel/button_panel": T.STACK_PANEL + "main_stack_panel/button_panel/play_button": T.BUTTON + "main_stack_panel/button_panel/left_padding": T.PANEL + "main_stack_panel/button_panel/edit_realm_button": T.BUTTON + "main_stack_panel/button_panel/right_padding": T.PANEL + "main_stack_panel/button_panel/feed_panel_with_unread_count": T.PANEL + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": T.PANEL + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON + "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": T.PANEL + "main_stack_panel/padding_1": T.PANEL + "main_stack_panel/text_panel_0": T.PANEL + "main_stack_panel/text_panel_0/text": T.LABEL + "main_stack_panel/padding_2": T.PANEL + "main_stack_panel/worlds_panel": T.STACK_PANEL + "main_stack_panel/worlds_panel/world_slot_1": T.BUTTON + "main_stack_panel/worlds_panel/padding_0": T.PANEL + "main_stack_panel/worlds_panel/world_slot_2": T.BUTTON + "main_stack_panel/worlds_panel/padding_1": T.PANEL + "main_stack_panel/worlds_panel/world_slot_3": T.BUTTON + "main_stack_panel/padding_3": T.PANEL + "main_stack_panel/text_panel_1": T.PANEL + "main_stack_panel/text_panel_1/text": T.LABEL + realms_slots_screen: T.SCREEN + realms_slots_screen_content: T.PANEL + "realms_slots_screen_content/background": T.STACK_PANEL + realms_slots_screen_content_panel: T.PANEL + "realms_slots_screen_content_panel/main_scroll_panel": T.PANEL +} + +export type RealmsSettingsType = { + settings_screen: T.SCREEN + generic_section: T.STACK_PANEL + generic_section_wrapper: T.PANEL + "generic_section_wrapper/generic_section": T.STACK_PANEL + checkbox_image: T.IMAGE + checkbox_unchecked_state: T.IMAGE + checkbox_checked_state: T.IMAGE + checkbox_unchecked_hover_state: T.IMAGE + checkbox_checked_hover_state: T.IMAGE + checkbox_unchecked_locked_state: T.IMAGE + checkbox_checked_locked_state: T.IMAGE + player_count_label: T.PANEL + realm_duration_label: T.PANEL + realm_subscription_origin_label: T.IMAGE + realm_consumable_to_subscription_info_label: T.PANEL + manage_subscriptions_button: T.BUTTON + delete_realm_button: T.BUTTON + open_realm_button: T.BUTTON + close_realm_button: T.BUTTON + subscriptions_section: T.PANEL + "subscriptions_section/loading_view": T.LABEL + "subscriptions_section/loading_failed_view": T.LABEL + "subscriptions_section/loaded_view": T.STACK_PANEL + "subscriptions_section/loaded_view/player_count_label": T.PANEL + "subscriptions_section/loaded_view/realm_duration_label": T.PANEL + "subscriptions_section/loaded_view/possible_store_mismatch": T.PANEL + "subscriptions_section/loaded_view/realm_subscription_origin_label": T.IMAGE + "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": T.PANEL + "subscriptions_section/loaded_view/_0": T.PANEL + "subscriptions_section/loaded_view/delete_realm_button": T.BUTTON + "subscriptions_section/loaded_view/open_realm_button": T.BUTTON + "subscriptions_section/loaded_view/close_realm_button": T.BUTTON + "subscriptions_section/loaded_view/_1": T.PANEL + "subscriptions_section/loaded_view/manage_subscriptions_button": T.BUTTON + invite_link_item_content: T.STACK_PANEL + "invite_link_item_content/invite_link_item_name_and_expiry_text": T.STACK_PANEL + "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": T.LABEL + "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": T.PANEL + "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": T.LABEL + "invite_link_item_content/invite_link_item_state_text": T.PANEL + "invite_link_item_content/invite_link_item_state_text/state_text": T.LABEL + "invite_link_item_content/spacing_gap": T.PANEL + invite_link_item_template: T.PANEL + "invite_link_item_template/invite_link_item_button": T.BUTTON + invite_links_section: T.PANEL + "invite_links_section/loading_view": T.LABEL + "invite_links_section/loading_failed_view": T.LABEL + "invite_links_section/loaded_view": T.STACK_PANEL + "invite_links_section/loaded_view/spacing_gap_0": T.PANEL + "invite_links_section/loaded_view/invite_links_info": T.PANEL + "invite_links_section/loaded_view/invite_links_grid": T.STACK_PANEL + "invite_links_section/loaded_view/spacing_gap_1": T.PANEL + "invite_links_section/loaded_view/add_invite_link_button": T.BUTTON + advanced_section: T.PANEL + "advanced_section/loading_view": T.LABEL + "advanced_section/loading_failed_view": T.LABEL + "advanced_section/loaded_view": T.STACK_PANEL + "advanced_section/loaded_view/spacing_gap_0": T.PANEL + "advanced_section/loaded_view/server_preference": T.PANEL + "advanced_section/loaded_view/set_region_content": T.PANEL + "advanced_section/loaded_view/changes_not_applied_panel": T.STACK_PANEL + "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": T.LABEL + "advanced_section/loaded_view/spacing_gap_1": T.PANEL + "advanced_section/loaded_view/region_help_button": T.BUTTON + set_region_dropdown: T.PANEL + region_dropdown_content: T.PANEL + region_dropdown_radio: T.PANEL + region_help_button_content: T.STACK_PANEL + "region_help_button_content/external_link_icon": T.IMAGE + "region_help_button_content/spacing_gap_1": T.PANEL + "region_help_button_content/help_text": T.LABEL + tts_focus_border: T.BUTTON + saves_section: T.STACK_PANEL + "saves_section/padding_saves_section_top": T.PANEL + "saves_section/loaded_view": T.STACK_PANEL + "saves_section/loaded_view/storage_bar_header_panel": T.PANEL + "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": T.STACK_PANEL + "saves_section/loaded_view/storage_bar_header_panel/focus_border": T.BUTTON + "saves_section/loaded_view/padding3": T.PANEL + "saves_section/loaded_view/save_active_world_button": T.BUTTON + "saves_section/loaded_view/padding4": T.PANEL + "saves_section/loaded_view/active_world_info": T.PANEL + "saves_section/loaded_view/padding5": T.PANEL + "saves_section/loaded_view/storage_warning": T.PANEL + "saves_section/loaded_view/storage_warning/warning_text_panel": T.STACK_PANEL + "saves_section/loaded_view/storage_warning/focus_border": T.BUTTON + "saves_section/loaded_view/padding6": T.PANEL + "saves_section/loaded_view/save_list_container": T.PANEL + "saves_section/loaded_view/save_list_container/tab_buttons": T.STACK_PANEL + "saves_section/loaded_view/save_list_container/tab_content_panel": T.IMAGE + "saves_section/loaded_view/padding_loaded_view_bottom": T.PANEL + "saves_section/loaded_view/restore_info": T.PANEL + "saves_section/loaded_view/saves_help_panel": T.STACK_PANEL + "saves_section/loading_indicator": T.STACK_PANEL + "saves_section/loading_indicator/restore_info": T.PANEL + "saves_section/loading_indicator/loading_text_panel": T.PANEL + "saves_section/loading_indicator/loading_text_panel/loading_text": T.LABEL + "saves_section/loading_indicator/loading_text_panel/loading_text_padding": T.PANEL + "saves_section/loading_indicator/loading_bars": T.PANEL + "saves_section/loading_indicator/loading_bars/progress_loading_bars": T.IMAGE + "saves_section/loading_failed_panel": T.STACK_PANEL + "saves_section/loading_failed_panel/restore_info": T.PANEL + "saves_section/loading_failed_panel/saves_help_panel": T.STACK_PANEL + "saves_section/loading_failed_panel/loading_failed_message": T.PANEL + saves_help_panel: T.STACK_PANEL + "saves_help_panel/padding_help_button_top": T.PANEL + "saves_help_panel/saves_help_button": T.BUTTON + "saves_help_panel/padding_help_button_bottom": T.PANEL + saves_help_button_content: T.STACK_PANEL + "saves_help_button_content/external_link_icon": T.IMAGE + "saves_help_button_content/spacing_gap_1": T.PANEL + "saves_help_button_content/help_text": T.LABEL + storage_bar_label_stack_panel: T.STACK_PANEL + "storage_bar_label_stack_panel/text_left": T.LABEL + "storage_bar_label_stack_panel/padding": T.PANEL + "storage_bar_label_stack_panel/text_right": T.LABEL + storage_bar_panel_with_header: T.STACK_PANEL + "storage_bar_panel_with_header/label_panel": T.PANEL + "storage_bar_panel_with_header/label_panel/heading_label": T.UNKNOWN + "storage_bar_panel_with_header/padding2": T.PANEL + "storage_bar_panel_with_header/storage_bar_panel": T.STACK_PANEL + realm_storage_heading_label: T.LABEL + storage_bar_panel: T.STACK_PANEL + "storage_bar_panel/storage_bar_label": T.STACK_PANEL + "storage_bar_panel/padding": T.PANEL + "storage_bar_panel/storage_bar": T.PANEL + storage_bar_panel_with_tts_focus_border: T.PANEL + "storage_bar_panel_with_tts_focus_border/storage_bar_panel": T.STACK_PANEL + "storage_bar_panel_with_tts_focus_border/focus_border": T.BUTTON + storage_bar: T.PANEL + "storage_bar/empty_progress_bar_beveled": T.IMAGE + "storage_bar/storage_fill": T.IMAGE + "storage_bar/storage_bar_beveled_overlay": T.IMAGE + active_world_info_panel: T.PANEL + "active_world_info_panel/active_world_info_label_stack_panel": T.STACK_PANEL + "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": T.LABEL + "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": T.LABEL + "active_world_info_panel/focus_border": T.BUTTON + warning_text_panel: T.STACK_PANEL + "warning_text_panel/warning_panel": T.STACK_PANEL + "warning_text_panel/warning_panel/padding1": T.PANEL + "warning_text_panel/warning_panel/warning_image": T.IMAGE + "warning_text_panel/warning_panel/padding2": T.PANEL + "warning_text_panel/padding1": T.PANEL + "warning_text_panel/text_label": T.LABEL + popup_dialog_background: T.IMAGE + popup_dialog_label: T.LABEL + delete_selected_saves_button: T.BUTTON + cancel_popup_button: T.BUTTON + free_up_space_popup_content: T.PANEL + "free_up_space_popup_content/common_panel": T.PANEL + "free_up_space_popup_content/title_label": T.PANEL + "free_up_space_popup_content/panel_indent": T.PANEL + "free_up_space_popup_content/panel_indent/inside_header_panel": T.UNKNOWN + "free_up_space_popup_content/button_panel": T.STACK_PANEL + "free_up_space_popup_content/button_panel/left_button_panel": T.BUTTON + "free_up_space_popup_content/button_panel/pad": T.PANEL + "free_up_space_popup_content/button_panel/right_button_panel": T.BUTTON + free_up_space_popup_scrolling_panel: T.PANEL + free_up_space_text_description: T.LABEL + free_up_space_popup_content_stack_panel: T.STACK_PANEL + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": T.PANEL + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": T.STACK_PANEL + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": T.BUTTON + "free_up_space_popup_content_stack_panel/padding_1": T.PANEL + "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": T.STACK_PANEL + popup_dialog__free_up_space: T.INPUT_PANEL + "popup_dialog__free_up_space/free_up_space_popup_background": T.IMAGE + "popup_dialog__free_up_space/free_up_space_popup_content": T.PANEL + top_tab: T.PANEL + tab_content: T.PANEL + "tab_content/text": T.LABEL + manual_navigation_tab: T.PANEL + automatic_navigation_tab: T.PANEL + tab_navigation_panel_layout: T.PANEL + "tab_navigation_panel_layout/content": T.UNKNOWN + button_tabs_container: T.STACK_PANEL + "button_tabs_container/manual_navigation_tab": T.PANEL + "button_tabs_container/automatic_navigation_tab": T.PANEL + tab_content_panel: T.IMAGE + "tab_content_panel/background": T.IMAGE + "tab_content_panel/background/manual_save_list": T.PANEL + "tab_content_panel/background/automatic_save_list": T.PANEL + save_list_panel: T.PANEL + "save_list_panel/save_list": T.UNKNOWN + manual_save_list_panel: T.PANEL + manual_tab_info_panel: T.PANEL + "manual_tab_info_panel/info_label": T.LABEL + manual_save_list_stack_panel: T.STACK_PANEL + "manual_save_list_stack_panel/padding1": T.PANEL + "manual_save_list_stack_panel/save_tab_info_label": T.PANEL + "manual_save_list_stack_panel/padding2": T.PANEL + "manual_save_list_stack_panel/stack_panel": T.STACK_PANEL + "manual_save_list_stack_panel/padding3": T.PANEL + automatic_save_list_panel: T.PANEL + automatic_tab_info_panel: T.PANEL + "automatic_tab_info_panel/info_label": T.LABEL + automatic_save_list_stack_panel: T.STACK_PANEL + "automatic_save_list_stack_panel/padding1": T.PANEL + "automatic_save_list_stack_panel/save_tab_info_label": T.PANEL + "automatic_save_list_stack_panel/padding2": T.PANEL + "automatic_save_list_stack_panel/stack_panel": T.STACK_PANEL + "automatic_save_list_stack_panel/padding3": T.PANEL + options_icon: T.IMAGE + saves_info_accordian: T.STACK_PANEL + "saves_info_accordian/main_content_panel": T.STACK_PANEL + "saves_info_accordian/main_content_panel/checkbox_button": T.BUTTON + "saves_info_accordian/main_content_panel/main_item_toggle": T.PANEL + "saves_info_accordian/main_content_panel/options_button": T.BUTTON + "saves_info_accordian/sub_content_panel": T.PANEL + "saves_info_accordian/sub_content_panel/saves_content": T.PANEL + saves_info_accordion_checkbox: T.PANEL + "saves_info_accordion_checkbox/unchecked_control": T.UNKNOWN + "saves_info_accordion_checkbox/checked_control": T.UNKNOWN + "saves_info_accordion_checkbox/unchecked_hover_control": T.UNKNOWN + "saves_info_accordion_checkbox/checked__hover_control": T.UNKNOWN + main_item_content: T.STACK_PANEL + "main_item_content/date_and_name": T.PANEL + "main_item_content/date_and_name/date_saved_label": T.LABEL + "main_item_content/date_and_name/world_name_label": T.LABEL + "main_item_content/time_and_size": T.PANEL + "main_item_content/time_and_size/save_data_time_label": T.LABEL + "main_item_content/time_and_size/save_data_size_label": T.LABEL + "main_item_content/padding_left_down_icon": T.PANEL + "main_item_content/down_icon": T.PANEL + "main_item_content/down_icon/options_icon": T.IMAGE + "main_item_content/padding_right_down_icon": T.PANEL + option_saves_info_label: T.PANEL + saves_info_container: T.IMAGE + "saves_info_container/saves_info_content": T.STACK_PANEL + saves_info_content: T.STACK_PANEL + "saves_info_content/version_panel": T.PANEL + "saves_info_content/pack_header_panel": T.PANEL + "saves_info_content/world_packs_label": T.LABEL + version_panel: T.PANEL + "version_panel/left_content": T.STACK_PANEL + "version_panel/left_content/save_version_label": T.LABEL + pack_header_panel: T.PANEL + "pack_header_panel/left_content": T.STACK_PANEL + "pack_header_panel/left_content/packs_label": T.LABEL + label_text: T.LABEL + branch_grid_item_content: T.STACK_PANEL + "branch_grid_item_content/branch_text": T.LABEL + "branch_grid_item_content/commit_text": T.LABEL + matching_item_button_content: T.STACK_PANEL + "matching_item_button_content/branch_text": T.LABEL + "matching_item_button_content/commit_text": T.LABEL + branch_item_template: T.PANEL + "branch_item_template/branch_item_button": T.BUTTON + branches_grid: T.GRID + branch_set_panel: T.STACK_PANEL + "branch_set_panel/set_branch_id_label": T.LABEL + version_filter_text_box: T.EDIT_BOX + branch_page_panel: T.PANEL + "branch_page_panel/prev_button": T.BUTTON + "branch_page_panel/page_text": T.LABEL + "branch_page_panel/next_button": T.BUTTON + branches_panel: T.STACK_PANEL + "branches_panel/branch_label": T.LABEL + "branches_panel/spacing_gap_1": T.PANEL + "branches_panel/set_branch_version_label": T.LABEL + "branches_panel/branch_set_panel": T.STACK_PANEL + "branches_panel/spacing_gap_2": T.PANEL + "branches_panel/matching_version_label": T.LABEL + "branches_panel/matching_item_button": T.BUTTON + "branches_panel/spacing_gap_3": T.PANEL + "branches_panel/all_commits_label": T.LABEL + "branches_panel/version_filter_text_box": T.EDIT_BOX + "branches_panel/branches_grid": T.GRID + "branches_panel/spacing_gap": T.PANEL + "branches_panel/branch_page_panel": T.PANEL + branch_section: T.STACK_PANEL + "branch_section/branches_panel": T.STACK_PANEL + popup_dialog__backups: T.INPUT_PANEL + "popup_dialog__backups/transparent_close_button": T.BUTTON + "popup_dialog__backups/backup_restore_popup_content": T.PANEL + backup_restore_popup_content: T.PANEL + "backup_restore_popup_content/popup_dialog_bg": T.IMAGE + "backup_restore_popup_content/backup_restore_popup_dialog_header": T.PANEL + "backup_restore_popup_content/backup_restore_popup_dialog_body": T.PANEL + backup_restore_popup_dialog_header: T.PANEL + "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": T.LABEL + backup_restore_popup_dialog_header_text: T.LABEL + backup_restore_popup_dialog_body: T.PANEL + "backup_restore_popup_dialog_body/backup_restore_loading_panel": T.IMAGE + backup_restore_loading_panel: T.IMAGE + "backup_restore_loading_panel/backup_restore_loading_stack_panel": T.STACK_PANEL + backup_restore_loading_stack_panel: T.STACK_PANEL + "backup_restore_loading_stack_panel/padding": T.PANEL + "backup_restore_loading_stack_panel/backup_restore_text_panel": T.PANEL + "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": T.PANEL + "backup_restore_loading_stack_panel/padding2": T.PANEL + backup_restore_text_panel: T.PANEL + "backup_restore_text_panel/loading_text": T.LABEL + backup_restore_loading_bar_panel: T.PANEL + "backup_restore_loading_bar_panel/progress_loading_bars": T.IMAGE + backup_replace_icon: T.IMAGE + backup_download_icon: T.IMAGE + backup_grid_item_content: T.STACK_PANEL + "backup_grid_item_content/backup_grid_item_icon_panel": T.PANEL + "backup_grid_item_content/backup_grid_item_name_and_time_since": T.STACK_PANEL + "backup_grid_item_content/backup_grid_item_date_and_time": T.STACK_PANEL + "backup_grid_item_content/spacing_gap": T.PANEL + backup_grid_item_name_and_time_since: T.STACK_PANEL + "backup_grid_item_name_and_time_since/date_text": T.LABEL + "backup_grid_item_name_and_time_since/spacing_gap": T.PANEL + "backup_grid_item_name_and_time_since/version_text": T.LABEL + backup_grid_item_date_and_time: T.STACK_PANEL + "backup_grid_item_date_and_time/time_text": T.LABEL + "backup_grid_item_date_and_time/spacing_gap": T.PANEL + "backup_grid_item_date_and_time/size_text": T.LABEL + backup_grid_item_icon_panel: T.PANEL + "backup_grid_item_icon_panel/backup_replace_icon": T.IMAGE + backup_item_template: T.STACK_PANEL + "backup_item_template/backup_item_button": T.BUTTON + "backup_item_template/download_backup_panel": T.PANEL + "backup_item_template/download_backup_panel/download_backup_button": T.BUTTON + download_backup_button: T.BUTTON + backup_grid: T.GRID + backup_section: T.STACK_PANEL + "backup_section/backup_panel": T.STACK_PANEL + backup_info_label: T.PANEL + backup_network_error_label: T.PANEL + backup_panel: T.STACK_PANEL + "backup_panel/spacing_gap": T.PANEL + "backup_panel/backup_info_label": T.PANEL + "backup_panel/spacing_gap2": T.PANEL + "backup_panel/progress_panel": T.PANEL + "backup_panel/progress_panel/progress_loading_bars": T.IMAGE + "backup_panel/backup_grid": T.GRID + "backup_panel/backup_network_error_label": T.PANEL + test_content: T.PANEL + "test_content/realms_allowlist_content_panel": T.PANEL + "test_content/gamepad_helpers": T.UNKNOWN + selector_panel: T.STACK_PANEL + "selector_panel/play_button": T.BUTTON + "selector_panel/disabled_play_button": T.BUTTON + "selector_panel/expired_play_button": T.BUTTON + "selector_panel/padding": T.PANEL + "selector_panel/selector_group_label": T.LABEL + "selector_panel/world_button": T.PANEL + "selector_panel/members_button": T.PANEL + "selector_panel/saves_button": T.PANEL + "selector_panel/subscription_button": T.PANEL + "selector_panel/backup_button": T.PANEL + "selector_panel/dev_options_button": T.PANEL + "selector_panel/invite_links_button": T.PANEL + "selector_panel/advanced_button": T.PANEL + section_content_panels: T.PANEL + "section_content_panels/world_section": T.PANEL + "section_content_panels/players_section": T.PANEL + "section_content_panels/subscription_section": T.PANEL + "section_content_panels/invite_links_section": T.PANEL + "section_content_panels/advanced_section": T.PANEL + "section_content_panels/dev_options_section": T.PANEL + "section_content_panels/backup_section": T.PANEL + "section_content_panels/saves_section": T.PANEL + popup_dialog__save_options: T.INPUT_PANEL + save_options_popup_content: T.STACK_PANEL + "save_options_popup_content/restore_button": T.BUTTON + "save_options_popup_content/spacing_1": T.PANEL + "save_options_popup_content/download_button": T.BUTTON + "save_options_popup_content/spacing_2": T.PANEL + "save_options_popup_content/save_button_container": T.STACK_PANEL + "save_options_popup_content/save_button_container/save_button": T.BUTTON + "save_options_popup_content/save_button_container/spacing_3": T.PANEL + "save_options_popup_content/delete_button_container": T.STACK_PANEL + "save_options_popup_content/delete_button_container/delete_button": T.BUTTON + standalone_dialog_title: T.STACK_PANEL + "standalone_dialog_title/left_padding": T.PANEL + "standalone_dialog_title/dialog_title_label": T.LABEL + "standalone_dialog_title/right_padding": T.PANEL + standalone_dialog_content: T.PANEL + "standalone_dialog_content/dialog_title": T.STACK_PANEL + "standalone_dialog_content/content_area": T.PANEL + standalone_content_area: T.PANEL + "standalone_content_area/control": T.STACK_PANEL + "standalone_content_area/control/scrolling_panel": T.PANEL + realms_settings_screen_base_no_selector_area: T.SCREEN + screen_realm_hub_manage_members: T.SCREEN + screen_realm_hub_invite_links: T.SCREEN +} + +export type RealmsAllowlistType = { + spacing_gap: T.PANEL + friends_containing_panel: T.PANEL + "friends_containing_panel/friends_panel": T.STACK_PANEL + friends_panel: T.STACK_PANEL + "friends_panel/add_friends_and_invite_link_panel": T.PANEL + "friends_panel/option_dropdown_permissions": T.PANEL + "friends_panel/player_filter_label": T.PANEL + "friends_panel/player_filter_text_box": T.EDIT_BOX + "friends_panel/spacing_gap_members_top": T.PANEL + "friends_panel/lists": T.STACK_PANEL + "friends_panel/lists/members_label": T.STACK_PANEL + "friends_panel/lists/members_stack": T.STACK_PANEL + "friends_panel/lists/spacing_gap_members_bottom": T.PANEL + "friends_panel/lists/members_page_panel": T.PANEL + "friends_panel/lists/invited_friends_label": T.PANEL + "friends_panel/lists/invited_stack": T.STACK_PANEL + "friends_panel/lists/spacing_gap_invited_friends": T.PANEL + "friends_panel/lists/invited_friends_page_panel": T.PANEL + "friends_panel/lists/uninvited_friends_label": T.PANEL + "friends_panel/lists/uninvited_stack": T.STACK_PANEL + "friends_panel/lists/spacing_gap_uninvited_friends": T.PANEL + "friends_panel/lists/uninvited_friends_page_panel": T.PANEL + "friends_panel/lists/blocked_players_label": T.PANEL + "friends_panel/lists/blocked_players_stack": T.STACK_PANEL + "friends_panel/lists/spacing_gap_blocked_players": T.PANEL + "friends_panel/lists/blocked_players_page_panel": T.PANEL + "friends_panel/lists/no_invites_label": T.LABEL + "friends_panel/loading_friends": T.LABEL + add_friends_and_invite_link_panel: T.PANEL + "add_friends_and_invite_link_panel/allowlist_stack_panel": T.STACK_PANEL + "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": T.PANEL + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": T.PANEL + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": T.PANEL + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": T.BUTTON + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": T.PANEL + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": T.PANEL + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": T.BUTTON + options_icon: T.IMAGE + account_link_image: T.IMAGE + account_link_icon: T.STACK_PANEL + "account_link_icon/space_01": T.PANEL + "account_link_icon/account_link_image": T.IMAGE + "account_link_icon/space_03": T.PANEL + find_friends_button_panel: T.PANEL + "find_friends_button_panel/find_friends_button": T.BUTTON + invited_friends_label: T.PANEL + "invited_friends_label/friend_title": T.LABEL + player_filter_label: T.PANEL + "player_filter_label/player_filter_title": T.LABEL + members_label: T.STACK_PANEL + "members_label/friend_title": T.LABEL + "members_label/padding_panel": T.PANEL + "members_label/loading_text": T.LABEL + blocked_players_label: T.PANEL + "blocked_players_label/friend_title": T.LABEL + uninvited_friends_label: T.PANEL + "uninvited_friends_label/friend_title": T.LABEL + no_invites_label: T.LABEL + loading_friends: T.LABEL + blocked_grid_item: T.PANEL + "blocked_grid_item/blocked_panel": T.IMAGE + factory_stack: T.STACK_PANEL + member_factory_xbl_profile: T.STACK_PANEL + member_factory_linked_account: T.STACK_PANEL + invited_factory_xbl_profile: T.STACK_PANEL + invited_factory_linked_account: T.STACK_PANEL + uninvited_factory_xbl_profile: T.STACK_PANEL + uninvited_factory_linked_account: T.STACK_PANEL + blocked_factory_xbl_profile: T.STACK_PANEL + blocked_factory_linked_account: T.STACK_PANEL + xbl_profile_panel_factory: T.STACK_PANEL + xbl_profile_blocked_panel_factory: T.STACK_PANEL + linked_account_panel_factory: T.STACK_PANEL + linked_account_blocked_panel_factory: T.STACK_PANEL + xbl_profile_panel: T.IMAGE + "xbl_profile_panel/player_status_panel": T.PANEL + "xbl_profile_panel/xbl_user_panel": T.STACK_PANEL + "xbl_profile_panel/right_controls_panel": T.PANEL + "xbl_profile_panel/progress": T.IMAGE + factory_gap_template: T.STACK_PANEL + "factory_gap_template/gapped_control": T.UNKNOWN + "factory_gap_template/spacing1": T.PANEL + gapped_xbl_profile_panel: T.STACK_PANEL + gapped_linked_account_panel: T.STACK_PANEL + gapped_blocked_xbl_profile_panel: T.STACK_PANEL + gapped_blocked_linked_account_panel: T.STACK_PANEL + blocked_panel: T.IMAGE + "blocked_panel/xbl_user_panel": T.STACK_PANEL + "blocked_panel/unblock_button": T.BUTTON + linked_account_panel: T.IMAGE + "linked_account_panel/linked_account_positioning_panel": T.STACK_PANEL + "linked_account_panel/right_controls_panel": T.PANEL + "linked_account_panel/progress": T.IMAGE + linked_account_blocked_panel: T.IMAGE + "linked_account_blocked_panel/linked_account_positioning_panel": T.STACK_PANEL + "linked_account_blocked_panel/unblock_button": T.BUTTON + "linked_account_blocked_panel/progress": T.IMAGE + xbl_user_panel: T.STACK_PANEL + "xbl_user_panel/spacing1": T.PANEL + "xbl_user_panel/platform_icon_positioner": T.PANEL + "xbl_user_panel/gamerpic_panel": T.PANEL + "xbl_user_panel/spacing2": T.PANEL + "xbl_user_panel/gamertag_label_panel": T.PANEL + third_party_user_panel: T.STACK_PANEL + "third_party_user_panel/spacing1": T.PANEL + "third_party_user_panel/profile_picture": T.PANEL + "third_party_user_panel/spacing2": T.PANEL + "third_party_user_panel/third_party_profile_label": T.PANEL + linked_profile_pictures_panel: T.STACK_PANEL + "linked_profile_pictures_panel/pp2": T.PANEL + "linked_profile_pictures_panel/account_link": T.STACK_PANEL + "linked_profile_pictures_panel/pp1": T.PANEL + platform_profile_names: T.STACK_PANEL + "platform_profile_names/friend_grid_third_party_tag": T.PANEL + "platform_profile_names/spacer_02": T.PANEL + "platform_profile_names/friend_grid_xbl_gamertag": T.PANEL + "platform_profile_names/spacer_03": T.PANEL + linked_user_stack_panel: T.STACK_PANEL + "linked_user_stack_panel/allow_offset_control": T.PANEL + "linked_user_stack_panel/allow_offset_control/player_status_panel": T.PANEL + "linked_user_stack_panel/platform_icon_positioner": T.PANEL + "linked_user_stack_panel/platform_icon_positioner/platform_icon": T.PANEL + "linked_user_stack_panel/spacing1": T.PANEL + "linked_user_stack_panel/profile_picture": T.STACK_PANEL + "linked_user_stack_panel/spacing2": T.PANEL + "linked_user_stack_panel/platform_names_label": T.STACK_PANEL + "linked_user_stack_panel/spacing3": T.PANEL + horizontal_indent: T.PANEL + vertical_indent: T.PANEL + gamerpic_panel: T.PANEL + "gamerpic_panel/black_border": T.IMAGE + "gamerpic_panel/gamer_pic": T.CUSTOM + third_party_profile_pic_panel: T.PANEL + "third_party_profile_pic_panel/black_border": T.IMAGE + "third_party_profile_pic_panel/third_party_profile_picture": T.IMAGE + gamertag_label_panel: T.PANEL + "gamertag_label_panel/gamertag_label": T.LABEL + "gamertag_label_panel/real_name_label": T.LABEL + third_party_profile_label: T.PANEL + "third_party_profile_label/profile_name_label": T.LABEL + panel_text: T.LABEL + gamertag_label: T.LABEL + third_party_profile_name_label: T.LABEL + real_name_label: T.LABEL + right_settings_panel: T.STACK_PANEL + "right_settings_panel/member_settings": T.STACK_PANEL + member_settings: T.STACK_PANEL + "member_settings/minus_button": T.BUTTON + "member_settings/horizontal_space": T.PANEL + "member_settings/member_permissions": T.STACK_PANEL + "member_settings/op_deop_button": T.PANEL + right_controls_panel: T.PANEL + "right_controls_panel/right_settings_panel": T.STACK_PANEL + "right_controls_panel/uninvited_friends_invite_button": T.BUTTON + player_status_panel: T.PANEL + "player_status_panel/player_online_icon": T.IMAGE + "player_status_panel/player_offline_icon": T.IMAGE + permissions_dropdown: T.STACK_PANEL + "permissions_dropdown/vertical_space": T.PANEL + "permissions_dropdown/option_dropdown_permissions": T.PANEL + invite_button: T.BUTTON + minus_button: T.BUTTON + unblock_label: T.LABEL + unblock_button: T.BUTTON + op_deop_button: T.PANEL + find_friends_button: T.BUTTON + black_border: T.IMAGE + gamer_pic: T.CUSTOM + third_party_profile_picture: T.IMAGE + player_online_icon: T.IMAGE + player_offline_icon: T.IMAGE + plus_icon: T.IMAGE + more_icon: T.IMAGE + share_icon: T.IMAGE + minus_icon: T.IMAGE + op_icon: T.IMAGE + deop_icon: T.IMAGE + player_filter_text_box: T.EDIT_BOX + page_panel: T.PANEL + "page_panel/prev_button": T.BUTTON + "page_panel/page_text": T.LABEL + "page_panel/next_button": T.BUTTON + realms_allowlist_panel_content: T.PANEL + realms_allowlist_content_panel: T.PANEL + realms_allowlist_content_panel_children: T.PANEL + "realms_allowlist_content_panel_children/realms_allowlist_panel_content": T.PANEL + "realms_allowlist_content_panel_children/done_button": T.BUTTON + realms_allowlist_screen: T.SCREEN + realms_allowlist_content: T.PANEL + "realms_allowlist_content/root_panel": T.INPUT_PANEL + "realms_allowlist_content/root_panel/realms_allowlist_content_panel": T.PANEL + transparent_close_button: T.BUTTON +} + +export type RealmsInviteLinkSettingsType = { + generic_section_wrapper: T.PANEL + "generic_section_wrapper/generic_section": T.STACK_PANEL + link_banner: T.IMAGE + clipboard_icon: T.IMAGE + description_wrap: T.PANEL + "description_wrap/description": T.LABEL + invite_link_url: T.LABEL + link_panel: T.IMAGE + "link_panel/invite_link_url_wrapper": T.PANEL + "link_panel/link_copy_container": T.PANEL + "link_panel/link_copy_container/link_copy": T.BUTTON + general_content: T.STACK_PANEL + "general_content/spacing_gap_0": T.PANEL + "general_content/invite_link_title": T.LABEL + "general_content/invite_link_description": T.PANEL + "general_content/spacing_gap_1": T.PANEL + "general_content/link_panel": T.IMAGE + "general_content/spacing_gap_2": T.PANEL + "general_content/activate_link_toggle": T.PANEL + "general_content/activate_link_description": T.PANEL + "general_content/spacing_gap_3": T.PANEL + "general_content/infinite_link_toggle": T.PANEL + "general_content/spacing_gap_4": T.PANEL + "general_content/share_link_title": T.LABEL + "general_content/share_link_description": T.PANEL + "general_content/spacing_gap_5": T.PANEL + "general_content/share_link_button": T.BUTTON + "general_content/spacing_gap_6": T.PANEL + "general_content/remove_link_title": T.LABEL + "general_content/remove_invite_link_button": T.BUTTON + invite_link_expiration: T.LABEL + advanced_content: T.STACK_PANEL + "advanced_content/spacing_gap_0": T.PANEL + "advanced_content/expiry_title": T.LABEL + "advanced_content/spacing_gap_1": T.PANEL + "advanced_content/expiration_description": T.PANEL + "advanced_content/spacing_gap_2": T.PANEL + "advanced_content/expiration_panel": T.IMAGE + "advanced_content/expiration_panel/invite_link_expiration_wrapper": T.PANEL + "advanced_content/expiration_dropdown": T.PANEL + expiration_dropdown_content: T.PANEL + selector_panel: T.STACK_PANEL + "selector_panel/spacing_gap_0": T.PANEL + "selector_panel/general_button": T.PANEL + "selector_panel/advanced_button": T.PANEL + section_content_panels: T.PANEL + "section_content_panels/general_section": T.PANEL + "section_content_panels/advanced_section": T.PANEL +} + +export type RealmsPlusEndedType = { + subscription_ended_screen: T.SCREEN + subscription_ended_screen_content: T.PANEL + "subscription_ended_screen_content/root_panel": T.PANEL + "subscription_ended_screen_content/root_panel/gamepad_helpers": T.PANEL + "subscription_ended_screen_content/root_panel/main_panel": T.INPUT_PANEL + main_panel: T.INPUT_PANEL + "main_panel/dialog": T.PANEL + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + content_stack_panel: T.STACK_PANEL + "content_stack_panel/pad_0": T.PANEL + "content_stack_panel/main_content": T.PANEL + "content_stack_panel/pad_1": T.PANEL + "content_stack_panel/button_center_panel": T.PANEL + "content_stack_panel/button_center_panel/buttons": T.STACK_PANEL + "content_stack_panel/pad_2": T.PANEL + main_content_panel: T.PANEL + "main_content_panel/main_content_stack_panel": T.STACK_PANEL + "main_content_panel/main_content_stack_panel/image_panel": T.PANEL + "main_content_panel/main_content_stack_panel/pad": T.PANEL + "main_content_panel/main_content_stack_panel/text_panel": T.PANEL + "main_content_panel/main_content_stack_panel/text_panel/text": T.LABEL + buttons_panel: T.STACK_PANEL + "buttons_panel/more_info_button": T.BUTTON + "buttons_panel/pad": T.PANEL + "buttons_panel/renew_subscription_button": T.BUTTON +} + +export type RealmsPlusType = { + realms_plus_pdp_screen: T.SCREEN + realms_plus_upgrade_notice_screen: T.SCREEN + purple_background: T.IMAGE + "purple_background/bottom_left_particles": T.IMAGE + "purple_background/top_right_particles": T.IMAGE + main_background: T.PANEL + "main_background/dark_blue": T.IMAGE + "main_background/grey_gradient": T.IMAGE + dark_blue_background: T.IMAGE + gradient_image_stack: T.STACK_PANEL + "gradient_image_stack/solid_pink": T.IMAGE + "gradient_image_stack/gradient": T.IMAGE + gradient_content_panel: T.PANEL + "gradient_content_panel/gradient": T.STACK_PANEL + "gradient_content_panel/content_panel": T.UNKNOWN + realmsPlus_screen_main_panel: T.INPUT_PANEL + realmsPlus_main_panel: T.PANEL + "realmsPlus_main_panel/root_panel": T.PANEL + "realmsPlus_main_panel/root_panel/main_panel": T.STACK_PANEL + "realmsPlus_main_panel/popup_dialog_factory": T.FACTORY + dialog_content: T.PANEL + "dialog_content/selector_area": T.PANEL + "dialog_content/content_area": T.PANEL + "dialog_content/left_right_pane_divider": T.IMAGE + selector_area: T.PANEL + "selector_area/scrolling_panel": T.PANEL + scrollable_selector_area_content: T.STACK_PANEL + "scrollable_selector_area_content/realmsPlus_toggle": T.STACK_PANEL + "scrollable_selector_area_content/content_toggle": T.STACK_PANEL + "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL + "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL + "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL + "scrollable_selector_area_content/xbl_btn_panel": T.PANEL + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON + "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL + section_toggle_base: T.PANEL + tab_button_text: T.LABEL + toggle_base: T.STACK_PANEL + "toggle_base/toggle": T.PANEL + "toggle_base/padding": T.PANEL + realmsPlus_toggle: T.STACK_PANEL + content_toggle: T.STACK_PANEL + faq_toggle: T.STACK_PANEL + buy_now_toggle: T.STACK_PANEL + left_right_pane_divider: T.IMAGE + content_area: T.PANEL + "content_area/control": T.STACK_PANEL + "content_area/control/scrolling_panel": T.PANEL + section_content_panels: T.STACK_PANEL + content_section_top_padding: T.PANEL + section_base: T.STACK_PANEL + buy_now_content_section: T.STACK_PANEL + "buy_now_content_section/content_section_top_padding": T.PANEL + "buy_now_content_section/content": T.STACK_PANEL + markdown_background_animated: T.PANEL + "markdown_background_animated/realms_banner": T.STACK_PANEL + "markdown_background_animated/realms_plus_normal": T.IMAGE + "markdown_background_animated/realms_plus_hover": T.IMAGE + markdown_background: T.STACK_PANEL + "markdown_background/banner_panel": T.PANEL + "markdown_background/banner_panel/banner": T.IMAGE + "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL + "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN + "markdown_background/triangle_panel": T.PANEL + "markdown_background/triangle_panel/triangle": T.IMAGE + empty_label: T.PANEL + full_width_section_divider: T.STACK_PANEL +} + +export type RealmsPlusContentType = { + realmsPlus_content_section: T.STACK_PANEL + "realmsPlus_content_section/content_section_top_padding": T.PANEL + "realmsPlus_content_section/content_sections": T.STACK_PANEL + "realmsPlus_content_section/content_section_bottom_padding": T.PANEL + content_pack_types_section: T.STACK_PANEL + "content_pack_types_section/includes_marketplace_pass_wrapper": T.PANEL + "content_pack_types_section/padding_contentSub": T.PANEL + "content_pack_types_section/pack_types_wrapper": T.PANEL + content_packs_included_section: T.STACK_PANEL + "content_packs_included_section/popular_packs": T.STACK_PANEL + "content_packs_included_section/section_divider": T.STACK_PANEL + persona_row: T.PANEL + "persona_row/persona": T.STACK_PANEL + worlds_row: T.STACK_PANEL + pack_types: T.STACK_PANEL + "pack_types/middle_row": T.PANEL + "pack_types/middle_row/worlds_contentSub": T.STACK_PANEL + "pack_types/middle_row/textures": T.STACK_PANEL + "pack_types/bottom_row": T.PANEL + "pack_types/bottom_row/skins_persona_contentSub": T.STACK_PANEL + "pack_types/bottom_row/mashups": T.STACK_PANEL + "pack_types/bottom_contentSub": T.PANEL + skins: T.STACK_PANEL + friends_get_access: T.LABEL + pack_type_row_panel: T.PANEL + pack_type_description: T.STACK_PANEL + "pack_type_description/image_nesting_panel": T.PANEL + "pack_type_description/image_nesting_panel/texture": T.UNKNOWN + "pack_type_description/padding_0": T.PANEL + "pack_type_description/description_nesting_panel": T.PANEL + "pack_type_description/description_nesting_panel/description_label": T.LABEL + popular_packs: T.STACK_PANEL + "popular_packs/padding_0": T.PANEL + "popular_packs/pack_grid": T.STACK_PANEL + "popular_packs/view_all_packs_panel": T.PANEL + "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON + "popular_packs/padding_1": T.PANEL + "popular_packs/view_character_creator_items_button": T.BUTTON + "popular_packs/padding_2": T.PANEL + popular_packs_label: T.LABEL + includes_marketplace_pass: T.PANEL + includes_marketplace_pass_label: T.LABEL + packs_collection: T.STACK_PANEL + "packs_collection/row_1": T.STACK_PANEL + "packs_collection/row_1/pack_image_grid_item_0": T.PANEL + "packs_collection/row_1/padding": T.PANEL + "packs_collection/row_1/pack_image_grid_item_1": T.PANEL + "packs_collection/padding_1": T.PANEL + "packs_collection/row_2": T.STACK_PANEL + "packs_collection/row_2/pack_image_grid_item_0": T.PANEL + "packs_collection/row_2/padding": T.PANEL + "packs_collection/row_2/pack_image_grid_item_1": T.PANEL + "packs_collection/padding_2": T.PANEL + pack_image_grid_item: T.PANEL + "pack_image_grid_item/bg": T.IMAGE + "pack_image_grid_item/bg/featured_key_art": T.IMAGE + "pack_image_grid_item/bg/progress_loading": T.PANEL + "pack_image_grid_item/offer_button": T.BUTTON + "pack_image_grid_item/offer_button/default": T.IMAGE + "pack_image_grid_item/offer_button/hover": T.IMAGE + "pack_image_grid_item/offer_button/pressed": T.IMAGE +} + +export type RealmsPlusFaqType = { + faq_image_section: T.PANEL + faq_image_local: T.IMAGE + faq_image_type: T.PANEL + "faq_image_type/0": T.UNKNOWN + faq_text_section_body: T.STACK_PANEL + faq_text_question: T.LABEL + faq_text_section: T.STACK_PANEL + "faq_text_section/faq_text_question": T.LABEL + "faq_text_section/faq_text_answer": T.LABEL + faq_price_bound_text_section: T.STACK_PANEL + "faq_price_bound_text_section/faq_text_question": T.LABEL + "faq_price_bound_text_section/faq_text_answer": T.LABEL + faq_question_body: T.STACK_PANEL + "faq_question_body/0": T.UNKNOWN + faq_question_body_stack: T.STACK_PANEL + faq_question_body_horz_padding: T.PANEL + image_left_faq_question_body: T.BUTTON + image_right_faq_question_body: T.BUTTON + image_left_faq_question_body_flip: T.PANEL + "image_left_faq_question_body_flip/faq_question_left": T.BUTTON + image_right_faq_question_body_flip: T.PANEL + "image_right_faq_question_body_flip/faq_question_right": T.BUTTON + image_left_faq_price_bound: T.BUTTON + faq_section_header_space: T.PANEL + faq_section_divider: T.STACK_PANEL + faq_content_section: T.STACK_PANEL + "faq_content_section/content_section_top_padding_1": T.PANEL + "faq_content_section/faq_header": T.LABEL + "faq_content_section/content_section_top_padding_2": T.PANEL + "faq_content_section/faq_question_1": T.BUTTON + "faq_content_section/faq_question_1_divider": T.STACK_PANEL + "faq_content_section/faq_question_2": T.BUTTON + "faq_content_section/faq_question_2_divider": T.STACK_PANEL + "faq_content_section/faq_question_3": T.BUTTON + "faq_content_section/faq_question_3_divider": T.STACK_PANEL + "faq_content_section/faq_question_4": T.BUTTON + "faq_content_section/faq_question_4_divider": T.STACK_PANEL + "faq_content_section/faq_question_5": T.PANEL + "faq_content_section/faq_question_5_divider": T.STACK_PANEL + "faq_content_section/faq_question_6": T.PANEL + "faq_content_section/faq_question_6_divider": T.STACK_PANEL + "faq_content_section/faq_question_7": T.PANEL + "faq_content_section/faq_question_7_divider": T.STACK_PANEL + "faq_content_section/faq_question_8": T.PANEL + "faq_content_section/faq_question_8_divider": T.STACK_PANEL + "faq_content_section/faq_question_9": T.PANEL + "faq_content_section/faq_question_9_divider": T.STACK_PANEL + "faq_content_section/faq_question_10": T.PANEL + "faq_content_section/faq_question_10_divider": T.STACK_PANEL + "faq_content_section/faq_question_11": T.PANEL + "faq_content_section/content_section_top_padding_3": T.PANEL +} + +export type RealmsPlusLandingType = { + landing_content_section: T.STACK_PANEL + "landing_content_section/landing_content": T.STACK_PANEL + "landing_content_section/landing_content/title_stack": T.STACK_PANEL + "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL + "landing_content_section/landing_content/divider_panel": T.PANEL + "landing_content_section/landing_content/divider_panel/section_divider": T.STACK_PANEL + "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL + "landing_content_section/landing_content/info_stack": T.STACK_PANEL + "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL + horizontal_small_spacer: T.PANEL + vertical_small_spacer: T.PANEL + vertical_med_spacer: T.PANEL + vertical_large_spacer: T.PANEL + title_stack: T.STACK_PANEL + "title_stack/title_image_panel": T.PANEL + "title_stack/gradient_panel": T.PANEL + "title_stack/gradient_panel/label_with_gradient_wrapper": T.PANEL + "title_stack/vertical_space": T.PANEL + "title_stack/action_button": T.PANEL + "title_stack/sign_in_button": T.PANEL + "title_stack/vertical_space2": T.PANEL + label_with_gradient: T.PANEL + free_trial_text: T.LABEL + title_image_panel: T.PANEL + "title_image_panel/title_image_container": T.STACK_PANEL + "title_image_panel/title_image_container/title_image": T.IMAGE + "title_image_panel/title_image_container/title_art_image": T.IMAGE + "title_image_panel/title_image_pre_release_container": T.PANEL + "title_image_panel/title_image_pre_release_container/title_image_pre_release": T.IMAGE + info_stack: T.STACK_PANEL + "info_stack/info_stack": T.PANEL + "info_stack/info_stack/info_description_stack_retail": T.STACK_PANEL + "info_stack/info_stack/info_description_stack_preview": T.PANEL + info_description_stack_retail: T.STACK_PANEL + "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL + "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": T.PANEL + "info_description_stack_retail/vertical_med_spacer0": T.PANEL + "info_description_stack_retail/divider_centering_panel": T.PANEL + "info_description_stack_retail/divider_centering_panel/divider": T.STACK_PANEL + "info_description_stack_retail/vertical_med_spacer1": T.PANEL + "info_description_stack_retail/info_section_stack_recently_added": T.STACK_PANEL + "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": T.PANEL + "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": T.PANEL + "info_description_stack_retail/vertical_med_spacer2": T.PANEL + "info_description_stack_retail/divider_centering_panel2": T.PANEL + "info_description_stack_retail/divider_centering_panel2/divider2": T.STACK_PANEL + "info_description_stack_retail/vertical_med_spacer3": T.PANEL + "info_description_stack_retail/info_section_stack_2": T.STACK_PANEL + "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": T.PANEL + "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": T.PANEL + info_description_stack_prerelease: T.PANEL + "info_description_stack_prerelease/info_section_stack": T.STACK_PANEL + "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": T.PANEL + "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": T.PANEL + info_section_stack: T.STACK_PANEL + info_section_text_1: T.STACK_PANEL + "info_section_text_1/info_text_bullet_1": T.STACK_PANEL + "info_section_text_1/vertical_small_spacer_0": T.PANEL + "info_section_text_1/info_text_bullet_2": T.STACK_PANEL + "info_section_text_1/vertical_small_spacer_1": T.PANEL + "info_section_text_1/info_text_bullet_3": T.STACK_PANEL + info_section_text_recently_added: T.STACK_PANEL + "info_section_text_recently_added/recently_added_header": T.LABEL + "info_section_text_recently_added/info_text_bullet_contentSub": T.STACK_PANEL + "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": T.PANEL + "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": T.STACK_PANEL + "info_section_text_recently_added/vertical_small_spacer_1": T.PANEL + "info_section_text_recently_added/info_text_bullet_1": T.STACK_PANEL + "info_section_text_recently_added/vertical_small_spacer_2": T.PANEL + "info_section_text_recently_added/info_text_bullet_2": T.STACK_PANEL + info_section_text_2: T.STACK_PANEL + "info_section_text_2/info_text_bullet_2": T.STACK_PANEL + "info_section_text_2/vertical_small_spacer_0": T.PANEL + "info_section_text_2/info_text_bullet_3": T.STACK_PANEL + "info_section_text_2/vertical_small_spacer_1": T.PANEL + "info_section_text_2/info_text_bullet_4": T.STACK_PANEL + "info_section_text_2/info_text_bullet_notFreeTrial": T.STACK_PANEL + "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": T.PANEL + "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": T.STACK_PANEL + info_section_text_3: T.STACK_PANEL + "info_section_text_3/info_text_unbulletted_1": T.PANEL + "info_section_text_3/vertical_large_spacer_0": T.PANEL + "info_section_text_3/info_text_unbulletted_2": T.PANEL + "info_section_text_3/vertical_large_spacer_1": T.PANEL + "info_section_text_3/info_text_unbulletted_3": T.PANEL + "info_section_text_3/vertical_large_spacer_2": T.PANEL + "info_section_text_3/info_text_unbulletted_4": T.PANEL + info_section_text: T.STACK_PANEL + info_text_bullet: T.STACK_PANEL + "info_text_bullet/info_text_bullet_bullet": T.LABEL + "info_text_bullet/info_text_bullet_body": T.LABEL + info_text_unbulletted: T.PANEL + "info_text_unbulletted/info_text_bullet_body": T.LABEL +} + +export type RealmsPlusBuyType = { + buy_now_content: T.STACK_PANEL + "buy_now_content/description_stack": T.STACK_PANEL + "buy_now_content/realm_name": T.STACK_PANEL + "buy_now_content/terms_and_conditions": T.PANEL + "buy_now_content/padding_2": T.PANEL + "buy_now_content/buy_button": T.PANEL + "buy_now_content/padding_3": T.PANEL + "buy_now_content/platform_terms_factory": T.STACK_PANEL + content_text_section: T.STACK_PANEL + "content_text_section/text_description_wrapper": T.PANEL + "content_text_section/padding": T.PANEL + content_description: T.PANEL + "content_description/content_description_label": T.LABEL + trial_image_and_description: T.STACK_PANEL + "trial_image_and_description/realms_image": T.IMAGE + "trial_image_and_description/padding": T.PANEL + "trial_image_and_description/description_text_wrapper": T.PANEL + description_text: T.LABEL + title_text: T.LABEL + title_with_gradient: T.PANEL + description_stack: T.STACK_PANEL + "description_stack/title_with_gradient_wrapper": T.PANEL + "description_stack/padding": T.PANEL + "description_stack/image_and_description": T.STACK_PANEL + realm_name_stack: T.STACK_PANEL + "realm_name_stack/realm_name_label": T.LABEL + "realm_name_stack/padding_0": T.PANEL + "realm_name_stack/realm_name_text_box": T.EDIT_BOX + terms_and_conditions: T.PANEL + "terms_and_conditions/terms_panel": T.PANEL + terms_and_conditions_panel: T.PANEL + "terms_and_conditions_panel/name_label": T.LABEL + "terms_and_conditions_panel/terms_string_panel": T.PANEL + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON + button_text: T.LABEL + view_terms_button: T.BUTTON + privacy_policy_button: T.BUTTON + buy_button_panel: T.PANEL + "buy_button_panel/buy_button": T.BUTTON + buy_button_content: T.PANEL + "buy_button_content/button_chevron_panel": T.STACK_PANEL + "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL + "buy_button_content/button_text": T.LABEL +} + +export type RealmsPlusPacksType = { + view_all_packs_screen: T.SCREEN + view_packs_screen_content: T.PANEL + "view_packs_screen_content/main_panel": T.STACK_PANEL + realmsPlus_view_packs_screen_main_panel: T.INPUT_PANEL + main_panel: T.INPUT_PANEL + "main_panel/offers": T.PANEL + "main_panel/progress_loading": T.PANEL + scrolling_content_stack: T.STACK_PANEL + "scrolling_content_stack/padding_0": T.PANEL + "scrolling_content_stack/store_factory": T.STACK_PANEL +} + +export type RealmsPlusPurchaseWarningType = { + realmsPlus_purchase_warning_screen: T.SCREEN + purchase_warning_screen_content: T.PANEL + "purchase_warning_screen_content/main_panel": T.PANEL + warning_modal_main_panel: T.STACK_PANEL + "warning_modal_main_panel/art_panel": T.PANEL + "warning_modal_main_panel/art_panel/art": T.IMAGE + "warning_modal_main_panel/padding": T.PANEL + "warning_modal_main_panel/text_panel": T.STACK_PANEL + "warning_modal_main_panel/text_panel/description_panel": T.PANEL + "warning_modal_main_panel/text_panel/description_panel/description_text": T.LABEL + "warning_modal_main_panel/text_panel/padding": T.PANEL + "warning_modal_main_panel/text_panel/checkbox_with_label_panel": T.STACK_PANEL + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": T.TOGGLE + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": T.PANEL + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": T.PANEL + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": T.LABEL + warning_modal_button_panel: T.STACK_PANEL + "warning_modal_button_panel/back_button": T.BUTTON + "warning_modal_button_panel/padding": T.PANEL + "warning_modal_button_panel/continue_button": T.BUTTON +} + +export type RealmsStoriesTransitionType = { + realms_stories_transition_screen: T.SCREEN +} + +export type RedstoneType = { + item_dropper_label: T.LABEL + dispenser_label: T.LABEL + crafter_label: T.LABEL + dropper_label: T.LABEL + hopper_label: T.LABEL + redstone_input_grid: T.GRID + redstone_panel_top_half: T.PANEL + "redstone_panel_top_half/redstone_input_grid": T.GRID + panel: T.PANEL + "panel/container_gamepad_helpers": T.STACK_PANEL + "panel/selected_item_details_factory": T.FACTORY + "panel/item_lock_notification_factory": T.FACTORY + "panel/root_panel": T.INPUT_PANEL + "panel/root_panel/common_panel": T.PANEL + "panel/root_panel/redstone_screen_inventory": T.PANEL + "panel/root_panel/redstone_screen_inventory/red_panel": T.PANEL + "panel/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL + "panel/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID + "panel/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON + "panel/root_panel/red_icon": T.BUTTON + "panel/root_panel/gamepad_cursor": T.BUTTON + "panel/flying_item_renderer": T.CUSTOM + crafter_input_grid: T.GRID + cell_image: T.IMAGE + crafter_highlight_slot: T.IMAGE + crafter_container_slot_button_prototype: T.BUTTON + crafter_highlight_slot_panel: T.PANEL + "crafter_highlight_slot_panel/highlight": T.IMAGE + "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM + "crafter_highlight_slot_panel/white_border": T.IMAGE + crafter_enabled_slot_template: T.INPUT_PANEL + crafter_disabled_slot: T.BUTTON + "crafter_disabled_slot/default": T.IMAGE + "crafter_disabled_slot/hover": T.IMAGE + "crafter_disabled_slot/pressed": T.IMAGE + output_slot_hover_info: T.BUTTON + "output_slot_hover_info/hover": T.CUSTOM + "output_slot_hover_info/output_slot": T.CUSTOM + "output_slot_hover_info/output_slot_border": T.IMAGE + "output_slot_hover_info/output_count": T.LABEL + panel_crafter: T.PANEL + "panel_crafter/container_gamepad_helpers": T.STACK_PANEL + "panel_crafter/selected_item_details_factory": T.FACTORY + "panel_crafter/item_lock_notification_factory": T.FACTORY + "panel_crafter/root_panel": T.INPUT_PANEL + "panel_crafter/root_panel/common_panel": T.PANEL + "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON + "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON + "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID + "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL + "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON + "panel_crafter/root_panel/red_icon": T.BUTTON + "panel_crafter/root_panel/gamepad_cursor": T.BUTTON + "panel_crafter/flying_item_renderer": T.CUSTOM + hopper_screen: T.SCREEN + dispenser_screen: T.SCREEN + crafter_screen: T.SCREEN + dropper_screen: T.SCREEN +} + +export type ResourcePacksType = { + black_image: T.IMAGE + gray_image: T.IMAGE + yellow_image: T.IMAGE + white_image: T.PANEL + "white_image/border": T.IMAGE + icon_image: T.IMAGE + resource_packs_toggle_button_control: T.PANEL + "resource_packs_toggle_button_control/icon_border": T.PANEL + "resource_packs_toggle_button_control/cycling_icon": T.IMAGE + "resource_packs_toggle_button_control/tab_button_text": T.LABEL + resource_packs_section_toggle_base: T.PANEL + selected_icon_image: T.IMAGE + available_icon_image: T.IMAGE + realms_icon_image: T.IMAGE + unowned_icon_image: T.IMAGE + invalid_icon_image: T.IMAGE + minus_image: T.IMAGE + plus_image: T.IMAGE + minus_text: T.LABEL + plus_text: T.LABEL + store_text: T.LABEL + error_image: T.IMAGE + error_image_hover: T.IMAGE + error_image_panel: T.PANEL + "error_image_panel/default": T.IMAGE + "error_image_panel/hover": T.IMAGE + warning_image: T.IMAGE + warning_image_hover: T.IMAGE + warning_panel: T.PANEL + "warning_panel/default": T.IMAGE + "warning_panel/hover": T.IMAGE + no_error_image: T.IMAGE + no_error_image_hover: T.IMAGE + no_error_panel: T.PANEL + "no_error_panel/default": T.IMAGE + "no_error_panel/hover": T.IMAGE + up_arrow_image: T.IMAGE + down_arrow_image: T.IMAGE + up_arrow_image_hover: T.IMAGE + down_arrow_image_hover: T.IMAGE + up_arrow_panel: T.PANEL + "up_arrow_panel/default": T.IMAGE + "up_arrow_panel/hover": T.IMAGE + up_arrow_wrapper: T.PANEL + "up_arrow_wrapper/down_arrow": T.PANEL + "up_arrow_wrapper/divider_right": T.PANEL + down_arrow_panel: T.PANEL + "down_arrow_panel/default": T.IMAGE + "down_arrow_panel/hover": T.IMAGE + down_arrow_wrapper: T.PANEL + "down_arrow_wrapper/down_arrow": T.PANEL + "down_arrow_wrapper/divider_right": T.PANEL + progress_loading_bars: T.IMAGE + warning_image_wrapper: T.PANEL + "warning_image_wrapper/error_image": T.PANEL + "warning_image_wrapper/warning_image": T.PANEL + "warning_image_wrapper/no_error_panel": T.PANEL + "warning_image_wrapper/progress_loading_bars": T.IMAGE + tooltip_image_wrapper: T.PANEL + "tooltip_image_wrapper/error_image": T.IMAGE + "tooltip_image_wrapper/warning_image": T.IMAGE + options_image: T.IMAGE + options_image_hover: T.IMAGE + options_image_panel: T.PANEL + "options_image_panel/default": T.IMAGE + "options_image_panel/hover": T.PANEL + "options_image_panel/hover/image": T.IMAGE + "options_image_panel/hover/border": T.IMAGE + options_wrapper: T.PANEL + "options_wrapper/options": T.PANEL + "options_wrapper/divider_right": T.PANEL + common_pack_button: T.BUTTON + available_text_panel: T.STACK_PANEL + "available_text_panel/name_panel": T.STACK_PANEL + "available_text_panel/name_panel/available_pack_name_label": T.LABEL + "available_text_panel/name_panel/available_file_size_label": T.LABEL + "available_text_panel/full_panel": T.STACK_PANEL + "available_text_panel/full_panel/description_panel": T.PANEL + "available_text_panel/full_panel/description_panel/available_pack_description_label": T.LABEL + realms_text_panel: T.STACK_PANEL + "realms_text_panel/name_panel": T.STACK_PANEL + "realms_text_panel/name_panel/realms_pack_name_label": T.LABEL + "realms_text_panel/name_panel/realms_file_size_label": T.LABEL + "realms_text_panel/description_panel": T.PANEL + "realms_text_panel/description_panel/realms_pack_description_label": T.LABEL + unowned_text_panel: T.STACK_PANEL + "unowned_text_panel/name_panel": T.STACK_PANEL + "unowned_text_panel/name_panel/unowned_pack_name_label": T.LABEL + "unowned_text_panel/name_panel/unowned_file_size_label": T.LABEL + "unowned_text_panel/description_panel": T.PANEL + "unowned_text_panel/description_panel/unowned_pack_description_label": T.LABEL + selected_text_panel: T.STACK_PANEL + "selected_text_panel/name_panel": T.STACK_PANEL + "selected_text_panel/name_panel/selected_pack_name_label": T.LABEL + "selected_text_panel/name_panel/selected_file_size_label": T.LABEL + "selected_text_panel/name_panel/active_dot_panel": T.PANEL + "selected_text_panel/name_panel/active_dot_panel/active_dot": T.IMAGE + "selected_text_panel/full_panel": T.STACK_PANEL + "selected_text_panel/full_panel/warning_line": T.STACK_PANEL + "selected_text_panel/full_panel/warning_line/warning_text": T.LABEL + "selected_text_panel/full_panel/warning_line/warning_number": T.LABEL + "selected_text_panel/full_panel/error_line": T.STACK_PANEL + "selected_text_panel/full_panel/error_line/error_text": T.LABEL + "selected_text_panel/full_panel/error_line/error_number": T.LABEL + "selected_text_panel/full_panel/expired_line": T.PANEL + "selected_text_panel/full_panel/expired_line/expired_text": T.LABEL + "selected_text_panel/full_panel/description_panel": T.PANEL + "selected_text_panel/full_panel/description_panel/selected_pack_description_label": T.LABEL + invalid_text_panel: T.STACK_PANEL + "invalid_text_panel/full_panel": T.STACK_PANEL + "invalid_text_panel/full_panel/error_line": T.STACK_PANEL + "invalid_text_panel/full_panel/error_line/error_text": T.LABEL + "invalid_text_panel/full_panel/error_line/error_number": T.LABEL + available_pack_button_layout: T.PANEL + "available_pack_button_layout/available_icon_image": T.IMAGE + "available_pack_button_layout/text_panel_small": T.STACK_PANEL + "available_pack_button_layout/text_panel_full": T.STACK_PANEL + "available_pack_button_layout/read_more_button_panel": T.PANEL + "available_pack_button_layout/read_less_button_panel": T.PANEL + available_pack_button_layout_hover: T.PANEL + "available_pack_button_layout_hover/hover_small": T.IMAGE + "available_pack_button_layout_hover/available_icon_image": T.IMAGE + "available_pack_button_layout_hover/text_panel_small": T.STACK_PANEL + "available_pack_button_layout_hover/text_panel_full_hover": T.PANEL + "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL + "available_pack_button_layout_hover/read_more_button_panel": T.PANEL + "available_pack_button_layout_hover/read_less_button_panel": T.PANEL + available_pack_button: T.BUTTON + "available_pack_button/default": T.PANEL + "available_pack_button/pressed": T.PANEL + "available_pack_button/hover": T.PANEL + realms_pack_button_layout: T.PANEL + "realms_pack_button_layout/realms_icon_image": T.IMAGE + "realms_pack_button_layout/text_panel_small": T.STACK_PANEL + "realms_pack_button_layout/text_panel_full": T.STACK_PANEL + "realms_pack_button_layout/read_more_button_panel": T.PANEL + "realms_pack_button_layout/read_less_button_panel": T.PANEL + realms_pack_button_layout_hover: T.PANEL + "realms_pack_button_layout_hover/hover_small": T.IMAGE + "realms_pack_button_layout_hover/realms_icon_image": T.IMAGE + "realms_pack_button_layout_hover/text_panel_small": T.STACK_PANEL + "realms_pack_button_layout_hover/text_panel_full_hover": T.PANEL + "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL + "realms_pack_button_layout_hover/read_more_button_panel": T.PANEL + "realms_pack_button_layout_hover/read_less_button_panel": T.PANEL + realms_pack_button: T.BUTTON + "realms_pack_button/default": T.PANEL + "realms_pack_button/pressed": T.PANEL + "realms_pack_button/hover": T.PANEL + unowned_pack_button_layout: T.PANEL + "unowned_pack_button_layout/unowned_icon_image": T.IMAGE + "unowned_pack_button_layout/text_panel_small": T.STACK_PANEL + "unowned_pack_button_layout/text_panel_full": T.STACK_PANEL + "unowned_pack_button_layout/read_more_button_panel": T.PANEL + "unowned_pack_button_layout/read_less_button_panel": T.PANEL + unowned_pack_button_layout_hover: T.PANEL + "unowned_pack_button_layout_hover/hover_small": T.IMAGE + "unowned_pack_button_layout_hover/unowned_icon_image": T.IMAGE + "unowned_pack_button_layout_hover/text_panel_small": T.STACK_PANEL + "unowned_pack_button_layout_hover/text_panel_full_hover": T.PANEL + "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL + "unowned_pack_button_layout_hover/read_more_button_panel": T.PANEL + "unowned_pack_button_layout_hover/read_less_button_panel": T.PANEL + unowned_pack_button: T.BUTTON + "unowned_pack_button/default": T.PANEL + "unowned_pack_button/pressed": T.PANEL + "unowned_pack_button/hover": T.PANEL + invalid_pack_button_layout: T.PANEL + "invalid_pack_button_layout/invalid_icon_image": T.IMAGE + "invalid_pack_button_layout/text_panel": T.STACK_PANEL + invalid_pack_button_layout_hover: T.PANEL + "invalid_pack_button_layout_hover/hover_small": T.IMAGE + "invalid_pack_button_layout_hover/invalid_icon_image": T.IMAGE + "invalid_pack_button_layout_hover/text_panel_full_hover": T.PANEL + "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": T.STACK_PANEL + invalid_pack_button: T.BUTTON + "invalid_pack_button/default": T.PANEL + "invalid_pack_button/pressed": T.PANEL + "invalid_pack_button/hover": T.PANEL + empty_resource_pack_button: T.PANEL + resource_pack_button_padding: T.PANEL + input_button_panel: T.INPUT_PANEL + "input_button_panel/border_image": T.IMAGE + "input_button_panel/border_image/button_panel": T.STACK_PANEL + "input_button_panel/border_image/button_panel/padding_0": T.PANEL + "input_button_panel/border_image/button_panel/padding_1": T.PANEL + "input_button_panel/border_image/button_panel/padding_2": T.PANEL + "input_button_panel/border_image/button_panel/padding_3": T.PANEL + "input_button_panel/border_image/button_panel/padding_4": T.PANEL + "input_button_panel/background": T.IMAGE + selected_pack_button_layout: T.PANEL + "selected_pack_button_layout/selected_icon_image": T.IMAGE + "selected_pack_button_layout/text_panel_small": T.STACK_PANEL + "selected_pack_button_layout/text_panel_full": T.STACK_PANEL + "selected_pack_button_layout/read_more_button_panel": T.PANEL + "selected_pack_button_layout/read_less_button_panel": T.PANEL + selected_pack_button_layout_hover: T.PANEL + "selected_pack_button_layout_hover/hover_small": T.IMAGE + "selected_pack_button_layout_hover/selected_icon_image": T.IMAGE + "selected_pack_button_layout_hover/text_panel_small": T.STACK_PANEL + "selected_pack_button_layout_hover/text_panel_full_hover": T.PANEL + "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL + "selected_pack_button_layout_hover/read_more_button_panel": T.PANEL + "selected_pack_button_layout_hover/read_less_button_panel": T.PANEL + selected_pack_button: T.BUTTON + "selected_pack_button/default": T.PANEL + "selected_pack_button/pressed": T.PANEL + "selected_pack_button/hover": T.PANEL + selected_pack_movement_button: T.BUTTON + selected_pack_transparent_movement_button: T.BUTTON + selected_pack_minus_button: T.BUTTON + selected_pack_plus_button: T.BUTTON + selected_pack_store_button: T.BUTTON + selected_pack_store_button_fill: T.BUTTON + selected_pack_up_button: T.BUTTON + selected_pack_down_button: T.BUTTON + selected_pack_warning_button: T.BUTTON + selected_pack_options_button: T.BUTTON + white_label: T.LABEL + gray_label: T.LABEL + suggested_content_offers_title_label: T.LABEL + available_packs_title_content: T.STACK_PANEL + realms_packs_title_content: T.STACK_PANEL + unowned_packs_title_content: T.STACK_PANEL + selected_packs_title_content: T.STACK_PANEL + "selected_packs_title_content/selected_packs_title_label": T.LABEL + "selected_packs_title_content/fill_pad": T.PANEL + "selected_packs_title_content/icon_panel": T.PANEL + "selected_packs_title_content/icon_panel/block_icon": T.IMAGE + "selected_packs_title_content/pad_0": T.PANEL + "selected_packs_title_content/count": T.LABEL + "selected_packs_title_content/pad_1": T.PANEL + "selected_packs_title_content/plus_panel": T.PANEL + "selected_packs_title_content/plus_panel/plus": T.IMAGE + "selected_packs_title_content/minus_panel": T.PANEL + "selected_packs_title_content/minus_panel/minus": T.IMAGE + available_packs_title_button: T.BUTTON + realms_packs_title_button: T.BUTTON + unowned_packs_title_button: T.BUTTON + selected_packs_title_button: T.BUTTON + name_label: T.LABEL + size_label: T.LABEL + description_label: T.LABEL + pack_label: T.LABEL + selected_pack_description_label: T.LABEL + available_pack_description_label: T.LABEL + realms_pack_description_label: T.LABEL + unowned_pack_description_label: T.LABEL + selected_pack_name_label: T.LABEL + selected_file_size_label: T.LABEL + available_pack_name_label: T.LABEL + available_file_size_label: T.LABEL + realms_pack_name_label: T.LABEL + realms_file_size_label: T.LABEL + unowned_pack_name_label: T.LABEL + unowned_file_size_label: T.LABEL + invalid_pack_name_label: T.LABEL + invalid_pack_description_label: T.LABEL + available_panel: T.PANEL + "available_panel/selected_packs": T.PANEL + checkbox_visuals: T.PANEL + header_control: T.TOGGLE + "header_control/header_description_stack_panel": T.STACK_PANEL + "header_control/header_description_stack_panel/checkbox_visuals": T.PANEL + "header_control/header_description_stack_panel/buffer_panel": T.PANEL + "header_control/header_description_stack_panel/buffer_panel/label": T.LABEL + addon_header_control: T.PANEL + "addon_header_control/header_description_stack_panel": T.STACK_PANEL + "addon_header_control/header_description_stack_panel/padding_0": T.PANEL + "addon_header_control/header_description_stack_panel/description_center_panel": T.PANEL + "addon_header_control/header_description_stack_panel/description_center_panel/label": T.LABEL + "addon_header_control/header_description_stack_panel/padding_1": T.PANEL + "addon_header_control/header_description_stack_panel/link_center_panel": T.PANEL + "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": T.BUTTON + "addon_header_control/header_description_stack_panel/padding_2": T.PANEL + panel_bg: T.PANEL + "panel_bg/black_background": T.IMAGE + "panel_bg/gray": T.IMAGE + addon_panel_bg: T.PANEL + "addon_panel_bg/black_background": T.IMAGE + "addon_panel_bg/yellow": T.IMAGE + error_panel: T.PANEL + "error_panel/black_background": T.IMAGE + "error_panel/black_background/gray": T.IMAGE + "error_panel/black_background/gray/panel": T.PANEL + "error_panel/black_background/gray/panel/error_label": T.LABEL + selected_stack_panel: T.STACK_PANEL + "selected_stack_panel/world_template_option_lock_panel": T.PANEL + "selected_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL + "selected_stack_panel/top_panel": T.PANEL + "selected_stack_panel/top_panel/panel_bg": T.PANEL + "selected_stack_panel/top_panel/header_control": T.TOGGLE + "selected_stack_panel/offset_0": T.PANEL + "selected_stack_panel/addon_stacking_warning_panel": T.PANEL + "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": T.PANEL + "selected_stack_panel/addon_stacking_warning_panel/header_control": T.PANEL + "selected_stack_panel/offset_1": T.PANEL + "selected_stack_panel/selected_packs_title_panel": T.STACK_PANEL + "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": T.BUTTON + "selected_stack_panel/selected_packs_title_panel/tooltip": T.PANEL + "selected_stack_panel/selected_packs_title_panel/tooltip/button": T.BUTTON + "selected_stack_panel/selected_pack_section": T.STACK_PANEL + "selected_stack_panel/selected_pack_section/offset": T.PANEL + "selected_stack_panel/selected_pack_section/selected_pack_grid": T.STACK_PANEL + "selected_stack_panel/selected_pack_section/default_item": T.PANEL + "selected_stack_panel/selected_pack_section/default_item/icon_image": T.IMAGE + "selected_stack_panel/selected_pack_section/default_item/name_panel": T.PANEL + "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": T.LABEL + "selected_stack_panel/selected_pack_section/default_item/description_panel": T.PANEL + "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": T.LABEL + "selected_stack_panel/selected_pack_section/filler_panel": T.PANEL + "selected_stack_panel/selected_pack_section/filler_panel/description_label": T.LABEL + "selected_stack_panel/offset_2": T.PANEL + "selected_stack_panel/available_packs_title_panel": T.STACK_PANEL + "selected_stack_panel/available_packs_title_panel/available_packs_title_button": T.BUTTON + "selected_stack_panel/available_packs_title_panel/tooltip": T.PANEL + "selected_stack_panel/available_packs_title_panel/tooltip/button": T.BUTTON + "selected_stack_panel/available_packs_section": T.STACK_PANEL + "selected_stack_panel/available_packs_section/offset": T.PANEL + "selected_stack_panel/available_packs_section/empty_panel": T.STACK_PANEL + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": T.PANEL + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": T.LABEL + "selected_stack_panel/available_packs_section/empty_panel/to_store_button": T.BUTTON + "selected_stack_panel/available_packs_section/available_pack_grid": T.STACK_PANEL + "selected_stack_panel/available_packs_section/invalid_pack_grid": T.STACK_PANEL + "selected_stack_panel/offset_3": T.PANEL + "selected_stack_panel/realms_packs_title_button": T.BUTTON + "selected_stack_panel/realms_packs_section": T.STACK_PANEL + "selected_stack_panel/realms_packs_section/offset": T.PANEL + "selected_stack_panel/realms_packs_section/realms_pack_grid": T.STACK_PANEL + "selected_stack_panel/realms_packs_section/offset_4": T.PANEL + "selected_stack_panel/offset_4": T.PANEL + "selected_stack_panel/unowned_packs_title_button": T.BUTTON + "selected_stack_panel/unowned_packs_section": T.STACK_PANEL + "selected_stack_panel/unowned_packs_section/offset": T.PANEL + "selected_stack_panel/unowned_packs_section/unowned_pack_grid": T.STACK_PANEL + "selected_stack_panel/unowned_packs_section/to_store_button": T.BUTTON + "selected_stack_panel/unowned_packs_section/offset_4": T.PANEL + available_stack_panel: T.STACK_PANEL + "available_stack_panel/available_packs_title_button": T.BUTTON + "available_stack_panel/available_pack_grid": T.STACK_PANEL + pack_background: T.PANEL + "pack_background/white_image": T.PANEL + "pack_background/gray_image": T.IMAGE + selected_pack_panel: T.STACK_PANEL + "selected_pack_panel/selected_pack_button": T.BUTTON + "selected_pack_panel/pad_0": T.PANEL + "selected_pack_panel/center_panel": T.PANEL + "selected_pack_panel/center_panel/visibility_panel": T.PANEL + "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": T.INPUT_PANEL + "selected_pack_panel/divider": T.PANEL + "selected_pack_panel/pad_1": T.PANEL + available_pack_panel: T.STACK_PANEL + "available_pack_panel/available_pack_button": T.BUTTON + "available_pack_panel/pad_0": T.PANEL + "available_pack_panel/center_panel": T.PANEL + "available_pack_panel/center_panel/available_pack_direction_buttons": T.INPUT_PANEL + "available_pack_panel/divider": T.PANEL + "available_pack_panel/pad_1": T.PANEL + realms_pack_panel: T.STACK_PANEL + "realms_pack_panel/realms_pack_button": T.BUTTON + "realms_pack_panel/pad_0": T.PANEL + "realms_pack_panel/center_panel": T.PANEL + "realms_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL + "realms_pack_panel/divider": T.PANEL + "realms_pack_panel/pad_1": T.PANEL + unowned_pack_panel: T.STACK_PANEL + "unowned_pack_panel/unowned_pack_button": T.BUTTON + "unowned_pack_panel/pad_0": T.PANEL + "unowned_pack_panel/center_panel": T.PANEL + "unowned_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL + "unowned_pack_panel/divider": T.PANEL + "unowned_pack_panel/pad_1": T.PANEL + invalid_pack_panel: T.STACK_PANEL + "invalid_pack_panel/invalid_pack_button": T.BUTTON + "invalid_pack_panel/pad_0": T.PANEL + "invalid_pack_panel/divider": T.PANEL + "invalid_pack_panel/pad_1": T.PANEL + selected_pack_grid: T.STACK_PANEL + available_pack_grid: T.STACK_PANEL + realms_pack_grid: T.STACK_PANEL + unowned_pack_grid: T.STACK_PANEL + invalid_pack_grid: T.STACK_PANEL +} + +export type SafeZoneType = { + corner_image_common: T.IMAGE + corner_bl: T.IMAGE + corner_br: T.IMAGE + corner_tr: T.IMAGE + corner_tl: T.IMAGE + confirm_button: T.BUTTON + title_text: T.LABEL + instructions_text: T.PANEL + "instructions_text/inner_label": T.LABEL + label_button: T.BUTTON + label_button_hover: T.PANEL + "label_button_hover/hover": T.IMAGE + "label_button_hover/hover/button_hover_text": T.PANEL + content_panel: T.STACK_PANEL + "content_panel/safe_zone_slider_all": T.PANEL + "content_panel/safe_zone_slider_x": T.PANEL + "content_panel/safe_zone_slider_y": T.PANEL + "content_panel/screen_position_slider_x": T.PANEL + "content_panel/screen_position_slider_y": T.PANEL + "content_panel/instruction_text_button": T.BUTTON + "content_panel/instruction_text_button/default": T.PANEL + "content_panel/instruction_text_button/pressed": T.PANEL + "content_panel/instruction_text_button/hover": T.PANEL + safe_zone_screen: T.SCREEN + "safe_zone_screen/safe_zone_bounds_markers": T.PANEL + "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": T.IMAGE + "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": T.IMAGE + "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": T.IMAGE + "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": T.IMAGE + "safe_zone_screen/main_content_panel": T.PANEL + "safe_zone_screen/main_content_panel/common_panel": T.PANEL + "safe_zone_screen/main_content_panel/title_text": T.LABEL + "safe_zone_screen/main_content_panel/scrolling_panel": T.PANEL + "safe_zone_screen/main_content_panel/confirm_button": T.BUTTON +} + +export type StorageMigrationCommonType = { + progress_panel: T.PANEL + "progress_panel/common_panel": T.PANEL + "progress_panel/base_content": T.PANEL + "progress_panel/base_content/progress_title_text": T.LABEL + "progress_panel/base_content/progress_bar_text": T.LABEL + "progress_panel/inside_content": T.STACK_PANEL + "progress_panel/inside_content/size_label": T.LABEL + "progress_panel/inside_content/padding_1": T.PANEL + "progress_panel/inside_content/loading_bar_panel": T.PANEL + "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL + "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE + "progress_panel/inside_content/padding_3": T.PANEL + label: T.LABEL + base_button: T.BUTTON + retry_button: T.BUTTON + go_to_faq_button: T.BUTTON + next_button: T.BUTTON + get_started_button: T.BUTTON + start_transfer_button: T.BUTTON + finished_main_menu_button: T.BUTTON + start_transfer_out_of_space_button: T.BUTTON + continue_out_of_space_button: T.BUTTON + resume_transfer_button: T.BUTTON + exit_button: T.BUTTON + retry_help_button_panel: T.STACK_PANEL + "retry_help_button_panel/retry": T.BUTTON + "retry_help_button_panel/padding": T.PANEL + "retry_help_button_panel/help": T.BUTTON + modal_no_buttons: T.PANEL + modal_one_button: T.PANEL + modal_two_buttons: T.PANEL + base_child_control: T.PANEL + "base_child_control/scrolling_panel": T.PANEL + file_size_description: T.STACK_PANEL + "file_size_description/description": T.LABEL + "file_size_description/padding": T.PANEL + "file_size_description/size_stack": T.STACK_PANEL + "file_size_description/size_stack/file_text": T.LABEL + "file_size_description/size_stack/padding_1": T.PANEL + "file_size_description/size_stack/file_size_total": T.LABEL + "file_size_description/size_stack/padding_2": T.PANEL + "file_size_description/size_stack/file_size_available": T.LABEL + "file_size_description/file_location": T.LABEL + error_icon_and_description: T.STACK_PANEL + "error_icon_and_description/error_image": T.IMAGE + "error_icon_and_description/description": T.LABEL + file_size_description_with_error: T.STACK_PANEL + "file_size_description_with_error/file_size": T.STACK_PANEL + "file_size_description_with_error/padding": T.PANEL + "file_size_description_with_error/error_icon_and_description": T.STACK_PANEL + start_transfer: T.PANEL + start_transfer_content: T.STACK_PANEL + resume_transfer: T.PANEL + resume_transfer_content: T.STACK_PANEL + "resume_transfer_content/file_size": T.STACK_PANEL + transfer_error_out_of_space: T.PANEL + transfer_error_out_of_space_content: T.STACK_PANEL +} + +export type StorageMigrationGenericType = { + storage_migration_generic_screen: T.SCREEN + modal_screen_content: T.PANEL + "modal_screen_content/modal_progress_panel_no_cancel": T.PANEL + "modal_screen_content/popup_dialog_factory": T.FACTORY + start_transfer: T.PANEL + start_transfer_out_of_space: T.PANEL + start_transfer_out_of_space_content: T.STACK_PANEL + "start_transfer_out_of_space_content/base_start_content": T.STACK_PANEL + "start_transfer_out_of_space_content/padding": T.PANEL + "start_transfer_out_of_space_content/error_icon_and_description": T.STACK_PANEL + finished: T.PANEL + finished_content: T.STACK_PANEL + "finished_content/description": T.LABEL + resume_transfer_out_of_space: T.PANEL + resume_transfer_out_of_space_content: T.STACK_PANEL + transfer_error: T.PANEL + transfer_error_content: T.STACK_PANEL + "transfer_error_content/description": T.LABEL + transfer_error_out_of_space: T.PANEL +} + +export type ScoreboardType = { + scoreboard_sidebar_score: T.LABEL + scoreboard_sidebar_player: T.LABEL + scoreboard_sidebar: T.PANEL + "scoreboard_sidebar/main": T.IMAGE + "scoreboard_sidebar/main/displayed_objective": T.LABEL + "scoreboard_sidebar/main/lists": T.PANEL + "scoreboard_sidebar/main/lists/players": T.STACK_PANEL + "scoreboard_sidebar/main/lists/horizontal_padding": T.PANEL + "scoreboard_sidebar/main/lists/scores": T.STACK_PANEL + "scoreboard_sidebar/displayed_objective_background": T.IMAGE + scoreboard_player_list: T.STACK_PANEL + "scoreboard_player_list/vertical_padding_0": T.PANEL + "scoreboard_player_list/social_buttons_panel": T.STACK_PANEL + "scoreboard_player_list/vertical_padding_1": T.PANEL + "scoreboard_player_list/permissions_button": T.BUTTON + "scoreboard_player_list/vertical_padding_2": T.PANEL + "scoreboard_player_list/players_label": T.LABEL + "scoreboard_player_list/vertical_padding_3": T.PANEL + "scoreboard_player_list/scored_players_grid_panel": T.STACK_PANEL + "scoreboard_player_list/vertical_padding_4": T.PANEL + "scoreboard_player_list/unscored_players_grid_panel": T.STACK_PANEL + "scoreboard_player_list/vertical_padding_5": T.PANEL + "scoreboard_player_list/invite_players_button_panel": T.PANEL + "scoreboard_player_list/vertical_padding_6": T.PANEL + "scoreboard_player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL + "scoreboard_player_list/vertical_padding_7": T.PANEL + list_objective_label: T.LABEL + player_rank_panel: T.PANEL + "player_rank_panel/player_rank_bg": T.IMAGE + "player_rank_panel/player_rank_bg/player_rank": T.LABEL + player_icon_panel: T.PANEL + "player_icon_panel/player_icon": T.IMAGE + "player_icon_panel/player_icon/player_panel_black_border": T.IMAGE + "player_icon_panel/permission_icon": T.IMAGE + player_name: T.LABEL + player_score: T.LABEL + player_details: T.STACK_PANEL + "player_details/name_panel": T.PANEL + "player_details/name_panel/name": T.LABEL + "player_details/score_panel": T.PANEL + "player_details/score_panel/score": T.LABEL + player_content: T.STACK_PANEL + "player_content/icon": T.PANEL + "player_content/padding": T.PANEL + "player_content/details": T.STACK_PANEL + base_player_button: T.BUTTON + player_panel: T.STACK_PANEL + "player_panel/rank_base": T.PANEL + "player_panel/rank_base/player_rank": T.PANEL + "player_panel/player_button": T.BUTTON + players_grid_list: T.STACK_PANEL + players_unscored_grid_list: T.STACK_PANEL + players_scored_grid_list: T.STACK_PANEL +} + +export type ScreenshotType = { + screenshot_flash_image: T.IMAGE + screenshot_screen: T.SCREEN + screenshot_screen_content: T.PANEL + "screenshot_screen_content/transparent_background": T.IMAGE + "screenshot_screen_content/screenshot_flash": T.IMAGE +} + +export type SelectWorldType = { + popup_dialog__add_on_common: T.INPUT_PANEL + popup_dialog__add_on_common_no_buttons: T.INPUT_PANEL + "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": T.IMAGE + "popup_dialog__add_on_common_no_buttons/popup_dialog_message": T.LABEL + "popup_dialog__add_on_common_no_buttons/close_button": T.BUTTON + "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": T.PANEL + popup_dialog__add_on_common_two_buttons: T.INPUT_PANEL + "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": T.IMAGE + "popup_dialog__add_on_common_two_buttons/popup_dialog_message": T.LABEL + "popup_dialog__add_on_common_two_buttons/close_button": T.BUTTON + "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": T.PANEL + "popup_dialog__add_on_common_two_buttons/button_copy": T.BUTTON + "popup_dialog__add_on_common_two_buttons/button_continue": T.BUTTON + add_on_button_copy: T.BUTTON + add_on_button_continue: T.BUTTON + add_on_popup_content_panel: T.PANEL + "add_on_popup_content_panel/popup_content": T.UNKNOWN + popup_dialog__activate_add_on: T.INPUT_PANEL + popup_dialog__activate_add_on_select_world: T.INPUT_PANEL + popup_dialog__copy_local_world: T.INPUT_PANEL + popup_dialog__copy_realms_world: T.INPUT_PANEL + copy_local_world_panel: T.STACK_PANEL + "copy_local_world_panel/padding_top": T.PANEL + "copy_local_world_panel/text_box": T.LABEL + "copy_local_world_panel/padding_middle": T.PANEL + "copy_local_world_panel/text_box2": T.LABEL + copy_realms_world_panel: T.STACK_PANEL + "copy_realms_world_panel/padding_top": T.PANEL + "copy_realms_world_panel/text_box": T.LABEL + "copy_realms_world_panel/padding_middle": T.PANEL + "copy_realms_world_panel/text_box2": T.LABEL + new_or_existing_world_panel: T.STACK_PANEL + "new_or_existing_world_panel/padding_left": T.PANEL + "new_or_existing_world_panel/world_icon_existing": T.STACK_PANEL + "new_or_existing_world_panel/padding_middle": T.PANEL + "new_or_existing_world_panel/world_icon_new": T.STACK_PANEL + "new_or_existing_world_panel/padding_right": T.PANEL + world_icon_with_button: T.STACK_PANEL + "world_icon_with_button/padding_top": T.PANEL + "world_icon_with_button/world_icon": T.PANEL + "world_icon_with_button/button": T.BUTTON + "world_icon_with_button/padding_bottom": T.PANEL + world_icon_new: T.IMAGE + "world_icon_new/plus_button": T.IMAGE + world_icon_existing: T.IMAGE + select_world_panel: T.PANEL + select_world_list: T.STACK_PANEL + "select_world_list/realms_world_label": T.LABEL + "select_world_list/realms_world_list": T.GRID + "select_world_list/padding_middle": T.PANEL + "select_world_list/local_world_label": T.LABEL + "select_world_list/local_world_list": T.GRID + "select_world_list/padding_end": T.PANEL + local_world_item_button: T.BUTTON + realms_world_item_button: T.BUTTON + select_world_screen_content: T.PANEL + "select_world_screen_content/popup_dialog_factory": T.FACTORY + select_world_popup_screen: T.SCREEN +} + +export type ServerFormType = { + third_party_server_screen: T.SCREEN + main_screen_content: T.PANEL + "main_screen_content/server_form_factory": T.FACTORY + long_form: T.PANEL + long_form_panel: T.STACK_PANEL + "long_form_panel/scrolling_panel": T.PANEL + long_form_scrolling_content: T.STACK_PANEL + "long_form_scrolling_content/label_offset_panel": T.PANEL + "long_form_scrolling_content/label_offset_panel/main_label": T.LABEL + "long_form_scrolling_content/padding": T.PANEL + "long_form_scrolling_content/wrapping_panel": T.PANEL + "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": T.STACK_PANEL + long_form_dynamic_buttons_panel: T.STACK_PANEL + dynamic_button: T.STACK_PANEL + "dynamic_button/panel_name": T.PANEL + "dynamic_button/panel_name/image": T.IMAGE + "dynamic_button/panel_name/progress": T.IMAGE + "dynamic_button/form_button": T.BUTTON + dynamic_label: T.PANEL + dynamic_header: T.PANEL + custom_form: T.PANEL + custom_form_panel: T.PANEL + generated_contents: T.STACK_PANEL + custom_form_scrolling_content: T.STACK_PANEL + "custom_form_scrolling_content/generated_form": T.STACK_PANEL + "custom_form_scrolling_content/submit_button": T.BUTTON + custom_label: T.PANEL + custom_header: T.PANEL + custom_toggle: T.PANEL + custom_slider: T.PANEL + custom_step_slider: T.PANEL + custom_dropdown: T.PANEL + "custom_dropdown/dropdown": T.PANEL + custom_dropdown_content: T.PANEL + custom_dropdown_radio: T.PANEL + custom_input: T.PANEL +} + +export type SettingsType = { + settings_screen_base: T.SCREEN + screen_world_create: T.SCREEN + screen_template_create: T.SCREEN + screen_world_edit: T.SCREEN + screen_controls_and_settings: T.SCREEN + screen_world_controls_and_settings: T.SCREEN + screen_realm_controls_and_settings: T.SCREEN + screen_realm_member_controls_and_settings: T.SCREEN + screen_realm_settings: T.SCREEN + screen_world_slot_edit: T.SCREEN + screen_realm_manage: T.SCREEN + screen_realm_invite_link_settings: T.SCREEN + selector_stack_panel: T.STACK_PANEL + "selector_stack_panel/spacer_0": T.PANEL + "selector_stack_panel/accessibility_button": T.PANEL + "selector_stack_panel/spacer_1": T.PANEL + "selector_stack_panel/how_to_play_button": T.PANEL + "selector_stack_panel/spacer_01": T.PANEL + "selector_stack_panel/world_selector_pane": T.STACK_PANEL + "selector_stack_panel/realm_selector_pane": T.STACK_PANEL + "selector_stack_panel/controls_and_settings_selector_pane": T.STACK_PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": T.LABEL + "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/controller_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/touch_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": T.LABEL + "selector_stack_panel/controls_and_settings_selector_pane/party_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": T.LABEL + "selector_stack_panel/controls_and_settings_selector_pane/general_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/video_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/sound_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/account_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/language_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/creator_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/preview_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": T.LABEL + "selector_stack_panel/controls_and_settings_selector_pane/debug_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": T.PANEL + "selector_stack_panel/controls_and_settings_selector_pane/automation_button": T.PANEL + "selector_stack_panel/spacer_24": T.PANEL + "selector_stack_panel/addons_selector_panel": T.STACK_PANEL + "selector_stack_panel/realms_invite_link_settings_pane": T.STACK_PANEL + section_content_panels: T.PANEL + "section_content_panels/realm_invite_link_settings_content_panels": T.PANEL + "section_content_panels/world_sections": T.STACK_PANEL + "section_content_panels/world_sections/game_section": T.STACK_PANEL + "section_content_panels/world_sections/classroom_section_panel": T.PANEL + "section_content_panels/world_sections/classroom_section_panel/classroom_section": T.UNKNOWN + "section_content_panels/world_sections/server_section": T.STACK_PANEL + "section_content_panels/world_sections/multiplayer_section": T.STACK_PANEL + "section_content_panels/world_sections/edu_cloud_section": T.STACK_PANEL + "section_content_panels/world_sections/debug_section": T.STACK_PANEL + "section_content_panels/packs_sections": T.STACK_PANEL + "section_content_panels/packs_sections/level_texture_pack_section": T.STACK_PANEL + "section_content_panels/packs_sections/addon_section": T.STACK_PANEL + "section_content_panels/section_content_panels": T.PANEL + "section_content_panels/general_and_controls_sections": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/accessibility_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/controller_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/touch_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/party_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/general_tab_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/account_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/account_section_ore_ui": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/global_texture_pack_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/storage_management_header": T.PANEL + "section_content_panels/general_and_controls_sections/storage_management_section": T.PANEL + "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/creator_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/video_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/video_section_ore_ui": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": T.PANEL + "section_content_panels/general_and_controls_sections/view_subscriptions_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/sound_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/sound_section_ore_ui": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/language_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/language_section_ore_ui": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/preview_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/debug_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/ui_debug_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/edu_debug_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/marketplace_debug_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/gatherings_debug_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/flighting_debug_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/realms_debug_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/automation_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/discovery_debug_section": T.STACK_PANEL + "section_content_panels/general_and_controls_sections/how_to_play_section": T.STACK_PANEL + section_header_panels: T.PANEL + "section_header_panels/world_sections": T.STACK_PANEL + "section_header_panels/general_and_controls_sections": T.STACK_PANEL + section_footer_panels: T.PANEL + "section_footer_panels/world_sections": T.STACK_PANEL + "section_footer_panels/general_and_controls_sections": T.STACK_PANEL + "section_footer_panels/general_and_controls_sections/storage_management_footer": T.PANEL +} + +export type ControlsSectionType = { + binding_button: T.BUTTON + binding_button_content: T.PANEL + "binding_button_content/default_label": T.LABEL + image_binding_button: T.BUTTON + image_binding_button_content: T.PANEL + "image_binding_button_content/base_icon_image": T.IMAGE + "image_binding_button_content/default_label": T.LABEL + arrow_reset: T.IMAGE + reset_binding_button: T.BUTTON + keymapping_item_parent: T.STACK_PANEL + "keymapping_item_parent/keymapping_row": T.STACK_PANEL + keymapping_item: T.STACK_PANEL + "keymapping_item/option_info_label_control": T.IMAGE + "keymapping_item/option_info_label_control/keymapping_label_control": T.LABEL + "keymapping_item/keymapping_button_0": T.BUTTON + "keymapping_item/keymapping_button_1": T.BUTTON + keymapping_grid: T.GRID + full_keymapping_grid: T.GRID + gamepad_mapping_item: T.STACK_PANEL + "gamepad_mapping_item/option_info_label_control": T.IMAGE + "gamepad_mapping_item/option_info_label_control/keymapping_label_control": T.LABEL + "gamepad_mapping_item/keymapping_button_0": T.BUTTON + "gamepad_mapping_item/keymapping_button_1": T.BUTTON + gamepad_mapping_grid: T.GRID + keyboard_and_mouse_button: T.PANEL + keyboard_and_mouse_section_ore_ui: T.STACK_PANEL + "keyboard_and_mouse_section_ore_ui/spacer_0": T.PANEL + "keyboard_and_mouse_section_ore_ui/generic_label": T.LABEL + "keyboard_and_mouse_section_ore_ui/spacer_1": T.PANEL + "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": T.LABEL + keyboard_and_mouse_section: T.STACK_PANEL + "keyboard_and_mouse_section/option_slider_0": T.PANEL + "keyboard_and_mouse_section/option_slider_damen": T.PANEL + "keyboard_and_mouse_section/option_toggle_0": T.PANEL + "keyboard_and_mouse_section/option_toggle_1": T.PANEL + "keyboard_and_mouse_section/option_toggle_2": T.PANEL + "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": T.PANEL + "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": T.PANEL + "keyboard_and_mouse_section/option_toggle_show_learning_prompts": T.PANEL + "keyboard_and_mouse_section/keyboard_section": T.STACK_PANEL + "keyboard_and_mouse_section/keyboard_section/option_group_label": T.PANEL + "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": T.GRID + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": T.STACK_PANEL + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": T.PANEL + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": T.GRID + "keyboard_and_mouse_section/full_keyboard_section": T.STACK_PANEL + "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": T.PANEL + "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": T.PANEL + "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": T.GRID + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": T.STACK_PANEL + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": T.PANEL + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": T.GRID + "keyboard_and_mouse_section/reset_button": T.BUTTON + controller_button: T.PANEL + controller_section: T.STACK_PANEL + "controller_section/option_slider_0": T.PANEL + "controller_section/option_slider_damen": T.PANEL + "controller_section/option_toggle_0": T.PANEL + "controller_section/option_toggle_1": T.PANEL + "controller_section/option_toggle9": T.PANEL + "controller_section/option_toggle10": T.PANEL + "controller_section/option_toggle_11": T.PANEL + "controller_section/gamepad_swap_ab": T.PANEL + "controller_section/gamepad_swap_xy": T.PANEL + "controller_section/gamepad_cursor_sensitivity_option_slider": T.PANEL + "controller_section/option_toggle_3": T.PANEL + "controller_section/option_toggle_4": T.PANEL + "controller_section/option_toggle_5": T.PANEL + "controller_section/option_group_label": T.PANEL + "controller_section/gamepad_keymapping_grid": T.GRID + "controller_section/reset_button": T.BUTTON + touch_button: T.PANEL + touch_section: T.STACK_PANEL + "touch_section/common_touch_settings": T.STACK_PANEL + "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": T.PANEL + "touch_section/common_touch_settings/control_scheme_section": T.STACK_PANEL + "touch_section/common_touch_settings/control_scheme_section/section_label": T.LABEL + "touch_section/common_touch_settings/control_scheme_section/padding_0": T.PANEL + "touch_section/common_touch_settings/control_scheme_section/image_and_button": T.STACK_PANEL + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": T.PANEL + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": T.IMAGE + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": T.IMAGE + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": T.IMAGE + "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": T.PANEL + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": T.PANEL + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": T.STACK_PANEL + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": T.LABEL + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": T.LABEL + "touch_section/common_touch_settings/control_scheme_section/padding_1": T.PANEL + "touch_section/common_touch_settings/control_scheme_section/select_control_mode": T.BUTTON + "touch_section/common_touch_settings/control_scheme_section/padding_2": T.PANEL + "touch_section/common_touch_settings/modify_control_layout_section": T.STACK_PANEL + "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": T.BUTTON + "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": T.PANEL + "touch_section/common_touch_settings/modify_control_layout_section/padding": T.PANEL + "touch_section/common_touch_settings/option_slider_0": T.PANEL + "touch_section/common_touch_settings/option_slider_damen": T.PANEL + "touch_section/common_touch_settings/option_show_action_button": T.PANEL + "touch_section/common_touch_settings/option_show_block_select_button": T.PANEL + "touch_section/common_touch_settings/option_toggle_left_handed": T.PANEL + "touch_section/common_touch_settings/option_toggle_auto_jump": T.PANEL + "touch_section/common_touch_settings/option_bool_sprint_on_movement": T.PANEL + "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": T.PANEL + "touch_section/common_touch_settings/joystick_visibility_dropdown": T.PANEL + "touch_section/common_touch_settings/top_button_scale": T.PANEL + "touch_section/common_touch_settings/sneak_dropdown": T.PANEL + "touch_section/common_touch_settings/option_toggle_destroy_vibration": T.PANEL + "touch_section/common_touch_settings/option_toggle_split_vibration": T.PANEL + "touch_section/common_touch_settings/option_creative_delayed_block_breaking": T.PANEL + "touch_section/common_touch_settings/option_toggle_invert_y": T.PANEL + "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": T.PANEL + "touch_section/common_touch_settings/option_toggle_use_touchpad": T.PANEL + "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": T.PANEL + "touch_section/common_touch_settings/hotbar_only_touch_toggle": T.PANEL + "touch_section/reset_button": T.BUTTON + joystick_visibility_dropdown_content: T.PANEL + top_button_scale_dropdown_content: T.PANEL + sneak_dropdown_content: T.PANEL + customize_tooltip_option_image: T.IMAGE + customize_tooltip_option_popup: T.IMAGE + customize_tooltip_option: T.PANEL + "customize_tooltip_option/customize_tooltip_option_image": T.IMAGE + "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": T.INPUT_PANEL + "customize_tooltip_option/customize_tooltip_option_popup": T.IMAGE +} + +export type GeneralSectionType = { + general_button: T.PANEL + general_tab_section_ore_ui: T.STACK_PANEL + "general_tab_section_ore_ui/spacer_0": T.PANEL + "general_tab_section_ore_ui/generic_label": T.LABEL + "general_tab_section_ore_ui/spacer_1": T.PANEL + "general_tab_section_ore_ui/gamepad_helper_label": T.LABEL + general_tab_section: T.STACK_PANEL + "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": T.PANEL + "general_tab_section/network_label_header": T.LABEL + "general_tab_section/paddingCrossPlatform": T.PANEL + "general_tab_section/cross_platform_enabled_toggle": T.PANEL + "general_tab_section/paddingCellularData": T.PANEL + "general_tab_section/mobile_data_option_toggle": T.PANEL + "general_tab_section/paddingWebSockets": T.PANEL + "general_tab_section/websockets_enabled_toggle": T.PANEL + "general_tab_section/websocket_encryption_toggle": T.PANEL + "general_tab_section/paddingAutoUpdate": T.PANEL + "general_tab_section/auto_update_mode_dropdown": T.PANEL + "general_tab_section/paddingAutoUpdateToggle": T.PANEL + "general_tab_section/auto_update_enabled_toggle": T.PANEL + "general_tab_section/paddingGameTipsFeature": T.PANEL + "general_tab_section/tutorial_toggle": T.PANEL + "general_tab_section/tutorial_animation_toggle": T.PANEL + "general_tab_section/tutorial_restart_button": T.BUTTON + "general_tab_section/paddingTrustedSkins": T.PANEL + "general_tab_section/only_allow_trusted_skins_toggle": T.PANEL + "general_tab_section/paddingFilterProfanity": T.PANEL + "general_tab_section/filter_profanity_toggle": T.PANEL + "general_tab_section/filter_profanity_toggle/option_generic_core": T.STACK_PANEL + "general_tab_section/pause_label_header": T.LABEL + "general_tab_section/paddingPauseFeature": T.PANEL + "general_tab_section/pause_toggle": T.PANEL + "general_tab_section/paddingLinkEduSupport": T.PANEL + "general_tab_section/link_button": T.BUTTON + "general_tab_section/paddingDividerSustainability": T.PANEL + "general_tab_section/ecomode_label_header": T.LABEL + "general_tab_section/paddingEcoMode": T.PANEL + "general_tab_section/ecomode_enabled_toggle": T.PANEL + "general_tab_section/paddingDividerTermsCreditsAttribution": T.PANEL + "general_tab_section/dividerTermsCreditsAttribution": T.PANEL + "general_tab_section/dividerTermsCreditsAttribution/section_divider": T.IMAGE + "general_tab_section/paddingDividerTermsCreditsAttributionAfter": T.PANEL + "general_tab_section/paddingTermsNConditions": T.PANEL + "general_tab_section/terms_and_conditions_link_button": T.BUTTON + "general_tab_section/paddingCreditsButton": T.PANEL + "general_tab_section/credits_button": T.BUTTON + "general_tab_section/paddingAttribution": T.PANEL + "general_tab_section/attribution_link_button": T.BUTTON + "general_tab_section/paddingfeedback": T.PANEL + "general_tab_section/feedback_link_button": T.BUTTON + "general_tab_section/paddingLicenses": T.PANEL + "general_tab_section/dividerLicenses": T.PANEL + "general_tab_section/dividerLicenses/section_divider": T.IMAGE + "general_tab_section/paddingLicensesAfter": T.PANEL + "general_tab_section/paddingLicensesHeader": T.PANEL + "general_tab_section/licenses_label_header": T.LABEL + "general_tab_section/paddingLicensedContent": T.PANEL + "general_tab_section/licensed_content_link_button": T.BUTTON + "general_tab_section/paddingFontLicense": T.PANEL + "general_tab_section/font_license_popup_button": T.BUTTON + "general_tab_section/third_party_copyright_info_label_panel": T.STACK_PANEL + "general_tab_section/third_party_copyright_info_label_panel/spacer_0": T.PANEL + "general_tab_section/third_party_copyright_info_label_panel/copyright_label": T.LABEL + "general_tab_section/third_party_copyright_info_label_panel/spacer_1": T.PANEL + "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": T.IMAGE + "general_tab_section/paddingSectionDividerContentLog": T.PANEL + "general_tab_section/build_info_label_panel": T.BUTTON + "general_tab_section/build_info_label_panel/build_info_label": T.LABEL + "general_tab_section/paddingSectionDividerBuildInfo": T.PANEL + "general_tab_section/treatment_ids_label": T.LABEL + account_section_ore_ui: T.STACK_PANEL + "account_section_ore_ui/spacer_0": T.PANEL + "account_section_ore_ui/generic_label": T.LABEL + "account_section_ore_ui/spacer_1": T.PANEL + "account_section_ore_ui/gamepad_helper_label": T.LABEL + account_button: T.PANEL + view_account_errors_button_content: T.LABEL + switch_accounts_button_content: T.STACK_PANEL + "switch_accounts_button_content/padded_icon": T.PANEL + "switch_accounts_button_content/padded_icon/icon": T.IMAGE + "switch_accounts_button_content/padded_label": T.PANEL + "switch_accounts_button_content/padded_label/label": T.LABEL + sign_out_button_content: T.STACK_PANEL + "sign_out_button_content/padded_label": T.PANEL + "sign_out_button_content/padded_label/label": T.LABEL + switch_accounts_panel: T.STACK_PANEL + "switch_accounts_panel/name_label": T.LABEL + "switch_accounts_panel/paddingSwitchAccounts": T.PANEL + "switch_accounts_panel/switch_accounts": T.BUTTON + sign_out_panel: T.STACK_PANEL + "sign_out_panel/sign_out": T.BUTTON + sign_out_fail_popup: T.INPUT_PANEL + sign_out_fail_body_panel: T.PANEL + sign_out_fail_body_content_stack: T.STACK_PANEL + "sign_out_fail_body_content_stack/body_text_centering_panel1": T.PANEL + "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": T.LABEL + "sign_out_fail_body_content_stack/body_text_centering_panel2": T.PANEL + "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": T.LABEL + "sign_out_fail_body_content_stack/padding1": T.PANEL + "sign_out_fail_body_content_stack/learn_more_button": T.BUTTON + "sign_out_fail_body_content_stack/padding2": T.PANEL + "sign_out_fail_body_content_stack/close_button": T.BUTTON + account_section: T.STACK_PANEL + "account_section/use_edu_remember_me": T.PANEL + "account_section/paddingUseSSO": T.PANEL + "account_section/switch_accounts": T.STACK_PANEL + "account_section/sign_out": T.STACK_PANEL + "account_section/paddingNameControls": T.PANEL + "account_section/name_controls": T.PANEL + "account_section/paddingSignInControls": T.PANEL + "account_section/signin_controls": T.PANEL + "account_section/paddingGamerTagControls": T.PANEL + "account_section/gamertag_controls": T.PANEL + "account_section/paddingClearMSAToken": T.PANEL + "account_section/clear_msa_token": T.PANEL + "account_section/clear_msa_token/clear_msa_token_button": T.BUTTON + "account_section/paddingUnlinkMSAAccount": T.PANEL + "account_section/unlink_msa_account": T.BUTTON + "account_section/unlink_msa_account_nx": T.BUTTON + "account_section/paddingDeleteAccount": T.PANEL + "account_section/delete_account": T.BUTTON + "account_section/paddingUseRemoteConnect": T.PANEL + "account_section/remote_connect_toggle": T.PANEL + "account_section/paddingInfoLabels": T.PANEL + "account_section/account_info_buttom": T.BUTTON + "account_section/account_info_buttom/account_info_label": T.LABEL + name_controls: T.STACK_PANEL + "name_controls/option_text_edit_control": T.EDIT_BOX + signin_controls: T.STACK_PANEL + "signin_controls/sign_in": T.PANEL + "signin_controls/sign_in/action_button": T.BUTTON + signin_subscription: T.STACK_PANEL + "signin_subscription/sign_in": T.PANEL + "signin_subscription/sign_in/please_signin_label": T.LABEL + gamertag_controls: T.STACK_PANEL + "gamertag_controls/gamertag_label": T.STACK_PANEL + "gamertag_controls/gamertag_label/panel_descriptor": T.PANEL + "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": T.LABEL + "gamertag_controls/gamertag_label/spacer": T.PANEL + "gamertag_controls/gamertag_label/gamerpic": T.CUSTOM + "gamertag_controls/gamertag_label/spacer_2": T.PANEL + "gamertag_controls/gamertag_label/panel_gamertag": T.PANEL + "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": T.LABEL + "gamertag_controls/paddingXboxAccountButtons": T.PANEL + "gamertag_controls/xboxlive_deep_link_buttons": T.PANEL + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": T.BUTTON + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": T.BUTTON + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": T.BUTTON + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": T.BUTTON + "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": T.PANEL + "gamertag_controls/xboxlive_deep_link_buttons/link_button": T.BUTTON + "gamertag_controls/paddingSignOut": T.PANEL + "gamertag_controls/realms_invites": T.PANEL + "gamertag_controls/realms_invites/check_realms_invites_button": T.BUTTON + "gamertag_controls/sign_out": T.PANEL + "gamertag_controls/sign_out/action_button": T.BUTTON + "gamertag_controls/offline_token_authorization": T.PANEL + "gamertag_controls/offline_token_authorization/request_psn_authorization_button": T.BUTTON + auto_update_mode_dropdown_content: T.PANEL + global_texture_pack_button: T.PANEL + global_texture_pack_section: T.STACK_PANEL + storage_management_button: T.PANEL + storage_management_section: T.PANEL + storage_management_header: T.PANEL + storage_management_footer: T.PANEL + edu_cloud_storage_button: T.PANEL + edu_cloud_storage_section: T.STACK_PANEL + "edu_cloud_storage_section/spacing1": T.PANEL + "edu_cloud_storage_section/edu_cloud_backup_toggle": T.PANEL + "edu_cloud_storage_section/spacing2": T.PANEL + "edu_cloud_storage_section/body_wrapper_panel": T.PANEL + "edu_cloud_storage_section/body_wrapper_panel/tts_border": T.BUTTON + "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": T.LABEL + "edu_cloud_storage_section/spacing3": T.PANEL + "edu_cloud_storage_section/edu_cloud_onedrive_button": T.BUTTON + "edu_cloud_storage_section/spacing4": T.PANEL + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": T.STACK_PANEL + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": T.BUTTON + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": T.PANEL + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": T.IMAGE + edu_cloud_onedrive_button_content: T.STACK_PANEL + "edu_cloud_onedrive_button_content/padded_label": T.PANEL + "edu_cloud_onedrive_button_content/padded_label/label": T.LABEL + "edu_cloud_onedrive_button_content/padded_icon": T.PANEL + "edu_cloud_onedrive_button_content/padded_icon/icon": T.IMAGE + edu_cloud_onedrive_error_popup: T.INPUT_PANEL + edu_cloud_onedrive_error_content: T.STACK_PANEL + "edu_cloud_onedrive_error_content/body_text_centering_panel2": T.PANEL + "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": T.LABEL + "edu_cloud_onedrive_error_content/padding2": T.PANEL + "edu_cloud_onedrive_error_content/learn_more_button": T.BUTTON + "edu_cloud_onedrive_error_content/padding3": T.PANEL + "edu_cloud_onedrive_error_content/ok_button": T.BUTTON + creator_button: T.PANEL + editor_toggle_panel: T.STACK_PANEL + "editor_toggle_panel/editor_confirmation_panel": T.STACK_PANEL + "editor_toggle_panel/editor_confirmation_panel/editor_active_label": T.LABEL + "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": T.PANEL + "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": T.LABEL + "editor_toggle_panel/editor_toggle_spacer": T.PANEL + "editor_toggle_panel/editor_image_panel": T.STACK_PANEL + "editor_toggle_panel/editor_image_panel/editor_icon": T.IMAGE + creator_toggles_panel: T.STACK_PANEL + "creator_toggles_panel/section_panel_1": T.PANEL + "creator_toggles_panel/section_panel_1/section_divider": T.IMAGE + "creator_toggles_panel/copy_coordinate_section_stack_panel": T.STACK_PANEL + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": T.LABEL + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": T.PANEL + "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": T.PANEL + "creator_toggles_panel/creator_setting_button": T.STACK_PANEL + "creator_toggles_panel/creator_setting_button/go_to_keybinds": T.BUTTON + "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": T.PANEL + debugger_toggles_panel: T.STACK_PANEL + "debugger_toggles_panel/section_panel_1": T.PANEL + "debugger_toggles_panel/section_panel_1/section_divider": T.IMAGE + "debugger_toggles_panel/primary_panel": T.STACK_PANEL + "debugger_toggles_panel/primary_panel/heading": T.LABEL + "debugger_toggles_panel/primary_panel/spacer": T.PANEL + "debugger_toggles_panel/primary_panel/passcode_required_toggle": T.PANEL + "debugger_toggles_panel/primary_panel/passcode_input": T.PANEL + "debugger_toggles_panel/primary_panel/auto_attach_toggle": T.PANEL + "debugger_toggles_panel/primary_panel/all_options_panel": T.STACK_PANEL + "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": T.PANEL + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": T.STACK_PANEL + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": T.PANEL + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": T.PANEL + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": T.PANEL + "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": T.PANEL + diagnostics_toggles_panel: T.STACK_PANEL + "diagnostics_toggles_panel/section_panel_1": T.PANEL + "diagnostics_toggles_panel/section_panel_1/section_divider": T.IMAGE + "diagnostics_toggles_panel/primary_panel": T.STACK_PANEL + "diagnostics_toggles_panel/primary_panel/heading": T.LABEL + "diagnostics_toggles_panel/primary_panel/spacer": T.PANEL + "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": T.PANEL + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": T.STACK_PANEL + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": T.BUTTON + watchdog_toggles_panel: T.STACK_PANEL + "watchdog_toggles_panel/section_panel_1": T.PANEL + "watchdog_toggles_panel/section_panel_1/section_divider": T.IMAGE + "watchdog_toggles_panel/primary_panel": T.STACK_PANEL + "watchdog_toggles_panel/primary_panel/heading": T.LABEL + "watchdog_toggles_panel/primary_panel/spacer": T.PANEL + "watchdog_toggles_panel/primary_panel/hang_threshold_slider": T.PANEL + "watchdog_toggles_panel/primary_panel/spike_warning_toggle": T.PANEL + "watchdog_toggles_panel/primary_panel/spike_threshold_slider": T.PANEL + "watchdog_toggles_panel/primary_panel/slow_warning_toggle": T.PANEL + "watchdog_toggles_panel/primary_panel/slow_threshold_slider": T.PANEL + device_info_toggles_panel: T.STACK_PANEL + "device_info_toggles_panel/section_panel_1": T.PANEL + "device_info_toggles_panel/section_panel_1/section_divider": T.IMAGE + "device_info_toggles_panel/primary_panel": T.STACK_PANEL + "device_info_toggles_panel/primary_panel/heading": T.LABEL + "device_info_toggles_panel/primary_panel/spacer": T.PANEL + "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": T.PANEL + "device_info_toggles_panel/device_info_memory_tier_dropdown": T.PANEL + content_memory_tier_dropdown_content: T.PANEL + content_log_gui_level_content: T.PANEL + content_log_panel: T.STACK_PANEL + "content_log_panel/section_panel_1": T.PANEL + "content_log_panel/section_panel_1/section_divider": T.IMAGE + "content_log_panel/content_log_section_label": T.LABEL + "content_log_panel/content_log_section_label_spacer": T.PANEL + "content_log_panel/option_content_file_log": T.PANEL + "content_log_panel/option_content_gui_log": T.PANEL + "content_log_panel/option_content_gui_log_show_on_errors": T.PANEL + "content_log_panel/option_content_log_gui_level": T.PANEL + "content_log_panel/content_log_buttons": T.STACK_PANEL + "content_log_panel/content_log_buttons/open_content_log_history": T.BUTTON + "content_log_panel/content_log_buttons/content_log_section_label_spacer": T.PANEL + "content_log_panel/content_log_buttons/clear_content_log_files": T.BUTTON + "content_log_panel/content_log_section_label_spacer_2": T.PANEL + "content_log_panel/content_log_location_label_header": T.LABEL + "content_log_panel/content_log_location_label": T.LABEL + creator_section: T.STACK_PANEL + "creator_section/editor_toggle": T.STACK_PANEL + "creator_section/creator_toggles": T.STACK_PANEL + "creator_section/debugger_toggles_panel": T.STACK_PANEL + "creator_section/diagnostics_toggle_panel": T.STACK_PANEL + "creator_section/watchdog_toggles_panel": T.STACK_PANEL + "creator_section/device_info_toggles_panel": T.STACK_PANEL + "creator_section/content_log_panel": T.STACK_PANEL + video_button: T.PANEL + advanced_video_options_toggle: T.TOGGLE + video_section_ore_ui: T.STACK_PANEL + "video_section_ore_ui/spacer_0": T.PANEL + "video_section_ore_ui/generic_label": T.LABEL + "video_section_ore_ui/spacer_1": T.PANEL + "video_section_ore_ui/gamepad_helper_label": T.LABEL + video_menu_slider_step_progress: T.IMAGE + video_menu_slider_progress: T.IMAGE + video_menu_slider_bar_default: T.IMAGE + video_menu_customization_slider_control: T.PANEL + "video_menu_customization_slider_control/slider": T.SLIDER + "video_menu_customization_slider_control/slider/slider_box": T.SLIDER_BOX + "video_menu_customization_slider_control/slider/slider_bar_default": T.IMAGE + "video_menu_customization_slider_control/slider/slider_bar_hover": T.IMAGE + video_menu_customization_option_slider: T.PANEL + video_section: T.STACK_PANEL + "video_section/advanced_graphics_options_panel": T.STACK_PANEL + "video_section/advanced_graphics_options_panel/graphics_mode": T.PANEL + "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": T.PANEL + "video_section/advanced_graphics_options_panel/spacer_0": T.PANEL + "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": T.BUTTON + "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": T.STACK_PANEL + "video_section/spacer_1": T.PANEL + "video_section/graphics_api_dropdown": T.PANEL + "video_section/raytracing_render_distance_slider": T.PANEL + "video_section/raytracing_render_distance_slider/option_generic_core": T.STACK_PANEL + "video_section/deferred_render_distance_slider": T.PANEL + "video_section/deferred_render_distance_slider/option_generic_core": T.STACK_PANEL + "video_section/render_distance_slider": T.PANEL + "video_section/render_distance_slider/render_distance_warning": T.PANEL + "video_section/render_distance_slider/option_generic_core": T.STACK_PANEL + "video_section/render_distance_warning_text": T.PANEL + "video_section/render_distance_warning_text/render_distance_popup": T.IMAGE + "video_section/spacer_2": T.PANEL + "video_section/brightness_slider": T.PANEL + "video_section/spacer_3": T.PANEL + "video_section/perspective_dropdown": T.PANEL + "video_section/spacer_4": T.PANEL + "video_section/fullscreen_toggle": T.PANEL + "video_section/spacer_5": T.PANEL + "video_section/option_toggle_hidehand": T.PANEL + "video_section/spacer_6": T.PANEL + "video_section/hide_paperdoll_toggle": T.PANEL + "video_section/spacer_7": T.PANEL + "video_section/option_toggle_hidehud": T.PANEL + "video_section/spacer_8": T.PANEL + "video_section/option_toggle_screen_animations": T.PANEL + "video_section/spacer_9": T.PANEL + "video_section/hud_opacity_slider": T.PANEL + "video_section/spacer_10": T.PANEL + "video_section/splitscreen_hud_opacity_slider": T.PANEL + "video_section/spacer_11": T.PANEL + "video_section/setup_safe_zone": T.PANEL + "video_section/setup_safe_zone/action_button": T.BUTTON + "video_section/spacer_12": T.PANEL + "video_section/fov_slider": T.PANEL + "video_section/spacer_13": T.PANEL + "video_section/split_screen_dropdown": T.PANEL + "video_section/spacer_14": T.PANEL + "video_section/auto_save_icon_toggle": T.PANEL + "video_section/spacer_15": T.PANEL + "video_section/outline_selection_toggle": T.PANEL + "video_section/spacer_16": T.PANEL + "video_section/player_names_toggle": T.PANEL + "video_section/spacer_17": T.PANEL + "video_section/splitscreen_player_names_toggle": T.PANEL + "video_section/spacer_18": T.PANEL + "video_section/view_bobbing_toggle": T.PANEL + "video_section/spacer_19": T.PANEL + "video_section/camera_shake_toggle": T.PANEL + "video_section/spacer_20": T.PANEL + "video_section/fancy_leaves_toggle": T.PANEL + "video_section/spacer_21": T.PANEL + "video_section/fancy_bubbles_toggle": T.PANEL + "video_section/spacer_22": T.PANEL + "video_section/render_clouds_toggle": T.PANEL + "video_section/spacer_23": T.PANEL + "video_section/fancy_clouds_toggle": T.PANEL + "video_section/spacer_24": T.PANEL + "video_section/smooth_lighting_toggle": T.PANEL + "video_section/spacer_25": T.PANEL + "video_section/rendering_profile_option_slider": T.PANEL + "video_section/field_of_view_toggle": T.PANEL + "video_section/spacer_26": T.PANEL + "video_section/damage_bob_option_slider": T.PANEL + "video_section/spacer_26.5": T.PANEL + "video_section/super_fancy_panel": T.PANEL + "video_section/super_fancy_panel/super_fancy_section": T.IMAGE + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": T.STACK_PANEL + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": T.PANEL + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": T.PANEL + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": T.PANEL + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": T.PANEL + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": T.PANEL + "video_section/ui_profile_dropdown": T.PANEL + "video_section/spacer_27": T.PANEL + "video_section/gui_scale_slider": T.PANEL + "video_section/gui_scale_slider/option_generic_core": T.STACK_PANEL + "video_section/spacer_28": T.PANEL + "video_section/gui_accessibility_scaling_toggle": T.PANEL + "video_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL + "video_section/spacer_29": T.PANEL + "video_section/option_toggle_improved_input_response": T.PANEL + "video_section/option_toggle_improved_input_response/option_generic_core": T.STACK_PANEL + "video_section/spacer_30": T.PANEL + "video_section/frame_pacing_toggle": T.PANEL + "video_section/frame_pacing_toggle/option_generic_core": T.STACK_PANEL + "video_section/spacer_31": T.PANEL + "video_section/graphics_mode_switch_toggle": T.PANEL + "video_section/spacer_32": T.PANEL + "video_section/upscaling_toggle": T.PANEL + "video_section/spacer_33": T.PANEL + "video_section/max_framerate_slider": T.PANEL + "video_section/spacer_34": T.PANEL + "video_section/msaa_slider": T.PANEL + "video_section/spacer_35": T.PANEL + "video_section/texel_anti_aliasing_toggle": T.PANEL + "video_section/spacer_36": T.PANEL + "video_section/reset_button": T.BUTTON + max_framerate_slider: T.PANEL + "max_framerate_slider/option_generic_core": T.STACK_PANEL + msaa_slider: T.PANEL + upscaling_toggle: T.PANEL + "upscaling_toggle/option_generic_core": T.STACK_PANEL + render_distance_warning_image: T.IMAGE + render_distance_warning: T.PANEL + "render_distance_warning/render_distance_warning_image": T.IMAGE + ui_profile_dropdown_content: T.PANEL + split_screen_dropdown_content: T.PANEL + third_person_dropdown_content: T.PANEL + toast_notification_duration_dropdown_content: T.PANEL + chat_message_duration_dropdown_content: T.PANEL + file_storage_location_content: T.PANEL + background: T.PANEL + "background/fill": T.IMAGE + "background/border": T.IMAGE + left_button_label: T.LABEL + right_button_label: T.LABEL + realms_button_panel: T.STACK_PANEL + "realms_button_panel/pad_0": T.PANEL + "realms_button_panel/left_button_panel": T.PANEL + "realms_button_panel/left_button_panel/left_button": T.BUTTON + "realms_button_panel/left_button_panel/left_button_loading": T.PANEL + "realms_button_panel/pad_1": T.PANEL + "realms_button_panel/right_button": T.BUTTON + "realms_button_panel/pad_2": T.PANEL + consumable_not_extendable: T.PANEL + "consumable_not_extendable/panel_content": T.STACK_PANEL + "consumable_not_extendable/panel_content/padded_icon_0": T.PANEL + "consumable_not_extendable/panel_content/limited_status_image": T.IMAGE + "consumable_not_extendable/panel_content/padded_icon_1": T.PANEL + "consumable_not_extendable/panel_content/label_panel": T.PANEL + "consumable_not_extendable/panel_content/label_panel/name_label2": T.LABEL + possible_store_mismatch: T.PANEL + "possible_store_mismatch/panel_content": T.STACK_PANEL + "possible_store_mismatch/panel_content/padded_icon_0": T.PANEL + "possible_store_mismatch/panel_content/limited_status_image": T.IMAGE + "possible_store_mismatch/panel_content/padded_icon_1": T.PANEL + "possible_store_mismatch/panel_content/label_panel": T.PANEL + "possible_store_mismatch/panel_content/label_panel/name_label2": T.LABEL + realms_subscription_stack: T.STACK_PANEL + "realms_subscription_stack/image_panel": T.PANEL + "realms_subscription_stack/image_panel/0": T.UNKNOWN + "realms_subscription_stack/pad": T.PANEL + "realms_subscription_stack/info": T.STACK_PANEL + "realms_subscription_stack/info/realm_name": T.LABEL + "realms_subscription_stack/info/realms_desc_label": T.LABEL + "realms_subscription_stack/info/bottom_pad": T.PANEL + realms_subscription_main: T.PANEL + "realms_subscription_main/black_background": T.PANEL + "realms_subscription_main/realms_plus_subscription_stack": T.STACK_PANEL + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": T.STACK_PANEL + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": T.STACK_PANEL + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": T.PANEL + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": T.STACK_PANEL + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": T.PANEL + realms_subscription_panel: T.STACK_PANEL + "realms_subscription_panel/top_panel": T.PANEL + "realms_subscription_panel/pad_1": T.PANEL + "realms_subscription_panel/middle_panel": T.PANEL + "realms_subscription_panel/middle_panel/black_background": T.PANEL + "realms_subscription_panel/middle_panel/renews_text": T.LABEL + "realms_subscription_panel/pad_2": T.PANEL + "realms_subscription_panel/lower_panel": T.PANEL + "realms_subscription_panel/lower_panel/black_background": T.PANEL + "realms_subscription_panel/lower_panel/consumable_not_extendable": T.PANEL + "realms_subscription_panel/pad_3": T.PANEL + "realms_subscription_panel/platform_mismatch_container": T.PANEL + "realms_subscription_panel/platform_mismatch_container/black_background": T.PANEL + "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": T.PANEL + "realms_subscription_panel/pad_4": T.PANEL + realms_plus_subscription_panel: T.STACK_PANEL + additional_subscription_panel: T.STACK_PANEL + view_subscriptions_button: T.PANEL + view_subscriptions_prerelease_section: T.PANEL + "view_subscriptions_prerelease_section/black_background": T.PANEL + "view_subscriptions_prerelease_section/renews_text": T.LABEL + view_subscriptions_section: T.STACK_PANEL + "view_subscriptions_section/sunsetting_label": T.IMAGE + "view_subscriptions_section/failed_loading_subscriptions_label": T.LABEL + "view_subscriptions_section/loading_subscriptions_label": T.LABEL + "view_subscriptions_section/no_active_subscriptions_panel": T.PANEL + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": T.PANEL + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": T.LABEL + "view_subscriptions_section/no_active_subscriptions_panel/background_panel": T.IMAGE + "view_subscriptions_section/realms_plus_header_my_subscriptions": T.PANEL + "view_subscriptions_section/realms_plus_header_my_subscriptions/text": T.LABEL + "view_subscriptions_section/realms_plus_subscriptions_grid": T.STACK_PANEL + "view_subscriptions_section/csb_purchased_with_cancel": T.PANEL + "view_subscriptions_section/csb_purchased_with_buy": T.PANEL + "view_subscriptions_section/csb_purchased_padding": T.PANEL + "view_subscriptions_section/platform_mismatch_container": T.PANEL + "view_subscriptions_section/platform_mismatch_container/black_background": T.PANEL + "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": T.PANEL + "view_subscriptions_section/csb_expiration_container": T.PANEL + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": T.STACK_PANEL + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": T.PANEL + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": T.LABEL + "view_subscriptions_section/csb_expiration_container/background_panel": T.IMAGE + "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": T.PANEL + "view_subscriptions_section/additional_realms_subscriptions_grid": T.STACK_PANEL + "view_subscriptions_section/settings_additional_subscription_offers_section": T.STACK_PANEL + "view_subscriptions_section/pad_3": T.PANEL + settings_additional_subscription_offers_section: T.STACK_PANEL + "settings_additional_subscription_offers_section/active_available_divider": T.STACK_PANEL + "settings_additional_subscription_offers_section/realms_plus_header_label": T.LABEL + "settings_additional_subscription_offers_section/pad_0": T.PANEL + "settings_additional_subscription_offers_section/additional_realms_buy_offer": T.PANEL + "settings_additional_subscription_offers_section/pad_8": T.PANEL + "settings_additional_subscription_offers_section/csb_buy_panel": T.PANEL + accessibility_button: T.PANEL + toast_notification_duration_label: T.LABEL + toast_notification_duration_info_label: T.LABEL + toast_notification_duration_info_edu_label: T.LABEL + chat_message_duration_label: T.LABEL + chat_message_duration_info_label: T.LABEL + accessibility_section: T.STACK_PANEL + "accessibility_section/option_toggle0": T.PANEL + "accessibility_section/option_toggle1": T.PANEL + "accessibility_section/option_toggle2": T.PANEL + "accessibility_section/option_slider_0": T.PANEL + "accessibility_section/option_toggle3": T.PANEL + "accessibility_section/hud_text_background_opacity_slider": T.PANEL + "accessibility_section/chat_opacity_slider": T.PANEL + "accessibility_section/actionbar_text_background_opacity_slider": T.PANEL + "accessibility_section/camera_shake_toggle": T.PANEL + "accessibility_section/hide_endflash_toggle": T.PANEL + "accessibility_section/enable_dithering_blocks_toggle": T.PANEL + "accessibility_section/enable_dithering_mobs_toggle": T.PANEL + "accessibility_section/darkness_slider": T.PANEL + "accessibility_section/glint_strength_slider": T.PANEL + "accessibility_section/glint_speed_slider": T.PANEL + "accessibility_section/toast_notification_duration_options_panel": T.STACK_PANEL + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": T.PANEL + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": T.PANEL + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": T.PANEL + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": T.PANEL + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": T.PANEL + "accessibility_section/chat_message_duration_options_panel": T.STACK_PANEL + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": T.PANEL + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": T.PANEL + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": T.PANEL + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": T.PANEL + "accessibility_section/gui_scale_slider": T.PANEL + "accessibility_section/gui_scale_slider/option_generic_core": T.STACK_PANEL + "accessibility_section/gui_accessibility_scaling_toggle": T.PANEL + "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL + "accessibility_section/reset_button": T.BUTTON + accessibility_section_ore_ui: T.STACK_PANEL + "accessibility_section_ore_ui/spacer_0": T.PANEL + "accessibility_section_ore_ui/generic_label": T.LABEL + "accessibility_section_ore_ui/spacer_1": T.PANEL + "accessibility_section_ore_ui/gamepad_helper_label": T.LABEL + "accessibility_section_ore_ui/accessibility_button": T.BUTTON + sound_button: T.PANEL + sound_section_ore_ui: T.STACK_PANEL + "sound_section_ore_ui/spacer_0": T.PANEL + "sound_section_ore_ui/generic_label": T.LABEL + "sound_section_ore_ui/spacer_1": T.PANEL + "sound_section_ore_ui/gamepad_helper_label": T.LABEL + sound_section: T.STACK_PANEL + "sound_section/paddingMainVolume": T.PANEL + "sound_section/option_slider_0": T.PANEL + "sound_section/paddingDividerAudioSettings": T.PANEL + "sound_section/dividerAudioSettings": T.PANEL + "sound_section/dividerAudioSettings/section_divider": T.IMAGE + "sound_section/paddingMusic": T.PANEL + "sound_section/option_slider_1": T.PANEL + "sound_section/paddingSound": T.PANEL + "sound_section/option_slider_2": T.PANEL + "sound_section/paddingAmbient": T.PANEL + "sound_section/option_slider_3": T.PANEL + "sound_section/paddingBlockVolume": T.PANEL + "sound_section/option_slider_4": T.PANEL + "sound_section/paddingHostile": T.PANEL + "sound_section/option_slider_5": T.PANEL + "sound_section/paddingNeutralVolume": T.PANEL + "sound_section/option_slider_6": T.PANEL + "sound_section/paddingPlayervolume": T.PANEL + "sound_section/option_slider_7": T.PANEL + "sound_section/paddingRecordVolume": T.PANEL + "sound_section/option_slider_8": T.PANEL + "sound_section/paddingWeatherVolume": T.PANEL + "sound_section/option_slider_9": T.PANEL + "sound_section/paddingTTSVolume": T.PANEL + "sound_section/option_slider_10": T.PANEL + "sound_section/paddingResetVolumes": T.PANEL + "sound_section/reset_button": T.BUTTON + "sound_section/paddingEndOfList": T.PANEL + language_button: T.PANEL + language_grid_item: T.PANEL + language_section: T.STACK_PANEL + "language_section/language_list_grid": T.GRID + language_section_ore_ui: T.STACK_PANEL + "language_section_ore_ui/spacer_0": T.PANEL + "language_section_ore_ui/generic_label": T.LABEL + "language_section_ore_ui/spacer_1": T.PANEL + "language_section_ore_ui/gamepad_helper_label": T.LABEL + preview_button: T.PANEL + preview_section: T.STACK_PANEL + "preview_section/spacer_0": T.PANEL + "preview_section/generic_label": T.LABEL + "preview_section/preview_store_launch_app1_button": T.BUTTON + "preview_section/preview_store_launch_app2_button": T.BUTTON + override_date_panel: T.STACK_PANEL + "override_date_panel/year_text_box": T.PANEL + "override_date_panel/year_month_slash": T.LABEL + "override_date_panel/month_text_box": T.PANEL + "override_date_panel/month_day_slash": T.LABEL + "override_date_panel/day_text_box": T.PANEL + "override_date_panel/day_hour_slash": T.LABEL + "override_date_panel/hour_text_box": T.PANEL + "override_date_panel/hour_minute_slash": T.LABEL + "override_date_panel/minute_text_box": T.PANEL + timezonetype_dropdown_content: T.PANEL + date_options_panel: T.STACK_PANEL + "date_options_panel/padding0": T.PANEL + "date_options_panel/display_override_datetime_option_toggle": T.PANEL + "date_options_panel/option_toggle_date_override": T.PANEL + "date_options_panel/override_date_options_panel": T.PANEL + override_date_options_panel: T.PANEL + "override_date_options_panel/override_date_options_background_panel": T.STACK_PANEL + "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": T.PANEL + "override_date_options_panel/override_date_options_background_panel/select_dropdown": T.PANEL + "override_date_options_panel/override_date_options_background_panel/override_date_panel": T.STACK_PANEL + "override_date_options_panel/override_date_options_background_panel/padding1": T.PANEL + "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": T.PANEL + "override_date_options_panel/override_date_options_background_panel/reset_time_button": T.BUTTON + "override_date_options_panel/override_date_options_background_panel/padding2": T.PANEL + debug_display_logged_error_panel: T.PANEL + "debug_display_logged_error_panel/debug_display_logged_error_panel_background": T.STACK_PANEL + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": T.PANEL + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": T.PANEL + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": T.PANEL + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": T.PANEL + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": T.PANEL + xbox_sandbox_panel: T.STACK_PANEL + "xbox_sandbox_panel/padding0": T.PANEL + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": T.PANEL + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": T.PANEL + "xbox_sandbox_panel/override_xbox_options_panel": T.PANEL + override_xbox_options_panel: T.PANEL + "override_xbox_options_panel/override_xbox_options": T.STACK_PANEL + "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": T.PANEL + override_version_options_panel: T.STACK_PANEL + "override_version_options_panel/override_version_panel": T.STACK_PANEL + "override_version_options_panel/override_version_button_panel": T.PANEL + "override_version_options_panel/override_version_button_panel/update_override_version_button": T.BUTTON + "override_version_options_panel/override_date_panel_bottom_padding": T.PANEL + override_version_panel: T.STACK_PANEL + "override_version_panel/major_version_text_box": T.PANEL + "override_version_panel/first_dot": T.LABEL + "override_version_panel/minor_version_text_box": T.PANEL + "override_version_panel/second_dot": T.LABEL + "override_version_panel/patch_version_text_box": T.PANEL + dot_label: T.LABEL + debug_override_treatments_panel: T.PANEL + "debug_override_treatments_panel/override_treatments_panel_background": T.STACK_PANEL + "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": T.PANEL + "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": T.PANEL + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": T.STACK_PANEL + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": T.BUTTON + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": T.STACK_PANEL + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": T.PANEL + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": T.PANEL + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": T.BUTTON + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": T.STACK_PANEL + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": T.BUTTON + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": T.BUTTON + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": T.IMAGE + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": T.LABEL + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": T.PANEL + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": T.IMAGE + "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": T.GRID + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": T.IMAGE + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": T.LABEL + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": T.PANEL + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": T.IMAGE + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": T.GRID + "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": T.PANEL + debug_override_configurations_panel: T.PANEL + "debug_override_configurations_panel/override_configurations_panel_background": T.STACK_PANEL + "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": T.PANEL + "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": T.PANEL + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": T.STACK_PANEL + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": T.STACK_PANEL + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": T.PANEL + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": T.PANEL + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": T.BUTTON + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": T.STACK_PANEL + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": T.BUTTON + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": T.BUTTON + "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": T.GRID + debug_override_realms_features_panel: T.PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background": T.STACK_PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": T.PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": T.PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": T.STACK_PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": T.STACK_PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": T.PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": T.PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": T.BUTTON + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": T.STACK_PANEL + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": T.BUTTON + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": T.BUTTON + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": T.IMAGE + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": T.LABEL + "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": T.GRID + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": T.IMAGE + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": T.LABEL + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": T.GRID + configuration_grid_item: T.STACK_PANEL + "configuration_grid_item/configuration_id_panel": T.IMAGE + "configuration_grid_item/configuration_id_panel/configuration_id": T.LABEL + "configuration_grid_item/remove_button": T.BUTTON + remove_configuration_icon: T.IMAGE + realms_feature_grid_item: T.STACK_PANEL + "realms_feature_grid_item/realms_feature_id_panel": T.IMAGE + "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": T.LABEL + "realms_feature_grid_item/disable_button": T.BUTTON + disable_realms_feature_icon: T.IMAGE + unused_realms_feature_grid_item: T.STACK_PANEL + "unused_realms_feature_grid_item/unused_realms_feature_id_panel": T.IMAGE + "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": T.LABEL + "unused_realms_feature_grid_item/enable_button": T.BUTTON + enable_realms_feature_icon: T.IMAGE + treatment_grid_item: T.STACK_PANEL + "treatment_grid_item/treatment_id_panel": T.IMAGE + "treatment_grid_item/treatment_id_panel/treatment_id": T.LABEL + "treatment_grid_item/remove_button": T.BUTTON + remove_treatment_icon: T.IMAGE + unused_treatment_grid_item: T.STACK_PANEL + "unused_treatment_grid_item/unused_treatment_id_panel": T.IMAGE + "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": T.LABEL + "unused_treatment_grid_item/add_button": T.BUTTON + add_treatment_icon: T.IMAGE + debug_select_windows_store_panel: T.STACK_PANEL + "debug_select_windows_store_panel/select_store_dropdown": T.PANEL + "debug_select_windows_store_panel/stores_label": T.LABEL + "debug_select_windows_store_panel/sandbox_label": T.LABEL + windows_store_dropdown_content: T.PANEL + mock_http_panel: T.STACK_PANEL + "mock_http_panel/display_mock_http_panel_toggle": T.PANEL + "mock_http_panel/mock_http_panel_content": T.PANEL + mock_http_panel_content: T.PANEL + "mock_http_panel_content/mock_http_panel_background": T.STACK_PANEL + "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": T.BUTTON + "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": T.BUTTON + "mock_http_panel_content/mock_http_panel_background/active_rules_label": T.LABEL + "mock_http_panel_content/mock_http_panel_background/rule_list": T.STACK_PANEL + "mock_http_panel_content/mock_http_panel_background/divider": T.STACK_PANEL + mock_http_rule_list: T.STACK_PANEL + mock_http_rule: T.STACK_PANEL + "mock_http_rule/rule_details_label": T.LABEL + "mock_http_rule/rule_spacer": T.PANEL + automation_button: T.PANEL + automation_section: T.STACK_PANEL + "automation_section/automation_tab_label": T.LABEL + "automation_section/padding": T.PANEL + "automation_section/automation_test_asset_sas_text_box": T.PANEL + "automation_section/automation_functional_test_tags_text_box": T.PANEL + "automation_section/automation_server_test_tags_text_box": T.PANEL + "automation_section/automation_unit_test_tags_text_box": T.PANEL + "automation_section/automation_broken_functional_test_tags_text_box": T.PANEL + "automation_section/automation_broken_server_test_tags_text_box": T.PANEL + "automation_section/automation_broken_unit_test_tags_text_box": T.PANEL + "automation_section/automation_repeat_count_text_box": T.PANEL + "automation_section/automation_soak_test_duration_minutes_text_box": T.PANEL + "automation_section/automation_repeat_failures_only_toggle": T.PANEL + "automation_section/automation_run_entire_server_test_group": T.PANEL + "automation_section/automation_testbuild_id_text_box": T.PANEL + "automation_section/automation_functional_test_block_input_toggle": T.PANEL + "automation_section/automation_server_test_assert_on_level_diff_toggle": T.PANEL + discovery_debug_button: T.PANEL + discovery_debug_section: T.STACK_PANEL + "discovery_debug_section/option_discovery_environment": T.PANEL + "discovery_debug_section/debug_override_discovery_panel": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": T.STACK_PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": T.STACK_PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": T.STACK_PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": T.BUTTON + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": T.BUTTON + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": T.LABEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": T.PANEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": T.BUTTON + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": T.LABEL + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": T.PANEL + debug_button: T.PANEL + feature_toggle: T.PANEL + debug_section: T.STACK_PANEL + "debug_section/options_for_qa_convenience": T.LABEL + "debug_section/options_for_qa_convenience_spacer": T.PANEL + "debug_section/option_toggle_dev_console_button_0": T.PANEL + "debug_section/option_toggle_assertions_debug_break": T.PANEL + "debug_section/option_toggle_assertions_show_dialog": T.PANEL + "debug_section/option_dev_show_display_logged_error": T.PANEL + "debug_section/display_logged_error_panel": T.PANEL + "debug_section/option_dev_force_trial_mode": T.PANEL + "debug_section/option_dev_force_trial_mode_spacer": T.PANEL + "debug_section/debug_overlay_pages_label": T.LABEL + "debug_section/debug_overlay_button_panel": T.PANEL + "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": T.BUTTON + "debug_section/debug_overlay_button_panel/debug_overlay_next_button": T.BUTTON + "debug_section/pre_feature_toggles_label_spacer": T.PANEL + "debug_section/feature_toggles_label": T.LABEL + "debug_section/feature_toggles_label_spacer": T.PANEL + "debug_section/feature_toggles": T.STACK_PANEL + "debug_section/end_of_feature_toggles_label_spacer": T.PANEL + "debug_section/option_toggle_dev_disable_lan_signaling": T.PANEL + "debug_section/option_dropdown_nethernet_logging_verbosity": T.PANEL + "debug_section/option_dropdown_http_logging_verbosity": T.PANEL + "debug_section/option_dropdown_xsapi_logging_verbosity": T.PANEL + "debug_section/option_toggle_remote_imgui": T.PANEL + "debug_section/option_dropdown_0": T.PANEL + "debug_section/option_toggle_extra_debug_hud_info": T.PANEL + "debug_section/option_toggle_0_1": T.PANEL + "debug_section/option_toggle_0_2": T.PANEL + "debug_section/option_slider_0": T.PANEL + "debug_section/option_toggle_3": T.PANEL + "debug_section/option_toggle_4": T.PANEL + "debug_section/option_toggle_5": T.PANEL + "debug_section/option_toggle_6": T.PANEL + "debug_section/option_dropdown_server_chunk_map": T.PANEL + "debug_section/option_toggle_9": T.PANEL + "debug_section/option_toggle_disable_render_terrain": T.PANEL + "debug_section/option_toggle_disable_render_entities": T.PANEL + "debug_section/option_toggle_disable_render_blockentities": T.PANEL + "debug_section/option_toggle_disable_render_particles": T.PANEL + "debug_section/option_toggle_disable_render_sky": T.PANEL + "debug_section/option_toggle_disable_render_weather": T.PANEL + "debug_section/option_toggle_disable_render_hud": T.PANEL + "debug_section/option_toggle_disable_render_item_in_hand": T.PANEL + "debug_section/option_toggle_disable_render_main_menu_cubemap": T.PANEL + "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": T.PANEL + "debug_section/leak_memory": T.PANEL + "debug_section/log_area": T.PANEL + "debug_section/log_priority": T.PANEL + "debug_section/option_toggle_build_info": T.PANEL + "debug_section/option_perf_turtle": T.PANEL + "debug_section/option_default_profiling_option": T.PANEL + "debug_section/option_toggle_7": T.PANEL + "debug_section/option_toggle_8": T.PANEL + "debug_section/option_toggle_game_tip": T.PANEL + "debug_section/option_toggle_10": T.PANEL + "debug_section/dev_disable_client_blob_cache_toggle": T.PANEL + "debug_section/dev_force_client_blob_cache_toggle": T.PANEL + "debug_section/devquality_dropdown": T.PANEL + "debug_section/dev_add_http_delay_seconds": T.PANEL + "debug_section/dev_show_latency_graph_toggle": T.PANEL + "debug_section/xbox_sandbox_panel": T.STACK_PANEL + "debug_section/multithreaded_rendering_toggle": T.PANEL + "debug_section/filewatcher_rendering_toggle": T.PANEL + "debug_section/enable_texture_hot_reloader_toggle": T.PANEL + "debug_section/mock_http_panel": T.STACK_PANEL + "debug_section/vsync_dropdown": T.PANEL + "debug_section/sunsetting_use_overrides_toggle": T.PANEL + "debug_section/padding_sunsetting": T.PANEL + "debug_section/sunseting_state_toggle": T.PANEL + "debug_section/sunsetting_tier_dropdown": T.PANEL + "debug_section/padding_sunsetting_2": T.PANEL + "debug_section/padding1": T.PANEL + "debug_section/copy_internal_settings_folder_to_external": T.BUTTON + "debug_section/padding_reset_day_one": T.PANEL + "debug_section/reset_new_player_flow": T.BUTTON + "debug_section/reset_day_one_experience": T.BUTTON + "debug_section/option_text_edit_1": T.PANEL + "debug_section/option_text_edit_2": T.PANEL + "debug_section/option_text_edit_3": T.PANEL + "debug_section/reset_report_timer_option": T.BUTTON + "debug_section/reset_online_safety_option": T.BUTTON + "debug_section/reset_ip_safety_option": T.BUTTON + "debug_section/padding_graphics_options": T.PANEL + "debug_section/option_shadersdk_service_ip": T.PANEL + "debug_section/option_shadersdk_service_port": T.PANEL + "debug_section/option_shadersdk_target_port": T.PANEL + "debug_section/padding_graphics_buttons": T.PANEL + "debug_section/trigger_graphics_device_loss": T.BUTTON + "debug_section/allocate_texture_handles": T.BUTTON + "debug_section/padding_deferred_debug": T.PANEL + "debug_section/deferred_platform_override": T.PANEL + realms_debug_button: T.PANEL + realms_debug_section: T.STACK_PANEL + "realms_debug_section/realms_menu_title": T.LABEL + "realms_debug_section/realms_title_spacer": T.PANEL + "realms_debug_section/feature_toggles_label": T.LABEL + "realms_debug_section/feature_toggles_label_spacer": T.PANEL + "realms_debug_section/feature_toggles": T.STACK_PANEL + "realms_debug_section/end_of_feature_toggles_label_spacer": T.PANEL + "realms_debug_section/realms_dev_toggles_title": T.LABEL + "realms_debug_section/realms_dev_toggle_spacer": T.PANEL + "realms_debug_section/realms_without_purchase_toggle": T.PANEL + "realms_debug_section/realms_debug_options_title": T.LABEL + "realms_debug_section/realms_debug_options_spacer": T.PANEL + "realms_debug_section/option_dropdown_1": T.PANEL + "realms_debug_section/option_dropdown_2": T.PANEL + "realms_debug_section/option_text_edit_0": T.PANEL + "realms_debug_section/realms_features_override_panel": T.STACK_PANEL + "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": T.PANEL + "realms_debug_section/realms_features_override_panel/override_realms_features_panel": T.PANEL + "realms_debug_section/realms_debug_options_spacer_2": T.PANEL + realms_feature_toggle: T.PANEL + marketplace_debug_button: T.PANEL + marketplace_debug_section: T.STACK_PANEL + "marketplace_debug_section/marketplace_feature_toggles_label": T.LABEL + "marketplace_debug_section/marketplace_feature_toggles_label_spacer": T.PANEL + "marketplace_debug_section/marketplace_feature_toggles": T.STACK_PANEL + "marketplace_debug_section/playfab_token_refresh_threshold": T.PANEL + "marketplace_debug_section/option_dropdown_skin_rotation_speed": T.PANEL + "marketplace_debug_section/option_toggle_all_skins_rotate": T.PANEL + "marketplace_debug_section/option_toggle_display_marketplace_document_id": T.PANEL + "marketplace_debug_section/option_toggle_display_platform_offer_check": T.PANEL + "marketplace_debug_section/version_options_panel": T.STACK_PANEL + "marketplace_debug_section/version_options_panel/option_version_override": T.PANEL + "marketplace_debug_section/version_options_panel/override_version_options_panel": T.STACK_PANEL + "marketplace_debug_section/select_windows_store_panel": T.STACK_PANEL + "marketplace_debug_section/date_options_panel": T.STACK_PANEL + "marketplace_debug_section/option_clear_store_cache_button": T.BUTTON + "marketplace_debug_section/option_clear_all_cache_button": T.BUTTON + "marketplace_debug_section/option_delete_all_personas_button": T.BUTTON + "marketplace_debug_section/option_delete_legacy_personas_button": T.BUTTON + "marketplace_debug_section/padding2": T.PANEL + "marketplace_debug_section/enable_coin_debug_switch_toggle": T.PANEL + "marketplace_debug_section/add_500_coins": T.BUTTON + "marketplace_debug_section/add_100000_coins": T.BUTTON + "marketplace_debug_section/padding3": T.PANEL + "marketplace_debug_section/reset_entitlements": T.BUTTON + "marketplace_debug_section/reset_wallet": T.BUTTON + marketplace_feature_toggle: T.PANEL + gatherings_debug_button: T.PANEL + gatherings_debug_section: T.STACK_PANEL + "gatherings_debug_section/refresh_gatherings_button": T.BUTTON + "gatherings_debug_section/spacer_1": T.PANEL + "gatherings_debug_section/clear_system_service_pack_cache_button": T.BUTTON + "gatherings_debug_section/spacer_2": T.PANEL + "gatherings_debug_section/active_gathering_label": T.LABEL + "gatherings_debug_section/spacer_3": T.PANEL + "gatherings_debug_section/text_edit_filter_gatherings": T.PANEL + "gatherings_debug_section/spacer_4": T.PANEL + "gatherings_debug_section/available_gatherings_section": T.STACK_PANEL + gathering_grid_item_content: T.STACK_PANEL + "gathering_grid_item_content/gathering_name": T.LABEL + "gathering_grid_item_content/gathering_uuid": T.LABEL + gathering_item_template: T.PANEL + "gathering_item_template/gathering_item_button": T.BUTTON + available_gatherings_grid: T.GRID + available_gatherings_panel: T.STACK_PANEL + "available_gatherings_panel/available_label": T.LABEL + "available_gatherings_panel/gatherings_grid": T.GRID + "available_gatherings_panel/spacing_gap": T.PANEL + available_gatherings_section: T.STACK_PANEL + "available_gatherings_section/available_gatherings_panel": T.STACK_PANEL + ui_debug_button: T.PANEL + ui_feature_toggle: T.PANEL + edu_debug_button: T.PANEL + edu_feature_toggle: T.PANEL + new_create_world_grid_item: T.PANEL + new_edu_create_world_screen_grid_item: T.PANEL + new_play_screen_grid_item: T.PANEL + new_edit_world_screen_grid_item: T.PANEL + new_player_permissions_screen_grid_item: T.PANEL + new_send_invites_screen_grid_item: T.PANEL + new_death_grid_item: T.PANEL + new_bed_grid_item: T.PANEL + ore_ui_gameplay_ui_grid_item: T.PANEL + new_settings_screen_grid_item: T.PANEL + ui_debug_section: T.STACK_PANEL + "ui_debug_section/ui_feature_toggles_label": T.LABEL + "ui_debug_section/ui_feature_toggles_info_label": T.LABEL + "ui_debug_section/ui_feature_toggles_label_spacer": T.PANEL + "ui_debug_section/ui_feature_toggles": T.STACK_PANEL + "ui_debug_section/end_of_ui_feature_toggles_label_divider": T.PANEL + "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": T.IMAGE + "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": T.PANEL + "ui_debug_section/end_of_ui_feature_toggles_label_spacer": T.PANEL + "ui_debug_section/screen_override_label": T.LABEL + "ui_debug_section/screen_override_info_label": T.LABEL + "ui_debug_section/screen_override_label_spacer": T.PANEL + "ui_debug_section/new_edu_create_world_screen_radio_label": T.LABEL + "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": T.PANEL + "ui_debug_section/new_edu_create_world_screen_radio_button": T.GRID + "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": T.PANEL + "ui_debug_section/new_play_screen_radio_label": T.LABEL + "ui_debug_section/new_play_screen_radio_label_spacer": T.PANEL + "ui_debug_section/new_play_screen_radio_button": T.GRID + "ui_debug_section/new_play_screen_radio_button_spacer": T.PANEL + "ui_debug_section/new_edit_world_screen_radio_label": T.LABEL + "ui_debug_section/new_edit_world_screen_radio_label_spacer": T.PANEL + "ui_debug_section/new_edit_world_screen_radio_button": T.GRID + "ui_debug_section/new_edit_world_screen_radio_button_spacer": T.PANEL + "ui_debug_section/new_send_invites_radio_label": T.LABEL + "ui_debug_section/new_send_invites_screen_radio_label_spacer": T.PANEL + "ui_debug_section/new_send_invites_screen_radio_button": T.GRID + "ui_debug_section/new_send_invites_screen_radio_button_spacer": T.PANEL + "ui_debug_section/new_death_screen_radio_label": T.LABEL + "ui_debug_section/new_death_screen_radio_label_spacer": T.PANEL + "ui_debug_section/new_death_screen_radio_button": T.GRID + "ui_debug_section/new_death_screen_radio_button_spacer": T.PANEL + "ui_debug_section/new_bed_screen_radio_label": T.LABEL + "ui_debug_section/new_bed_screen_radio_label_spacer": T.PANEL + "ui_debug_section/new_bed_screen_radio_button": T.GRID + "ui_debug_section/new_bed_screen_radio_button_spacer": T.PANEL + "ui_debug_section/ore_ui_gameplay_ui_radio_label": T.LABEL + "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": T.PANEL + "ui_debug_section/ore_ui_gameplay_ui_radio_button": T.GRID + "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": T.PANEL + "ui_debug_section/end_of_ui_screen_override_divider": T.PANEL + "ui_debug_section/end_of_ui_screen_override_divider/section_divider": T.IMAGE + "ui_debug_section/end_of_ui_sceen_override_divider_spacer": T.PANEL + "ui_debug_section/new_settings_screen_radio_label": T.LABEL + "ui_debug_section/new_settings_screen_radio_label_spacer": T.PANEL + "ui_debug_section/new_settings_screen_radio_button": T.GRID + "ui_debug_section/new_settings_screen_radio_button_spacer": T.PANEL + "ui_debug_section/screen_opt_in_options_label": T.LABEL + "ui_debug_section/screen_opt_in_info_label": T.LABEL + "ui_debug_section/screen_opt_in_options_label_spacer": T.PANEL + "ui_debug_section/end_of_ui_screen_opt_in_divider": T.PANEL + "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": T.IMAGE + "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": T.PANEL + "ui_debug_section/other_ui_options_label": T.LABEL + "ui_debug_section/other_ui_options_label_spacer": T.PANEL + "ui_debug_section/option_toggle_default_font_override": T.PANEL + "ui_debug_section/option_toggle_dev_show_tcui_replacement": T.PANEL + "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": T.PANEL + "ui_debug_section/ui_feature_toggles_spacer": T.PANEL + "ui_debug_section/option_show_touch_control_selection_screen": T.PANEL + "ui_debug_section/option_reset_on_start": T.PANEL + "ui_debug_section/option_slider_drag_dwell": T.PANEL + "ui_debug_section/option_slider_stack_splitting": T.PANEL + "ui_debug_section/reset_render_distance_warning_modal_label": T.LABEL + "ui_debug_section/reset_render_distance_warning_modal_label_spacer": T.PANEL + "ui_debug_section/reset_render_distance_warning_modal": T.BUTTON + "ui_debug_section/reset_render_distance_warning_modal_spacer": T.PANEL + "ui_debug_section/ore_ui_developer_pages_divider": T.PANEL + "ui_debug_section/ore_ui_developer_pages_divider/section_divider": T.IMAGE + "ui_debug_section/ore_ui_developer_pages_spacer": T.PANEL + "ui_debug_section/open_ore_ui_label": T.LABEL + "ui_debug_section/open_ore_ui_info_label": T.LABEL + "ui_debug_section/open_ore_ui_label_spacer": T.PANEL + "ui_debug_section/open_ore_ui_docs": T.BUTTON + "ui_debug_section/open_ore_ui_tests": T.BUTTON + "ui_debug_section/open_ore_ui_perf": T.BUTTON + "ui_debug_section/open_ore_ui_test_modal": T.BUTTON + "ui_debug_section/open_ore_ui_tests_spacer": T.PANEL + edu_debug_section: T.STACK_PANEL + "edu_debug_section/edu_feature_toggles_label": T.LABEL + "edu_debug_section/edu_feature_toggles_label_spacer": T.PANEL + "edu_debug_section/edu_demo": T.PANEL + "edu_debug_section/edu_ad_debug_panel": T.PANEL + "edu_debug_section/edu_ad_token_refresh_threshold": T.PANEL + "edu_debug_section/edu_ad_max_signin_token_refresh": T.PANEL + "edu_debug_section/edu_ad_max_graph_token_refresh": T.PANEL + "edu_debug_section/edu_environment_divider": T.PANEL + "edu_debug_section/edu_environment_divider/section_divider": T.IMAGE + "edu_debug_section/edu_environment_spacer": T.PANEL + "edu_debug_section/edu_env_dropdown": T.PANEL + flighting_debug_button: T.PANEL + flighting_debug_section: T.STACK_PANEL + "flighting_debug_section/treatment_override_panel": T.STACK_PANEL + "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": T.PANEL + "flighting_debug_section/treatment_override_panel/override_treatments_panel": T.PANEL + "flighting_debug_section/configuration_override_panel": T.STACK_PANEL + "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": T.PANEL + "flighting_debug_section/configuration_override_panel/override_configurations_panel": T.PANEL + how_to_play_button: T.PANEL + how_to_play_section: T.STACK_PANEL + "how_to_play_section/spacer_0": T.PANEL + "how_to_play_section/generic_label": T.LABEL + "how_to_play_section/spacer_1": T.PANEL + "how_to_play_section/gamepad_helper_label": T.LABEL + dev_xbox_environment_dropdown_content: T.PANEL + dev_discovery_environment_dropdown_content: T.PANEL + dev_service_override_type_dropdown_content: T.PANEL + dev_realms_environment_dropdown_content: T.PANEL + dev_realms_sku_dropdown_content: T.PANEL + default_profiling_group_dropdown_content: T.PANEL + dev_nethernet_logging_verbosity_dropdown_content: T.PANEL + dev_http_logging_verbosity_dropdown_content: T.PANEL + dev_xsapi_logging_verbosity_dropdown_content: T.PANEL + dev_debug_speed_multiplier_options: T.PANEL + dev_debug_hud_dropdown_content: T.PANEL + dev_chunkMapMode_content: T.PANEL + dev_quality_dropdown_content: T.PANEL + vysnc_dropdown_content: T.PANEL + deferred_platform_override_dropdown_content: T.PANEL + dev_education_environment_dropdown_content: T.PANEL + dev_sunsetting_tier_dropdown_content: T.PANEL + graphics_api_dropdown_content: T.PANEL + graphics_mode_dropdown_content: T.PANEL + upscaling_mode_dropdown_content: T.PANEL + advanced_graphics_options_button_content: T.STACK_PANEL + "advanced_graphics_options_button_content/advanced_graphics_options_label": T.LABEL + "advanced_graphics_options_button_content/fill_pad": T.PANEL + "advanced_graphics_options_button_content/plus_panel": T.PANEL + "advanced_graphics_options_button_content/plus_panel/plus": T.IMAGE + "advanced_graphics_options_button_content/minus_panel": T.PANEL + "advanced_graphics_options_button_content/minus_panel/minus": T.IMAGE + advanced_graphics_options_section: T.STACK_PANEL + "advanced_graphics_options_section/spacer_0": T.PANEL + "advanced_graphics_options_section/gamma_calibration": T.BUTTON + "advanced_graphics_options_section/spacer_1": T.PANEL + "advanced_graphics_options_section/max_framerate_slider": T.PANEL + "advanced_graphics_options_section/spacer_2": T.PANEL + "advanced_graphics_options_section/msaa_slider": T.PANEL + "advanced_graphics_options_section/spacer_3": T.PANEL + "advanced_graphics_options_section/shadow_quality_slider": T.PANEL + "advanced_graphics_options_section/spacer_4": T.PANEL + "advanced_graphics_options_section/point_light_shadow_quality_slider": T.PANEL + "advanced_graphics_options_section/spacer_5": T.PANEL + "advanced_graphics_options_section/point_light_loding_quality_slider": T.PANEL + "advanced_graphics_options_section/spacer_6": T.PANEL + "advanced_graphics_options_section/cloud_quality_slider": T.PANEL + "advanced_graphics_options_section/spacer_7": T.PANEL + "advanced_graphics_options_section/volumetric_fog_quality_slider": T.PANEL + "advanced_graphics_options_section/spacer_8": T.PANEL + "advanced_graphics_options_section/reflections_quality_slider": T.PANEL + "advanced_graphics_options_section/spacer_9": T.PANEL + "advanced_graphics_options_section/bloom_strength": T.PANEL + "advanced_graphics_options_section/spacer_10": T.PANEL + "advanced_graphics_options_section/upscaling_toggle": T.PANEL + "advanced_graphics_options_section/spacer_11": T.PANEL + "advanced_graphics_options_section/upscaling_mode": T.PANEL + "advanced_graphics_options_section/spacer_12": T.PANEL + "advanced_graphics_options_section/upscaling_percentage": T.PANEL + "advanced_graphics_options_section/fancy_clouds_toggle": T.PANEL + "advanced_graphics_options_section/spacer_13": T.PANEL + "advanced_graphics_options_section/smooth_lighting_toggle": T.PANEL +} + +export type RealmsWorldSectionType = { + realm_name_edit: T.PANEL + world_name_edit: T.PANEL + realm_description_edit: T.PANEL + download_world_button: T.BUTTON + upload_world_button: T.BUTTON + reset_world_button: T.BUTTON + manage_feed_button: T.BUTTON + club_info_label: T.PANEL + difficulty_dropdown: T.PANEL + game_mode_dropdown: T.PANEL + panel_content: T.STACK_PANEL + "panel_content/new_edit_world_opt_in_panel": T.STACK_PANEL + "panel_content/new_edit_world_opt_in_panel/panel_title": T.PANEL + "panel_content/new_edit_world_opt_in_panel/panel_text": T.PANEL + "panel_content/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON + "panel_content/new_edit_world_opt_in_divider": T.PANEL + "panel_content/new_edit_world_opt_in_divider/section_divider": T.IMAGE + "panel_content/option_info_label": T.PANEL + "panel_content/hardcore_info_label": T.PANEL + "panel_content/realm_name_edit": T.PANEL + "panel_content/world_name_edit": T.PANEL + "panel_content/realm_description_edit": T.PANEL + "panel_content/difficulty_dropdown": T.PANEL + "panel_content/game_mode_dropdown": T.PANEL + "panel_content/is_hardcore_toggle": T.PANEL + "panel_content/world_options_label": T.PANEL + "panel_content/pvp_toggle": T.PANEL + "panel_content/show_coordinates_toggle": T.PANEL + "panel_content/locator_bar_toggle": T.PANEL + "panel_content/show_days_played_toggle": T.PANEL + "panel_content/fire_spreads_toggle": T.PANEL + "panel_content/recipes_unlock_toggle": T.PANEL + "panel_content/tnt_explodes_toggle": T.PANEL + "panel_content/respawn_blocks_explode_toggle": T.PANEL + "panel_content/mob_loot_toggle": T.PANEL + "panel_content/natural_regeneration_toggle": T.PANEL + "panel_content/tile_drops_toggle": T.PANEL + "panel_content/player_sleep_toggle": T.PANEL + "panel_content/player_sleep_percentage_slider": T.PANEL + "panel_content/immediate_respawn_toggle": T.PANEL + "panel_content/respawn_radius": T.PANEL + "panel_content/world_cheats_label": T.PANEL + "panel_content/allow_cheats_toggle": T.PANEL + "panel_content/daylight_cycle_toggle": T.PANEL + "panel_content/keep_inventory_toggle": T.PANEL + "panel_content/mob_spawn_toggle": T.PANEL + "panel_content/mob_griefing_toggle": T.PANEL + "panel_content/entities_drop_loot_toggle": T.PANEL + "panel_content/weather_cycle_toggle": T.PANEL + "panel_content/command_blocks_enabled_toggle": T.PANEL + "panel_content/random_tick_speed": T.PANEL + "panel_content/download_world_button": T.BUTTON + "panel_content/padding_0": T.PANEL + "panel_content/upload_world_button": T.BUTTON + "panel_content/padding_1": T.PANEL + "panel_content/reset_world_button": T.BUTTON + "panel_content/padding_2": T.PANEL + "panel_content/club_info_label": T.PANEL + "panel_content/manage_feed_button": T.BUTTON +} + +export type SettingsCommonType = { + arrow_image: T.IMAGE + subsection_title: T.STACK_PANEL + "subsection_title/spacer_0": T.PANEL + "subsection_title/sizer_0": T.PANEL + "subsection_title/sizer_0/title": T.LABEL + "subsection_title/spacer_1": T.PANEL + "subsection_title/sizer_1": T.PANEL + "subsection_title/sizer_1/section_divider": T.IMAGE + action_button: T.BUTTON + action_button_dark_text: T.BUTTON + link_button: T.BUTTON + option_group_label: T.PANEL + "option_group_label/text": T.LABEL + option_group_header: T.PANEL + "option_group_header/text": T.PANEL + option_group_spaced_label: T.PANEL + "option_group_spaced_label/text": T.PANEL + option_group_spaced_header: T.PANEL + "option_group_spaced_header/text": T.PANEL + option_group_section_divider: T.PANEL + "option_group_section_divider/background": T.IMAGE + option_generic: T.PANEL + "option_generic/option_generic_core": T.STACK_PANEL + white_label: T.LABEL + option_generic_core: T.STACK_PANEL + "option_generic_core/two_line_layout": T.STACK_PANEL + "option_generic_core/two_line_layout/option_label_panel": T.PANEL + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": T.PANEL + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": T.LABEL + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": T.PANEL + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": T.LABEL + "option_generic_core/two_line_layout/option_label_panel/option_tooltip": T.PANEL + "option_generic_core/two_line_layout/spacer": T.PANEL + "option_generic_core/two_line_layout/option_descriptive_text_0": T.LABEL + "option_generic_core/two_line_layout/spacer2": T.PANEL + "option_generic_core/one_line_layout": T.PANEL + "option_generic_core/one_line_layout/option_label_subpanel_01": T.PANEL + "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": T.LABEL + "option_generic_core/one_line_layout/option_label_subpanel_02": T.PANEL + "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": T.LABEL + "option_generic_core/one_line_layout/option_descriptive_text": T.LABEL + "option_generic_core/one_line_layout/option_tooltip": T.PANEL + "option_generic_core/spacer": T.PANEL + option_generic_core_label: T.LABEL + option_generic_tooltip_image: T.IMAGE + option_generic_tooltip_top_popup: T.IMAGE + option_generic_tooltip_bottom_popup: T.IMAGE + option_generic_tooltip: T.PANEL + "option_generic_tooltip/focus_detection_input_panel_two_line_layout": T.TOOLTIP_TRIGGER + "option_generic_tooltip/hover_detection_input_panel": T.TOOLTIP_TRIGGER + "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": T.IMAGE + "option_generic_tooltip/option_generic_tooltip_top_popup": T.IMAGE + "option_generic_tooltip/option_generic_tooltip_bottom_popup": T.IMAGE + option_text_edit_control: T.EDIT_BOX + option_text_edit_control_with_button: T.STACK_PANEL + "option_text_edit_control_with_button/text_box": T.EDIT_BOX + "option_text_edit_control_with_button/button": T.BUTTON + option_text_edit_control_with_text_button: T.STACK_PANEL + "option_text_edit_control_with_text_button/text_box": T.EDIT_BOX + "option_text_edit_control_with_text_button/button": T.BUTTON + option_toggle_state_template: T.IMAGE + option_toggle_on: T.IMAGE + option_toggle_off: T.IMAGE + option_toggle_on_hover: T.IMAGE + option_toggle_off_hover: T.IMAGE + option_toggle_on_locked: T.IMAGE + option_toggle_off_locked: T.IMAGE + option_toggle_control: T.TOGGLE + checkbox_visuals_unchecked: T.PANEL + checkbox_visuals_checked: T.PANEL + checkbox_visuals_unchecked_locked: T.PANEL + checkbox_visuals_checked_locked: T.PANEL + checkbox_visuals_unchecked_hover: T.PANEL + checkbox_visuals_checked_hover: T.PANEL + checkbox_visuals: T.PANEL + "checkbox_visuals/checkbox_image": T.IMAGE + "checkbox_visuals/checkbox_label": T.LABEL + "checkbox_visuals/accessibility_selection_highlight": T.IMAGE + checkbox_with_highlight_and_label: T.TOGGLE + radio_visuals_unchecked: T.PANEL + radio_visuals_checked: T.PANEL + radio_visuals_unchecked_locked: T.PANEL + radio_visuals_checked_locked: T.PANEL + radio_visuals_unchecked_hover: T.PANEL + radio_visuals_checked_hover: T.PANEL + radio_visuals: T.PANEL + "radio_visuals/radio_image": T.IMAGE + "radio_visuals/radio_label": T.LABEL + "radio_visuals/accessibility_selection_highlight": T.IMAGE + radio_with_label_core: T.TOGGLE + option_radio_group_control: T.STACK_PANEL + "option_radio_group_control/0": T.UNKNOWN + radio_with_label: T.PANEL + "radio_with_label/radio_with_label_core": T.TOGGLE + radio_with_label_and_icon: T.PANEL + "radio_with_label_and_icon/radio_with_label_core": T.TOGGLE + "radio_with_label_and_icon/radio_with_label_icon": T.IMAGE + radio_with_label_and_content_unchecked: T.PANEL + radio_with_label_and_content_checked: T.PANEL + radio_with_label_and_content_unchecked_locked: T.PANEL + radio_with_label_and_content_checked_locked: T.PANEL + radio_with_label_and_content_unchecked_hover: T.PANEL + radio_with_label_and_content_checked_hover: T.PANEL + radio_with_label_and_content_stack_item: T.PANEL + radio_with_label_and_content: T.PANEL + "radio_with_label_and_content/radio_background": T.IMAGE + "radio_with_label_and_content/radio_item_with_description_stack": T.STACK_PANEL + "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": T.STACK_PANEL + "radio_with_label_and_content/radio_item_with_description_stack/radio_description": T.PANEL + radio_item_with_label_and_content_stack: T.STACK_PANEL + "radio_item_with_label_and_content_stack/initial_padding": T.PANEL + "radio_item_with_label_and_content_stack/radio_image_panel": T.PANEL + "radio_item_with_label_and_content_stack/radio_image_panel/image": T.IMAGE + "radio_item_with_label_and_content_stack/radio_to_content_padding": T.PANEL + "radio_item_with_label_and_content_stack/radio_content_panel": T.PANEL + "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": T.UNKNOWN + "radio_item_with_label_and_content_stack/content_to_label_padding": T.PANEL + "radio_item_with_label_and_content_stack/radio_label_panel": T.PANEL + "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": T.LABEL + radio_description_panel: T.PANEL + "radio_description_panel/description": T.LABEL + radio_description: T.LABEL + radio_item_with_label_and_content: T.PANEL + "radio_item_with_label_and_content/radio_with_label_core": T.TOGGLE + option_slider_control: T.PANEL + "option_slider_control/slider": T.SLIDER + default_options_dropdown_toggle_button_state_content: T.STACK_PANEL + "default_options_dropdown_toggle_button_state_content/left_padding": T.PANEL + "default_options_dropdown_toggle_button_state_content/option_content": T.UNKNOWN + "default_options_dropdown_toggle_button_state_content/option_content_padding": T.PANEL + "default_options_dropdown_toggle_button_state_content/label_panel": T.PANEL + "default_options_dropdown_toggle_button_state_content/label_panel/label": T.LABEL + "default_options_dropdown_toggle_button_state_content/arrow_panel": T.PANEL + "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": T.IMAGE + "default_options_dropdown_toggle_button_state_content/right_padding": T.PANEL + options_dropdown_toggle_control: T.TOGGLE + options_dropdown_dark_toggle_control: T.TOGGLE + option_dropdown_control: T.PANEL + "option_dropdown_control/dropdown": T.UNKNOWN + option_dropdown_control_no_scroll: T.PANEL + option_info_label_with_icon: T.IMAGE + "option_info_label_with_icon/control": T.LABEL + "option_info_label_with_icon/icon_panel": T.STACK_PANEL + "option_info_label_with_icon/icon_panel/icon_image": T.IMAGE + "option_info_label_with_icon/icon_panel/padding2": T.PANEL + option_info_label_icon: T.PANEL + option_icon_label: T.PANEL + option_info_label_with_bulb: T.IMAGE + "option_info_label_with_bulb/stack_panel": T.STACK_PANEL + "option_info_label_with_bulb/stack_panel/padding1": T.PANEL + "option_info_label_with_bulb/stack_panel/bulb_panel": T.STACK_PANEL + "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": T.PANEL + "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": T.IMAGE + "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": T.PANEL + "option_info_label_with_bulb/stack_panel/padding2": T.PANEL + "option_info_label_with_bulb/stack_panel/label_panel": T.STACK_PANEL + "option_info_label_with_bulb/stack_panel/label_panel/info_label1": T.LABEL + "option_info_label_with_bulb/stack_panel/label_panel/padding2": T.PANEL + "option_info_label_with_bulb/stack_panel/label_panel/info_label2": T.LABEL + "option_info_label_with_bulb/stack_panel/padding3": T.PANEL + option_info_label_with_image: T.IMAGE + "option_info_label_with_image/control": T.LABEL + option_info_label_image: T.PANEL + option_toggle: T.PANEL + option_radio_group: T.PANEL + option_radio_dropdown_group: T.PANEL + "option_radio_dropdown_group/radio_control_group": T.STACK_PANEL + option_text_edit: T.PANEL + option_text_edit_with_button: T.PANEL + option_text_edit_with_text_button: T.PANEL + option_slider: T.PANEL + option_dropdown: T.PANEL + option_dropdown_no_scroll: T.PANEL + option_custom_control: T.PANEL + option_info_label: T.PANEL + dynamic_dialog_screen: T.SCREEN + settings_content: T.PANEL + "settings_content/background": T.IMAGE + "settings_content/stack_panel": T.STACK_PANEL + "settings_content/stack_panel/content_panel": T.PANEL + "settings_content/stack_panel/content_panel/common_panel": T.STACK_PANEL + "settings_content/stack_panel/content_panel/container": T.PANEL + "settings_content/popup_dialog_factory": T.FACTORY + toggle_button_control: T.PANEL + "toggle_button_control/glyph": T.IMAGE + "toggle_button_control/glyph_color": T.IMAGE + "toggle_button_control/progress_loading_bars": T.IMAGE + "toggle_button_control/tab_button_text": T.LABEL + section_toggle_base: T.PANEL + section_title_label: T.LABEL + dialog_title_label: T.LABEL + dialog_titles: T.STACK_PANEL + "dialog_titles/left_padding": T.PANEL + "dialog_titles/dialog_title_label": T.LABEL + "dialog_titles/center_padding": T.PANEL + "dialog_titles/section_title_label": T.LABEL + "dialog_titles/right_padding_is_always_right": T.PANEL + dialog_content: T.PANEL + "dialog_content/dialog_titles": T.STACK_PANEL + "dialog_content/selector_area": T.PANEL + "dialog_content/content_area": T.PANEL + "dialog_content/section_divider": T.IMAGE + selector_group_label: T.LABEL + scrollable_selector_area_content: T.PANEL + selector_area: T.PANEL + "selector_area/scrolling_panel": T.PANEL + content_area: T.PANEL + "content_area/control": T.STACK_PANEL + "content_area/control/header_panel": T.PANEL + "content_area/control/header_panel/content": T.UNKNOWN + "content_area/control/scrolling_panel": T.PANEL + "content_area/control/footer_panel": T.PANEL + "content_area/control/footer_panel/content": T.UNKNOWN + section_divider: T.IMAGE + screen_base: T.SCREEN +} + +export type WorldSectionType = { + selector_pane_content: T.STACK_PANEL + "selector_pane_content/world_snapshot_image": T.PANEL + "selector_pane_content/world_snapshot_image/thumbnail": T.IMAGE + "selector_pane_content/world_snapshot_image/thumbnail/border": T.IMAGE + "selector_pane_content/play_or_create_panel": T.STACK_PANEL + "selector_pane_content/play_or_host_panel": T.STACK_PANEL + "selector_pane_content/spacer": T.PANEL + "selector_pane_content/server_settings_visibility_panel": T.STACK_PANEL + "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": T.LABEL + "selector_pane_content/server_settings_visibility_panel/server_settings_button": T.PANEL + "selector_pane_content/server_settings_visibility_panel/server_spacer": T.PANEL + "selector_pane_content/selector_group_label_1": T.LABEL + "selector_pane_content/game_button": T.PANEL + "selector_pane_content/spacer_01": T.PANEL + "selector_pane_content/classroom_button": T.PANEL + "selector_pane_content/spacer_02": T.PANEL + "selector_pane_content/switch_game_button": T.PANEL + "selector_pane_content/spacer_03": T.PANEL + "selector_pane_content/multiplayer_button": T.PANEL + "selector_pane_content/spacer_04": T.PANEL + "selector_pane_content/edu_cloud_button": T.PANEL + "selector_pane_content/spacer_05": T.PANEL + "selector_pane_content/debug_button": T.PANEL + launch_world_button_stack_def: T.STACK_PANEL + play_or_create_stack_bedrock: T.STACK_PANEL + "play_or_create_stack_bedrock/create_or_play_button": T.BUTTON + "play_or_create_stack_bedrock/play_on_realm_button": T.BUTTON + edu_play_host_button: T.BUTTON + play_or_host_stack_edu: T.STACK_PANEL + "play_or_host_stack_edu/edu_play_button": T.BUTTON + "play_or_host_stack_edu/edu_host_button": T.BUTTON + addons_selector_panel: T.STACK_PANEL + "addons_selector_panel/spacer_01": T.PANEL + "addons_selector_panel/selector_group_label_2": T.LABEL + "addons_selector_panel/level_texture_pack_button": T.PANEL + "addons_selector_panel/spacer_02": T.PANEL + "addons_selector_panel/addon_button": T.PANEL + server_settings_button: T.PANEL + server_section: T.STACK_PANEL + game_button: T.PANEL + export_world_button: T.BUTTON + delete_world_button: T.BUTTON + export_template_button: T.BUTTON + copy_world_button: T.BUTTON + edit_world_manipulation_buttons: T.STACK_PANEL + "edit_world_manipulation_buttons/export": T.BUTTON + "edit_world_manipulation_buttons/padding": T.PANEL + "edit_world_manipulation_buttons/delete": T.BUTTON + game_section: T.STACK_PANEL + "game_section/new_edit_world_opt_in_panel": T.STACK_PANEL + "game_section/new_edit_world_opt_in_panel/panel_title": T.PANEL + "game_section/new_edit_world_opt_in_panel/panel_text": T.PANEL + "game_section/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON + "game_section/new_edit_world_opt_in_divider": T.PANEL + "game_section/new_edit_world_opt_in_divider/section_divider": T.IMAGE + "game_section/unlock_template_options_panel": T.STACK_PANEL + "game_section/unlock_template_options_panel/option_info_label": T.PANEL + "game_section/unlock_template_options_panel/unlock_template_options_button": T.BUTTON + "game_section/option_info_label": T.PANEL + "game_section/hardcore_info_label": T.PANEL + "game_section/world_settings_label": T.PANEL + "game_section/option_text_edit_0": T.PANEL + "game_section/project_section_divider_1": T.IMAGE + "game_section/project_header_label": T.PANEL + "game_section/project_section_divider_2": T.IMAGE + "game_section/project_spacer": T.PANEL + "game_section/option_text_edit_1": T.PANEL + "game_section/export_settings_section_divider_1": T.IMAGE + "game_section/export_settings_header_label": T.PANEL + "game_section/export_settings_header_description": T.PANEL + "game_section/export_settings_section_divider_2": T.IMAGE + "game_section/export_settings_spacer": T.PANEL + "game_section/option_dropdown_0": T.PANEL + "game_section/option_dropdown_1": T.PANEL + "game_section/is_hardcore_toggle": T.PANEL + "game_section/option_dropdown_2": T.PANEL + "game_section/world_preferences_label": T.PANEL + "game_section/starting_map_toggle": T.PANEL + "game_section/bonus_chest_toggle": T.PANEL + "game_section/option_dropdown_permissions": T.PANEL + "game_section/option_dropdown_3": T.PANEL + "game_section/level_seed_selector_edu": T.PANEL + "game_section/level_seed_selector": T.PANEL + "game_section/level_seed_selector_trial": T.PANEL + "game_section/server_sim_distance_slider": T.PANEL + "game_section/world_options_label": T.PANEL + "game_section/pvp_toggle": T.PANEL + "game_section/show_coordinates_toggle": T.PANEL + "game_section/locator_bar_toggle": T.PANEL + "game_section/show_days_played_toggle": T.PANEL + "game_section/fire_spreads_toggle": T.PANEL + "game_section/recipes_unlock_toggle": T.PANEL + "game_section/tnt_explodes_toggle": T.PANEL + "game_section/respawn_blocks_explode_toggle": T.PANEL + "game_section/mob_loot_toggle": T.PANEL + "game_section/natural_regeneration_toggle": T.PANEL + "game_section/tile_drops_toggle": T.PANEL + "game_section/player_sleep_toggle": T.PANEL + "game_section/player_sleep_percentage_slider": T.PANEL + "game_section/immediate_respawn_toggle": T.PANEL + "game_section/respawn_radius": T.PANEL + "game_section/experimental_toggles_label": T.PANEL + "game_section/experimental_toggles_label_info": T.PANEL + "game_section/experimental_toggles": T.STACK_PANEL + "game_section/world_cheats_label": T.PANEL + "game_section/allow_cheats_toggle": T.PANEL + "game_section/education_toggle": T.PANEL + "game_section/always_day_toggle": T.PANEL + "game_section/daylight_cycle_toggle": T.PANEL + "game_section/keep_inventory_toggle": T.PANEL + "game_section/mob_spawn_toggle": T.PANEL + "game_section/mob_griefing_toggle": T.PANEL + "game_section/entities_drop_loot_toggle": T.PANEL + "game_section/weather_cycle_toggle": T.PANEL + "game_section/command_blocks_enabled_toggle": T.PANEL + "game_section/random_tick_speed": T.PANEL + "game_section/world_management_label": T.PANEL + "game_section/convert_to_infinite_panel": T.PANEL + "game_section/convert_to_infinite_panel/convert_to_infinite_button": T.BUTTON + "game_section/delete_button": T.BUTTON + "game_section/button_panel": T.PANEL + "game_section/button_panel/manipulation_controls": T.UNKNOWN + "game_section/export_template_panel": T.STACK_PANEL + "game_section/export_template_panel/padding": T.PANEL + "game_section/export_template_panel/template_version": T.PANEL + "game_section/export_template_panel/template_buttons": T.STACK_PANEL + "game_section/export_template_panel/template_buttons/template_image_picker_button": T.BUTTON + "game_section/export_template_panel/template_buttons/padding": T.PANEL + "game_section/export_template_panel/template_buttons/template_localization_picker_button": T.BUTTON + "game_section/export_template_panel/export_template": T.BUTTON + "game_section/clear_player_data_panel": T.STACK_PANEL + "game_section/clear_player_data_panel/padding": T.PANEL + "game_section/clear_player_data_panel/clear_player_data_button": T.BUTTON + "game_section/copy_world_panel": T.PANEL + "game_section/copy_world_panel/copy_world": T.BUTTON + "game_section/upload_download_slot_panel": T.PANEL + "game_section/upload_download_slot_panel/upload_download_slot_button": T.BUTTON + "game_section/replace_slot_panel": T.PANEL + "game_section/replace_slot_panel/replace_slot_button": T.BUTTON + level_texture_pack_button: T.PANEL + level_texture_pack_section: T.STACK_PANEL + addon_button: T.PANEL + addon_section: T.STACK_PANEL + world_game_mode_dropdown_content: T.PANEL + xbl_broadcast_dropdown_content: T.PANEL + platform_broadcast_dropdown_content: T.PANEL + player_game_mode_dropdown_content: T.PANEL + world_type_dropdown_content: T.PANEL + world_difficulty_dropdown_content: T.PANEL + multiplayer_button: T.PANEL + cross_platform_warning_label: T.LABEL + multiplayer_section: T.STACK_PANEL + "multiplayer_section/multiplayer_game_toggle": T.PANEL + "multiplayer_section/platform_settings_dropdown": T.PANEL + "multiplayer_section/xbl_settings_dropdown": T.PANEL + "multiplayer_section/server_visible_toggle": T.PANEL + "multiplayer_section/general_multiplayer_warning_label": T.LABEL + "multiplayer_section/open_uri_button": T.BUTTON + "multiplayer_section/platform_multiplayer_warning_label": T.LABEL + "multiplayer_section/xbl_multiplayer_warning_label": T.LABEL + option_text_edit_mock_with_button: T.PANEL + option_text_edit_mock_control_with_button: T.STACK_PANEL + "option_text_edit_mock_control_with_button/trial_text_box_button": T.BUTTON + "option_text_edit_mock_control_with_button/seed_arrow_button": T.BUTTON + experimental_toggle: T.PANEL + open_account_setting_button: T.BUTTON + edu_cloud_button: T.PANEL + edu_cloud_section: T.STACK_PANEL + "edu_cloud_section/edu_cloud_label": T.PANEL + "edu_cloud_section/cloud_file_name": T.PANEL + "edu_cloud_section/cloud_file_last_changed": T.PANEL + "edu_cloud_section/cloud_upload_toggle": T.PANEL + "edu_cloud_section/cloud_help_wrapper_panel": T.STACK_PANEL + "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": T.BUTTON + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": T.PANEL + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": T.IMAGE + debug_button: T.PANEL + debug_section: T.STACK_PANEL + "debug_section/flat_nether_toggle": T.PANEL + "debug_section/game_version_override_toggle": T.PANEL + "debug_section/game_version_override_textbox": T.PANEL + "debug_section/spawn_dimension_dropdown": T.PANEL + "debug_section/spawn_biome_dropdown": T.PANEL + "debug_section/biome_override_dropdown": T.PANEL + "debug_section/base_game_version_debug_text": T.LABEL + debug_spawn_dimension_dropdown_content: T.PANEL + debug_spawn_biome_dropdown_content: T.PANEL + debug_biome_override_dropdown_content: T.PANEL + editor_edit_world_manipulation_buttons_content: T.STACK_PANEL + "editor_edit_world_manipulation_buttons_content/export_as_project": T.BUTTON + "editor_edit_world_manipulation_buttons_content/padding": T.PANEL + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": T.STACK_PANEL + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": T.BUTTON + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": T.PANEL + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": T.BUTTON + "editor_edit_world_manipulation_buttons_content/padding_2": T.PANEL + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": T.STACK_PANEL + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": T.BUTTON + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": T.PANEL + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": T.BUTTON + editor_edit_world_manipulation_buttons: T.PANEL +} + +export type SocialSectionType = { + party_button: T.PANEL + party_section: T.STACK_PANEL + "party_section/party_invite_filter_dropdown": T.PANEL + "party_section/party_invite_reset_default_padding": T.PANEL + "party_section/party_invite_send_privileges_dropdown": T.PANEL + "party_section/party_privacy_default_padding": T.PANEL + "party_section/party_privacy_dropdown": T.PANEL + "party_section/party_privacy_label_wrapper": T.PANEL + "party_section/party_settings_reset_default_button_default_padding": T.PANEL + "party_section/party_settings_reset_default_button": T.BUTTON + "party_section/microsoft_account_settings_divider": T.PANEL + "party_section/microsoft_account_settings_divider/section_divider": T.IMAGE + "party_section/microsoft_account_settings_header": T.LABEL + "party_section/microsoft_account_settings_padding": T.PANEL + "party_section/microsoft_account_settings_label_wrapper": T.PANEL + "party_section/privacy_and_online_safety_button_padding": T.PANEL + "party_section/privacy_and_online_safety_button": T.BUTTON + "party_section/microsoft_account_settings_ending_padding": T.PANEL + party_privacy_label: T.LABEL + microsoft_account_settings_label: T.LABEL + platform_settings_label: T.LABEL + party_invite_filter_dropdown_content: T.PANEL + party_privacy_dropdown_content: T.PANEL + party_invite_send_privileges_dropdown_content: T.PANEL +} + +export type SidebarNavigationType = { + empty_panel: T.PANEL + empty_fill_x_panel: T.PANEL + empty_default_panel: T.PANEL + vertical_padding_panel: T.PANEL + sidebar_bg: T.IMAGE + sidebar_divider: T.IMAGE + sidebar_divider_panel: T.PANEL + "sidebar_divider_panel/sidebar_divider": T.IMAGE + toggle_content: T.PANEL + "toggle_content/toggle_content": T.UNKNOWN + sidebar_section_scroll_panel: T.PANEL + sidebar_bg_content_panel: T.IMAGE + "sidebar_bg_content_panel/sidebar_bg_content": T.UNKNOWN + sidebar_nav_toggle_image: T.IMAGE + sidebar_nav_toggle_image_panel: T.PANEL + "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": T.IMAGE + "sidebar_nav_toggle_image_panel/gamepad_helper_icon": T.UNKNOWN + gamepad_helper_icon_start_toggle: T.STACK_PANEL + verbose_view_toggle_content: T.STACK_PANEL + "verbose_view_toggle_content/left_padding": T.PANEL + "verbose_view_toggle_content/sidebar_nav_toggle_image": T.PANEL + sidebar_toggle_bg: T.IMAGE + sidebar_toggle: T.PANEL + sidebar_option_toggle: T.PANEL + simple_sidebar_toggle: T.PANEL + verbose_toggle: T.PANEL + verbose_sidebar_option: T.PANEL + verbose_expand_option: T.PANEL + verbose_dropdown_option: T.PANEL + verbose_dropdown_expanded_option: T.PANEL + verbose_sidebar_expand_section_bg: T.IMAGE + verbose_sidebar_expand_section_panel: T.STACK_PANEL + verbose_expand_section_panel: T.INPUT_PANEL + verbose_view_toggle: T.PANEL + sidebar_option_factory: T.STACK_PANEL + sidebar_option_factory_panel: T.INPUT_PANEL + "sidebar_option_factory_panel/sidebar_option_factory": T.STACK_PANEL + verbose_button_content: T.PANEL + "verbose_button_content/button_label": T.LABEL + verbose_button: T.BUTTON + verbose_nav_button_panel: T.PANEL + "verbose_nav_button_panel/verbose_nav_button": T.BUTTON + verbose_screen_nav_button: T.BUTTON + verbose_screen_nav_option_panel: T.PANEL + "verbose_screen_nav_option_panel/verbose_nav_button": T.BUTTON + sidebar_option_factory_scroll_panel: T.PANEL + sidebar_screen_nav_option_factory_panel: T.STACK_PANEL + "sidebar_screen_nav_option_factory_panel/fill_panel": T.PANEL + "sidebar_screen_nav_option_factory_panel/button": T.PANEL + "sidebar_screen_nav_option_factory_panel/padding": T.PANEL + "sidebar_screen_nav_option_factory_panel/platform_icon_padding": T.PANEL + root_section_content_panel: T.STACK_PANEL + "root_section_content_panel/sidebar_option_factory": T.PANEL + "root_section_content_panel/verbose_sidebar_screen_Nav": T.STACK_PANEL + edge_bar: T.IMAGE + verbose_view_stack_panel: T.STACK_PANEL + "verbose_view_stack_panel/verbose_view_toggle": T.PANEL + sidebar_section: T.STACK_PANEL + "sidebar_section/left_edge_bar": T.IMAGE + "sidebar_section/verbose_view_stack_panel": T.STACK_PANEL + "sidebar_section/right_edge_bar": T.IMAGE + root_section: T.PANEL + verbose_root_section: T.STACK_PANEL + simple_root_section: T.STACK_PANEL + "simple_root_section/verbose_view_toggle": T.PANEL + "simple_root_section/root_section": T.PANEL + sidebar_section_factory_panel: T.IMAGE + "sidebar_section_factory_panel/sidebar_section_factory": T.STACK_PANEL + sidebar_view_content_panel: T.PANEL + "sidebar_view_content_panel/view_stack_panel": T.STACK_PANEL + "sidebar_view_content_panel/view_stack_panel/sidebar_view": T.IMAGE + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": T.PANEL + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": T.BUTTON + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": T.PANEL + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": T.PANEL + "sidebar_view_content_panel/verbose_view_exit": T.PANEL + verbose_sidebar_view_modal: T.INPUT_PANEL + sidebar_views: T.PANEL + "sidebar_views/sidebar_view_conent": T.PANEL + "sidebar_views/sidebar_view_conent/simple_sidebar_view": T.PANEL + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": T.INPUT_PANEL + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": T.PANEL + sidebar_empty_panel: T.PANEL + content_view: T.PANEL + "content_view/content_view_stack": T.STACK_PANEL + "content_view/content_view_stack/sidebar_view_stack": T.STACK_PANEL + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": T.PANEL + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": T.PANEL + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": T.BUTTON + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": T.PANEL + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": T.PANEL + "content_view/content_view_stack/sidebar_view_stack/divider": T.IMAGE + "content_view/content_view_stack/main_view_content": T.INPUT_PANEL + "content_view/content_view_stack/main_view_content/screen_content": T.UNKNOWN + sidebar_view: T.INPUT_PANEL + "sidebar_view/sidebar_content": T.PANEL + "sidebar_view/content_view": T.PANEL + "sidebar_view/progress_loading": T.PANEL + platform_store_icon_spacing: T.PANEL +} + +export type SignType = { + sign_background: T.IMAGE + hanging_sign_background: T.IMAGE + base_sign_text_multiline: T.EDIT_BOX + regular_sign_text_multiline: T.EDIT_BOX + hanging_sign_text_multiline: T.EDIT_BOX + sign_screen_content: T.PANEL + "sign_screen_content/input_eating_panel": T.INPUT_PANEL + "sign_screen_content/input_eating_panel/text_edit": T.UNKNOWN + "sign_screen_content/invisible_exit_background": T.INPUT_PANEL + sign_screen: T.SCREEN +} + +export type SimpleInprogressType = { + title_text: T.LABEL + main_panel: T.PANEL + "main_panel/common_panel": T.PANEL + "main_panel/title": T.LABEL + "main_panel/main_content": T.LABEL + "main_panel/progress_loading_bars": T.IMAGE + simple_inprogress_screen: T.SCREEN + simple_inprogress_screen_content: T.PANEL + "simple_inprogress_screen_content/root_panel": T.PANEL + "simple_inprogress_screen_content/root_panel/main_panel": T.PANEL +} + +export type SkinPackPurchaseType = { + cycle_pack_left_button: T.BUTTON + cycle_pack_right_button: T.BUTTON + skin_model: T.PANEL + "skin_model/paper_doll": T.CUSTOM + skin_lock: T.IMAGE + skin_focus_border: T.IMAGE + "skin_focus_border/equip": T.PANEL + skin_button_panel_gamepad: T.PANEL + "skin_button_panel_gamepad/skin_button": T.BUTTON + "skin_button_panel_gamepad/skin_button/hover": T.IMAGE + "skin_button_panel_gamepad/skin_button/pressed": T.IMAGE + skin_button_panel_not_gamepad: T.PANEL + "skin_button_panel_not_gamepad/skin_button": T.BUTTON + "skin_button_panel_not_gamepad/skin_button/hover": T.IMAGE + "skin_button_panel_not_gamepad/skin_button/pressed": T.IMAGE + "skin_button_panel_not_gamepad/equip_button": T.BUTTON + skin_button_panel: T.STACK_PANEL + "skin_button_panel/gamepad": T.PANEL + "skin_button_panel/not_gamepad": T.PANEL + equip_button_state_panel: T.PANEL + "equip_button_state_panel/button_panel": T.PANEL + equip_button_text: T.PANEL + "equip_button_text/text": T.LABEL + skins_grid_item: T.PANEL + "skins_grid_item/model": T.PANEL + "skins_grid_item/lock": T.IMAGE + "skins_grid_item/button": T.STACK_PANEL + skins_grid: T.GRID + skins_panel: T.PANEL + "skins_panel/bg": T.PANEL + "skins_panel/bg/left": T.BUTTON + "skins_panel/bg/sg": T.GRID + "skins_panel/bg/right": T.BUTTON + "skins_panel/bg/progress_loading_panel": T.PANEL + "skins_panel/bg/progress_loading_panel/progress_loading": T.PANEL + "skins_panel/bg/progress_loading_panel/progress_loading_outline": T.BUTTON + "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": T.IMAGE + screen_root: T.SCREEN + skin_pack_purchase_upsell_screen: T.SCREEN + skin_pack_purchase_upsell_screen_content: T.PANEL + skin_pack_purchase_upsell_dialog_content: T.PANEL + "skin_pack_purchase_upsell_dialog_content/container": T.PANEL + skin_pack_purchase_standard: T.SCREEN + skin_pack_purchase_standard_content: T.PANEL + skin_pack_purchase_dialog_content: T.PANEL + "skin_pack_purchase_dialog_content/container": T.PANEL +} + +export type SkinPickerType = { + banner_fill: T.IMAGE + title_label: T.LABEL + label: T.LABEL + chevron_image: T.IMAGE + bumper_image: T.IMAGE + undo_image: T.IMAGE + plus_icon: T.IMAGE + direction_button_panel: T.PANEL + "direction_button_panel/chevron_image": T.IMAGE + "direction_button_panel/bumper_image": T.IMAGE + cycle_pack_button: T.BUTTON + cycle_pack_left_button: T.BUTTON + cycle_pack_right_button: T.BUTTON + skin_button: T.BUTTON + "skin_button/hover": T.IMAGE + "skin_button/pressed": T.IMAGE + skin_rotation_arrows: T.IMAGE + skin_viewer_panel: T.INPUT_PANEL + "skin_viewer_panel/custom_skin_button": T.BUTTON + "skin_viewer_panel/skin_model_panel": T.PANEL + "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM + "skin_viewer_panel/lock": T.IMAGE + undo_skin_button: T.BUTTON + accept_skin_button: T.BUTTON + stack_item: T.PANEL + accept_skin_panel: T.STACK_PANEL + "accept_skin_panel/stack_item_0": T.PANEL + "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON + "accept_skin_panel/stack_item_1": T.PANEL + "accept_skin_panel/stack_item_1/accept_button": T.BUTTON + appearance_status_image_panel: T.PANEL + "appearance_status_image_panel/limited_status_image": T.IMAGE + "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE + appearance_status_content: T.STACK_PANEL + "appearance_status_content/appearance_status_image_panel": T.PANEL + "appearance_status_content/padding": T.PANEL + "appearance_status_content/appearance_status_label_panel": T.PANEL + "appearance_status_content/appearance_status_label_panel/appearance_status_label": T.LABEL + preview_skin_panel: T.PANEL + "preview_skin_panel/preview": T.INPUT_PANEL + "preview_skin_panel/button_frame": T.STACK_PANEL + "preview_skin_panel/button_frame/stack_item_0": T.PANEL + "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE + "preview_skin_panel/button_frame/padding": T.PANEL + "preview_skin_panel/button_frame/notification_and_accept_input_panel": T.INPUT_PANEL + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": T.STACK_PANEL + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": T.PANEL + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": T.BUTTON + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": T.PANEL + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": T.STACK_PANEL + skin_model: T.CUSTOM + premium_skin_button: T.BUTTON + skin_lock: T.IMAGE + new_pack_icon: T.PANEL + "new_pack_icon/icon": T.IMAGE + pack_lock: T.PANEL + "pack_lock/locked": T.IMAGE + "pack_lock/unlocked": T.IMAGE + skin_input_panel: T.INPUT_PANEL + "skin_input_panel/sg": T.GRID + skins_grid_item: T.PANEL + "skins_grid_item/clip": T.PANEL + "skins_grid_item/clip/model": T.CUSTOM + "skins_grid_item/lock": T.IMAGE + "skins_grid_item/button": T.BUTTON + skins_grid: T.GRID + pack_name: T.LABEL + pack_grid_item: T.PANEL + "pack_grid_item/header": T.STACK_PANEL + "pack_grid_item/header/padding": T.PANEL + "pack_grid_item/header/pack_lock": T.PANEL + "pack_grid_item/header/pack_name": T.LABEL + "pack_grid_item/header/padding_2": T.PANEL + "pack_grid_item/header/new_pack_icon": T.PANEL + "pack_grid_item/header/padding_3": T.PANEL + "pack_grid_item/bg": T.IMAGE + "pack_grid_item/bg/skin_input_panel": T.INPUT_PANEL + "pack_grid_item/bg/expand_view_button": T.BUTTON + "pack_grid_item/bg/progress_loading_no_connection": T.PANEL + "pack_grid_item/bg/progress_loading": T.PANEL + premium_packs_grid: T.GRID + standard_skin_button: T.BUTTON + default_skins_grid_item: T.PANEL + "default_skins_grid_item/model": T.CUSTOM + "default_skins_grid_item/button": T.BUTTON + default_skins_grid: T.GRID + recent_skins_grid_item: T.PANEL + "recent_skins_grid_item/clip": T.PANEL + "recent_skins_grid_item/clip/model": T.CUSTOM + "recent_skins_grid_item/button": T.BUTTON + recent_skins_grid: T.GRID + standard_frame: T.PANEL + standard_header: T.LABEL + standard_fill: T.IMAGE + standard_panel: T.PANEL + "standard_panel/default_skins": T.PANEL + "standard_panel/default_skins/header": T.LABEL + "standard_panel/default_skins/fill": T.IMAGE + "standard_panel/default_skins/fill/default_skins_grid": T.GRID + "standard_panel/recent_skins": T.PANEL + "standard_panel/recent_skins/header": T.LABEL + "standard_panel/recent_skins/fill": T.IMAGE + "standard_panel/recent_skins/fill/recent_skins_grid": T.GRID + "standard_panel/recent_skins/fill/recent_skins_loading_panel": T.PANEL + scrolling_content_stack: T.STACK_PANEL + "scrolling_content_stack/standard_panel": T.PANEL + "scrolling_content_stack/premium_packs_grid": T.GRID + all_skins_content: T.INPUT_PANEL + "all_skins_content/scrolling_frame": T.PANEL + "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL + "all_skins_content/scrolling_frame/progress_loading": T.PANEL + all_skins_frame: T.PANEL + "all_skins_frame/all_skins_content": T.INPUT_PANEL + title_bar: T.STACK_PANEL + "title_bar/padding_0": T.PANEL + "title_bar/fill_panel": T.PANEL + "title_bar/fill_panel/title_holder": T.PANEL + "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL + "title_bar/padding_1": T.PANEL + "title_bar/skin_name_holder": T.PANEL + "title_bar/skin_name_holder/preview_skin_name": T.LABEL + "title_bar/padding_2": T.PANEL + popup_dialog_skin_model: T.PANEL + "popup_dialog_skin_model/paper_doll": T.CUSTOM + popup_dialog_choose_skin_type_button: T.BUTTON + "popup_dialog_choose_skin_type_button/hover": T.IMAGE + "popup_dialog_choose_skin_type_button/pressed": T.IMAGE + popup_dialog_choose_skin_type_panel: T.PANEL + "popup_dialog_choose_skin_type_panel/model": T.PANEL + "popup_dialog_choose_skin_type_panel/button_highlight": T.BUTTON + popup_dialog__invalid_custom_skin: T.INPUT_PANEL + "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE + "popup_dialog__invalid_custom_skin/popup_dialog_message": T.LABEL + "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": T.BUTTON + popup_dialog__upsell_without_store: T.INPUT_PANEL + popup_dialog__choose_skin_type: T.INPUT_PANEL + "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE + "popup_dialog__choose_skin_type/popup_dialog_message": T.LABEL + "popup_dialog__choose_skin_type/left": T.PANEL + "popup_dialog__choose_skin_type/right": T.PANEL + content: T.PANEL + "content/title": T.STACK_PANEL + "content/selector_area": T.INPUT_PANEL + "content/content_area": T.INPUT_PANEL + "content/section_divider": T.IMAGE + skin_picker_screen: T.SCREEN + skin_picker_screen_content: T.PANEL + "skin_picker_screen_content/bg": T.STACK_PANEL + "skin_picker_screen_content/container": T.PANEL + "skin_picker_screen_content/container/content": T.PANEL + "skin_picker_screen_content/popup_dialog_factory": T.FACTORY + scrollable_selector_area_content: T.PANEL + selector_area: T.INPUT_PANEL + "selector_area/all_skins": T.PANEL + "selector_area/inactive_modal_pane_fade": T.IMAGE + content_area: T.INPUT_PANEL + "content_area/preview_skin": T.PANEL + "content_area/inactive_modal_pane_fade": T.IMAGE + section_divider: T.IMAGE +} + +export type SmithingTableType = { + smithing_image: T.IMAGE + ingot_image: T.IMAGE + smithing_icon: T.IMAGE + upgrade_label: T.LABEL + icon_and_text_panel: T.PANEL + "icon_and_text_panel/smithing_icon_panel": T.PANEL + "icon_and_text_panel/upgrade_label": T.LABEL + smithing_icon_panel: T.PANEL + "smithing_icon_panel/smithing_icon": T.IMAGE + plus_sign_icon: T.IMAGE + arrow_icon: T.IMAGE + cross_out_icon: T.IMAGE + smithing_table_output_slot_button: T.BUTTON + smithing_table_item_slot: T.PANEL + "smithing_table_item_slot/container_item": T.INPUT_PANEL + recipe_grid: T.GRID + "recipe_grid/input_item_slot": T.PANEL + "recipe_grid/plus": T.PANEL + "recipe_grid/plus/plus_sign_icon": T.IMAGE + "recipe_grid/material_item_slot": T.PANEL + "recipe_grid/yields": T.PANEL + "recipe_grid/yields/arrow_icon": T.IMAGE + "recipe_grid/yields/cross_out_icon": T.IMAGE + "recipe_grid/result_item_slot": T.PANEL + recipe_panel: T.PANEL + "recipe_panel/recipe_grid": T.GRID + top_half_panel: T.PANEL + "top_half_panel/icon_and_text_panel": T.PANEL + "top_half_panel/recipe_panel": T.PANEL + smithing_table_panel: T.PANEL + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL + "smithing_table_panel/selected_item_details_factory": T.FACTORY + "smithing_table_panel/item_lock_notification_factory": T.FACTORY + "smithing_table_panel/root_panel": T.INPUT_PANEL + "smithing_table_panel/root_panel/common_panel": T.PANEL + "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON + "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON + "smithing_table_panel/flying_item_renderer": T.CUSTOM + smithing_table_screen: T.SCREEN +} + +export type SmithingTable2Type = { + smithing_icon: T.IMAGE + upgrade_label: T.LABEL + icon_and_text_panel: T.PANEL + "icon_and_text_panel/smithing_icon_panel": T.PANEL + "icon_and_text_panel/upgrade_label": T.LABEL + smithing_icon_panel: T.PANEL + "smithing_icon_panel/smithing_icon": T.IMAGE + smithing_image: T.IMAGE + smithing_material_image_ingot: T.IMAGE + arrow_icon: T.IMAGE + cross_out_icon_image: T.IMAGE + cross_out_icon_button: T.BUTTON + "cross_out_icon_button/default": T.IMAGE + "cross_out_icon_button/hover": T.CUSTOM + smithing_input_image_templates: T.IMAGE + smithing_input_image_armors: T.IMAGE + smithing_input_image_armors_and_tools: T.IMAGE + smithing_material_image_all: T.IMAGE + template_overlay_image: T.PANEL + "template_overlay_image/templates": T.IMAGE + input_overlay_image: T.PANEL + "input_overlay_image/armors_and_tools": T.IMAGE + "input_overlay_image/armors": T.IMAGE + material_overlay_image: T.PANEL + "material_overlay_image/all_materials": T.IMAGE + "material_overlay_image/ingot": T.IMAGE + smithing_table_output_slot_button: T.BUTTON + smithing_table_item_slot: T.PANEL + "smithing_table_item_slot/container_item": T.INPUT_PANEL + recipe_grid: T.GRID + "recipe_grid/template_item_slot": T.PANEL + "recipe_grid/input_item_slot": T.PANEL + "recipe_grid/material_item_slot": T.PANEL + "recipe_grid/yields": T.PANEL + "recipe_grid/yields/arrow_icon": T.IMAGE + "recipe_grid/yields/cross_out_icon": T.BUTTON + "recipe_grid/result_item_slot": T.PANEL + "recipe_grid/result_item_preview": T.PANEL + recipe_panel: T.PANEL + "recipe_panel/recipe_grid": T.GRID + result_item_preview: T.PANEL + "result_item_preview/inner": T.PANEL + result_item_preview_inner: T.PANEL + "result_item_preview_inner/smithing_preview_renderer": T.CUSTOM + toolbar_background: T.IMAGE + help_button: T.BUTTON + toolbar_panel: T.INPUT_PANEL + "toolbar_panel/toolbar_background": T.IMAGE + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL + toolbar_anchor: T.PANEL + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL + top_half_panel: T.PANEL + "top_half_panel/icon_and_text_panel": T.PANEL + "top_half_panel/recipe_panel": T.PANEL + smithing_table_panel: T.PANEL + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL + "smithing_table_panel/selected_item_details_factory": T.FACTORY + "smithing_table_panel/item_lock_notification_factory": T.FACTORY + "smithing_table_panel/root_panel": T.INPUT_PANEL + "smithing_table_panel/root_panel/common_panel": T.PANEL + "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON + "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON + "smithing_table_panel/root_panel/toolbar_anchor": T.PANEL + "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON + "smithing_table_panel/flying_item_renderer": T.CUSTOM +} + +export type SmithingTablePocketType = { + ingot_image: T.IMAGE + background_image: T.IMAGE + arrow_icon: T.IMAGE + smithing_icon: T.IMAGE + upgrade_label: T.LABEL + smithing_icon_panel: T.PANEL + "smithing_icon_panel/smithing_icon": T.IMAGE + smithing_table_title_and_text_panel: T.PANEL + "smithing_table_title_and_text_panel/smithing_icon_panel": T.PANEL + "smithing_table_title_and_text_panel/upgrade_label": T.LABEL + slots_panel: T.PANEL + "slots_panel/input_slot": T.INPUT_PANEL + "slots_panel/material_slot": T.INPUT_PANEL + "slots_panel/result_slot": T.INPUT_PANEL + "slots_panel/plus_sign": T.LABEL + "slots_panel/arrow": T.IMAGE + "slots_panel/arrow/cross_out": T.IMAGE + smithing_table_contents_panel: T.STACK_PANEL + "smithing_table_contents_panel/smithing_table_title_and_text_panel": T.PANEL + "smithing_table_contents_panel/slots_panel": T.PANEL + inventory_grid: T.GRID + inventory_content: T.PANEL + "inventory_content/scrolling_panel": T.PANEL + inventory_and_smithing_table_panel: T.PANEL + "inventory_and_smithing_table_panel/inventory_half_screen": T.PANEL + "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": T.PANEL + "inventory_and_smithing_table_panel/smithing_half_screen": T.PANEL + "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": T.STACK_PANEL + header: T.PANEL + "header/header_background": T.IMAGE + "header/close_button": T.BUTTON + "header/panel": T.PANEL + "header/panel/title_label": T.LABEL + header_and_content_stack_panel: T.STACK_PANEL + "header_and_content_stack_panel/header": T.PANEL + "header_and_content_stack_panel/inventory_and_smithing_table_panel": T.PANEL + smithing_table_panel: T.PANEL + "smithing_table_panel/bg": T.IMAGE + "smithing_table_panel/root_panel": T.INPUT_PANEL + "smithing_table_panel/header_and_content_stack_panel": T.STACK_PANEL + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL + "smithing_table_panel/inventory_selected_icon_button": T.BUTTON + "smithing_table_panel/hold_icon": T.BUTTON + "smithing_table_panel/selected_item_details_factory": T.FACTORY + "smithing_table_panel/item_lock_notification_factory": T.FACTORY + "smithing_table_panel/flying_item_renderer": T.CUSTOM +} + +export type SmithingTable2PocketType = { + smithing_table_item_renderer: T.CUSTOM + smithing_image: T.IMAGE + smithing_material_image_ingot: T.IMAGE + background_image: T.IMAGE + smithing_input_image_templates: T.IMAGE + smithing_material_image_all: T.IMAGE + smithing_input_image_armors: T.IMAGE + smithing_input_image_armors_and_tools: T.IMAGE + template_overlay_image: T.PANEL + "template_overlay_image/templates": T.IMAGE + input_overlay_image: T.PANEL + "input_overlay_image/armors_and_tools": T.IMAGE + "input_overlay_image/armors": T.IMAGE + material_overlay_image: T.PANEL + "material_overlay_image/ingot": T.IMAGE + "material_overlay_image/all_materials": T.IMAGE + arrow_icon: T.IMAGE + smithing_icon: T.IMAGE + upgrade_label: T.LABEL + slot_grid_item: T.PANEL + "slot_grid_item/slot": T.INPUT_PANEL + template_slot: T.PANEL + input_slot: T.PANEL + material_slot: T.PANEL + inputs_stack: T.STACK_PANEL + "inputs_stack/template_slot": T.PANEL + "inputs_stack/padding1": T.PANEL + "inputs_stack/input_slot": T.PANEL + "inputs_stack/padding2": T.PANEL + "inputs_stack/material_slot": T.PANEL + inputs_panel: T.PANEL + "inputs_panel/inputs_stack": T.STACK_PANEL + result_slot: T.PANEL + cross_out_image: T.IMAGE + cross_out_icon: T.BUTTON + "cross_out_icon/default": T.IMAGE + "cross_out_icon/hover": T.CUSTOM + crafting_arrow: T.IMAGE + "crafting_arrow/cross_out": T.BUTTON + crafting_arrow_grid_item: T.PANEL + "crafting_arrow_grid_item/crafting_arrow": T.IMAGE + result_item_preview: T.PANEL + "result_item_preview/smithing_preview_renderer": T.CUSTOM + result_item_preview_grid_item: T.PANEL + "result_item_preview_grid_item/result_preview": T.PANEL + smithing_table_contents_panel: T.GRID + "smithing_table_contents_panel/label_holder": T.PANEL + "smithing_table_contents_panel/label_holder/title_label": T.LABEL + "smithing_table_contents_panel/inputs": T.PANEL + "smithing_table_contents_panel/result_slot": T.PANEL + "smithing_table_contents_panel/crafting_arrow": T.PANEL + "smithing_table_contents_panel/result_item_preview": T.PANEL + chest_item_renderer: T.CUSTOM + left_tab_inventory: T.PANEL + left_navigation_tabs: T.STACK_PANEL + "left_navigation_tabs/left_tab_inventory": T.PANEL + inventory_scroll_panel: T.PANEL + left_panel: T.STACK_PANEL + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL + "left_panel/content": T.INPUT_PANEL + "left_panel/content/bg": T.PANEL + "left_panel/content/inventory_scroll_panel": T.PANEL + right_tab_smithing_table: T.PANEL + right_navigation_tabs: T.STACK_PANEL + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE + "right_navigation_tabs/fill": T.PANEL + "right_navigation_tabs/right_tab_smithing_table": T.PANEL + right_panel: T.STACK_PANEL + "right_panel/content": T.INPUT_PANEL + "right_panel/content/bg": T.PANEL + "right_panel/content/smithing_content_stack_panel": T.GRID + "right_panel/navigation_tabs_holder": T.PANEL + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL + pocket_hotbar_and_content_panels: T.STACK_PANEL + smithing_table_panel: T.PANEL + "smithing_table_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL + "smithing_table_panel/selected_item_details_factory": T.FACTORY + "smithing_table_panel/item_lock_notification_factory": T.FACTORY + "smithing_table_panel/inventory_selected_icon_button": T.BUTTON + "smithing_table_panel/inventory_take_progress_icon_button": T.BUTTON + "smithing_table_panel/flying_item_renderer": T.CUSTOM +} + +export type SmokerType = { + smoker_screen: T.SCREEN +} + +export type StartType = { + achievements_icon: T.IMAGE + inbox_bell_animated_icon: T.IMAGE + inbox_icon: T.IMAGE + unread_notification_icon: T.IMAGE + feedback_icon: T.IMAGE + feedback_icon_edu: T.IMAGE + Xbox_icon: T.IMAGE + change_skin_icon: T.IMAGE + manage_accounts_icon: T.IMAGE + new_offers_icon: T.IMAGE + edu_ai_lesson_crafter_button_content: T.STACK_PANEL + "edu_ai_lesson_crafter_button_content/padded_label": T.PANEL + "edu_ai_lesson_crafter_button_content/padded_label/label": T.LABEL + "edu_ai_lesson_crafter_button_content/padded_icon": T.PANEL + "edu_ai_lesson_crafter_button_content/padded_icon/icon": T.IMAGE + preview_tag: T.IMAGE + "preview_tag/preview_label": T.LABEL + update_prompt_icon: T.IMAGE + marketplace_error_icon: T.IMAGE + sale_ribbon_icon: T.IMAGE + alex_icon: T.IMAGE + gamerpic: T.CUSTOM + copyright: T.PANEL + "copyright/label": T.LABEL + "copyright/label_background": T.IMAGE + development_version: T.PANEL + "development_version/label": T.LABEL + "development_version/label_background": T.IMAGE + version: T.PANEL + "version/label": T.LABEL + "version/label_background": T.IMAGE + trial_info: T.PANEL + "trial_info/trial_label": T.LABEL + "trial_info/label_background": T.IMAGE + text_panel: T.PANEL + "text_panel/copyright": T.PANEL + "text_panel/development_version": T.PANEL + "text_panel/version": T.PANEL + skin_or_profile_panel: T.PANEL + "skin_or_profile_panel/change_skin": T.BUTTON + "skin_or_profile_panel/change_skin_button_demo": T.BUTTON + "skin_or_profile_panel/dressing_room_button": T.BUTTON + "skin_or_profile_panel/switch_accounts": T.BUTTON + "skin_or_profile_panel/profile_button": T.BUTTON + change_skin_button: T.BUTTON + change_skin_button_demo: T.BUTTON + switch_accounts_button: T.BUTTON + dressing_room_button: T.BUTTON + profile_button_content: T.STACK_PANEL + "profile_button_content/gamerpic_offset_wrapper": T.PANEL + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE + "profile_button_content/padding_middle": T.PANEL + "profile_button_content/vertically_central_text": T.STACK_PANEL + "profile_button_content/vertically_central_text/top_padding": T.PANEL + "profile_button_content/vertically_central_text/profile_button_label": T.LABEL + "profile_button_content/padding_right": T.PANEL + profile_button: T.BUTTON + skin_viewer_panel: T.INPUT_PANEL + "skin_viewer_panel/paper_doll_panel": T.PANEL + "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM + "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": T.PANEL + "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM + skin_panel: T.PANEL + "skin_panel/change_profile_or_skin": T.PANEL + "skin_panel/viewer_panel": T.INPUT_PANEL + friendsdrawer_button_panel: T.PANEL + "friendsdrawer_button_panel/friendsdrawer_button": T.BUTTON + gathering_button: T.BUTTON + badge_and_caption_animated: T.STACK_PANEL + "badge_and_caption_animated/caption_and_padding": T.STACK_PANEL + "badge_and_caption_animated/caption_and_padding/pad": T.PANEL + "badge_and_caption_animated/caption_and_padding/caption": T.IMAGE + "badge_and_caption_animated/badge_and_padding": T.STACK_PANEL + "badge_and_caption_animated/badge_and_padding/badge": T.IMAGE + "badge_and_caption_animated/badge_and_padding/fill": T.PANEL + gathering_badge: T.IMAGE + badge_and_caption: T.STACK_PANEL + "badge_and_caption/caption_and_padding": T.STACK_PANEL + "badge_and_caption/caption_and_padding/pad": T.PANEL + "badge_and_caption/caption_and_padding/caption": T.IMAGE + "badge_and_caption/badge_and_padding": T.STACK_PANEL + "badge_and_caption/badge_and_padding/badge": T.IMAGE + "badge_and_caption/badge_and_padding/fill": T.PANEL + gathering_caption: T.IMAGE + "gathering_caption/countdown_text": T.LABEL + gathering_panel: T.STACK_PANEL + "gathering_panel/horizontal_panel": T.STACK_PANEL + "gathering_panel/horizontal_panel/pad": T.PANEL + "gathering_panel/horizontal_panel/inner_panel": T.STACK_PANEL + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": T.STACK_PANEL + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": T.STACK_PANEL + "gathering_panel/horizontal_panel/inner_panel/gathering_button": T.BUTTON + "gathering_panel/bottom_pad": T.PANEL + edu_feedback_button: T.BUTTON + release_feedback_button: T.BUTTON + pre_release_feedback_button: T.BUTTON + feedback_button: T.PANEL + "feedback_button/edu_feedback_button": T.BUTTON + "feedback_button/release_feedback_button": T.BUTTON + "feedback_button/pre_release_feedback_button": T.BUTTON + achievements_button: T.BUTTON + achievements_icon_button: T.PANEL + "achievements_icon_button/achievements_button": T.BUTTON + inbox_button: T.BUTTON + inbox_button_unread_panel: T.PANEL + "inbox_button_unread_panel/background": T.IMAGE + inbox_icon_button: T.PANEL + "inbox_icon_button/inbox_button": T.BUTTON + "inbox_icon_button/inbox_button_unread_panel": T.PANEL + xbl_signin_button: T.BUTTON + platform_signin_button: T.BUTTON + column_frame: T.PANEL + educator_resources_button: T.BUTTON + upper_online_buttons_panel: T.STACK_PANEL + "upper_online_buttons_panel/top_pad": T.PANEL + "upper_online_buttons_panel/stacked_column": T.STACK_PANEL + "upper_online_buttons_panel/stacked_column/xbl_btn_padding": T.PANEL + "upper_online_buttons_panel/stacked_column/xbl_btn": T.PANEL + "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": T.BUTTON + "upper_online_buttons_panel/stacked_column/platform_signin_btn": T.PANEL + "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": T.BUTTON + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": T.STACK_PANEL + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": T.PANEL + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": T.CUSTOM + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": T.IMAGE + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": T.PANEL + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": T.PANEL + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": T.LABEL + "upper_online_buttons_panel/bottom_pad": T.PANEL + lower_online_buttons_panel: T.STACK_PANEL + "lower_online_buttons_panel/stacked_column": T.STACK_PANEL + "lower_online_buttons_panel/stacked_column/feedback_padding": T.PANEL + "lower_online_buttons_panel/stacked_column/feedback_btn": T.PANEL + "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": T.PANEL + "lower_online_buttons_panel/stacked_column/signingin": T.LABEL + "lower_online_buttons_panel/stacked_column/achievements_padding": T.PANEL + "lower_online_buttons_panel/stacked_column/achievements_btn": T.PANEL + "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": T.PANEL + "lower_online_buttons_panel/stacked_column/inbox_padding": T.PANEL + "lower_online_buttons_panel/stacked_column/inbox_btn": T.PANEL + "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": T.PANEL + "lower_online_buttons_panel/stacked_column/profile_btn_padding": T.PANEL + "lower_online_buttons_panel/stacked_column/profile_btn": T.PANEL + "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": T.BUTTON + main_button: T.BUTTON + main_button_dark: T.BUTTON + main_content_button: T.BUTTON + main_button_gif: T.CUSTOM + main_button_banner: T.IMAGE + "main_button_banner/banner_label": T.LABEL + play_button: T.BUTTON + play_button_art: T.PANEL + "play_button_art/default_background": T.CUSTOM + "play_button_art/hover_background": T.CUSTOM + "play_button_art/label": T.LABEL + "play_button_art/default_foreground": T.CUSTOM + "play_button_art/hover_foreground": T.CUSTOM + play_button_stack: T.PANEL + "play_button_stack/play_button": T.BUTTON + "play_button_stack/play_button_art": T.PANEL + "play_button_stack/play_button_banner": T.IMAGE + get_started_button: T.BUTTON + main_menu_button: T.BUTTON + featured_world_button: T.BUTTON + unlock_full_game_button: T.BUTTON + launch_editions_button: T.BUTTON + ai_lesson_crafter_button: T.BUTTON + settings_button: T.BUTTON + realms_button: T.BUTTON + servers_button: T.BUTTON + store_button: T.BUTTON + error_store_button: T.BUTTON + store_button_sale_banner: T.IMAGE + "store_button_sale_banner/banner_label_padding": T.PANEL + "store_button_sale_banner/banner_label_padding/banner_label": T.LABEL + store_button_content: T.PANEL + "store_button_content/button_label": T.LABEL + "store_button_content/sales_banner": T.IMAGE + store_error_image: T.IMAGE + store_error_content: T.IMAGE + "store_error_content/marketplace_button_label": T.LABEL + store_sale_label: T.LABEL + store_button_art: T.PANEL + "store_button_art/default_background": T.CUSTOM + "store_button_art/hover_background": T.CUSTOM + "store_button_art/label": T.LABEL + "store_button_art/default_foreground": T.CUSTOM + "store_button_art/hover_foreground": T.CUSTOM + store_button_stack: T.PANEL + "store_button_stack/store_button": T.BUTTON + "store_button_stack/store_button_art": T.PANEL + "store_button_stack/store_button_banner": T.IMAGE + "store_button_stack/update_icon": T.IMAGE + "store_button_stack/new_offers_icon": T.IMAGE + buy_game_button: T.BUTTON + stacked_row: T.PANEL + main_buttons_stack_panel: T.STACK_PANEL + "main_buttons_stack_panel/title_offset_padding": T.PANEL + "main_buttons_stack_panel/title_panel_content": T.PANEL + "main_buttons_stack_panel/padding_fill_1": T.PANEL + "main_buttons_stack_panel/main_buttons_panel": T.PANEL + "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": T.PANEL + "main_buttons_stack_panel/main_buttons_panel_new_player_flow": T.PANEL + "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": T.PANEL + "main_buttons_stack_panel/padding_fill_2": T.PANEL + "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": T.STACK_PANEL + "main_buttons_stack_panel/padding_3": T.PANEL + main_buttons_panel_new_player_flow: T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows": T.STACK_PANEL + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/spacer": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": T.BUTTON + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": T.PANEL + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": T.BUTTON + main_buttons_panel: T.PANEL + "main_buttons_panel/stacked_rows": T.STACK_PANEL + "main_buttons_panel/stacked_rows/play": T.PANEL + "main_buttons_panel/stacked_rows/featured_world": T.PANEL + "main_buttons_panel/stacked_rows/featured_world/featured_world_button": T.BUTTON + "main_buttons_panel/stacked_rows/stacked_row_2": T.PANEL + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": T.STACK_PANEL + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": T.PANEL + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": T.BUTTON + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": T.PANEL + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": T.BUTTON + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": T.IMAGE + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": T.IMAGE + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": T.PANEL + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": T.BUTTON + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": T.IMAGE + "main_buttons_panel/stacked_rows/edu_featured_button": T.PANEL + "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": T.BUTTON + "main_buttons_panel/stacked_rows/settings_and_editions_panel": T.PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": T.STACK_PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": T.PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": T.BUTTON + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": T.PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": T.BUTTON + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": T.PANEL + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": T.BUTTON + "main_buttons_panel/stacked_rows/settings": T.PANEL + "main_buttons_panel/stacked_rows/settings/settings_button": T.BUTTON + "main_buttons_panel/stacked_rows/realms": T.PANEL + "main_buttons_panel/stacked_rows/realms/realms_button": T.BUTTON + "main_buttons_panel/stacked_rows/unlock_full_game_row": T.PANEL + "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": T.BUTTON + "main_buttons_panel/stacked_rows/store": T.PANEL + "main_buttons_panel/stacked_rows/buy_game": T.PANEL + "main_buttons_panel/stacked_rows/buy_game/buy_game_button": T.BUTTON + "main_buttons_panel/stacked_rows/launch_editions": T.PANEL + "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": T.BUTTON + gamepad_helpers: T.STACK_PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL + "gamepad_helpers/gamepad_helper_y_and_padding": T.PANEL + "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": T.STACK_PANEL + "gamepad_helpers/gamepad_helper_x_and_padding": T.PANEL + "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": T.STACK_PANEL + invite_notification_icon: T.IMAGE + invite_notification_button: T.BUTTON + notification_button_text: T.LABEL + notification_button_text_background: T.IMAGE + notification_button_text_panel: T.PANEL + "notification_button_text_panel/text": T.LABEL + "notification_button_text_panel/text/background": T.IMAGE + start_screen: T.SCREEN + start_screen_content: T.PANEL + "start_screen_content/main_buttons_and_title_panel": T.STACK_PANEL + "start_screen_content/online_button_stack": T.STACK_PANEL + "start_screen_content/online_button_stack/gathering_panel": T.STACK_PANEL + "start_screen_content/online_button_stack/upper_online_buttons_panel": T.STACK_PANEL + "start_screen_content/online_button_stack/lower_online_buttons_panel": T.STACK_PANEL + "start_screen_content/skin_panel": T.PANEL + "start_screen_content/text_panel": T.PANEL + "start_screen_content/friendsdrawer_button_panel": T.PANEL +} + +export type StonecutterType = { + stonecutter_label: T.LABEL + arrow_icon: T.IMAGE + stone_cell_image: T.IMAGE + container_cell_image: T.IMAGE + toolbar_background: T.IMAGE + highlight_slot_panel: T.PANEL + "highlight_slot_panel/hover_text": T.CUSTOM + "highlight_slot_panel/highlight": T.IMAGE + "highlight_slot_panel/white_border": T.IMAGE + stone_slot_button: T.BUTTON + "stone_slot_button/hover": T.UNKNOWN + item_panel: T.PANEL + "item_panel/item_renderer": T.CUSTOM + "item_panel/item_renderer/stack_count_label": T.LABEL + stone_button: T.INPUT_PANEL + "stone_button/banner_pattern": T.UNKNOWN + "stone_button/item_button_ref": T.UNKNOWN + scroll_grid: T.GRID + scroll_grid_panel: T.INPUT_PANEL + "scroll_grid_panel/grid": T.GRID + scroll_panel: T.PANEL + stone_book_panel: T.INPUT_PANEL + "stone_book_panel/bg": T.PANEL + "stone_book_panel/scroll_panel": T.PANEL + result_slot_button: T.BUTTON + input_item_slot: T.INPUT_PANEL + result_item_slot: T.INPUT_PANEL + input_slots_stack_panel: T.STACK_PANEL + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL + top_half_stack_panel: T.STACK_PANEL + "top_half_stack_panel/input_slots_holder": T.PANEL + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL + "top_half_stack_panel/padding_1": T.PANEL + "top_half_stack_panel/arrow_holder": T.PANEL + "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE + "top_half_stack_panel/padding_2": T.PANEL + "top_half_stack_panel/result_item_slot_holder": T.PANEL + "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL + top_half_panel: T.PANEL + "top_half_panel/top_half_stack_panel": T.STACK_PANEL + right_panel: T.INPUT_PANEL + "right_panel/common_panel": T.PANEL + "right_panel/stonecutter_screen_inventory": T.PANEL + "right_panel/stonecutter_screen_inventory/stonecutter_label": T.LABEL + "right_panel/stonecutter_screen_inventory/top_half_panel": T.PANEL + "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "right_panel/stonecutter_screen_inventory/hotbar_grid": T.GRID + toolbar_panel: T.INPUT_PANEL + "toolbar_panel/toolbar_background": T.IMAGE + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL + toolbar_anchor: T.PANEL + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL + center_fold: T.INPUT_PANEL + "center_fold/center_bg": T.IMAGE + screen_stack_panel: T.STACK_PANEL + "screen_stack_panel/stone_book_panel": T.INPUT_PANEL + "screen_stack_panel/center_fold": T.INPUT_PANEL + "screen_stack_panel/right_panel": T.INPUT_PANEL + "screen_stack_panel/toolbar_anchor": T.PANEL + stonecutter_panel: T.PANEL + "stonecutter_panel/screen_stack_panel": T.STACK_PANEL + "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL + "stonecutter_panel/selected_item_details_factory": T.FACTORY + "stonecutter_panel/item_lock_notification_factory": T.FACTORY + "stonecutter_panel/inventory_selected_icon_button": T.BUTTON + "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON + "stonecutter_panel/flying_item_renderer": T.CUSTOM + stonecutter_screen: T.SCREEN +} + +export type StonecutterPocketType = { + vertical_arrow_icon: T.IMAGE + chest_item_renderer: T.CUSTOM + stonecutter_item_renderer: T.CUSTOM + input_item_slot: T.INPUT_PANEL + result_item_slot: T.INPUT_PANEL + right_panel: T.STACK_PANEL + "right_panel/content": T.INPUT_PANEL + "right_panel/content/bg": T.PANEL + "right_panel/content/stonecutter_content_stack_panel": T.STACK_PANEL + "right_panel/navigation_tabs_holder": T.PANEL + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL + right_tab_stonecutter: T.PANEL + right_navigation_tabs: T.STACK_PANEL + "right_navigation_tabs/close": T.IMAGE + "right_navigation_tabs/close/nodrop_zone": T.INPUT_PANEL + "right_navigation_tabs/close/close_button": T.BUTTON + "right_navigation_tabs/fill": T.PANEL + "right_navigation_tabs/right_tab_stonecutter": T.PANEL + input_slots_stack_panel: T.STACK_PANEL + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL + stonecutter_content_stack_panel: T.STACK_PANEL + "stonecutter_content_stack_panel/label_holder": T.PANEL + "stonecutter_content_stack_panel/label_holder/stonecutter_label": T.LABEL + "stonecutter_content_stack_panel/padding_1": T.PANEL + "stonecutter_content_stack_panel/panel": T.PANEL + "stonecutter_content_stack_panel/panel/stack_panel": T.STACK_PANEL + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": T.PANEL + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL + "stonecutter_content_stack_panel/panel/stack_panel/padding_3": T.PANEL + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": T.PANEL + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE + "stonecutter_content_stack_panel/panel/stack_panel/padding_4": T.PANEL + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": T.PANEL + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL + "stonecutter_content_stack_panel/panel/stack_panel/padding_5": T.PANEL + inventory_panel: T.STACK_PANEL + "inventory_panel/inventory_title_label_centerer": T.PANEL + "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL + "inventory_panel/inventory_scroll_panel": T.PANEL + inventory_scroll_panel: T.PANEL + pattern_button: T.INPUT_PANEL + pattern_scroll_panel: T.PANEL + left_panel: T.STACK_PANEL + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL + "left_panel/content": T.INPUT_PANEL + "left_panel/content/bg": T.PANEL + "left_panel/content/inventory_panel": T.STACK_PANEL + "left_panel/content/pattern_scroll_panel": T.PANEL + left_tab_stones: T.PANEL + left_tab_inventory: T.PANEL + left_navigation_tabs: T.STACK_PANEL + "left_navigation_tabs/left_tab_stones": T.PANEL + "left_navigation_tabs/padding": T.PANEL + "left_navigation_tabs/left_tab_inventory": T.PANEL + pocket_hotbar_and_content_panels: T.STACK_PANEL + stonecutter_panel: T.PANEL + "stonecutter_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL + "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL + "stonecutter_panel/selected_item_details_factory": T.FACTORY + "stonecutter_panel/item_lock_notification_factory": T.FACTORY + "stonecutter_panel/inventory_selected_icon_button": T.BUTTON + "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON + "stonecutter_panel/flying_item_renderer": T.CUSTOM +} + +export type StorageManagementType = { + lock_icon: T.IMAGE + storage_header_panel: T.PANEL + "storage_header_panel/header_panel": T.STACK_PANEL + "storage_header_panel/header_panel/file_storage_dropdown": T.PANEL + "storage_header_panel/header_panel/file_storage_dropdown_edu": T.PANEL + "storage_header_panel/header_panel/clear_cache_button_panel": T.PANEL + "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": T.BUTTON + "storage_header_panel/header_panel/clear_download_cache_button_panel": T.PANEL + "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": T.BUTTON + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": T.PANEL + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": T.BUTTON + "storage_header_panel/header_panel/delete_local_screenshots_button_panel": T.PANEL + "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": T.BUTTON + "storage_header_panel/header_panel/panel": T.PANEL + "storage_header_panel/header_panel/panel/multiselect_button": T.PANEL + x_button_image: T.IMAGE + storage_main_panel: T.PANEL + "storage_main_panel/scroll_content": T.STACK_PANEL + storage_footer_panel: T.PANEL + "storage_footer_panel/visibleContent": T.STACK_PANEL + "storage_footer_panel/visibleContent/delete_button": T.BUTTON + "storage_footer_panel/visibleContent/share_button": T.BUTTON + delete_checkbox: T.PANEL + "delete_checkbox/selected_checkbox_image": T.IMAGE + generic_button: T.IMAGE + "generic_button/picture": T.IMAGE + "generic_button/text": T.LABEL + common_scroll_pane: T.PANEL + common_label: T.LABEL + main_content_panel: T.STACK_PANEL + "main_content_panel/panel": T.STACK_PANEL + "main_content_panel/panel/spacing": T.PANEL + "main_content_panel/panel/delete_checkbox": T.PANEL + "main_content_panel/panel/image_panel": T.PANEL + "main_content_panel/panel/image_panel/image_border": T.IMAGE + "main_content_panel/panel/image_panel/image_border/image": T.IMAGE + "main_content_panel/panel/text_panel_offset": T.PANEL + "main_content_panel/panel/text_panel_offset/text_panel": T.PANEL + "main_content_panel/panel/text_panel_offset/text_panel/0": T.UNKNOWN + common_main_button: T.PANEL + "common_main_button/background": T.IMAGE + "common_main_button/border": T.IMAGE + "common_main_button/main_content_panel": T.STACK_PANEL + base_glyph: T.STACK_PANEL + "base_glyph/image": T.IMAGE + "base_glyph/padding": T.PANEL + main_item_text: T.STACK_PANEL + grey_button: T.PANEL + icon_item_text: T.PANEL + world_item_text: T.PANEL + storage_main_item_toggle: T.STACK_PANEL + "storage_main_item_toggle/main_item_toggle": T.PANEL + "storage_main_item_toggle/contentPanel": T.STACK_PANEL + "storage_main_item_toggle/padding": T.PANEL + storage_scroll_pane: T.STACK_PANEL + "storage_scroll_pane/category_stack_panel": T.STACK_PANEL + "storage_scroll_pane/category_stack_panel/stack_panel": T.STACK_PANEL + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": T.STACK_PANEL + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": T.STACK_PANEL + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": T.STACK_PANEL + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": T.STACK_PANEL + "storage_scroll_pane/multiselect_padding": T.PANEL + world_controls: T.STACK_PANEL + world_template_controls: T.STACK_PANEL + resource_controls: T.STACK_PANEL + behavior_controls: T.STACK_PANEL + skin_controls: T.STACK_PANEL + cached_controls: T.STACK_PANEL + resource_sub_item: T.STACK_PANEL + "resource_sub_item/dummy_panel": T.PANEL + "resource_sub_item/main_panel": T.PANEL + "resource_sub_item/main_panel/content": T.UNKNOWN + resource_toggle: T.STACK_PANEL + "resource_toggle/content_toggle": T.TOGGLE + "resource_toggle/content_toggle/default": T.UNKNOWN + "resource_toggle/content_toggle/hover": T.UNKNOWN + "resource_toggle/content_toggle/unchecked": T.UNKNOWN + "resource_toggle/content_toggle/unchecked_hover": T.UNKNOWN + "resource_toggle/item_button_panel": T.INPUT_PANEL + "resource_toggle/item_button_panel/y_sizing_panel": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border": T.IMAGE + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": T.STACK_PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": T.BUTTON + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": T.BUTTON + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": T.BUTTON + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": T.PANEL + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": T.BUTTON + sub_item_tray_button: T.BUTTON + glyph_sub_icon: T.IMAGE + sub_item_blank_button: T.PANEL + texture_icon_text: T.PANEL + texture_icon_sub_item: T.PANEL + version_sub_item: T.PANEL + pack_description_sub_item: T.PANEL + world_sub_text: T.PANEL + world_template_sub_text: T.PANEL + basic_sub_item: T.PANEL + dropdown_button: T.BUTTON + dropdown_button_content: T.STACK_PANEL + "dropdown_button_content/image_panel": T.PANEL + "dropdown_button_content/image_panel/icon": T.IMAGE + "dropdown_button_content/text_panel": T.PANEL + "dropdown_button_content/text_panel/main_label": T.LABEL + filter_options: T.INPUT_PANEL + "filter_options/0": T.UNKNOWN + light_assets: T.PANEL + button_add: T.IMAGE + sort_panel: T.PANEL + "sort_panel/default": T.PANEL + sort_toggle: T.TOGGLE + storage_scroll_panel: T.PANEL + storage_main_item_legacy_world_toggle: T.STACK_PANEL + "storage_main_item_legacy_world_toggle/main_item_toggle": T.PANEL + "storage_main_item_legacy_world_toggle/contentPanel": T.STACK_PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": T.STACK_PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": T.PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": T.BUTTON + "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": T.PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": T.STACK_PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": T.PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": T.LABEL + "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": T.PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": T.STACK_PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": T.PANEL + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": T.LABEL + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": T.IMAGE + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": T.PANEL + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE + "storage_main_item_legacy_world_toggle/padding": T.PANEL + legacy_world_main_item_text: T.STACK_PANEL + storage_main_item_retailtopreview_world_toggle: T.STACK_PANEL + "storage_main_item_retailtopreview_world_toggle/main_item_toggle": T.PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel": T.STACK_PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": T.STACK_PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": T.PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": T.BUTTON + "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": T.PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": T.STACK_PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": T.PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": T.LABEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": T.PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": T.STACK_PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": T.PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": T.LABEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": T.IMAGE + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": T.LABEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": T.PANEL + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": T.IMAGE + "storage_main_item_retailtopreview_world_toggle/padding": T.PANEL + retailtopreview_world_main_item_text: T.STACK_PANEL +} + +export type StorageManagementPopupType = { + storage_dependency_modal: T.INPUT_PANEL + "storage_dependency_modal/base": T.UNKNOWN + "storage_dependency_modal/base/background_with_buttons": T.PANEL + "storage_dependency_modal/base/title": T.LABEL + "storage_dependency_modal/base/dependencies": T.PANEL + "storage_dependency_modal/base/two_buttons": T.PANEL + "storage_dependency_modal/base/two_buttons/disabled_left": T.UNKNOWN + "storage_dependency_modal/base/two_buttons/left": T.UNKNOWN + "storage_dependency_modal/base/two_buttons/right": T.UNKNOWN + storage_dependency_panel: T.PANEL + "storage_dependency_panel/scroll": T.PANEL + storage_dependency_scroll_panel: T.PANEL + dependency_item_content: T.PANEL + "dependency_item_content/content": T.UNKNOWN + dependency_scroll_pane: T.STACK_PANEL + "dependency_scroll_pane/main_label": T.LABEL + "dependency_scroll_pane/contentPanel": T.STACK_PANEL + dependency_item: T.PANEL + dependency_item_small: T.PANEL + dependency_resource_item: T.PANEL + dependency_resource_item_small: T.PANEL + dependency_sub_item: T.STACK_PANEL + "dependency_sub_item/border": T.IMAGE + "dependency_sub_item/border/stack": T.STACK_PANEL + "dependency_sub_item/border/stack/padding_0": T.PANEL + "dependency_sub_item/border/stack/wrapper": T.PANEL + "dependency_sub_item/border/stack/wrapper/dependency_item": T.PANEL + "dependency_sub_item/border/stack/panel_0": T.PANEL + "dependency_sub_item/border/stack/panel_0/main_label": T.LABEL + "dependency_sub_item/border/stack/contentPanel": T.STACK_PANEL + "dependency_sub_item/border/stack/panel_1": T.PANEL + "dependency_sub_item/border/stack/panel_1/remove_pack_button": T.BUTTON + "dependency_sub_item/border/stack/padding_1": T.PANEL + "dependency_sub_item/padding": T.PANEL + sharing_popup_content: T.PANEL +} + +export type CommonStoreType = { + store_base_screen: T.SCREEN + label: T.LABEL + offer_image_panel: T.IMAGE + banner_fill: T.IMAGE + store_description_background: T.IMAGE + store_description_background_dark: T.IMAGE + text_style_label: T.PANEL + "text_style_label/text_label": T.LABEL + sdl_texture: T.IMAGE + store_offer_grid_button: T.BUTTON + "store_offer_grid_button/hover": T.PANEL + "store_offer_grid_button/hover/key_art_size_panel": T.PANEL + "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": T.IMAGE + "store_offer_grid_button/pressed": T.PANEL + "store_offer_grid_button/pressed/key_art_size_panel": T.PANEL + "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE + "store_offer_grid_button/icon_overlay_panel": T.PANEL + ribbon_bar_text_background: T.IMAGE + ribbon_bar_red_hover_text_background: T.IMAGE + store_background: T.IMAGE + coin_icon: T.IMAGE + tag: T.IMAGE + "tag/new_offer_label": T.LABEL + marketplace_error_icon: T.IMAGE + new_offer_icon: T.IMAGE + status_new_offer_icon: T.IMAGE + update_balloon_icon: T.IMAGE + icon_overlay_panel: T.PANEL + "icon_overlay_panel/icon_overlay_position_factory": T.COLLECTION_PANEL + icon_overlay_position_factory: T.COLLECTION_PANEL + top_left_icon_factory: T.STACK_PANEL + top_middle_icon_factory: T.STACK_PANEL + top_right_icon_factory: T.STACK_PANEL + left_middle_icon_factory: T.STACK_PANEL + center_icon_factory: T.STACK_PANEL + right_middle_icon_factory: T.STACK_PANEL + bottom_left_icon_factory: T.STACK_PANEL + bottom_middle_icon_factory: T.STACK_PANEL + bottom_right_icon_factory: T.STACK_PANEL + icon_factory: T.STACK_PANEL + new_offer_icon_panel: T.PANEL + "new_offer_icon_panel/new_icon": T.IMAGE + update_offer_icon_panel: T.PANEL + "update_offer_icon_panel/update_icon": T.IMAGE + icon_overlay_image_panel: T.PANEL + "icon_overlay_image_panel/image_stack_panel": T.STACK_PANEL + "icon_overlay_image_panel/image_stack_panel/icon": T.IMAGE + "icon_overlay_image_panel/image_stack_panel/padding": T.PANEL + icon_overlay_sdl_padding: T.PANEL + status_icon_overlay: T.IMAGE + "status_icon_overlay/icon_overlay_label_panel": T.STACK_PANEL + "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": T.PANEL + "status_icon_overlay/icon_overlay_label_panel/left_padding_1": T.PANEL + "status_icon_overlay/icon_overlay_label_panel/left_padding_2": T.PANEL + "status_icon_overlay/icon_overlay_label_panel/icon_panel": T.PANEL + "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": T.LABEL + "status_icon_overlay/icon_overlay_label_panel/right_padding_1": T.PANEL + "status_icon_overlay/icon_overlay_label_panel/right_padding_2": T.PANEL + "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": T.PANEL + status_icon_panel: T.PANEL + "status_icon_panel/new_offer_icon": T.IMAGE + "status_icon_panel/update_icon": T.IMAGE + prompt_icon: T.IMAGE + up_arrow_icon: T.IMAGE + plus_icon: T.IMAGE + bang_icon: T.IMAGE + user_icon_small: T.IMAGE + user_icon_hover: T.IMAGE + gamepad_store_helper: T.PANEL + purchase_coins_panel: T.PANEL + "purchase_coins_panel/plus_button": T.BUTTON + inventory_panel: T.INPUT_PANEL + "inventory_panel/inventory_button": T.BUTTON + progress_loading_bars: T.IMAGE + progress_loading_spinner: T.IMAGE + progress_loading: T.PANEL + "progress_loading/centerer": T.PANEL + "progress_loading/centerer/progress_loading_spinner": T.IMAGE + "progress_loading/progress_loading_outline": T.IMAGE + "progress_loading/stack_panel": T.STACK_PANEL + "progress_loading/stack_panel/top_panel": T.STACK_PANEL + "progress_loading/stack_panel/top_panel/error_glyph_panel": T.PANEL + "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": T.IMAGE + "progress_loading/stack_panel/top_panel/padding": T.PANEL + "progress_loading/stack_panel/top_panel/store_failure_text": T.LABEL + "progress_loading/stack_panel/padding": T.PANEL + "progress_loading/stack_panel/image": T.IMAGE + "progress_loading/store_failure_code": T.LABEL + store_empty_progress_bar_icon: T.IMAGE + store_full_progress_bar_icon: T.IMAGE + store_progress_bar_nub: T.IMAGE + store_progress_bar_icon: T.PANEL + "store_progress_bar_icon/empty_progress_bar_icon": T.IMAGE + "store_progress_bar_icon/progress_percent_panel": T.PANEL + "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE + "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE + screen_contents_with_gamepad_helpers: T.STACK_PANEL + "screen_contents_with_gamepad_helpers/dialog_panel": T.PANEL + "screen_contents_with_gamepad_helpers/dialog_panel/dialog": T.UNKNOWN + "screen_contents_with_gamepad_helpers/padding": T.PANEL + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": T.PANEL + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": T.STACK_PANEL + text_strike_through: T.IMAGE + markdown_banner: T.IMAGE + markdown_triangle: T.IMAGE + timer_panel: T.PANEL + "timer_panel/timer": T.LABEL + store_offer_type_icon: T.IMAGE + addon_pack_icon: T.IMAGE + addon_pack_small_icon: T.IMAGE + realms_plus_icon: T.IMAGE + resource_pack_icon: T.IMAGE + resource_pack_small_icon: T.IMAGE + skinpack_icon: T.IMAGE + skinpack_small_icon: T.IMAGE + world_icon: T.IMAGE + world_small_icon: T.IMAGE + mashup_icon: T.IMAGE + mashup_small_icon: T.IMAGE + persona_icon: T.IMAGE + persona_small_icon: T.IMAGE + small_padding_panel: T.PANEL + resource_pack_small_icon_with_buffer: T.STACK_PANEL + "resource_pack_small_icon_with_buffer/resource_pack_small_icon": T.IMAGE + "resource_pack_small_icon_with_buffer/small_padding_panel": T.PANEL + addon_pack_small_icon_with_buffer: T.STACK_PANEL + "addon_pack_small_icon_with_buffer/addon_pack_small_icon": T.IMAGE + "addon_pack_small_icon_with_buffer/small_padding_panel": T.PANEL + skinpack_small_icon_with_buffer: T.STACK_PANEL + "skinpack_small_icon_with_buffer/skinpack_small_icon": T.IMAGE + "skinpack_small_icon_with_buffer/small_padding_panel": T.PANEL + world_small_icon_with_buffer: T.STACK_PANEL + "world_small_icon_with_buffer/world_small_icon": T.IMAGE + "world_small_icon_with_buffer/small_padding_panel": T.PANEL + mashup_small_icon_with_buffer: T.STACK_PANEL + "mashup_small_icon_with_buffer/mashup_small_icon": T.IMAGE + "mashup_small_icon_with_buffer/small_padding_panel": T.PANEL + persona_small_icon_with_buffer: T.STACK_PANEL + "persona_small_icon_with_buffer/persona_small_icon": T.IMAGE + "persona_small_icon_with_buffer/small_padding_panel": T.PANEL + realms_icon: T.IMAGE + realms_banner_icon: T.IMAGE + csb_banner_icon: T.IMAGE + csb_expiration: T.PANEL + "csb_expiration/background": T.IMAGE + "csb_expiration/contents": T.STACK_PANEL + "csb_expiration/contents/csb_icon": T.IMAGE + "csb_expiration/contents/pad_0": T.PANEL + "csb_expiration/contents/text_panel": T.PANEL + "csb_expiration/contents/text_panel/text": T.LABEL + pack_icon_stack: T.PANEL + "pack_icon_stack/pack_icon_stack_factory": T.STACK_PANEL + pack_icon_stack_factory: T.STACK_PANEL + markdown_background: T.STACK_PANEL + "markdown_background/banner_panel": T.STACK_PANEL + "markdown_background/banner_panel/banner": T.IMAGE + "markdown_background/banner_panel/banner/banner_content_stack_panel": T.STACK_PANEL + "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": T.PANEL + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": T.PANEL + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": T.PANEL + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": T.PANEL + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": T.UNKNOWN + "markdown_background/triangle_panel": T.PANEL + "markdown_background/triangle_panel/triangle": T.IMAGE + store_top_bar: T.IMAGE + store_top_bar_filler: T.IMAGE + direction_button_panel: T.PANEL + "direction_button_panel/chevron_image": T.IMAGE + cycle_pack_button: T.BUTTON + cycle_pack_left_button: T.BUTTON + cycle_pack_right_button: T.BUTTON + restore_purchases: T.BUTTON + back_content_panel: T.PANEL + "back_content_panel/back_button": T.STACK_PANEL + unlock_with_coins_button_stack_panel: T.STACK_PANEL + "unlock_with_coins_button_stack_panel/coin_panel": T.PANEL + "unlock_with_coins_button_stack_panel/coin_panel/coin": T.IMAGE + "unlock_with_coins_button_stack_panel/padding_1": T.PANEL + "unlock_with_coins_button_stack_panel/unlock_text": T.LABEL + store_dialog_with_coin_header: T.PANEL + store_coins_title_label: T.LABEL + search_header_stack: T.STACK_PANEL + "search_header_stack/gamepad_helper_y_alignment_hack": T.PANEL + "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": T.STACK_PANEL + "search_header_stack/search_header_text_box_panel": T.PANEL + "search_header_stack/search_header_text_box_panel/search_header_text_box": T.EDIT_BOX + "search_header_stack/search_header_text_box_panel/clear_button": T.BUTTON + "search_header_stack/store_layout_search_button": T.BUTTON + "search_header_stack/padding0": T.PANEL + sdl_store_header_with_coins: T.PANEL + "sdl_store_header_with_coins/sdl_store_header_with_coins_content": T.PANEL + top_bar_with_coins_panel: T.PANEL + "top_bar_with_coins_panel/top_bar": T.IMAGE + "top_bar_with_coins_panel/top_bar/title_stack_panel": T.STACK_PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": T.PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": T.PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": T.PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": T.PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": T.PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": T.PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": T.STACK_PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": T.PANEL + "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": T.STACK_PANEL + sdl_store_header_with_coins_content: T.PANEL + "sdl_store_header_with_coins_content/top_bar_coins": T.PANEL + store_header_with_coins: T.STACK_PANEL + "store_header_with_coins/top_bar_coins": T.PANEL + "store_header_with_coins/child_control": T.UNKNOWN + status_with_coins: T.STACK_PANEL + "status_with_coins/inventory_panel": T.PANEL + "status_with_coins/inventory_panel/inventory_button": T.INPUT_PANEL + "status_with_coins/padding0": T.PANEL + "status_with_coins/coin_balance_panel": T.PANEL + "status_with_coins/coin_balance_panel/coin_balance_panel": T.PANEL + "status_with_coins/padding1": T.PANEL + coins_with_title: T.PANEL + "coins_with_title/coin_balance_panel": T.PANEL + "coins_with_title/title_panel": T.UNKNOWN + wallet_button_panel: T.STACK_PANEL + "wallet_button_panel/purchase_coin_panel_alignment_hack": T.PANEL + "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": T.IMAGE + "wallet_button_panel/plus_image": T.PANEL + "wallet_button_panel/gamepad_helper_x_alignment_hack": T.PANEL + "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": T.STACK_PANEL + coin_balance_panel: T.IMAGE + "coin_balance_panel/coin_purchase_in_progress_panel": T.PANEL + "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": T.IMAGE + "coin_balance_panel/horizontal_coin_stack": T.STACK_PANEL + "coin_balance_panel/horizontal_coin_stack/padding": T.PANEL + "coin_balance_panel/horizontal_coin_stack/coin_icon": T.IMAGE + "coin_balance_panel/horizontal_coin_stack/small_filler": T.PANEL + "coin_balance_panel/horizontal_coin_stack/coin_text_holder": T.PANEL + "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": T.LABEL + my_account_button_content: T.PANEL + "my_account_button_content/my_account_content": T.STACK_PANEL + "my_account_button_content/my_account_content/user_icon": T.IMAGE + "my_account_button_content/my_account_content/my_account_label_panel": T.STACK_PANEL + "my_account_button_content/my_account_content/my_account_label_panel/padding": T.PANEL + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": T.PANEL + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": T.LABEL + inventory_button_panel: T.STACK_PANEL + "inventory_button_panel/inventory_button": T.PANEL + "inventory_button_panel/inventory_button/status_panel": T.STACK_PANEL + inventory_button: T.STACK_PANEL + "inventory_button/my_content_button": T.PANEL + "inventory_button/my_content_button/library_icon": T.IMAGE + "inventory_button/my_content_button/library_icon_bevel": T.IMAGE + "inventory_button/updates_with_bevel": T.PANEL + "inventory_button/updates_with_bevel/update_glyph": T.IMAGE + "inventory_button/updates_with_bevel/updates_bevel": T.IMAGE + "inventory_button/label_alignment_pannel": T.PANEL + "inventory_button/label_alignment_pannel/label_panel": T.IMAGE + "inventory_button/label_alignment_pannel/label_panel/inventory_label": T.LABEL + xbl_button_content: T.STACK_PANEL + "xbl_button_content/xbl_icon": T.IMAGE + "xbl_button_content/padding_0": T.PANEL + "xbl_button_content/disconnected_label": T.LABEL + "xbl_button_content/padding_1": T.PANEL + "xbl_button_content/error_icon_panel": T.PANEL + "xbl_button_content/error_icon_panel/error_icon": T.IMAGE + disclaimer_panel: T.PANEL + "disclaimer_panel/legal_text_label": T.LABEL + grey_bar_panel: T.STACK_PANEL + "grey_bar_panel/color_panel": T.PANEL + "grey_bar_panel/color_panel/grey_bar": T.IMAGE + "grey_bar_panel/color_panel/green_bar": T.IMAGE + "grey_bar_panel/pad": T.PANEL + tab_name_panel: T.STACK_PANEL + "tab_name_panel/bar_panel": T.PANEL + "tab_name_panel/bar_panel/green_bar": T.IMAGE + "tab_name_panel/button_panel": T.PANEL + "tab_name_panel/button_panel/tab_name_button_grey": T.BUTTON + "tab_name_panel/button_panel/tab_name_button_white": T.BUTTON + "tab_name_panel/pad_1": T.PANEL + store_offer_item_title_panel: T.PANEL + "store_offer_item_title_panel/offer_title": T.LABEL + store_offer_item_creator_panel: T.STACK_PANEL + "store_offer_item_creator_panel/pack_icon_panel": T.PANEL + "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": T.PANEL + "store_offer_item_creator_panel/creator_label": T.LABEL + store_offer_ratings: T.PANEL + "store_offer_ratings/rating_text_panel": T.STACK_PANEL + vertical_store_offer_price_info_panel: T.PANEL + "vertical_store_offer_price_info_panel/sales_banner": T.STACK_PANEL + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": T.STACK_PANEL + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": T.PANEL + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": T.PANEL + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": T.PANEL + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": T.LABEL + "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": T.PANEL + store_offer_price_info_panel: T.STACK_PANEL + "store_offer_price_info_panel/sales_banner": T.STACK_PANEL + "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": T.STACK_PANEL + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": T.PANEL + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": T.PANEL + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": T.PANEL + "store_offer_price_info_panel/sales_banner/coin_panel": T.PANEL + "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": T.IMAGE + "store_offer_price_info_panel/sales_banner/padding_3": T.PANEL + "store_offer_price_info_panel/sales_banner/offer_prompt_panel": T.PANEL + store_offer_sales_markdown_percentage_panel: T.PANEL + "store_offer_sales_markdown_percentage_panel/markdown_background": T.STACK_PANEL + store_offer_prompt_panel: T.PANEL + "store_offer_prompt_panel/offer_status_text": T.LABEL + featured_key_art: T.PANEL + "featured_key_art/bg": T.IMAGE + "featured_key_art/bg/featured_key_art": T.IMAGE + "featured_key_art/bg/progress_loading": T.PANEL + "featured_key_art/bg/new_offer_icon": T.IMAGE + "featured_key_art/focus_border": T.IMAGE + price_panel: T.STACK_PANEL + "price_panel/featured_icon_panel": T.PANEL + "price_panel/featured_icon_panel/featured_offer_coin_icon": T.IMAGE + "price_panel/price_label_panel": T.PANEL + "price_panel/price_label_panel/price": T.LABEL + "price_panel/padding": T.PANEL + vertical_padding_4: T.PANEL + vertical_padding_2: T.PANEL + sdl_vertical_padding_fill: T.PANEL + footer: T.PANEL + "footer/restore_purchases": T.BUTTON + store_section_panel: T.PANEL + "store_section_panel/store_section_panel_outline": T.IMAGE + "store_section_panel/section_panel": T.STACK_PANEL + "store_section_panel/section_panel/header": T.PANEL + "store_section_panel/section_panel/section_panel": T.PANEL + "store_section_panel/section_panel/section_panel/background": T.IMAGE + store_section_factory: T.STACK_PANEL + store_static_section_factory: T.STACK_PANEL + rtx_label: T.PANEL + "rtx_label/banner": T.IMAGE + "rtx_label/banner/icon": T.IMAGE + subscription_chevron: T.PANEL + "subscription_chevron/subscription_chevron_panel": T.PANEL + "subscription_chevron/subscription_chevron_panel/csb_chevron": T.PANEL + "subscription_chevron/subscription_chevron_panel/sales_banner_background": T.IMAGE + csb_banner: T.PANEL + "csb_banner/banner": T.IMAGE + pagination_content_panel: T.STACK_PANEL + "pagination_content_panel/padding_left": T.PANEL + "pagination_content_panel/first_page_button": T.BUTTON + "pagination_content_panel/pagination_middle_buttons_panel": T.STACK_PANEL + "pagination_content_panel/padding_right_fill": T.PANEL + "pagination_content_panel/go_to_top_button": T.BUTTON + pagination_panel: T.STACK_PANEL + "pagination_panel/top_padding": T.PANEL + "pagination_panel/pagination_content": T.STACK_PANEL + "pagination_panel/bottom_padding": T.PANEL + store_offer_grid_panel_content: T.STACK_PANEL + "store_offer_grid_panel_content/header_centerer_panel": T.PANEL + "store_offer_grid_panel_content/store_offer_grid_factory": T.COLLECTION_PANEL + "store_offer_grid_panel_content/pagination_centerer": T.PANEL + "store_offer_grid_panel_content/divider": T.STACK_PANEL + store_offer_grid_panel: T.PANEL + pagination_top_button_panel: T.PANEL + "pagination_top_button_panel/top_button_image": T.IMAGE + pagination_middle_buttons_panel: T.STACK_PANEL + "pagination_middle_buttons_panel/previous_page_button": T.BUTTON + "pagination_middle_buttons_panel/current_page_number_panel": T.PANEL + "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": T.LABEL + "pagination_middle_buttons_panel/next_page_button": T.BUTTON + vertical_store_offer_grid_panel: T.STACK_PANEL + "vertical_store_offer_grid_panel/header": T.PANEL + "vertical_store_offer_grid_panel/centering_panel": T.PANEL + "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": T.GRID + "vertical_store_offer_grid_panel/padding_0": T.PANEL + "vertical_store_offer_grid_panel/divider": T.STACK_PANEL + carousel_row_panel: T.STACK_PANEL + "carousel_row_panel/top_panel": T.STACK_PANEL + "carousel_row_panel/top_panel/pad_0": T.PANEL + "carousel_row_panel/top_panel/tab_names_factory_panel": T.STACK_PANEL + "carousel_row_panel/top_padding": T.PANEL + "carousel_row_panel/middle_panel": T.STACK_PANEL + "carousel_row_panel/middle_panel/left_button_panel": T.PANEL + "carousel_row_panel/middle_panel/left_button_panel/left_button": T.BUTTON + "carousel_row_panel/middle_panel/left_button_panel/left_bumper": T.STACK_PANEL + "carousel_row_panel/middle_panel/main_panel_factory": T.STACK_PANEL + "carousel_row_panel/middle_panel/right_button_panel": T.PANEL + "carousel_row_panel/middle_panel/right_button_panel/right_button": T.BUTTON + "carousel_row_panel/middle_panel/right_button_panel/right_bumper": T.STACK_PANEL + "carousel_row_panel/bottom_panel": T.PANEL + "carousel_row_panel/bottom_panel/grey_bar_factory_panel": T.STACK_PANEL + "carousel_row_panel/bottom_padding": T.PANEL + "carousel_row_panel/divider_panel": T.PANEL + "carousel_row_panel/divider_panel/divider": T.PANEL + carousel_factory: T.STACK_PANEL + hero_row_l2_panel: T.STACK_PANEL + "hero_row_l2_panel/header": T.PANEL + "hero_row_l2_panel/centering_panel": T.PANEL + "hero_row_l2_panel/centering_panel/l2_featured_stack": T.STACK_PANEL + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": T.PANEL + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": T.PANEL + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": T.PANEL + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": T.PANEL + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": T.PANEL + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": T.PANEL + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": T.PANEL + "hero_row_l2_panel/padding_0": T.PANEL + "hero_row_l2_panel/divider": T.STACK_PANEL + blade_row_key_art: T.PANEL + "blade_row_key_art/blade_row_key_art_image": T.IMAGE + "blade_row_key_art/blade_row_key_art_image/key_art_border": T.IMAGE + one_key_art_screenshot: T.IMAGE + one_key_art_screenshot_panel: T.PANEL + "one_key_art_screenshot_panel/blade_offer_frame": T.UNKNOWN + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": T.IMAGE + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": T.IMAGE + screenshots_grid: T.COLLECTION_PANEL + "screenshots_grid/screenshot_1": T.PANEL + "screenshots_grid/screenshot_2": T.PANEL + "screenshots_grid/screenshot_3": T.PANEL + "screenshots_grid/screenshot_4": T.PANEL + blade_offer_details_title: T.LABEL + blade_offer_sale_markdown: T.LABEL + blade_offer_description_details: T.STACK_PANEL + "blade_offer_description_details/blade_title_stack": T.STACK_PANEL + "blade_offer_description_details/blade_title_stack/blade_title": T.LABEL + "blade_offer_description_details/blade_offer_creator_label": T.STACK_PANEL + "blade_offer_description_details/blade_offer_description_padding_2": T.PANEL + "blade_offer_description_details/ratings_and_coins": T.STACK_PANEL + "blade_offer_description_details/ratings_and_coins/subscription_panel": T.PANEL + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": T.PANEL + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": T.STACK_PANEL + "blade_offer_description_details/ratings_and_coins/ratings_panel": T.PANEL + "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": T.PANEL + "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": T.PANEL + "blade_offer_description_details/ratings_and_coins/fill_padding": T.PANEL + "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": T.PANEL + "blade_offer_description_details/ratings_and_coins/price_panel": T.PANEL + "blade_offer_description_details/ratings_and_coins/price_panel/price": T.STACK_PANEL + "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": T.PANEL + "blade_offer_description_details/blade_offer_description_padding_3": T.PANEL + screenshots_and_offer_details_panel: T.PANEL + "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": T.COLLECTION_PANEL + "screenshots_and_offer_details_panel/blade_offer_description_area": T.IMAGE + "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": T.IMAGE + "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": T.STACK_PANEL + blade_row_featured_panel: T.PANEL + "blade_row_featured_panel/blade_row_featured_key_art": T.PANEL + "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": T.PANEL + transparent_content_button: T.BUTTON + hero_blade_row_panel: T.PANEL + "hero_blade_row_panel/blade_row_transparent_button": T.BUTTON + hero_row_panel: T.STACK_PANEL + "hero_row_panel/header": T.PANEL + "hero_row_panel/centering_panel": T.PANEL + "hero_row_panel/centering_panel/featured_stack": T.STACK_PANEL + "hero_row_panel/centering_panel/featured_stack/hero_offer": T.BUTTON + "hero_row_panel/centering_panel/featured_stack/padding_0": T.PANEL + "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": T.STACK_PANEL + "hero_row_panel/padding_0": T.PANEL + "hero_row_panel/divider": T.STACK_PANEL + hero_offer: T.PANEL + "hero_offer/featured_key_art": T.PANEL + "hero_offer/rtx_label": T.PANEL + "hero_offer/offer_description_area": T.IMAGE + "hero_offer/offer_description_area/hero_offer_description_details": T.STACK_PANEL + hero_offer_details_title: T.LABEL + hero_offer_description_details: T.STACK_PANEL + "hero_offer_description_details/hero_title_stack": T.STACK_PANEL + "hero_offer_description_details/hero_title_stack/title": T.LABEL + "hero_offer_description_details/padding_5": T.PANEL + "hero_offer_description_details/progress": T.PANEL + "hero_offer_description_details/creator_label": T.STACK_PANEL + "hero_offer_description_details/padding_0": T.PANEL + "hero_offer_description_details/durable_offer_info_panel": T.STACK_PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": T.PANEL + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": T.STACK_PANEL + "hero_offer_description_details/padding_1": T.PANEL + hero_offer_download_progress: T.PANEL + "hero_offer_download_progress/label": T.LABEL + "hero_offer_download_progress/bar": T.PANEL + rating_text_panel: T.STACK_PANEL + "rating_text_panel/left_padding": T.PANEL + "rating_text_panel/star_panel": T.PANEL + "rating_text_panel/star_panel/rating_star": T.IMAGE + "rating_text_panel/middle_padding": T.PANEL + "rating_text_panel/rating_label": T.LABEL + ratings_description: T.PANEL + "ratings_description/rating_text_panel": T.STACK_PANEL + store_rating_count_panel: T.PANEL + "store_rating_count_panel/rating_count_text": T.LABEL + hero_offer_grid: T.STACK_PANEL + "hero_offer_grid/row_1": T.STACK_PANEL + "hero_offer_grid/row_1/offer_1": T.PANEL + "hero_offer_grid/row_1/padding_0": T.PANEL + "hero_offer_grid/row_1/offer_2": T.PANEL + "hero_offer_grid/padding_0": T.PANEL + "hero_offer_grid/row_2": T.STACK_PANEL + "hero_offer_grid/row_2/offer_1": T.PANEL + "hero_offer_grid/row_2/padding_0": T.PANEL + "hero_offer_grid/row_2/offer_2": T.PANEL + offer_download_progress: T.PANEL + "offer_download_progress/label": T.LABEL + "offer_download_progress/bar": T.PANEL + banner_button: T.PANEL + sdl_text_aligned_panel: T.STACK_PANEL + sdl_text_minecraftTen_aligned_panel: T.STACK_PANEL + sdl_content_aligned_panel: T.STACK_PANEL + "sdl_content_aligned_panel/left__padding_panel": T.PANEL + "sdl_content_aligned_panel/control": T.UNKNOWN + "sdl_content_aligned_panel/right_padding_panel": T.PANEL + sdl_aligned_text: T.LABEL + sdl_aligned_minecraftTen_text: T.LABEL + content_offer_key_art: T.IMAGE + vertical_content_offer_header: T.IMAGE + "vertical_content_offer_header/header": T.STACK_PANEL + vertical_content_offer_panel: T.STACK_PANEL + vertical_offer_grid_panel: T.PANEL + offer_content: T.PANEL + "offer_content/offer_item": T.PANEL + vertical_offer_content: T.PANEL + "vertical_offer_content/offer_item": T.PANEL + vertical_coin_offer_content: T.PANEL + "vertical_coin_offer_content/offer_item": T.PANEL + store_offer_key_art: T.IMAGE + store_offer_grid_show_more: T.PANEL + "store_offer_grid_show_more/frame": T.IMAGE + "store_offer_grid_show_more/frame/title": T.LABEL + "store_offer_grid_show_more/offer_button": T.BUTTON + "store_offer_grid_show_more/offer_button/hover": T.IMAGE + "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": T.PANEL + "store_offer_grid_show_more/offer_button/pressed": T.IMAGE + "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": T.PANEL + persona_grid_show_more: T.BUTTON + row_offer_sale_markdown: T.LABEL + discount_label: T.STACK_PANEL + "discount_label/label_panel": T.PANEL + "discount_label/label_panel/label": T.LABEL + "discount_label/icon_panel": T.PANEL + "discount_label/icon_panel/icon": T.IMAGE + hero_offer_sale_markdown: T.LABEL + offer_price_markdown_panel: T.PANEL + "offer_price_markdown_panel/offer_price": T.LABEL + "offer_price_markdown_panel/offer_price/text_strike_through": T.IMAGE + store_offer_title: T.LABEL + store_offer_key_art_frame: T.IMAGE + "store_offer_key_art_frame/key_art": T.IMAGE + "store_offer_key_art_frame/key_art/key_art_frame": T.IMAGE + "store_offer_key_art_frame/key_art/csb_expiration_banner": T.PANEL + "store_offer_key_art_frame/progress_loading": T.PANEL + vertical_store_offer_grid_item: T.PANEL + "vertical_store_offer_grid_item/frame": T.IMAGE + "vertical_store_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL + "vertical_store_offer_grid_item/frame/offer_button": T.BUTTON + "vertical_store_offer_grid_item/dark_frame": T.IMAGE + "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL + "vertical_store_offer_grid_item/dark_frame/offer_button": T.BUTTON + vertical_store_offer_grid_inside_frame: T.STACK_PANEL + "vertical_store_offer_grid_inside_frame/key_art_size_panel": T.PANEL + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE + "vertical_store_offer_grid_inside_frame/offer_details_general_panel": T.PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": T.STACK_PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": T.PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": T.PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": T.PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": T.STACK_PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": T.STACK_PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": T.PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/rating_and_price_padding": T.PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/offer_price_info_panel": T.PANEL + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": T.PANEL + vertical_store_coin_offer_grid_item: T.PANEL + "vertical_store_coin_offer_grid_item/frame": T.IMAGE + "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL + "vertical_store_coin_offer_grid_item/dark_frame": T.IMAGE + "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL + "vertical_store_coin_offer_grid_item/dark_frame/offer_button": T.BUTTON + vertical_coin_offer_grid_inside_frame: T.STACK_PANEL + "vertical_coin_offer_grid_inside_frame/key_art_size_panel": T.PANEL + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE + "vertical_coin_offer_grid_inside_frame/padding": T.PANEL + "vertical_coin_offer_grid_inside_frame/coin_panel": T.PANEL + "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": T.IMAGE + "vertical_coin_offer_grid_inside_frame/Minecoins_panel": T.PANEL + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": T.STACK_PANEL + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": T.PANEL + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": T.PANEL + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": T.LABEL + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": T.PANEL + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": T.PANEL + offer_prompt_panel: T.STACK_PANEL + "offer_prompt_panel/coin_panel": T.PANEL + "offer_prompt_panel/coin_panel/offer_coin_icon": T.IMAGE + "offer_prompt_panel/padding_3": T.PANEL + "offer_prompt_panel/offer_status_text_panel": T.PANEL + "offer_prompt_panel/offer_status_text_panel/offer_status_text": T.LABEL + store_offer_grid_item: T.PANEL + "store_offer_grid_item/frame": T.UNKNOWN + "store_offer_grid_item/frame/key_art": T.IMAGE + "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE + "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": T.PANEL + "store_offer_grid_item/frame/progress_loading": T.PANEL + "store_offer_grid_item/frame/progress": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": T.PANEL + "store_offer_grid_item/frame/offer_button": T.BUTTON + thumbnail_only_offer: T.PANEL + "thumbnail_only_offer/frame": T.UNKNOWN + "thumbnail_only_offer/frame/key_art": T.IMAGE + "thumbnail_only_offer/frame/key_art/key_art_frame": T.IMAGE + "thumbnail_only_offer/frame/key_art/offer_coin_icon": T.IMAGE + "thumbnail_only_offer/frame/offer_button": T.BUTTON + store_section_header_label: T.LABEL + persona_store_row_offer: T.PANEL + "persona_store_row_offer/persona_offer": T.UNKNOWN + thumnail_only_row_offer: T.PANEL + "thumnail_only_row_offer/generic_store_offer": T.PANEL + generic_store_row_offer_panel: T.PANEL + "generic_store_row_offer_panel/generic_store_offer": T.PANEL + store_row_show_more_button_panel: T.PANEL + "store_row_show_more_button_panel/show_more_button": T.PANEL + persona_show_more_button_panel: T.PANEL + "persona_show_more_button_panel/show_more_button": T.BUTTON + persona_grid_panel_stack: T.STACK_PANEL + "persona_grid_panel_stack/default_piece_button": T.UNKNOWN + "persona_grid_panel_stack/persona_grid_panel": T.PANEL + persona_grid_panel: T.PANEL + "persona_grid_panel/persona_offer_grid": T.GRID + store_offer_grid_factory: T.COLLECTION_PANEL + non_collection_item_horizontal_padding: T.PANEL + horizontal_store_offer_row_factory: T.STACK_PANEL + recently_viewed_row_panel: T.PANEL + static_offer_row_panel: T.PANEL + "static_offer_row_panel/store_row_dropdown_panel": T.PANEL + "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL + store_row_panel: T.PANEL + "store_row_panel/store_row_dropdown_panel": T.PANEL + "store_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL + vertical_store_row_panel: T.PANEL + style_header: T.PANEL + "style_header/background": T.IMAGE + "style_header/style_header": T.STACK_PANEL + style_header_panel: T.STACK_PANEL + "style_header_panel/row_header": T.PANEL + "style_header_panel/row_header/label_panel": T.STACK_PANEL + "style_header_panel/row_header/label_panel/indent": T.PANEL + "style_header_panel/row_header/label_panel/row_header_label_centering_panel": T.PANEL + "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": T.LABEL + "style_header_panel/row_header/label_panel/on_sale_banner": T.IMAGE + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": T.PANEL + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE + "style_header_panel/row_header/label_panel/time_remaining_label": T.LABEL + "style_header_panel/row_carousel_padding": T.PANEL + store_row_cycle_button_panel: T.PANEL + "store_row_cycle_button_panel/cycle_button_panel": T.STACK_PANEL + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": T.PANEL + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": T.PANEL + store_row: T.STACK_PANEL + "store_row/carousel_panel": T.PANEL + "store_row/carousel_panel/progress_loading": T.PANEL + "store_row/carousel_panel/cycle_pack_horizontal_stack": T.STACK_PANEL + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": T.PANEL + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": T.PANEL + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": T.STACK_PANEL + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": T.PANEL + "store_row/divider": T.STACK_PANEL + page_indicator_panel: T.PANEL + "page_indicator_panel/first_of_three": T.IMAGE + "page_indicator_panel/second_of_three": T.IMAGE + "page_indicator_panel/third_of_three": T.IMAGE + "page_indicator_panel/first_of_two": T.IMAGE + "page_indicator_panel/second_of_two": T.IMAGE + page_indicator: T.IMAGE + popup_dialog__no_store_connection: T.INPUT_PANEL + "popup_dialog__no_store_connection/popup_dialog_bg": T.IMAGE + "popup_dialog__no_store_connection/popup_dialog_message": T.LABEL + "popup_dialog__no_store_connection/popup_dialog_middle_button": T.BUTTON + popup_dialog__restore_popup: T.INPUT_PANEL + "popup_dialog__restore_popup/popup_dialog_bg": T.IMAGE + "popup_dialog__restore_popup/popup_dialog_message": T.LABEL + popup_dialog__restore_failed: T.INPUT_PANEL + "popup_dialog__restore_failed/popup_dialog_bg": T.IMAGE + "popup_dialog__restore_failed/popup_dialog_message": T.LABEL + "popup_dialog__restore_failed/popup_dialog_middle_button": T.BUTTON + suggested_content_offers_grid_item: T.PANEL + "suggested_content_offers_grid_item/frame": T.IMAGE + "suggested_content_offers_grid_item/frame/key_art": T.IMAGE + "suggested_content_offers_grid_item/frame/key_art/key_art_frame": T.IMAGE + "suggested_content_offers_grid_item/frame/progress_loading": T.PANEL + "suggested_content_offers_grid_item/frame/progress": T.PANEL + "suggested_content_offers_grid_item/frame/title_label_panel": T.STACK_PANEL + "suggested_content_offers_grid_item/frame/title_label_panel/title": T.LABEL + "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": T.LABEL + "suggested_content_offers_grid_item/frame/offer_button": T.BUTTON + "suggested_content_offers_grid_item/frame/offer_button/hover": T.IMAGE + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE + "suggested_content_offers_grid_item/frame/offer_button/pressed": T.IMAGE + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE + suggested_content_offers_grid: T.GRID + more_suggested_content_offers_button: T.BUTTON + suggested_content_offers_panel_base: T.PANEL + "suggested_content_offers_panel_base/content": T.PANEL + "suggested_content_offers_panel_base/content/suggested_content_offers_grid": T.GRID + "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": T.BUTTON + "suggested_content_offers_panel_base/progress_loading": T.PANEL + suggested_content_offers_panel_3x1: T.PANEL + suggested_content_offers_panel_4x1: T.PANEL + search_text_box_panel: T.PANEL + "search_text_box_panel/search_text_box": T.EDIT_BOX + "search_text_box_panel/clear_button": T.BUTTON + "search_text_box_panel/loading_spinner": T.IMAGE + search_label_panel: T.PANEL + "search_label_panel/offset_panel": T.PANEL + "search_label_panel/offset_panel/label": T.LABEL + error_text_panel: T.IMAGE + "error_text_panel/error_text_content": T.STACK_PANEL + "error_text_panel/error_text_content/top_padding": T.PANEL + "error_text_panel/error_text_content/label_panel": T.PANEL + "error_text_panel/error_text_content/bottom_padding": T.PANEL + results_text_panel: T.IMAGE + "results_text_panel/results_panel": T.STACK_PANEL + "results_text_panel/results_panel/top_padding": T.PANEL + "results_text_panel/results_panel/results_content": T.STACK_PANEL + "results_text_panel/results_panel/results_content/label_panel": T.PANEL + "results_text_panel/results_panel/results_content/mid_padding": T.PANEL + "results_text_panel/results_panel/results_content/results_close_centering_panel": T.PANEL + "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": T.BUTTON + "results_text_panel/results_panel/results_content/right_padding": T.PANEL + "results_text_panel/results_panel/bottom_padding": T.PANEL + filter_logo_content_panel: T.PANEL + "filter_logo_content_panel/filter_logo_image": T.IMAGE + "filter_logo_content_panel/filter_count_label": T.LABEL + filter_sort_toggle: T.PANEL + filter_sort_submenu_scrolling_panel_section: T.PANEL + "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": T.PANEL + filter_sort_grid_panel: T.PANEL + "filter_sort_grid_panel/filter_sort_grid": T.STACK_PANEL + sort_button_content_panel: T.IMAGE + search_panel_filter: T.STACK_PANEL + "search_panel_filter/search_text_box": T.PANEL + "search_panel_filter/filter_button": T.BUTTON + "search_panel_filter/sort_button": T.BUTTON + search_results_and_error_stack: T.STACK_PANEL + "search_results_and_error_stack/mid_padding_1": T.PANEL + "search_results_and_error_stack/error_text_panel": T.IMAGE + "search_results_and_error_stack/mid_padding_2": T.PANEL + "search_results_and_error_stack/results_text_panel": T.IMAGE + search_panel: T.PANEL + "search_panel/search_panel_content": T.STACK_PANEL + "search_panel/search_panel_content/search_text_box": T.STACK_PANEL + "search_panel/search_panel_content/search_results_and_error_panel": T.STACK_PANEL + "search_panel/search_panel_content/bottom_padding": T.PANEL + search_and_offer_content: T.INPUT_PANEL + "search_and_offer_content/search_and_offer_panel": T.PANEL + "search_and_offer_content/search_and_offer_panel/search_and_offer_content": T.STACK_PANEL + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": T.PANEL + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": T.PANEL + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": T.UNKNOWN + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": T.PANEL + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": T.PANEL + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": T.UNKNOWN + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": T.PANEL + search_object: T.PANEL + "search_object/search_object_content": T.INPUT_PANEL + sort_and_filter_menu_modal_panel: T.PANEL + "sort_and_filter_menu_modal_panel/filter_menu": T.UNKNOWN + sort_and_filter_menu_modals: T.PANEL + "sort_and_filter_menu_modals/filter_menu_modal": T.PANEL + "sort_and_filter_menu_modals/sort_menu_panel": T.PANEL + search_filter_sort_background: T.IMAGE + search_filter_background_panel: T.PANEL + "search_filter_background_panel/search_filter_sort_background": T.IMAGE + close_bg_button: T.BUTTON + "close_bg_button/default": T.PANEL + "close_bg_button/hover": T.PANEL + "close_bg_button/pressed": T.PANEL + close_bg_panel: T.PANEL + "close_bg_panel/header_close_button": T.BUTTON + "close_bg_panel/main_close_button": T.BUTTON + vertical_line_divider_row: T.STACK_PANEL + "vertical_line_divider_row/vert_line_divider_row_top_buffer": T.PANEL + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": T.STACK_PANEL + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": T.PANEL + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": T.IMAGE + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": T.PANEL + "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": T.PANEL + sdl_dropdown_header_row_button: T.PANEL + sdl_subcategory_button: T.UNKNOWN + sdl_dropdown_header_row: T.PANEL + "sdl_dropdown_header_row/drowdown_header_row_content": T.PANEL + "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": T.PANEL + sdl_dropdown_data_row: T.PANEL + "sdl_dropdown_data_row/row_background": T.IMAGE + "sdl_dropdown_data_row/button_aspects": T.UNKNOWN +} + +export type StoreLayoutType = { + sdl_scrolling_content_panel: T.PANEL + "sdl_scrolling_content_panel/sdl_scrolling_content_stack": T.STACK_PANEL + sdl_scrolling_content_stack: T.STACK_PANEL + "sdl_scrolling_content_stack/padding_0": T.PANEL + "sdl_scrolling_content_stack/store_screen_layout_factory": T.STACK_PANEL + "sdl_scrolling_content_stack/footer": T.PANEL + sdl_scrolling_section_panel: T.STACK_PANEL + "sdl_scrolling_section_panel/padding0": T.PANEL + "sdl_scrolling_section_panel/top_static_sdl_section": T.STACK_PANEL + "sdl_scrolling_section_panel/padding1": T.PANEL + "sdl_scrolling_section_panel/sdl_scrolling_section": T.PANEL + sdl_scrolling_section: T.PANEL + character_creator_sdl_scroll_section: T.STACK_PANEL + character_creator_sdl_section: T.STACK_PANEL + "character_creator_sdl_section/sdl_section": T.UNKNOWN + character_creator_panel: T.STACK_PANEL + "character_creator_panel/left_main_panel_padding": T.UNKNOWN + "character_creator_panel/character_creator_sdl_portion": T.STACK_PANEL + "character_creator_panel/middle_main_panel_padding": T.UNKNOWN + "character_creator_panel/right_main_panel": T.STACK_PANEL + "character_creator_panel/right_main_panel_padding": T.UNKNOWN + character_creator_screen_layout: T.PANEL + "character_creator_screen_layout/character_creator_panel": T.STACK_PANEL + main_panel: T.INPUT_PANEL + "main_panel/background": T.IMAGE + "main_panel/main_panel_content": T.PANEL + "main_panel/main_panel_content/sdl_screen_content": T.UNKNOWN + "main_panel/progress_loading": T.PANEL + nav_button_content: T.STACK_PANEL + "nav_button_content/image_panel": T.PANEL + "nav_button_content/small_padding": T.PANEL + "nav_button_content/label_panel": T.UNKNOWN + default_nav_label_panel: T.PANEL + "default_nav_label_panel/button_text_label": T.LABEL + styled_nav_label_panel: T.PANEL + "styled_nav_label_panel/button_text_label": T.LABEL + styled_nav_label_panel_minecraftTen: T.PANEL + "styled_nav_label_panel_minecraftTen/button_text_label": T.LABEL + default_styled_button_text_label: T.LABEL + nav_image_panel: T.PANEL + "nav_image_panel/button_image_panel": T.PANEL + "nav_image_panel/button_animated_panel": T.PANEL + nav_button_image_panel: T.PANEL + "nav_button_image_panel/button_image": T.UNKNOWN + nav_button_image: T.IMAGE + nav_button_animation: T.IMAGE + nav_button_fill: T.PANEL + nav_button_fill_styled: T.PANEL + nav_button_fill_styled_mc10: T.PANEL + nav_button_standard_styled: T.PANEL + nav_button_standard_styled_mc10: T.PANEL + nav_button_standard: T.PANEL + "nav_button_standard/nav_button": T.BUTTON + nav_button_grid_panel: T.PANEL + "nav_button_grid_panel/nav_button_grid": T.STACK_PANEL + store_layout_ribbon_search_button: T.BUTTON + store_layout_ribbon_search_button_content: T.PANEL + "store_layout_ribbon_search_button_content/button_image": T.IMAGE + store_data_driven_screen_base: T.SCREEN + store_screen_modal_panel: T.PANEL + "store_screen_modal_panel/one_button_dialog": T.PANEL + "store_screen_modal_panel/popup_dialog_factory": T.FACTORY + dialog_button: T.BUTTON + store_screen_main_panel: T.PANEL + "store_screen_main_panel/main_content_view": T.INPUT_PANEL + "store_screen_main_panel/sort_and_filter_modals": T.PANEL + store_full_screen_content: T.PANEL + "store_full_screen_content/mouse_input_focus_panel": T.INPUT_PANEL + "store_full_screen_content/screen_content": T.STACK_PANEL + "store_full_screen_content/screen_content/top_bar_section": T.STACK_PANEL + "store_full_screen_content/screen_content/main_panel": T.PANEL + "store_full_screen_content/screen_content/main_panel/main_panel_content": T.PANEL + "store_full_screen_content/popup_dialog_factory": T.FACTORY + "store_full_screen_content/character_selector_dialog_factory": T.FACTORY + "store_full_screen_content/custom_skin_dialog_factory": T.FACTORY + sdl_base_screen: T.SCREEN + character_creator_base_screen: T.SCREEN + store_data_driven_screen: T.SCREEN + character_creator_screen: T.SCREEN + dressing_room_color_picker_screen: T.SCREEN + expanded_appearance_view_screen: T.SCREEN + non_scrollable_sdl_screen: T.SCREEN + skin_selector_screen: T.SCREEN + store_data_driven_modal_one_button_screen: T.SCREEN +} + +export type FilterMenuType = { + filter_clear_button_panel: T.PANEL + "filter_clear_button_panel/clear_button": T.BUTTON + chevron_icon_panel: T.PANEL + "chevron_icon_panel/chevron_icon": T.IMAGE + filter_variables_panel: T.PANEL + filter_option_button_content: T.STACK_PANEL + "filter_option_button_content/left_chevron_icon_panel": T.PANEL + "filter_option_button_content/filter_type_and_selected_panel": T.STACK_PANEL + "filter_option_button_content/filter_type_and_selected_panel/top_padding": T.PANEL + "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": T.LABEL + "filter_option_button_content/filter_type_and_selected_panel/middle_padding": T.PANEL + "filter_option_button_content/filter_type_and_selected_panel/selected_label": T.LABEL + "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": T.PANEL + "filter_option_button_content/right_chevron_icon_panel": T.PANEL + filter_options_button_panel: T.PANEL + "filter_options_button_panel/filter_variables_panel": T.PANEL + "filter_options_button_panel/filter_variables_panel/filter_options_button": T.BUTTON + filter_main_menu_options_button_panel: T.PANEL + filter_title_bar_content: T.STACK_PANEL + "filter_title_bar_content/filter_logo_and_count_panel": T.PANEL + "filter_title_bar_content/centered_filter_title_label": T.PANEL + "filter_title_bar_content/centered_filter_title_label/filter_title_label": T.LABEL + "filter_title_bar_content/filter_title_padding_close_button": T.PANEL + "filter_title_bar_content/centered_x": T.PANEL + "filter_title_bar_content/centered_x/close_x_image": T.IMAGE + filter_title_bar: T.BUTTON + filter_checkbox_toggle: T.PANEL + filter_checkbox_no_icon_toggle: T.PANEL + "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": T.PANEL + pack_type_sub_menu_panel: T.PANEL + "pack_type_sub_menu_panel/pack_type_sub_menu": T.STACK_PANEL + "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": T.PANEL + "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": T.PANEL + "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": T.PANEL + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": T.STACK_PANEL + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": T.PANEL + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": T.PANEL + "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": T.PANEL + offer_type_sub_menu_panel: T.STACK_PANEL + "offer_type_sub_menu_panel/bundles_filter": T.PANEL + "offer_type_sub_menu_panel/realms_plus_filter": T.PANEL + "offer_type_sub_menu_panel/csb_filter": T.PANEL + realms_plus_filter: T.PANEL + "realms_plus_filter/realms_plus_filter": T.PANEL + csb_filter: T.PANEL + "csb_filter/csb_filter": T.PANEL + realms_plus_gradient_content_panel: T.PANEL + "realms_plus_gradient_content_panel/gradient": T.IMAGE + "realms_plus_gradient_content_panel/particles": T.IMAGE + "realms_plus_gradient_content_panel/content_panel": T.STACK_PANEL + csb_gradient_content_panel: T.PANEL + "csb_gradient_content_panel/gradient": T.IMAGE + "csb_gradient_content_panel/particles": T.IMAGE + "csb_gradient_content_panel/content_panel": T.STACK_PANEL + filter_section_content: T.STACK_PANEL + "filter_section_content/section_title_button": T.PANEL + "filter_section_content/clear_button": T.PANEL + "filter_section_content/section_sub_menu": T.UNKNOWN + filter_section_content_dynamic: T.PANEL + "filter_section_content_dynamic/filter_section_content": T.STACK_PANEL + filter_main_menu_content: T.STACK_PANEL + "filter_main_menu_content/filter_title_bar_panel": T.BUTTON + "filter_main_menu_content/offer_type_button": T.PANEL + "filter_main_menu_content/pack_type_button": T.PANEL + "filter_main_menu_content/minecoin_button": T.PANEL + "filter_main_menu_content/rating_button": T.PANEL + "filter_main_menu_content/creator_button": T.PANEL + "filter_main_menu_content/graphics_button": T.PANEL + "filter_main_menu_content/installed_state_button": T.PANEL + "filter_main_menu_content/filter_main_menu_filter_toggles_section": T.PANEL + "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": T.PANEL + "filter_main_menu_content/clear_button_panel": T.PANEL + filter_main_menu_content_persona: T.STACK_PANEL + "filter_main_menu_content_persona/filter_title_bar_panel": T.BUTTON + "filter_main_menu_content_persona/persona_body_button": T.PANEL + "filter_main_menu_content_persona/persona_style_button": T.PANEL + "filter_main_menu_content_persona/emote_filter_section": T.PANEL + "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": T.PANEL + "filter_main_menu_content_persona/minecoin_button": T.PANEL + "filter_main_menu_content_persona/clear_button_panel": T.PANEL + filter_section_content_panel: T.PANEL + "filter_section_content_panel/filter_menu_screen": T.UNKNOWN + filter_main_menu_section: T.PANEL + filter_main_menu_section_persona: T.PANEL + filter_pack_type_section: T.PANEL + filter_offer_type_section: T.PANEL + filter_type_section: T.PANEL + filter_menu_content: T.PANEL + "filter_menu_content/filter_main_menu_screen": T.PANEL + "filter_menu_content/filter_offer_type_screen": T.PANEL + "filter_menu_content/filter_pack_type_screen": T.PANEL + "filter_menu_content/filter_minecoin_section": T.PANEL + "filter_menu_content/filter_rating_section": T.PANEL + "filter_menu_content/filter_creator_section": T.PANEL + "filter_menu_content/filter_graphics_section": T.PANEL + "filter_menu_content/filter_installed_state_section": T.PANEL + filter_menu_content_persona: T.PANEL + "filter_menu_content_persona/filter_main_menu_screen": T.PANEL + "filter_menu_content_persona/filter_style_section": T.PANEL + "filter_menu_content_persona/filter_body_section": T.PANEL + "filter_menu_content_persona/filter_minecoin_section": T.PANEL + filter_menu_panel: T.STACK_PANEL + "filter_menu_panel/top_padding": T.PANEL + "filter_menu_panel/alignment_panel": T.STACK_PANEL + "filter_menu_panel/alignment_panel/left_padding": T.PANEL + "filter_menu_panel/alignment_panel/filter_menu_content_scroll": T.PANEL + "filter_menu_panel/alignment_panel/right_padding": T.PANEL + filter_menu_screen_content: T.INPUT_PANEL + "filter_menu_screen_content/filter_main_panel": T.STACK_PANEL + "filter_menu_screen_content/filter_main_panel_persona": T.STACK_PANEL + "filter_menu_screen_content/filter_menu_close_background_button": T.PANEL +} + +export type StoreInventoryType = { + sign_in_button: T.BUTTON + no_xbl_and_local_content_warning_panel: T.STACK_PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": T.IMAGE + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL + "no_xbl_and_local_content_warning_panel/bottom_padding": T.PANEL + no_xbl_and_no_local_conent_warning_panel: T.STACK_PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": T.IMAGE + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL + "no_xbl_and_no_local_conent_warning_panel/bottom_padding": T.PANEL + inventory_sign_in_panel: T.PANEL + "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": T.STACK_PANEL + "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": T.STACK_PANEL + divider_panel: T.STACK_PANEL + "divider_panel/top_pad": T.PANEL + "divider_panel/divider": T.PANEL + "divider_panel/bottom_pad": T.PANEL + right_image: T.IMAGE + down_image: T.IMAGE + section_toggle_base: T.PANEL + owned_toggle: T.PANEL + current_toggle: T.PANEL + removed_toggle: T.PANEL + subscriptions_toggle: T.PANEL + inventory_left_panel: T.STACK_PANEL + "inventory_left_panel/top_pad": T.PANEL + "inventory_left_panel/owned_toggle": T.PANEL + "inventory_left_panel/owned_dropdown_box_panel": T.IMAGE + "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": T.STACK_PANEL + "inventory_left_panel/divider_0": T.STACK_PANEL + "inventory_left_panel/csub_panel": T.PANEL + "inventory_left_panel/csub_panel/csub_stack_panel": T.STACK_PANEL + "inventory_left_panel/divider_1": T.STACK_PANEL + "inventory_left_panel/subscriptions_toggle": T.PANEL + csub_stack_panel: T.STACK_PANEL + "csub_stack_panel/padding_title_vertical": T.PANEL + "csub_stack_panel/section_title": T.STACK_PANEL + "csub_stack_panel/section_title/padding_title_horizontal": T.PANEL + "csub_stack_panel/section_title/testTitle": T.STACK_PANEL + "csub_stack_panel/dropdown_panel": T.PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL + subscriptions_text_panel: T.PANEL + "subscriptions_text_panel/subscriptions_text": T.LABEL + realms_plus_stack_panel: T.STACK_PANEL + "realms_plus_stack_panel/section_title": T.IMAGE + "realms_plus_stack_panel/section_title/border": T.IMAGE + "realms_plus_stack_panel/section_title/section_title_label": T.LABEL + "realms_plus_stack_panel/section_title/particles": T.IMAGE + "realms_plus_stack_panel/dropdown_panel": T.PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": T.PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL + dropdown_button_content: T.STACK_PANEL + "dropdown_button_content/title_label": T.LABEL + "dropdown_button_content/pad_0_fill": T.PANEL + "dropdown_button_content/pad_0": T.PANEL + "dropdown_button_content/icon_panel": T.PANEL + "dropdown_button_content/icon_panel/block_icon": T.IMAGE + "dropdown_button_content/pad_1": T.PANEL + "dropdown_button_content/pad_2": T.PANEL + "dropdown_button_content/count_panel": T.PANEL + "dropdown_button_content/count_panel/count": T.LABEL + "dropdown_button_content/pad_3": T.PANEL + "dropdown_button_content/right_carrot": T.PANEL + "dropdown_button_content/right_carrot/right": T.IMAGE + "dropdown_button_content/down_carrot": T.PANEL + "dropdown_button_content/down_carrot/down": T.IMAGE + owned_dropdown_content: T.STACK_PANEL + current_dropdown_content: T.STACK_PANEL + removed_dropdown_content: T.STACK_PANEL + dropdown_box: T.STACK_PANEL + "dropdown_box/top_pad": T.PANEL + "dropdown_box/all": T.BUTTON + "dropdown_box/divider_0": T.STACK_PANEL + "dropdown_box/addons": T.BUTTON + "dropdown_box/divider_1": T.STACK_PANEL + "dropdown_box/skins": T.BUTTON + "dropdown_box/divider_2": T.STACK_PANEL + "dropdown_box/worlds": T.BUTTON + "dropdown_box/divider_3": T.STACK_PANEL + "dropdown_box/textures": T.BUTTON + "dropdown_box/divider_4": T.STACK_PANEL + "dropdown_box/mashups": T.BUTTON + "dropdown_box/bottom_pad": T.PANEL + category_panel_button: T.BUTTON + "category_panel_button/default": T.STACK_PANEL + "category_panel_button/hover": T.STACK_PANEL + "category_panel_button/pressed": T.STACK_PANEL + category_stack_panel: T.STACK_PANEL + "category_stack_panel/text": T.LABEL + "category_stack_panel/fill_pad": T.PANEL + "category_stack_panel/icon": T.IMAGE + "category_stack_panel/pad_1": T.PANEL + "category_stack_panel/number": T.LABEL + search_object: T.PANEL + list_panel: T.INPUT_PANEL + "list_panel/list_panel_content": T.PANEL + "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": T.PANEL + "list_panel/progress_loading": T.PANEL + items_content_section: T.INPUT_PANEL + subscriptions_content_section: T.STACK_PANEL + "subscriptions_content_section/left_pad": T.PANEL + "subscriptions_content_section/search_and_offers_grid_scroll_panel": T.PANEL + right_pane_factory: T.STACK_PANEL + content_area: T.PANEL + "content_area/control": T.STACK_PANEL + "content_area/control/right_pane_factory": T.STACK_PANEL + main_panel: T.STACK_PANEL + "main_panel/inventory_left_panel": T.PANEL + "main_panel/inventory_left_panel/inventory_left_image": T.IMAGE + "main_panel/inventory_left_panel/left_scrolling_panel": T.PANEL + "main_panel/divider_panel": T.PANEL + "main_panel/divider_panel/main_divider": T.IMAGE + "main_panel/inventory_right_panel": T.PANEL + "main_panel/inventory_right_panel/right_panel_background_image": T.IMAGE + "main_panel/inventory_right_panel/content_right_panel": T.PANEL + store_inventory_screen_main_panel: T.PANEL + "store_inventory_screen_main_panel/main_content_view": T.INPUT_PANEL + "store_inventory_screen_main_panel/sort_and_filter_modals": T.PANEL + store_search_screen_content: T.PANEL + "store_search_screen_content/main_panel": T.STACK_PANEL + "store_search_screen_content/popup_dialog_factory": T.FACTORY + store_inventory_screen: T.SCREEN + signin_text_section_body: T.STACK_PANEL + signin_text: T.LABEL + signin_text_02: T.LABEL + signin_text_section: T.STACK_PANEL + "signin_text_section/signin_text": T.LABEL + "signin_text_section/line_1_padding_line_2": T.PANEL + "signin_text_section/signin_text_02": T.LABEL + sign_in_panel_text_body: T.BUTTON +} + +export type StoreItemListType = { + store_offer_key_art: T.IMAGE + main_panel: T.INPUT_PANEL + "main_panel/search_object": T.PANEL + "main_panel/progress_loading": T.PANEL + scrolling_content_stack: T.STACK_PANEL + "scrolling_content_stack/search_panel": T.UNKNOWN + store_offer_grid: T.GRID + persona_offer_grid: T.GRID + vertical_store_offer_grid: T.GRID + store_offer_title: T.LABEL + store_offer_grid_item: T.PANEL + "store_offer_grid_item/frame": T.IMAGE + "store_offer_grid_item/frame/key_art": T.IMAGE + "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE + "store_offer_grid_item/frame/key_art/csb_expiration_banner": T.PANEL + "store_offer_grid_item/frame/progress": T.PANEL + "store_offer_grid_item/frame/title_label_panel": T.PANEL + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": T.STACK_PANEL + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": T.LABEL + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL + "store_offer_grid_item/frame/offer_button": T.BUTTON + "store_offer_grid_item/frame/offer_button/hover": T.PANEL + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE + "store_offer_grid_item/frame/offer_button/pressed": T.PANEL + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE + "store_offer_grid_item/frame/offer_button/offer_status_icon": T.PANEL + store_screen_content: T.PANEL + "store_screen_content/main_panel": T.STACK_PANEL + "store_screen_content/popup_dialog_factory": T.FACTORY +} + +export type StoreProgressType = { + store_progress_screen: T.SCREEN + screen_content: T.PANEL + "screen_content/title_image": T.IMAGE + "screen_content/progress_dialog": T.PANEL + dialog_content: T.STACK_PANEL + "dialog_content/tooltip_panel": T.PANEL + "dialog_content/tooltip_panel/tooltip_text": T.LABEL + "dialog_content/padding": T.PANEL + "dialog_content/progress_panel": T.PANEL + "dialog_content/progress_panel/empty_progress_bar": T.IMAGE + "dialog_content/progress_panel/progress_percent_panel": T.PANEL + "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": T.IMAGE + "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": T.IMAGE + screen_background: T.IMAGE +} + +export type PromoTimelineType = { + promo_banner_factory: T.STACK_PANEL + promo_banner_button_content: T.PANEL + "promo_banner_button_content/promo_banner_button": T.LABEL + "promo_banner_button_content/progress_loading_spinner": T.IMAGE + promo_banner_image: T.IMAGE + promo_banner_panel_content: T.PANEL + "promo_banner_panel_content/banner_image": T.IMAGE + "promo_banner_panel_content/banner_text_panel": T.STACK_PANEL + "promo_banner_panel_content/banner_text_panel/padding_0": T.PANEL + "promo_banner_panel_content/banner_text_panel/title_stack_panel": T.STACK_PANEL + "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": T.STACK_PANEL + "promo_banner_panel_content/banner_text_panel/description": T.STACK_PANEL + "promo_banner_panel_content/button_stack_panel": T.STACK_PANEL + "promo_banner_panel_content/button_stack_panel/left_offset": T.PANEL + "promo_banner_panel_content/button_stack_panel/banner_button": T.STACK_PANEL + "promo_banner_panel_content/button_stack_panel/right_offset": T.PANEL + promo_banner_holiday_panel: T.PANEL + "promo_banner_holiday_panel/banner_full_button": T.BUTTON + "promo_banner_holiday_panel/banner_full_button/default": T.PANEL + "promo_banner_holiday_panel/banner_full_button/hover": T.PANEL + "promo_banner_holiday_panel/banner_full_button/pressed": T.PANEL + image_message_panel: T.STACK_PANEL + "image_message_panel/image_message_row_content": T.PANEL + "image_message_panel/padding_0": T.PANEL + image_message_row_content: T.PANEL + "image_message_row_content/gray_background": T.IMAGE + "image_message_row_content/gray_background/message_text": T.LABEL + "image_message_row_content/gray_background/row_image": T.IMAGE + "image_message_row_content/row_button": T.BUTTON + promo_image_panel: T.IMAGE + "promo_image_panel/button_image_panel": T.PANEL + "promo_image_panel/button_animated_panel": T.PANEL + promo_button_image_panel: T.PANEL + "promo_button_image_panel/button_image": T.UNKNOWN + promo_button_image: T.IMAGE + promo_button_animation: T.IMAGE + banner_button: T.PANEL + sdl_text_aligned_panel: T.STACK_PANEL + sdl_text_minecraftTen_aligned_panel: T.STACK_PANEL + sdl_content_aligned_panel: T.STACK_PANEL + "sdl_content_aligned_panel/left__padding_panel": T.PANEL + "sdl_content_aligned_panel/control": T.UNKNOWN + "sdl_content_aligned_panel/right_padding_panel": T.PANEL + sdl_aligned_text: T.LABEL + sdl_aligned_minecraftTen_text: T.LABEL + colored_direction_button_panel: T.PANEL + "colored_direction_button_panel/chevron_image": T.IMAGE + left_corner_art: T.IMAGE + right_corner_art: T.IMAGE + promo_landing_panel: T.INPUT_PANEL + "promo_landing_panel/promo_landing_panel_content": T.STACK_PANEL + "promo_landing_panel/promo_landing_panel_content/promo_top": T.PANEL + "promo_landing_panel/promo_landing_panel_content/pad_0": T.PANEL + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": T.PANEL + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": T.IMAGE + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": T.INPUT_PANEL + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": T.PANEL + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": T.BUTTON + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": T.STACK_PANEL + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": T.PANEL + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": T.BUTTON + "promo_landing_panel/promo_landing_panel_content/pad_1": T.PANEL + "promo_landing_panel/left_corner_art": T.IMAGE + "promo_landing_panel/right_corner_art": T.IMAGE + promotion_screen_top_section: T.PANEL + "promotion_screen_top_section/main_panel": T.IMAGE + promotion_top_main_panel: T.IMAGE + "promotion_top_main_panel/promotion_top_main_stack": T.STACK_PANEL + "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": T.STACK_PANEL + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": T.INPUT_PANEL + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": T.STACK_PANEL + "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": T.PANEL + main_panel_title: T.STACK_PANEL + "main_panel_title/padding_0": T.PANEL + "main_panel_title/header_stack": T.STACK_PANEL + "main_panel_title/header_stack/padding_0": T.PANEL + "main_panel_title/header_stack/back_button_centering_panel": T.PANEL + "main_panel_title/header_stack/back_button_centering_panel/button": T.BUTTON + "main_panel_title/header_stack/padding_1": T.PANEL + "main_panel_title/header_stack/header_panel": T.PANEL + "main_panel_title/header_stack/header_panel/title_and_description": T.LABEL + "main_panel_title/header_stack/padding_2": T.PANEL + "main_panel_title/header_stack/claim_all_button_panel": T.PANEL + "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": T.BUTTON + "main_panel_title/padding_1": T.PANEL + "main_panel_title/divdier_centering_panel": T.PANEL + "main_panel_title/divdier_centering_panel/divider": T.IMAGE + "main_panel_title/padding_2": T.PANEL + promo_multi_item_grid: T.GRID + promo_button: T.BUTTON + "promo_button/default": T.PANEL + "promo_button/default/key_art_size_panel": T.PANEL + "promo_button/default/key_art_size_panel/key_art_frame": T.IMAGE + "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL + "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": T.IMAGE + "promo_button/default/key_art_size_panel/button_frame": T.IMAGE + "promo_button/hover": T.PANEL + "promo_button/hover/key_art_size_panel": T.PANEL + "promo_button/hover/key_art_size_panel/key_art_frame": T.IMAGE + "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL + "promo_button/hover/key_art_size_panel/button_frame": T.IMAGE + "promo_button/pressed": T.PANEL + "promo_button/pressed/key_art_frame": T.IMAGE + "promo_button/pressed/key_art_frame/sizing_panel": T.PANEL + "promo_button/pressed/button_frame": T.IMAGE + promo_grid_item: T.PANEL + "promo_grid_item/background_image": T.IMAGE + "promo_grid_item/background_image/promo_content": T.STACK_PANEL + "promo_grid_item/promo_button": T.BUTTON + "promo_grid_item/platform_restricted_error_multi_item": T.PANEL + platform_restricted_error: T.PANEL + "platform_restricted_error/platform_restricted_error_button": T.BUTTON + "platform_restricted_error/platform_restricted_error_button/default": T.PANEL + "platform_restricted_error/platform_restricted_error_button/hover": T.IMAGE + "platform_restricted_error/platform_restricted_error_button/pressed": T.PANEL + "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": T.IMAGE + promo_grid_item_content: T.STACK_PANEL + "promo_grid_item_content/thumbnail_image": T.IMAGE + "promo_grid_item_content/persona_key_art_frame": T.PANEL + "promo_grid_item_content/persona_key_art_frame/persona_image_panel": T.IMAGE + "promo_grid_item_content/persona_key_art_frame/background": T.IMAGE + "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": T.IMAGE + "promo_grid_item_content/padding_0": T.PANEL + "promo_grid_item_content/title_tooltip": T.STACK_PANEL + "promo_grid_item_content/title_tooltip/promo_title": T.LABEL + "promo_grid_item_content/title_tooltip/tooltip": T.STACK_PANEL + promotion_period_grid_panel: T.PANEL + "promotion_period_grid_panel/promotion_offer_grid_image": T.PANEL + "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": T.IMAGE + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": T.STACK_PANEL + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": T.PANEL + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": T.LABEL + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": T.PANEL + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": T.PANEL + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": T.PANEL + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": T.PANEL + promotion_period_offer_panel: T.STACK_PANEL + "promotion_period_offer_panel/period_1": T.PANEL + "promotion_period_offer_panel/padding_0": T.PANEL + "promotion_period_offer_panel/period_2": T.PANEL + "promotion_period_offer_panel/padding_1": T.PANEL + "promotion_period_offer_panel/period_3": T.PANEL + "promotion_period_offer_panel/padding_2": T.PANEL + "promotion_period_offer_panel/period_4": T.PANEL + "promotion_period_offer_panel/padding_3": T.PANEL + "promotion_period_offer_panel/period_5": T.PANEL + "promotion_period_offer_panel/padding_4": T.PANEL + "promotion_period_offer_panel/period_6": T.PANEL + "promotion_period_offer_panel/padding_5": T.PANEL + "promotion_period_offer_panel/period_7": T.PANEL + toggle_button_control: T.PANEL + "toggle_button_control/green_check": T.IMAGE + "toggle_button_control/key_art_image_panel": T.PANEL + "toggle_button_control/key_art_image_panel/image_loading_panel": T.PANEL + "toggle_button_control/key_art_image_panel/key_art_image": T.IMAGE + checked_border: T.PANEL + promotion_period_grid_item: T.PANEL + "promotion_period_grid_item/frame": T.PANEL + "promotion_period_grid_item/frame/offer_button": T.PANEL + "promotion_period_grid_item/frame/offer_button/offer_toggle_button": T.PANEL + vertical_padding_2px: T.PANEL + timer_icon_tooltip_panel: T.PANEL + "timer_icon_tooltip_panel/limited_status_image": T.IMAGE + timer_tooltip_panel_right_extending: T.BUTTON + "timer_tooltip_panel_right_extending/default": T.PANEL + "timer_tooltip_panel_right_extending/hover": T.IMAGE + "timer_tooltip_panel_right_extending/pressed": T.IMAGE + timer_tooltip_panel_left_extending: T.BUTTON + "timer_tooltip_panel_left_extending/default": T.PANEL + "timer_tooltip_panel_left_extending/hover": T.IMAGE + "timer_tooltip_panel_left_extending/pressed": T.IMAGE + no_timer_tooltip_panel: T.BUTTON + "no_timer_tooltip_panel/default": T.PANEL + "no_timer_tooltip_panel/hover": T.PANEL + "no_timer_tooltip_panel/pressed": T.PANEL + promo_timer_panel: T.STACK_PANEL + "promo_timer_panel/timer_icon_and_tooltip_panel": T.PANEL + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": T.BUTTON + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": T.BUTTON + "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": T.BUTTON + "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": T.IMAGE + "promo_timer_panel/padding": T.PANEL + "promo_timer_panel/timer_text": T.LABEL + offer_title_panel: T.PANEL + "offer_title_panel/offer_title_label": T.LABEL + title_and_author_panel: T.STACK_PANEL + "title_and_author_panel/author_button_panel": T.PANEL + "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON + glyph_panel: T.PANEL + "glyph_panel/item_glyph_count_panel": T.STACK_PANEL + "glyph_panel/item_glyph_count_panel/glyph_icon_panel": T.PANEL + "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": T.IMAGE + "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": T.PANEL + "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": T.LABEL + "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": T.PANEL + vertical_glyph_section_content: T.STACK_PANEL + "vertical_glyph_section_content/glyph_content": T.PANEL + "vertical_glyph_section_content/bottom_glyph_content_padding": T.PANEL + glyph_section_panel: T.PANEL + "glyph_section_panel/glyphs": T.STACK_PANEL + "glyph_section_panel/glyphs/skin_glyph_section": T.UNKNOWN + "glyph_section_panel/glyphs/world_glyph_section": T.UNKNOWN + "glyph_section_panel/glyphs/resource_pack_glyph_section": T.UNKNOWN + vertical_glyph_section_panel: T.PANEL + image_glyphs_panel: T.STACK_PANEL + "image_glyphs_panel/world_panel": T.PANEL + "image_glyphs_panel/world_panel/border": T.IMAGE + "image_glyphs_panel/world_panel/world_key_image": T.IMAGE + "image_glyphs_panel/persona_panel": T.PANEL + "image_glyphs_panel/persona_panel/border": T.IMAGE + "image_glyphs_panel/persona_panel/persona_image": T.IMAGE + "image_glyphs_panel/persona_panel/background": T.IMAGE + "image_glyphs_panel/persona_panel/rarity_bar_panel": T.IMAGE + "image_glyphs_panel/divider": T.PANEL + "image_glyphs_panel/info": T.STACK_PANEL + "image_glyphs_panel/info/summary_title_and_author_panel": T.STACK_PANEL + "image_glyphs_panel/info/glyph_section": T.PANEL + "image_glyphs_panel/info/glyph_section/glyph_section_panel": T.PANEL + promo_lower_button_content: T.PANEL + "promo_lower_button_content/promo_banner_button": T.LABEL + "promo_lower_button_content/progress_loading_spinner": T.IMAGE + free_discount_label: T.LABEL + promo_upper_button_content: T.PANEL + "promo_upper_button_content/markdown": T.STACK_PANEL + "promo_upper_button_content/markdown/sales_banner_offset_panel": T.PANEL + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": T.PANEL + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL + "promo_upper_button_content/markdown/price_markdown_panel": T.PANEL + "promo_upper_button_content/markdown/price_markdown_panel/offer_price": T.LABEL + "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": T.IMAGE + "promo_upper_button_content/promo_item_action_text_panel": T.STACK_PANEL + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": T.PANEL + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": T.IMAGE + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": T.PANEL + "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": T.LABEL + "promo_upper_button_content/download_progress_bar": T.PANEL + description_section_panel: T.PANEL + "description_section_panel/contents_description": T.LABEL + offset_title_offer: T.STACK_PANEL + "offset_title_offer/pad_0": T.PANEL + "offset_title_offer/title_panel": T.PANEL + offset_promo_timer: T.STACK_PANEL + "offset_promo_timer/pad_0": T.PANEL + "offset_promo_timer/promo_timer": T.STACK_PANEL + offset_image_glyphs_panel: T.STACK_PANEL + "offset_image_glyphs_panel/pad_0": T.PANEL + "offset_image_glyphs_panel/smaller_panel": T.STACK_PANEL + "offset_image_glyphs_panel/smaller_panel/details": T.STACK_PANEL + "offset_image_glyphs_panel/smaller_panel/description": T.PANEL + promo_pack_detail_panel: T.STACK_PANEL + "promo_pack_detail_panel/offset_title_panel": T.STACK_PANEL + "promo_pack_detail_panel/offsetted_promo_timer": T.STACK_PANEL + "promo_pack_detail_panel/pad_0": T.PANEL + "promo_pack_detail_panel/offsetted_details": T.STACK_PANEL + "promo_pack_detail_panel/pad_1": T.PANEL + promo_left_inner_top_scrolling_content: T.INPUT_PANEL + "promo_left_inner_top_scrolling_content/details": T.STACK_PANEL + promo_left_inner_top: T.STACK_PANEL + "promo_left_inner_top/top": T.PANEL + "promo_left_inner_top/padding2": T.PANEL + promo_left_inner_bottom: T.STACK_PANEL + "promo_left_inner_bottom/banner_button_top_panel": T.PANEL + "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": T.BUTTON + "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": T.PANEL + "promo_left_inner_bottom/banner_button_bottom": T.BUTTON + promo_left_panel: T.STACK_PANEL + "promo_left_panel/top": T.STACK_PANEL + "promo_left_panel/bottom_buttons_padded": T.STACK_PANEL + "promo_left_panel/bottom_buttons_padded/pad_0": T.PANEL + "promo_left_panel/bottom_buttons_padded/bottom": T.STACK_PANEL + "promo_left_panel/padding": T.PANEL + promo_world_image_panel: T.PANEL + "promo_world_image_panel/image": T.PANEL + "promo_world_image_panel/image/key_image": T.IMAGE + "promo_world_image_panel/image/key_image/border": T.IMAGE + promo_grey_bar_panel: T.STACK_PANEL + "promo_grey_bar_panel/grey_bar": T.IMAGE + "promo_grey_bar_panel/green_bar": T.IMAGE + "promo_grey_bar_panel/padding": T.PANEL + promo_world_button_panel: T.STACK_PANEL + "promo_world_button_panel/pan_left_button": T.BUTTON + "promo_world_button_panel/navigation_bar": T.PANEL + "promo_world_button_panel/navigation_bar/grey_bar": T.IMAGE + "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL + "promo_world_button_panel/pan_right_button": T.BUTTON + promo_world_panel: T.STACK_PANEL + "promo_world_panel/image": T.PANEL + "promo_world_panel/padding1": T.PANEL + "promo_world_panel/buttons": T.STACK_PANEL + "promo_world_panel/padding_3": T.PANEL + promo_skin_panel: T.PANEL + "promo_skin_panel/size_control": T.PANEL + "promo_skin_panel/size_control/background": T.IMAGE + "promo_skin_panel/size_control/skin_button": T.BUTTON + "promo_skin_panel/size_control/skin_button/default": T.PANEL + "promo_skin_panel/size_control/skin_button/hover": T.IMAGE + "promo_skin_panel/size_control/skin_button/pressed": T.PANEL + "promo_skin_panel/size_control/skin_button/content_panel": T.PANEL + "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": T.CUSTOM + promo_skin_grid_panel: T.PANEL + "promo_skin_grid_panel/promo_skin_pack_grid": T.GRID + promo_right_panel_scroll_content: T.STACK_PANEL + "promo_right_panel_scroll_content/world_screenshots_panel": T.PANEL + "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": T.STACK_PANEL + "promo_right_panel_scroll_content/skin_image_panel": T.PANEL + "promo_right_panel_scroll_content/skin_image_panel/skin_panel": T.UNKNOWN + "promo_right_panel_scroll_content/persona_preview": T.INPUT_PANEL + skin_scroll_panel: T.UNKNOWN + persona_classic_skin_grid_panel: T.PANEL + "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": T.GRID + promo_right_panel: T.PANEL + promo_detail_panel: T.STACK_PANEL + "promo_detail_panel/detail": T.STACK_PANEL + "promo_detail_panel/center_spacing": T.PANEL + "promo_detail_panel/right": T.PANEL + promotion_skin_viewer_panel: T.INPUT_PANEL + "promotion_skin_viewer_panel/popup_dialog_factory": T.FACTORY + "promotion_skin_viewer_panel/character_loading_panel": T.IMAGE + "promotion_skin_viewer_panel/skin_model_panel": T.PANEL + "promotion_skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": T.PANEL + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": T.IMAGE + promo_popup_toast: T.INPUT_PANEL +} + +export type StoreSaleItemListType = { + banner_header: T.PANEL + "banner_header/label_panel": T.PANEL + "banner_header/label_panel/on_sale_banner": T.IMAGE + "banner_header/label_panel/on_sale_banner/padding_panel": T.PANEL + "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL + "banner_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE + "banner_header/label_panel/time_remaining_label": T.LABEL + sales_offer_content: T.STACK_PANEL + "sales_offer_content/top_padding": T.PANEL + "sales_offer_content/sales_panel": T.STACK_PANEL + "sales_offer_content/sales_panel/sales_banner_panel": T.PANEL + "sales_offer_content/sales_panel/top_sales_grid_padding": T.PANEL + "sales_offer_content/sales_panel/sales_grid_panel": T.PANEL + "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": T.GRID + all_offer_content: T.PANEL + "all_offer_content/store_offer_grid_panel": T.GRID +} + +export type StoreSearchType = { + store_offer_grid_item: T.PANEL + trending_row_content: T.PANEL + "trending_row_content/trending_row_panel": T.STACK_PANEL + "trending_row_content/trending_row_panel/trending_row_label_panel": T.PANEL + "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": T.LABEL + "trending_row_content/trending_row_panel/mid_padding": T.PANEL + "trending_row_content/trending_row_panel/trending_offers_grid": T.GRID + "trending_row_content/trending_row_panel/bottom_padding": T.PANEL + trending_rows_grid: T.GRID + search_offer_content: T.PANEL + "search_offer_content/trending_grid": T.GRID + "search_offer_content/item_list_panel": T.PANEL + "search_offer_content/item_list_panel/item_list_grid": T.GRID + main_panel: T.INPUT_PANEL + "main_panel/seach_object": T.PANEL + "main_panel/progress_loading": T.PANEL + store_search_screen_content: T.PANEL + "store_search_screen_content/main_panel": T.STACK_PANEL + "store_search_screen_content/popup_dialog_factory": T.FACTORY + store_search_screen: T.SCREEN +} + +export type SortMenuType = { + sort_menu_toggle_panel: T.PANEL + "sort_menu_toggle_panel/sort_menu_toggle_panel": T.PANEL + "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": T.PANEL + sort_menu_first_button_content_panel: T.STACK_PANEL + "sort_menu_first_button_content_panel/left_padding": T.PANEL + "sort_menu_first_button_content_panel/centered_sort_logo_icon": T.PANEL + "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": T.IMAGE + "sort_menu_first_button_content_panel/logo_padding_labels": T.PANEL + "sort_menu_first_button_content_panel/labels_stack_panel": T.STACK_PANEL + "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": T.PANEL + "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": T.LABEL + "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": T.PANEL + "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": T.LABEL + "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": T.PANEL + "sort_menu_first_button_content_panel/labels_padding_x_image": T.PANEL + "sort_menu_first_button_content_panel/x_image_panel": T.PANEL + "sort_menu_first_button_content_panel/x_image_panel/x_image": T.IMAGE + sort_menu_toggles: T.STACK_PANEL + "sort_menu_toggles/relevance_toggle_panel": T.PANEL + "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": T.PANEL + "sort_menu_toggles/sort_toggle_grid": T.PANEL + sort_menu_show: T.STACK_PANEL + "sort_menu_show/1st_button_centering_panel": T.PANEL + "sort_menu_show/1st_button_centering_panel/first_button_main": T.BUTTON + "sort_menu_show/sort_scrolling_content_panel": T.PANEL + sort_menu_panel: T.STACK_PANEL + "sort_menu_panel/top_padding": T.PANEL + "sort_menu_panel/alignment_panel": T.STACK_PANEL + "sort_menu_panel/alignment_panel/left_padding": T.PANEL + "sort_menu_panel/alignment_panel/sort_menu_show": T.STACK_PANEL + "sort_menu_panel/alignment_panel/right_padding": T.PANEL + sort_menu_screen_content: T.INPUT_PANEL + "sort_menu_screen_content/sort_menu_main": T.STACK_PANEL + "sort_menu_screen_content/sort_menu_main_persona": T.STACK_PANEL + "sort_menu_screen_content/sort_menu_background": T.PANEL +} + +export type StructureEditorType = { + small_padding: T.PANEL + help_icon: T.IMAGE + common_text_label: T.LABEL + text_edit_control: T.EDIT_BOX + axis_selection_panel: T.PANEL + "axis_selection_panel/label": T.LABEL + "axis_selection_panel/edit_box": T.EDIT_BOX + grid_axis_selection_panel: T.STACK_PANEL + "grid_axis_selection_panel/label_container": T.PANEL + "grid_axis_selection_panel/label_container/label": T.LABEL + "grid_axis_selection_panel/axis_grid": T.GRID + "grid_axis_selection_panel/axis_grid/X": T.PANEL + "grid_axis_selection_panel/axis_grid/Y": T.PANEL + "grid_axis_selection_panel/axis_grid/Z": T.PANEL + "3d_export_button": T.BUTTON + save_button: T.BUTTON + export_button: T.BUTTON + load_button: T.BUTTON + detect_button: T.BUTTON + import_button: T.BUTTON + reset_button: T.BUTTON + help_button: T.BUTTON + toggle_option_panel: T.STACK_PANEL + "toggle_option_panel/toggle": T.TOGGLE + "toggle_option_panel/offset_0": T.PANEL + "toggle_option_panel/first_label_wrapper": T.PANEL + "toggle_option_panel/first_label_wrapper/first_label": T.LABEL + "toggle_option_panel/second_label_wrapper": T.PANEL + "toggle_option_panel/second_label_wrapper/second_label": T.LABEL + include_entities_panel: T.STACK_PANEL + "include_entities_panel/label": T.LABEL + "include_entities_panel/toggle_wrapper": T.PANEL + "include_entities_panel/toggle_wrapper/toggle": T.STACK_PANEL + waterlogging_panel: T.STACK_PANEL + "waterlogging_panel/label": T.LABEL + "waterlogging_panel/toggle_wrapper": T.PANEL + "waterlogging_panel/toggle_wrapper/toggle": T.STACK_PANEL + show_bounding_box_panel: T.STACK_PANEL + "show_bounding_box_panel/label": T.LABEL + "show_bounding_box_panel/toggle_wrapper": T.PANEL + "show_bounding_box_panel/toggle_wrapper/toggle": T.STACK_PANEL + include_player_panel: T.STACK_PANEL + "include_player_panel/label": T.LABEL + "include_player_panel/toggle_wrapper": T.PANEL + "include_player_panel/toggle_wrapper/toggle": T.STACK_PANEL + remove_blocks_panel: T.STACK_PANEL + "remove_blocks_panel/label": T.LABEL + "remove_blocks_panel/toggle_wrapper": T.PANEL + "remove_blocks_panel/toggle_wrapper/toggle": T.STACK_PANEL + "3d_export_mode_panel": T.STACK_PANEL + "3d_export_mode_panel/size_offset_panel": T.STACK_PANEL + "3d_export_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL + "3d_export_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL + "3d_export_mode_panel/offset_0": T.PANEL + "3d_export_mode_panel/offset_2": T.PANEL + "3d_export_mode_panel/remove_blocks": T.STACK_PANEL + save_mode_panel: T.STACK_PANEL + "save_mode_panel/structure_name": T.PANEL + "save_mode_panel/size_offset_panel": T.STACK_PANEL + "save_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL + "save_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL + "save_mode_panel/detect_offset": T.PANEL + "save_mode_panel/detect": T.PANEL + "save_mode_panel/include_entities_offset": T.PANEL + "save_mode_panel/include_entities": T.STACK_PANEL + "save_mode_panel/remove_blocks_offset": T.PANEL + "save_mode_panel/remove_blocks": T.STACK_PANEL + "save_mode_panel/redstone_save_offset": T.PANEL + "save_mode_panel/redstone_save_mode": T.PANEL + "save_mode_panel/trailing_offset": T.PANEL + mirror_checkbox: T.STACK_PANEL + "mirror_checkbox/label": T.LABEL + "mirror_checkbox/padding": T.PANEL + "mirror_checkbox/check_box": T.TOGGLE + mirror_checkboxes: T.STACK_PANEL + "mirror_checkboxes/mirror_checkbox_x": T.STACK_PANEL + "mirror_checkboxes/padding": T.PANEL + "mirror_checkboxes/mirror_checkbox_z": T.STACK_PANEL + load_mode_panel: T.STACK_PANEL + "load_mode_panel/structure_name": T.PANEL + "load_mode_panel/offset_panel": T.STACK_PANEL + "load_mode_panel/include_entities_offset": T.PANEL + "load_mode_panel/include_entities": T.STACK_PANEL + "load_mode_panel/remove_blocks_offset": T.PANEL + "load_mode_panel/waterlog_blocks": T.STACK_PANEL + "load_mode_panel/waterlog_blocks_offset": T.PANEL + "load_mode_panel/remove_blocks": T.STACK_PANEL + "load_mode_panel/integrity_offset": T.PANEL + "load_mode_panel/integrity_label": T.LABEL + "load_mode_panel/integrity_field": T.EDIT_BOX + "load_mode_panel/offset_1": T.PANEL + "load_mode_panel/seed_label": T.LABEL + "load_mode_panel/seed_field": T.EDIT_BOX + "load_mode_panel/offset_2": T.PANEL + "load_mode_panel/rotation_slider": T.PANEL + "load_mode_panel/mirror_label": T.LABEL + "load_mode_panel/mirror_checkboxes_centerer": T.PANEL + "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": T.STACK_PANEL + "load_mode_panel/checkbox_offset": T.PANEL + "load_mode_panel/animation_mode": T.PANEL + "load_mode_panel/animation_time_label": T.LABEL + "load_mode_panel/animation_time_field": T.EDIT_BOX + data_mode_panel: T.STACK_PANEL + "data_mode_panel/top_offset": T.PANEL + "data_mode_panel/data_label": T.LABEL + "data_mode_panel/data_label_offset": T.PANEL + "data_mode_panel/data_field": T.EDIT_BOX + "data_mode_panel/data_field_offset": T.PANEL + corner_mode_panel: T.STACK_PANEL + "corner_mode_panel/structure_name": T.PANEL + help_button_panel: T.STACK_PANEL + "help_button_panel/help": T.BUTTON + "help_button_panel/help_divider": T.PANEL + save_button_panel: T.STACK_PANEL + "save_button_panel/divider": T.PANEL + "save_button_panel/save": T.BUTTON + "save_button_panel/save_divider": T.PANEL + "save_button_panel/export": T.BUTTON + "save_button_panel/export_divider": T.PANEL + "save_button_panel/import_divider": T.PANEL + "save_button_panel/reset": T.BUTTON + "save_button_panel/reset_divider": T.PANEL + save_button_panel_no_export: T.STACK_PANEL + "save_button_panel_no_export/divider": T.PANEL + "save_button_panel_no_export/save": T.BUTTON + "save_button_panel_no_export/save_divider": T.PANEL + "save_button_panel_no_export/reset": T.BUTTON + "save_button_panel_no_export/reset_divider": T.PANEL + load_button_panel: T.STACK_PANEL + "load_button_panel/divider": T.PANEL + "load_button_panel/load": T.BUTTON + "load_button_panel/load_divider": T.PANEL + "load_button_panel/export_divider": T.PANEL + "load_button_panel/import": T.BUTTON + "load_button_panel/import_divider": T.PANEL + "load_button_panel/reset": T.BUTTON + "load_button_panel/reset_divider": T.PANEL + load_button_panel_no_export: T.STACK_PANEL + "load_button_panel_no_export/divider": T.PANEL + "load_button_panel_no_export/load": T.BUTTON + "load_button_panel_no_export/load_divider": T.PANEL + "load_button_panel_no_export/reset": T.BUTTON + "load_button_panel_no_export/reset_divider": T.PANEL + "3d_export_button_panel": T.STACK_PANEL + "3d_export_button_panel/divider": T.PANEL + "3d_export_button_panel/3d_export": T.BUTTON + "3d_export_button_panel/3d_export_divider": T.PANEL + "3d_export_button_panel/import": T.BUTTON + "3d_export_button_panel/import_divider": T.PANEL + "3d_export_button_panel/reset": T.BUTTON + "3d_export_button_panel/reset_divider": T.PANEL + data_button_panel: T.STACK_PANEL + "data_button_panel/divider": T.PANEL + "data_button_panel/reset": T.BUTTON + "data_button_panel/reset_divider": T.PANEL + corner_button_panel: T.STACK_PANEL + "corner_button_panel/reset_divider": T.PANEL + button_panel_wrapper: T.IMAGE + "button_panel_wrapper/panel": T.PANEL + "button_panel_wrapper/panel/divider": T.PANEL + "button_panel_wrapper/panel/save_panel": T.STACK_PANEL + "button_panel_wrapper/panel/save_panel_no_export": T.STACK_PANEL + "button_panel_wrapper/panel/corner_panel": T.STACK_PANEL + "button_panel_wrapper/panel/load_panel_no_export": T.STACK_PANEL + "button_panel_wrapper/panel/load_panel": T.STACK_PANEL + "button_panel_wrapper/panel/3d_export_panel": T.STACK_PANEL + "button_panel_wrapper/panel/data_panel": T.STACK_PANEL + "button_panel_wrapper/panel/how_to_play_button": T.STACK_PANEL + "button_panel_wrapper/panel/end_divider": T.PANEL + redstone_dropdown_content: T.PANEL + redstone_save_mode_panel: T.PANEL + animation_mode_dropdown_content: T.PANEL + animation_mode_dropdown: T.PANEL + structure_name_wrapper: T.PANEL + "structure_name_wrapper/structure_name": T.EDIT_BOX + "structure_name_wrapper/structure_name_offset": T.PANEL + detect_button_wrapper: T.PANEL + "detect_button_wrapper/detect": T.BUTTON + "detect_button_wrapper/detect_offset": T.PANEL + mode_dropdown_content: T.PANEL + mode_panel: T.PANEL + scrolling_panel_wrapper: T.IMAGE + "scrolling_panel_wrapper/scrolling_panel": T.PANEL + scrolling_panel: T.PANEL + scroll_panel_content: T.PANEL + "scroll_panel_content/content_stack_panel": T.STACK_PANEL + "scroll_panel_content/content_stack_panel/base_offset": T.PANEL + "scroll_panel_content/content_stack_panel/mode_panel": T.PANEL + "scroll_panel_content/content_stack_panel/mode_panel_offset": T.PANEL + "scroll_panel_content/content_stack_panel/3d_export_mode_panel": T.STACK_PANEL + "scroll_panel_content/content_stack_panel/save_mode_panel": T.STACK_PANEL + "scroll_panel_content/content_stack_panel/load_mode_panel": T.STACK_PANEL + "scroll_panel_content/content_stack_panel/data_mode_panel": T.STACK_PANEL + "scroll_panel_content/content_stack_panel/corner_mode_panel": T.STACK_PANEL + "scroll_panel_content/content_stack_panel/base_mode_offset": T.PANEL + "scroll_panel_content/content_stack_panel/show_bounding_box": T.STACK_PANEL + "scroll_panel_content/content_stack_panel/show_bounding_box_offset": T.PANEL + "scroll_panel_content/content_stack_panel/offset_2": T.PANEL + left_divider_content: T.PANEL + "left_divider_content/scrolling_panel": T.IMAGE + save_message_text: T.PANEL + "save_message_text/save_message_label": T.LABEL + import_message_text: T.PANEL + "import_message_text/save_message_label": T.LABEL + import_failed_message_text: T.PANEL + "import_failed_message_text/save_message_label": T.LABEL + export_disabled_label: T.LABEL + image_panel_wrapper: T.IMAGE + "image_panel_wrapper/image_panel": T.PANEL + "image_panel_wrapper/save_message_factory": T.FACTORY + "image_panel_wrapper/import_message_factory": T.FACTORY + "image_panel_wrapper/import_failed_message_factory": T.FACTORY + "image_panel_wrapper/export_disabled": T.LABEL + corner_text: T.IMAGE + "corner_text/image_panel": T.UNKNOWN + image_panel: T.PANEL + "image_panel/border_indent": T.PANEL + "image_panel/border_indent/background_gradient": T.CUSTOM + "image_panel/border_indent/image_outline": T.IMAGE + "image_panel/border_indent/structure_renderer": T.INPUT_PANEL + "image_panel/border_indent/text_corner": T.STACK_PANEL + "image_panel/border_indent/progress_panel": T.INPUT_PANEL + "image_panel/border_indent/rotate_arrows": T.IMAGE + progress_panel: T.INPUT_PANEL + "progress_panel/stack_panel": T.STACK_PANEL + "progress_panel/stack_panel/label_wrapper": T.PANEL + "progress_panel/stack_panel/label_wrapper/progress_label": T.LABEL + "progress_panel/stack_panel/progress_bar": T.PANEL + background_gradient: T.CUSTOM + corner_text_panel: T.STACK_PANEL + "corner_text_panel/paragraph_1_corner": T.PANEL + "corner_text_panel/padding_1": T.PANEL + "corner_text_panel/paragraph_2_corner": T.PANEL + structure_renderer: T.INPUT_PANEL + "structure_renderer/renderer": T.CUSTOM + black_border: T.IMAGE + rotation_arrows: T.IMAGE + right_divider_content: T.STACK_PANEL + "right_divider_content/base_offset": T.PANEL + "right_divider_content/preview": T.IMAGE + "right_divider_content/image_offset": T.PANEL + "right_divider_content/button_wrapper": T.PANEL + "right_divider_content/button_wrapper/buttons": T.IMAGE + divider_content: T.PANEL + "divider_content/left_side": T.PANEL + "divider_content/right_side": T.STACK_PANEL + structure_editor_content: T.PANEL + "structure_editor_content/background_panel": T.STACK_PANEL + "structure_editor_content/title": T.LABEL + "structure_editor_content/content": T.PANEL + structure_editor_screen: T.SCREEN +} + +export type SubmitFeedbackType = { + send_feedback_button: T.BUTTON + write_feedback_panel: T.STACK_PANEL + "write_feedback_panel/pad_1": T.PANEL + "write_feedback_panel/write_feedback_label": T.LABEL + "write_feedback_panel/pad_2": T.PANEL + "write_feedback_panel/feedback_textbox": T.EDIT_BOX + "write_feedback_panel/remaining_characters_panel": T.PANEL + "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": T.LABEL + scroll_panel: T.PANEL + "scroll_panel/write_feedback_panel": T.STACK_PANEL + main_panel: T.PANEL + "main_panel/scrolling_panel": T.PANEL + submit_feedback_screen: T.SCREEN + submit_feedback_content: T.PANEL + "submit_feedback_content/submit_feedback_main_panel": T.PANEL + "submit_feedback_content/progress_loading": T.IMAGE +} + +export type TabbedUpsellType = { + padding_horizontal: T.PANEL + padding_vertical: T.PANEL + text_horizontal_padding: T.PANEL + tabbed_upsell_buy_now_button: T.BUTTON + tabbed_buy_now_label: T.PANEL + "tabbed_buy_now_label/button_label": T.LABEL + label_panel: T.PANEL + "label_panel/label_text": T.LABEL + text_panel: T.STACK_PANEL + "text_panel/tab_content_title_panel": T.PANEL + "text_panel/tab_content_description_panel": T.PANEL + "text_panel/tab_content_description_panel_second": T.PANEL + dialog_image: T.IMAGE + dialog_image_with_border: T.IMAGE + "dialog_image_with_border/dialog_image": T.IMAGE + content_image_panel: T.STACK_PANEL + "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE + "content_image_panel/horizontal_padding_01": T.PANEL + "content_image_panel/scrolling_panel": T.PANEL + scroll_text: T.BUTTON + image_panel: T.PANEL + "image_panel/dialog_image_with_border": T.IMAGE + "image_panel/focus_image": T.UNKNOWN + top_tab: T.PANEL + tab_navigation_panel_layout: T.STACK_PANEL + "tab_navigation_panel_layout/navigation_tabs": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN + common_tab_navigation_panel_layout: T.STACK_PANEL + tabbed_tab_navigation_panel_layout: T.STACK_PANEL + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL + "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL + "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL + tabbed_tab_content_panel_layout: T.PANEL + "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL + "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL + "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL + "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL + "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL + "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL + "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL + "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL + common_tab_content_panel: T.PANEL + "common_tab_content_panel/content": T.UNKNOWN + minecraft_tab_content_panel: T.PANEL + xbl_tab_content_panel: T.PANEL + achievements_tab_content_panel: T.PANEL + multiplayer_tab_content_panel: T.PANEL + server_tab_content_panel: T.PANEL + store_tab_content_panel: T.PANEL + creative_tab_content_panel: T.PANEL + packs_tab_content_panel: T.PANEL + seeds_tab_content_panel: T.PANEL + common_tab_screen_panel: T.STACK_PANEL + "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL + "common_tab_screen_panel/padding_01": T.PANEL + "common_tab_screen_panel/tab_content_panel": T.UNKNOWN + tabbed_screen_panel: T.STACK_PANEL + button_panel: T.STACK_PANEL + "button_panel/padding_5": T.PANEL + "button_panel/buy_now_button": T.BUTTON + "button_panel/padding_6": T.PANEL + tab_panel: T.STACK_PANEL + "tab_panel/padding_3": T.PANEL + "tab_panel/main_control": T.STACK_PANEL + "tab_panel/padding_4": T.PANEL + tabbed_upsell_content: T.STACK_PANEL + "tabbed_upsell_content/padding_0": T.PANEL + "tabbed_upsell_content/tab_panel": T.STACK_PANEL + "tabbed_upsell_content/padding_1": T.PANEL + "tabbed_upsell_content/button_panel": T.STACK_PANEL + "tabbed_upsell_content/padding_2": T.PANEL + tabbed_upsell_screen: T.SCREEN + tabbed_upsell_screen_panel: T.PANEL + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL + "tabbed_upsell_screen_panel/background": T.IMAGE +} + +export type ThanksForTestingType = { + padding_horizontal: T.PANEL + padding_vertical: T.PANEL + text_horizontal_padding: T.PANEL + tabbed_upsell_buy_now_button: T.BUTTON + tabbed_buy_now_label: T.PANEL + "tabbed_buy_now_label/button_label": T.LABEL + label_panel: T.PANEL + "label_panel/label_text": T.LABEL + text_panel: T.STACK_PANEL + "text_panel/tab_content_title_panel": T.PANEL + "text_panel/tab_content_description_panel": T.PANEL + "text_panel/tab_content_description_panel_second": T.PANEL + dialog_image: T.IMAGE + dialog_image_with_border: T.IMAGE + "dialog_image_with_border/dialog_image": T.IMAGE + content_image_panel: T.STACK_PANEL + "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE + "content_image_panel/horizontal_padding_01": T.PANEL + "content_image_panel/scrolling_panel": T.PANEL + scroll_text: T.BUTTON + image_panel: T.PANEL + "image_panel/dialog_image_with_border": T.IMAGE + "image_panel/focus_image": T.UNKNOWN + top_tab: T.PANEL + tab_navigation_panel_layout: T.STACK_PANEL + "tab_navigation_panel_layout/navigation_tabs": T.PANEL + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN + common_tab_navigation_panel_layout: T.STACK_PANEL + tabbed_tab_navigation_panel_layout: T.STACK_PANEL + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL + "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL + "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL + tabbed_tab_content_panel_layout: T.PANEL + "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL + "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL + "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL + "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL + "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL + "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL + "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL + "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL + common_tab_content_panel: T.PANEL + "common_tab_content_panel/content": T.UNKNOWN + minecraft_tab_content_panel: T.PANEL + xbl_tab_content_panel: T.PANEL + achievements_tab_content_panel: T.PANEL + multiplayer_tab_content_panel: T.PANEL + server_tab_content_panel: T.PANEL + store_tab_content_panel: T.PANEL + creative_tab_content_panel: T.PANEL + packs_tab_content_panel: T.PANEL + seeds_tab_content_panel: T.PANEL + common_tab_screen_panel: T.STACK_PANEL + "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL + "common_tab_screen_panel/padding_01": T.PANEL + "common_tab_screen_panel/tab_content_panel": T.UNKNOWN + tabbed_screen_panel: T.STACK_PANEL + button_panel: T.STACK_PANEL + "button_panel/padding_5": T.PANEL + "button_panel/buy_now_button": T.BUTTON + "button_panel/padding_6": T.PANEL + tab_panel: T.STACK_PANEL + "tab_panel/padding_3": T.PANEL + "tab_panel/main_control": T.STACK_PANEL + "tab_panel/padding_4": T.PANEL + tabbed_upsell_content: T.STACK_PANEL + "tabbed_upsell_content/padding_0": T.PANEL + "tabbed_upsell_content/tab_panel": T.STACK_PANEL + "tabbed_upsell_content/padding_1": T.PANEL + "tabbed_upsell_content/button_panel": T.STACK_PANEL + "tabbed_upsell_content/padding_2": T.PANEL + thanks_for_testing_screen: T.SCREEN + tabbed_upsell_screen_panel: T.PANEL + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL + "tabbed_upsell_screen_panel/background": T.IMAGE +} + +export type ThirdPartyStoreType = { + third_party_store_screen: T.SCREEN +} + +export type ToastScreenType = { + toast_image: T.IMAGE + toast_icon: T.PANEL + "toast_icon/toast_icon": T.IMAGE + xbox_icon: T.PANEL + third_party_invite_icon: T.PANEL + third_party_achievement_icon: T.PANEL + persona_icon: T.PANEL + "persona_icon/item": T.PANEL + resource_pack_icon: T.PANEL + "resource_pack_icon/resource_pack_image": T.IMAGE + key_art_image: T.PANEL + gamer_score_icon: T.IMAGE + toast_label: T.LABEL + static_button_state_panel: T.PANEL + static_button: T.BUTTON + "static_button/default": T.PANEL + "static_button/hover": T.PANEL + "static_button/pressed": T.PANEL + "static_button/locked": T.PANEL + popup: T.INPUT_PANEL + "popup/background": T.IMAGE + "popup/popup_content": T.STACK_PANEL + "popup/popup_content/icon_padding": T.STACK_PANEL + "popup/popup_content/text_padding": T.PANEL + "popup/popup_content/text_panel": T.PANEL + "popup/popup_content/text_panel/text_stack_panel": T.STACK_PANEL + "popup/popup_content/button_panel": T.PANEL + "popup/popup_content/button_panel/visual_button": T.BUTTON + item_renderer: T.CUSTOM + game_tip_label: T.LABEL + toast_progress_bar: T.PANEL + "toast_progress_bar/toast_duration_progress_bar": T.CUSTOM + recipe_unlocked_icon: T.STACK_PANEL + "recipe_unlocked_icon/padding_vertical": T.PANEL + "recipe_unlocked_icon/item_renderer": T.CUSTOM + recipe_unlocked_popup: T.IMAGE + "recipe_unlocked_popup/input_panel": T.INPUT_PANEL + "recipe_unlocked_popup/input_panel/label_panel": T.STACK_PANEL + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL + "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL + "recipe_unlocked_popup/input_panel/label_panel/label_panel": T.STACK_PANEL + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL + "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": T.LABEL + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": T.PANEL + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL + recipe_unlocked_pocket_popup: T.IMAGE + "recipe_unlocked_pocket_popup/input_panel": T.INPUT_PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel": T.STACK_PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": T.STACK_PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": T.PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": T.LABEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL + text_stack_panel: T.STACK_PANEL + "text_stack_panel/title": T.LABEL + "text_stack_panel/subtitle": T.STACK_PANEL + "text_stack_panel/subtitle/icon_padding": T.PANEL + "text_stack_panel/subtitle/icon_padding/gamer_score_icon": T.IMAGE + "text_stack_panel/subtitle/subtext_offset": T.PANEL + "text_stack_panel/subtitle/subtext_offset/subtext": T.LABEL + join_button_icon: T.IMAGE + chat_popup: T.INPUT_PANEL + splitscreen_join_popup: T.STACK_PANEL + "splitscreen_join_popup/join_button_icon": T.IMAGE + "splitscreen_join_popup/join_prompt_text_panel": T.PANEL + "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": T.LABEL + formfitting_alpha_toast: T.PANEL + "formfitting_alpha_toast/bg": T.IMAGE + "formfitting_alpha_toast/bg/label": T.LABEL + snackbar: T.PANEL + "snackbar/body": T.IMAGE + "snackbar/body/background": T.IMAGE + "snackbar/body/background/content": T.STACK_PANEL + "snackbar/body/background/content/left_padding": T.PANEL + "snackbar/body/background/content/vertically_central_text": T.STACK_PANEL + "snackbar/body/background/content/vertically_central_text/top_padding": T.PANEL + "snackbar/body/background/content/vertically_central_text/text": T.LABEL + "snackbar/body/background/content/right_padding": T.PANEL + "snackbar/body/background/right_shadow": T.IMAGE + progress_button_content: T.STACK_PANEL + "progress_button_content/gamepad_icon_glyph": T.LABEL + "progress_button_content/spacer": T.PANEL + "progress_button_content/progress_button_label": T.LABEL + progress_popup: T.INPUT_PANEL + "progress_popup/background": T.IMAGE + "progress_popup/popup_content": T.STACK_PANEL + "progress_popup/popup_content/progress_toast_image": T.IMAGE + "progress_popup/popup_content/profilepicture": T.CUSTOM + "progress_popup/popup_content/text_padding": T.PANEL + "progress_popup/popup_content/progress_content_vertical_panel": T.STACK_PANEL + "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": T.LABEL + "progress_popup/popup_content/progress_content_vertical_panel/subtext": T.LABEL + "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": T.PANEL + "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": T.PANEL + "progress_popup/popup_content/divider_padding": T.PANEL + "progress_popup/popup_content/divider_image": T.IMAGE + "progress_popup/popup_content/popup_decline_button": T.BUTTON + "progress_popup/popup_content/end_padding": T.PANEL + party_invite_popup: T.INPUT_PANEL + "party_invite_popup/background": T.IMAGE + "party_invite_popup/party_invite_content": T.STACK_PANEL + "party_invite_popup/party_invite_content/profilepicture": T.CUSTOM + "party_invite_popup/party_invite_content/text_padding": T.PANEL + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": T.STACK_PANEL + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": T.LABEL + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": T.LABEL + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": T.PANEL + "party_invite_popup/party_invite_content/divider_padding": T.PANEL + "party_invite_popup/party_invite_content/divider_image": T.IMAGE + "party_invite_popup/party_invite_content/party_invite_button": T.BUTTON + "party_invite_popup/party_invite_content/end_padding": T.PANEL + party_travel_popup: T.INPUT_PANEL + toast_screen: T.SCREEN + toast_screen_content: T.PANEL + "toast_screen_content/content_log_panel": T.PANEL + "toast_screen_content/perf_turtle_panel": T.PANEL +} + +export type TokenFaqType = { + main_panel: T.STACK_PANEL + "main_panel/faq_question_1": T.BUTTON + "main_panel/faq_question_1_divider": T.STACK_PANEL + "main_panel/faq_question_2": T.BUTTON + "main_panel/faq_question_2_divider": T.STACK_PANEL + "main_panel/faq_question_3": T.BUTTON + "main_panel/faq_question_3_divider": T.STACK_PANEL + "main_panel/faq_question_4": T.BUTTON + "main_panel/faq_question_4_divider": T.STACK_PANEL + "main_panel/faq_question_5": T.BUTTON + scrolling_panel: T.PANEL + token_faq_screen_content: T.PANEL + "token_faq_screen_content/dialog": T.PANEL + background: T.IMAGE + token_faq_screen: T.SCREEN + token_content_panel: T.STACK_PANEL + "token_content_panel/token_info_text": T.LABEL + token_popup_content: T.PANEL + "token_popup_content/dialog": T.PANEL + token_faq_button_panel: T.BUTTON + back_button_panel: T.BUTTON + token_popup: T.SCREEN +} + +export type TradeType = { + cycle_recipe_button: T.BUTTON + cycle_recipe_left_button: T.BUTTON + cycle_recipe_right_button: T.BUTTON + arrow_image: T.IMAGE + cross_out_icon: T.IMAGE + highlight_slot_panel: T.PANEL + "highlight_slot_panel/hover_text": T.CUSTOM + recipe_button: T.BUTTON + "recipe_button/hover": T.PANEL + recipe_item_panel: T.PANEL + "recipe_item_panel/item_renderer": T.CUSTOM + "recipe_item_panel/item_renderer/stack_count_label": T.LABEL + "recipe_item_panel/recipe_button": T.BUTTON + trade_item_slot: T.PANEL + "trade_item_slot/container_item": T.INPUT_PANEL + trade_item_slotB: T.PANEL + trade_item_slot_result_button: T.BUTTON + trade_item_slot_result: T.PANEL + arrow: T.PANEL + "arrow/arrow_image": T.IMAGE + "arrow/cross_out_icon": T.IMAGE + "arrow/recipe_button": T.BUTTON + purchase_grid_item: T.STACK_PANEL + "purchase_grid_item/top_item": T.UNKNOWN + "purchase_grid_item/padding": T.PANEL + "purchase_grid_item/bottom_item": T.UNKNOWN + purchase_grid: T.GRID + "purchase_grid/grid_slot1": T.STACK_PANEL + "purchase_grid/grid_slot2": T.STACK_PANEL + "purchase_grid/arrow": T.STACK_PANEL + "purchase_grid/result_item_slot": T.STACK_PANEL + greyed_item_panel: T.PANEL + "greyed_item_panel/item_renderer": T.CUSTOM + cycle_panel_keyboard: T.PANEL + "cycle_panel_keyboard/left": T.BUTTON + "cycle_panel_keyboard/right": T.BUTTON + cycle_panel_gamepad: T.PANEL + "cycle_panel_gamepad/left": T.BUTTON + "cycle_panel_gamepad/right": T.BUTTON + cycle_panel: T.PANEL + "cycle_panel/keyboard": T.PANEL + "cycle_panel/gamepad": T.PANEL + merchant_purchase_panel: T.PANEL + "merchant_purchase_panel/purchase_grid": T.GRID + top_half_panel: T.PANEL + "top_half_panel/villager_name_label": T.LABEL + "top_half_panel/cycle_panel": T.PANEL + "top_half_panel/merchant_purchase_panel": T.PANEL + trade_panel: T.PANEL + "trade_panel/gamepad_helpers": T.STACK_PANEL + "trade_panel/selected_item_details_factory": T.FACTORY + "trade_panel/item_lock_notification_factory": T.FACTORY + "trade_panel/root_panel": T.INPUT_PANEL + "trade_panel/root_panel/common_panel": T.PANEL + "trade_panel/root_panel/trade_inventory": T.PANEL + "trade_panel/root_panel/trade_inventory/top_half_panel": T.PANEL + "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "trade_panel/root_panel/trade_inventory/hotbar_grid_template": T.GRID + "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": T.BUTTON + "trade_panel/root_panel/trade_inventory/gamepad_cursor": T.BUTTON + "trade_panel/flying_item_renderer": T.CUSTOM + trade_screen: T.SCREEN +} + +export type TradePocketType = { + background_image: T.IMAGE + recipe_item_panel: T.PANEL + "recipe_item_panel/item_renderer": T.CUSTOM + "recipe_item_panel/item_renderer/stack_count_label": T.LABEL + result_item_panel: T.PANEL + "result_item_panel/output_item_name": T.LABEL + "result_item_panel/recipe_item_panel": T.PANEL + trade_item_slot: T.PANEL + "trade_item_slot/container_item": T.INPUT_PANEL + trade_item_slotB: T.PANEL + trade_item_slot_result_button: T.BUTTON + trade_item_slot_result: T.PANEL + purchase_grid: T.GRID + "purchase_grid/grid_slot1": T.STACK_PANEL + "purchase_grid/grid_slot2": T.STACK_PANEL + "purchase_grid/arrow": T.STACK_PANEL + "purchase_grid/result_item_slot": T.STACK_PANEL + merchant_purchase_panel: T.PANEL + "merchant_purchase_panel/left": T.BUTTON + "merchant_purchase_panel/purchase_grid": T.GRID + "merchant_purchase_panel/right": T.BUTTON + merchant_panel: T.PANEL + "merchant_panel/merchant_purchase_panel": T.PANEL + inventory_grid: T.GRID + inventory_content: T.PANEL + "inventory_content/scrolling_panel": T.PANEL + half_screen: T.PANEL + inventory_half_screen: T.PANEL + "inventory_half_screen/inventory_content": T.PANEL + merchant_half_screen: T.PANEL + "merchant_half_screen/merchant_panel": T.PANEL + header: T.PANEL + "header/header_background": T.IMAGE + "header/close_button": T.BUTTON + "header/villager_name_label": T.LABEL + trade_panel: T.SCREEN + "trade_panel/bg": T.IMAGE + "trade_panel/root_panel": T.INPUT_PANEL + "trade_panel/header": T.PANEL + "trade_panel/inventory": T.PANEL + "trade_panel/merchant_half_screen": T.PANEL + "trade_panel/gamepad_helpers": T.STACK_PANEL + "trade_panel/container_gamepad_helpers": T.STACK_PANEL + "trade_panel/inventory_selected_icon_button": T.BUTTON + "trade_panel/selected_item_details_factory": T.FACTORY + "trade_panel/item_lock_notification_factory": T.FACTORY + "trade_panel/flying_item_renderer": T.CUSTOM +} + +export type Trade2Type = { + toolbar_background: T.IMAGE + arrow_left_image: T.IMAGE + arrow_right_image: T.IMAGE + trade_cell_image: T.IMAGE + cross_out_image: T.IMAGE + lock_image: T.IMAGE + scroll_background_image: T.IMAGE + red_slash: T.IMAGE + blue_progress_bar: T.IMAGE + white_progress_bar: T.IMAGE + empty_progress_bar: T.IMAGE + progress_bar_nub: T.IMAGE + hover_button: T.BUTTON + "hover_button/hover_text": T.CUSTOM + stack_count_label: T.LABEL + changed_item_count_label: T.STACK_PANEL + "changed_item_count_label/stack_count_label": T.LABEL + "changed_item_count_label/stack_count_label/red_slash": T.IMAGE + "changed_item_count_label/stack_count_label/red_slash_double": T.IMAGE + "changed_item_count_label/padding": T.PANEL + "changed_item_count_label/second_stack_count_label": T.LABEL + single_item_grid: T.GRID + "single_item_grid/item_with_count": T.PANEL + "single_item_grid/item_with_count/item_renderer": T.CUSTOM + "single_item_grid/item_with_count/item_renderer/stack_count_label": T.LABEL + "single_item_grid/item_with_count/item_renderer/changed_item_count_label": T.STACK_PANEL + "single_item_grid/item_with_count/item_renderer/hover_button": T.BUTTON + trade_item_1: T.GRID + trade_item_2: T.GRID + sell_item: T.GRID + arrow_holder: T.PANEL + "arrow_holder/arrow_image": T.IMAGE + "arrow_holder/cross_out_image": T.IMAGE + "arrow_holder/lock_image": T.IMAGE + toggle_content: T.STACK_PANEL + "toggle_content/padding_1": T.PANEL + "toggle_content/trade_item_1": T.GRID + "toggle_content/padding_2": T.PANEL + "toggle_content/padding_2_extra": T.PANEL + "toggle_content/trade_item_2": T.GRID + "toggle_content/padding_3": T.PANEL + "toggle_content/padding_3_extra": T.PANEL + "toggle_content/arrow_holder": T.PANEL + "toggle_content/padding_4": T.PANEL + "toggle_content/sell_item_holder": T.PANEL + "toggle_content/sell_item_holder/sell_item": T.GRID + "toggle_content/sell_item_holder_with_less_padding": T.PANEL + "toggle_content/sell_item_holder_with_less_padding/sell_item": T.GRID + "toggle_content/padding_5": T.PANEL + toggle_content_holder: T.PANEL + "toggle_content_holder/toggle_content": T.UNKNOWN + trade_toggle_unchecked: T.PANEL + "trade_toggle_unchecked/toggle_checked_normal": T.PANEL + "trade_toggle_unchecked/toggle_checked_red": T.PANEL + trade_toggle_checked: T.PANEL + "trade_toggle_checked/toggle_checked_normal": T.PANEL + "trade_toggle_checked/toggle_checked_red": T.PANEL + trade_toggle_locked: T.PANEL + trade_actual_toggle: T.TOGGLE + trade_toggle: T.PANEL + trade_toggle_holder: T.PANEL + "trade_toggle_holder/trade_toggle": T.PANEL + trade_toggle_stack_panel: T.STACK_PANEL + tier_label: T.LABEL + tier_label_locked: T.LABEL + tier_stack_panel: T.STACK_PANEL + "tier_stack_panel/padding": T.PANEL + "tier_stack_panel/tier_label_holder": T.PANEL + "tier_stack_panel/tier_label_holder/tier_label": T.LABEL + "tier_stack_panel/tier_label_holder/tier_label_locked": T.LABEL + "tier_stack_panel/trade_toggle_stack_panel": T.STACK_PANEL + trade_selector_stack_panel: T.STACK_PANEL + scroll_inner_input_panel: T.INPUT_PANEL + "scroll_inner_input_panel/trade_selector_stack_panel": T.STACK_PANEL + trade_scroll_panel: T.PANEL + left_panel: T.INPUT_PANEL + "left_panel/bg": T.PANEL + "left_panel/trade_scroll_panel": T.PANEL + exp_progress_bar: T.PANEL + "exp_progress_bar/empty_progress_bar": T.IMAGE + "exp_progress_bar/empty_progress_bar/progress_bar_nub": T.IMAGE + "exp_progress_bar/empty_progress_bar/blue_progress_bar": T.IMAGE + "exp_progress_bar/empty_progress_bar/white_progress_bar": T.IMAGE + trade_details: T.PANEL + "trade_details/item_panel_image": T.IMAGE + "trade_details/item_panel_image/item_text_label": T.LABEL + trade_details_factory: T.FACTORY + trade_details_factory_holder: T.PANEL + trade_details_button: T.BUTTON + trade_details_1_button: T.BUTTON + trade_details_2_button: T.BUTTON + enchantment_details_button: T.BUTTON + trade_result_item_slot_button: T.BUTTON + red_cell_image: T.IMAGE + container_cell_image: T.PANEL + "container_cell_image/cell_image": T.IMAGE + "container_cell_image/red_cell_image": T.IMAGE + item_slot: T.INPUT_PANEL + ingredient_1_item_slot: T.INPUT_PANEL + ingredient_2_item_slot: T.INPUT_PANEL + result_item_slot: T.INPUT_PANEL + item_slot_holder: T.PANEL + "item_slot_holder/ingredient_1_item_slot": T.UNKNOWN + "item_slot_holder/trade_details_1_button": T.UNKNOWN + "item_slot_holder/trade_details_1_factory_holder": T.PANEL + item_slots_stack_panel: T.STACK_PANEL + "item_slots_stack_panel/ingredient_item_1_holder": T.PANEL + "item_slots_stack_panel/ingredient_item_2_holder": T.PANEL + "item_slots_stack_panel/pointing_right_arrow_holder": T.PANEL + "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": T.IMAGE + "item_slots_stack_panel/pointing_left_arrow_holder": T.PANEL + "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": T.IMAGE + "item_slots_stack_panel/result_item_slot_holder": T.PANEL + trade_button: T.BUTTON + how_to_play_button: T.BUTTON + top_half_stack_panel: T.STACK_PANEL + "top_half_stack_panel/item_slots_holder": T.PANEL + "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": T.STACK_PANEL + "top_half_stack_panel/padding_1": T.PANEL + "top_half_stack_panel/trade_button_holder": T.PANEL + "top_half_stack_panel/trade_button_holder/trade_button": T.BUTTON + "top_half_stack_panel/how_to_play_button_holder": T.PANEL + "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": T.BUTTON + top_half_panel: T.PANEL + "top_half_panel/top_half_stack_panel": T.STACK_PANEL + villager_name_label: T.LABEL + right_panel: T.INPUT_PANEL + "right_panel/common_panel": T.PANEL + "right_panel/trade_screen_inventory": T.PANEL + "right_panel/trade_screen_inventory/villager_name_label": T.LABEL + "right_panel/trade_screen_inventory/exp_progress_bar": T.PANEL + "right_panel/trade_screen_inventory/top_half_panel": T.PANEL + "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL + "right_panel/trade_screen_inventory/hotbar_grid": T.GRID + toolbar_panel: T.INPUT_PANEL + "toolbar_panel/toolbar_background": T.IMAGE + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL + toolbar_anchor: T.PANEL + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL + center_fold: T.INPUT_PANEL + "center_fold/center_bg": T.IMAGE + screen_stack_panel: T.STACK_PANEL + "screen_stack_panel/left_panel": T.INPUT_PANEL + "screen_stack_panel/center_fold": T.INPUT_PANEL + "screen_stack_panel/right_panel": T.INPUT_PANEL + "screen_stack_panel/toolbar_anchor": T.PANEL + gamepad_helper_x: T.STACK_PANEL + gamepad_helper_y: T.STACK_PANEL + screen_panel: T.PANEL + "screen_panel/screen_stack_panel": T.STACK_PANEL + "screen_panel/container_gamepad_helpers": T.STACK_PANEL + "screen_panel/selected_item_details_factory": T.FACTORY + "screen_panel/item_lock_notification_factory": T.FACTORY + "screen_panel/inventory_selected_icon_button": T.BUTTON + "screen_panel/inventory_take_progress_icon_button": T.BUTTON + "screen_panel/flying_item_renderer": T.CUSTOM + trade_screen: T.SCREEN +} + +export type Trade2PocketType = { + chest_item_renderer: T.CUSTOM + trade_icon: T.IMAGE + arrow_right_image: T.IMAGE + right_navigation_tabs: T.STACK_PANEL + "right_navigation_tabs/pocket_tab_close_button": T.IMAGE + "right_navigation_tabs/fill": T.PANEL + trade_slots_panel: T.IMAGE + "trade_slots_panel/item_slots_stack_panel": T.STACK_PANEL + trade_and_help_buttons: T.STACK_PANEL + "trade_and_help_buttons/trade_button_holder": T.PANEL + "trade_and_help_buttons/trade_button_holder/trade_button": T.BUTTON + "trade_and_help_buttons/how_to_play_button_holder": T.PANEL + "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": T.BUTTON + name_and_trade_slots_stack_panel: T.STACK_PANEL + "name_and_trade_slots_stack_panel/padding_1": T.PANEL + "name_and_trade_slots_stack_panel/villager_name_label_holder": T.PANEL + "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": T.LABEL + "name_and_trade_slots_stack_panel/padding_2": T.PANEL + "name_and_trade_slots_stack_panel/exp_progress_bar_holder": T.PANEL + "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": T.PANEL + "name_and_trade_slots_stack_panel/padding_3": T.PANEL + "name_and_trade_slots_stack_panel/trade_slots_panel": T.IMAGE + "name_and_trade_slots_stack_panel/padding_4": T.PANEL + "name_and_trade_slots_stack_panel/trade_and_help_buttons": T.STACK_PANEL + right_panel: T.STACK_PANEL + "right_panel/content": T.INPUT_PANEL + "right_panel/content/bg": T.PANEL + "right_panel/content/name_and_trade_slots_stack_panel": T.STACK_PANEL + "right_panel/navigation_tabs_holder": T.PANEL + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL + left_tab_trade: T.PANEL + left_tab_inventory: T.PANEL + left_navigation_tabs: T.STACK_PANEL + "left_navigation_tabs/left_tab_trades": T.PANEL + "left_navigation_tabs/padding": T.PANEL + "left_navigation_tabs/left_tab_inventory": T.PANEL + arrow_holder: T.PANEL + "arrow_holder/arrow_image": T.IMAGE + "arrow_holder/cross_out_image": T.IMAGE + "arrow_holder/lock_image": T.IMAGE + inventory_scroll_panel: T.PANEL + toggle_content: T.STACK_PANEL + "toggle_content/padding_1": T.PANEL + "toggle_content/trade_item_holder": T.STACK_PANEL + "toggle_content/trade_item_holder/padding_left": T.PANEL + "toggle_content/trade_item_holder/trade_item_1": T.GRID + "toggle_content/trade_item_holder/padding_middle": T.PANEL + "toggle_content/trade_item_holder/trade_item_2": T.GRID + "toggle_content/trade_item_holder/padding_right": T.PANEL + "toggle_content/padding_2": T.PANEL + "toggle_content/arrow_holder": T.PANEL + "toggle_content/padding_3": T.PANEL + "toggle_content/sell_item_holder": T.PANEL + "toggle_content/sell_item_holder/sell_item": T.GRID + "toggle_content/padding_4": T.PANEL + left_panel: T.STACK_PANEL + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL + "left_panel/content": T.INPUT_PANEL + "left_panel/content/bg": T.PANEL + "left_panel/content/inventory_scroll_panel": T.PANEL + "left_panel/content/trade_scroll_panel": T.PANEL + pocket_hotbar_and_content_panels: T.STACK_PANEL + screen_panel: T.PANEL + "screen_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL + "screen_panel/container_gamepad_helpers": T.STACK_PANEL + "screen_panel/selected_item_details_factory": T.FACTORY + "screen_panel/item_lock_notification_factory": T.FACTORY + "screen_panel/inventory_selected_icon_button": T.BUTTON + "screen_panel/inventory_take_progress_icon_button": T.BUTTON + "screen_panel/flying_item_renderer": T.CUSTOM +} + +export type TrialUpsellType = { + normal_stroke_button: T.IMAGE + normal_description_label: T.LABEL + trialTime: T.CUSTOM + trial_label: T.LABEL + trial_description_panel: T.PANEL + "trial_description_panel/description_text": T.LABEL + trial_expired_description_panel: T.STACK_PANEL + "trial_expired_description_panel/vertical_padding_0": T.PANEL + "trial_expired_description_panel/line1": T.LABEL + "trial_expired_description_panel/vertical_padding_1": T.PANEL + "trial_expired_description_panel/line2": T.LABEL + "trial_expired_description_panel/line3": T.LABEL + "trial_expired_description_panel/line4": T.LABEL + "trial_expired_description_panel/line5": T.LABEL + continue_button: T.BUTTON + buy_button: T.BUTTON + root_panel: T.PANEL + trial_upsell_screen_dialog: T.PANEL + trial_upsell_expired_screen_dialog: T.PANEL + button_content_panel: T.PANEL + "button_content_panel/buy": T.BUTTON + "button_content_panel/continue": T.BUTTON + trial_upsell_screen: T.SCREEN + trial_upsell_screen_content: T.PANEL + "trial_upsell_screen_content/trialTime": T.CUSTOM + "trial_upsell_screen_content/root_panel": T.PANEL + "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": T.PANEL + trial_upsell_expired_screen: T.SCREEN + trial_upsell_expired_screen_content: T.PANEL + "trial_upsell_expired_screen_content/trialTime": T.CUSTOM + "trial_upsell_expired_screen_content/root_panel": T.PANEL + "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": T.PANEL + content_description_panel: T.PANEL + "content_description_panel/scrolling_panel": T.PANEL +} + +export type UgcViewerType = { + padding: T.PANEL + world_label: T.LABEL + world_image: T.IMAGE + button_content: T.PANEL + "button_content/stack_panel": T.STACK_PANEL + "button_content/stack_panel/world_label": T.LABEL + "button_content/stack_panel/world_panel": T.PANEL + "button_content/stack_panel/world_panel/background": T.IMAGE + "button_content/stack_panel/world_panel/background/world_image": T.IMAGE + grid_item: T.PANEL + "grid_item/button": T.BUTTON + place_holder_control: T.PANEL + "place_holder_control/search_icon": T.IMAGE + "place_holder_control/place_holder_text": T.LABEL + search_box: T.EDIT_BOX + grid_content: T.GRID + scrolling_content: T.PANEL + "scrolling_content/grid_content": T.GRID + main_panel: T.STACK_PANEL + "main_panel/padding_0": T.PANEL + "main_panel/centerer_panel_0": T.PANEL + "main_panel/centerer_panel_0/search_box": T.EDIT_BOX + "main_panel/padding_1": T.PANEL + "main_panel/centerer_panel_1": T.PANEL + "main_panel/centerer_panel_1/scrolling_panel": T.PANEL + "main_panel/padding_2": T.PANEL + ugc_viewer_screen: T.SCREEN + screen_content: T.PANEL + "screen_content/main_panel": T.PANEL +} + +export type CommonArtType = { + title_image: T.IMAGE + title_image_edu: T.IMAGE + splash_text: T.CUSTOM + title_panel_pocket: T.PANEL + "title_panel_pocket/title_image": T.IMAGE + "title_panel_pocket/splash_text": T.CUSTOM + title_panel_win10: T.PANEL + "title_panel_win10/title_image": T.IMAGE + "title_panel_win10/splash_text": T.CUSTOM + title_panel_osx: T.PANEL + "title_panel_osx/title_image": T.IMAGE + "title_panel_osx/splash_text": T.CUSTOM + title_panel_edu_desktop: T.PANEL + "title_panel_edu_desktop/banner_control": T.PANEL + "title_panel_edu_desktop/banner_control/banner": T.IMAGE + "title_panel_edu_desktop/banner_control/drop_shadow": T.IMAGE + "title_panel_edu_desktop/title_control": T.PANEL + "title_panel_edu_desktop/title_control/title_image_edu": T.IMAGE + "title_panel_edu_desktop/title_control/splash_text": T.CUSTOM + title_panel_edu_mobile: T.PANEL + "title_panel_edu_mobile/title_control": T.PANEL + "title_panel_edu_mobile/title_control/title_image_edu": T.IMAGE + "title_panel_edu_mobile/title_control/splash_text": T.CUSTOM + title_panel_content: T.PANEL + start_title_panel_content: T.PANEL + pause_logo_panel: T.INPUT_PANEL + "pause_logo_panel/logo": T.UNKNOWN +} + +export type CommonType = { + empty_panel: T.PANEL + vertical_padding_8px: T.PANEL + horizontal_padding_2px: T.PANEL + empty_image: T.IMAGE + horizontal_stack_panel: T.STACK_PANEL + vertical_stack_panel: T.STACK_PANEL + vert_stack_centering_panel: T.PANEL + "vert_stack_centering_panel/stack_content": T.UNKNOWN + button: T.BUTTON + screen_header_title_panel: T.PANEL + "screen_header_title_panel/store_header_title": T.LABEL + back_button: T.BUTTON + back_title_button: T.STACK_PANEL + "back_title_button/panel1": T.PANEL + "back_title_button/panel1/button": T.BUTTON + "back_title_button/padding1": T.PANEL + "back_title_button/panel2": T.PANEL + "back_title_button/panel2/label": T.LABEL + chevron_image: T.IMAGE + back_button_content: T.STACK_PANEL + "back_button_content/chevron_panel": T.PANEL + "back_button_content/chevron_panel/left_chevron": T.IMAGE + "back_button_content/padding1": T.PANEL + "back_button_content/label_panel": T.PANEL + "back_button_content/label_panel/label": T.LABEL + label_hover: T.PANEL + "label_hover/hover": T.IMAGE + tts_activate_sibling: T.BUTTON + "tts_activate_sibling/default": T.PANEL + "tts_activate_sibling/pressed": T.PANEL + "tts_activate_sibling/hover": T.PANEL + back_title_button_content: T.STACK_PANEL + "back_title_button_content/padding1": T.PANEL + "back_title_button_content/chevron_panel": T.PANEL + "back_title_button_content/chevron_panel/left_chevron": T.IMAGE + "back_title_button_content/padding2": T.PANEL + toggle_visuals: T.PANEL + "toggle_visuals/unchecked": T.UNKNOWN + "toggle_visuals/checked": T.UNKNOWN + "toggle_visuals/unchecked_hover": T.UNKNOWN + "toggle_visuals/checked_hover": T.UNKNOWN + "toggle_visuals/unchecked_locked": T.UNKNOWN + "toggle_visuals/checked_locked": T.UNKNOWN + "toggle_visuals/unchecked_locked_hover": T.UNKNOWN + "toggle_visuals/checked_locked_hover": T.UNKNOWN + toggle: T.PANEL + radio_toggle: T.PANEL + checkbox: T.PANEL + checkbox_image: T.IMAGE + checked_image: T.IMAGE + unchecked_image: T.IMAGE + checked_hover_image: T.IMAGE + unchecked_hover_image: T.IMAGE + rotating_text: T.CAROUSEL_LABEL + button_text: T.LABEL + toggle_state_template: T.IMAGE + new_button_label: T.LABEL + checkbox_checked_state: T.IMAGE + checkbox_unchecked_state: T.IMAGE + checkbox_checked_hover_state: T.IMAGE + checkbox_unchecked_hover_state: T.IMAGE + checkbox_checked_locked_state: T.IMAGE + checkbox_unchecked_locked_state: T.IMAGE + radio_toggle_checked_state: T.IMAGE + radio_toggle_unchecked_state: T.IMAGE + radio_toggle_checked_hover_state: T.IMAGE + radio_toggle_unchecked_hover_state: T.IMAGE + radio_toggle_checked_locked_state: T.IMAGE + radio_toggle_unchecked_locked_state: T.IMAGE + slider_button_state: T.IMAGE + slider_button_layout: T.IMAGE + slider_button_hover_layout: T.IMAGE + slider_button_locked_layout: T.IMAGE + slider_button_indent_layout: T.IMAGE + slider_box: T.SLIDER_BOX + "slider_box/default": T.UNKNOWN + "slider_box/hover": T.UNKNOWN + "slider_box/indent": T.UNKNOWN + "slider_box/locked": T.UNKNOWN + "slider_box/locked/transparent_grey": T.IMAGE + slider_background: T.IMAGE + slider_background_hover: T.IMAGE + slider_progress: T.IMAGE + slider_progress_hover: T.IMAGE + slider_border: T.IMAGE + slider_bar_default: T.IMAGE + "slider_bar_default/sizing_panel": T.PANEL + "slider_bar_default/transparent_grey": T.IMAGE + slider_bar_hover: T.IMAGE + slider_step: T.IMAGE + slider_step_hover: T.IMAGE + slider_step_progress: T.IMAGE + slider_step_progress_hover: T.IMAGE + slider: T.SLIDER + "slider/slider_box": T.SLIDER_BOX + "slider/slider_bar_default": T.IMAGE + "slider/slider_bar_hover": T.IMAGE + dropdown_background: T.IMAGE + dropdown: T.PANEL + "dropdown/dropdown_content": T.INPUT_PANEL + "dropdown/dropdown_content/0": T.UNKNOWN + dropdown_no_scrollpanel: T.PANEL + square_image_border_white: T.IMAGE + focus_border_white: T.IMAGE + focus_border_yellow: T.IMAGE + focus_border_black: T.IMAGE + non_interact_focus_border: T.IMAGE + non_interact_focus_border_button: T.BUTTON + "non_interact_focus_border_button/default": T.UNKNOWN + "non_interact_focus_border_button/hover": T.UNKNOWN + "non_interact_focus_border_button/pressed": T.UNKNOWN + "non_interact_focus_border_button/content": T.UNKNOWN + tts_label_focus_wrapper: T.PANEL + "tts_label_focus_wrapper/label": T.UNKNOWN + "tts_label_focus_wrapper/focus_border": T.BUTTON + default_indent: T.IMAGE + edit_box_indent: T.IMAGE + edit_box_indent_hover: T.IMAGE + transparent_edit_box_indent: T.IMAGE + transparent_edit_box_indent_hover: T.IMAGE + text_edit_box_label: T.LABEL + text_edit_box_place_holder_label: T.LABEL + text_magnifying_glass_image: T.IMAGE + text_close_X_button_image: T.IMAGE + text_close_X_button_image_hover: T.IMAGE + clear_text_button: T.BUTTON + "clear_text_button/default": T.IMAGE + "clear_text_button/hover": T.IMAGE + "clear_text_button/pressed": T.IMAGE + text_edit_box: T.EDIT_BOX + "text_edit_box/centering_panel": T.PANEL + "text_edit_box/centering_panel/clipper_panel": T.PANEL + "text_edit_box/centering_panel/clipper_panel/magnifying_glass": T.IMAGE + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": T.PANEL + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": T.BUTTON + "text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL + "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN + "text_edit_box/locked": T.PANEL + "text_edit_box/locked/edit_box_indent": T.UNKNOWN + "text_edit_box/default": T.UNKNOWN + "text_edit_box/hover": T.UNKNOWN + "text_edit_box/pressed": T.UNKNOWN + text_edit_box_scrolling_content: T.INPUT_PANEL + scrollable_text_edit_box: T.EDIT_BOX + "scrollable_text_edit_box/centering_panel": T.PANEL + "scrollable_text_edit_box/centering_panel/clipper_panel": T.PANEL + "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": T.PANEL + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN + "scrollable_text_edit_box/locked": T.PANEL + "scrollable_text_edit_box/locked/edit_box_indent": T.UNKNOWN + "scrollable_text_edit_box/default": T.UNKNOWN + "scrollable_text_edit_box/hover": T.UNKNOWN + "scrollable_text_edit_box/pressed": T.UNKNOWN + transparent_text_edit_box: T.EDIT_BOX + "transparent_text_edit_box/clipper_panel": T.PANEL + "transparent_text_edit_box/clipper_panel/visibility_panel": T.PANEL + "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN + "transparent_text_edit_box/locked": T.PANEL + "transparent_text_edit_box/locked/edit_box_indent": T.UNKNOWN + "transparent_text_edit_box/default": T.UNKNOWN + "transparent_text_edit_box/hover": T.UNKNOWN + "transparent_text_edit_box/pressed": T.UNKNOWN + multiline_text_edit_box: T.EDIT_BOX + scrollable_multiline_text_edit_box: T.EDIT_BOX + dirt_background: T.IMAGE + portal_background: T.IMAGE + empty_progress_bar: T.IMAGE + filled_progress_bar: T.IMAGE + empty_progress_bar_beveled: T.IMAGE + progress_bar_beveled_overlay: T.IMAGE + filled_progress_bar_for_collections: T.IMAGE + progress_bar: T.PANEL + "progress_bar/empty_progress_bar": T.IMAGE + "progress_bar/filled_progress_bar": T.IMAGE + progress_bar_for_collections: T.PANEL + "progress_bar_for_collections/empty_progress_bar": T.IMAGE + "progress_bar_for_collections/filled_progress_bar_for_collections": T.IMAGE + horizontal_divider: T.PANEL + "horizontal_divider/divider_image": T.IMAGE + vertical_divider: T.PANEL + "vertical_divider/divider_image": T.IMAGE + underline: T.IMAGE + single_line_label: T.PANEL + "single_line_label/label_panel": T.LABEL + "single_line_label/label_panel/0": T.UNKNOWN + gamepad_helper_icon_description: T.LABEL + gamepad_helper_icon_image: T.IMAGE + keyboard_helper_icon_image: T.IMAGE + gamepad_helper: T.STACK_PANEL + "gamepad_helper/icon_panel": T.PANEL + "gamepad_helper/description_panel": T.PANEL + "gamepad_helper/description_panel/desc": T.UNKNOWN + gamepad_helpers: T.STACK_PANEL + gamepad_helpers_a_and_b: T.STACK_PANEL + "gamepad_helpers_a_and_b/gamepad_helper_a": T.STACK_PANEL + "gamepad_helpers_a_and_b/control": T.PANEL + "gamepad_helpers_a_and_b/gamepad_helper_b": T.STACK_PANEL + container_gamepad_helpers: T.STACK_PANEL + "container_gamepad_helpers/fill_panel": T.PANEL + "container_gamepad_helpers/buttons": T.STACK_PANEL + "container_gamepad_helpers/buttons/gamepad_helper_x": T.UNKNOWN + "container_gamepad_helpers/buttons/gamepad_helper_a": T.UNKNOWN + "container_gamepad_helpers/buttons/gamepad_helper_y": T.UNKNOWN + "container_gamepad_helpers/buttons/gamepad_helper_b": T.UNKNOWN + "container_gamepad_helpers/buffer_panel_right": T.PANEL + tabs_left_gamepad_helpers: T.PANEL + "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": T.STACK_PANEL + "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": T.STACK_PANEL + tabs_right_gamepad_helpers: T.PANEL + "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": T.STACK_PANEL + "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": T.STACK_PANEL + keyboard_helper_description: T.LABEL + keyboard_helper: T.STACK_PANEL + "keyboard_helper/image_centerer": T.PANEL + "keyboard_helper/image_centerer/image": T.IMAGE + "keyboard_helper/image_centerer/image/keyboard_character": T.LABEL + "keyboard_helper/centerer": T.PANEL + "keyboard_helper/centerer/desc": T.UNKNOWN + keyboard_helpers: T.PANEL + gamepad_icon_button: T.IMAGE + gamepad_helper_start: T.STACK_PANEL + gamepad_helper_a: T.STACK_PANEL + gamepad_helper_a_14: T.STACK_PANEL + gamepad_helper_b: T.STACK_PANEL + gamepad_helper_b_14: T.STACK_PANEL + gamepad_helper_x: T.STACK_PANEL + gamepad_helper_x_14: T.STACK_PANEL + gamepad_helper_y: T.STACK_PANEL + gamepad_helper_y_14: T.STACK_PANEL + keyboard_helper_keys: T.STACK_PANEL + gamepad_helper_left_trigger: T.STACK_PANEL + gamepad_helper_right_trigger: T.STACK_PANEL + keyboard_left_trigger: T.STACK_PANEL + keyboard_right_trigger: T.STACK_PANEL + gamepad_icon_dpad: T.IMAGE + gamepad_helper_dpad: T.STACK_PANEL + gamepad_helper_dpad_down: T.STACK_PANEL + gamepad_helper_dpad_left: T.STACK_PANEL + gamepad_helper_dpad_right: T.STACK_PANEL + gamepad_helper_dpad_up: T.STACK_PANEL + gamepad_icon_thumbstick: T.IMAGE + gamepad_helper_thumbstick: T.STACK_PANEL + gamepad_helper_thumbstick_right: T.STACK_PANEL + gamepad_helper_thumbstick_left: T.STACK_PANEL + gamepad_helper_left_bumper: T.STACK_PANEL + gamepad_helper_right_bumper: T.STACK_PANEL + dialog_background_common: T.IMAGE + dialog_background_hollow_common: T.IMAGE + "dialog_background_hollow_common/control": T.IMAGE + dialog_background_opaque: T.IMAGE + dialog_background_hollow_1: T.IMAGE + dialog_background_hollow_2: T.IMAGE + dialog_background_hollow_3: T.IMAGE + dialog_background_hollow_4: T.IMAGE + dialog_background_hollow_4_thin: T.IMAGE + dialog_background_hollow_5: T.IMAGE + dialog_background_hollow_6: T.IMAGE + dialog_background_hollow_7: T.IMAGE + dialog_background_hollow_8: T.IMAGE + dialog_divider: T.IMAGE + normal_button: T.IMAGE + normal_stroke_button: T.IMAGE + section_heading_label: T.LABEL + section_divider: T.STACK_PANEL + "section_divider/padding1": T.PANEL + "section_divider/divider_parent": T.PANEL + "section_divider/divider_parent/divider": T.IMAGE + "section_divider/padding2": T.PANEL + minecraftTenLabel: T.LABEL + close_button_image: T.IMAGE + close_button_panel: T.PANEL + "close_button_panel/close_button_image": T.IMAGE + close_button: T.BUTTON + "close_button/default": T.PANEL + "close_button/hover": T.PANEL + "close_button/pressed": T.PANEL + close_button_grey_bg: T.BUTTON + "close_button_grey_bg/default": T.PANEL + "close_button_grey_bg/hover": T.PANEL + "close_button_grey_bg/pressed": T.PANEL + close_button_high_contrast: T.BUTTON + "close_button_high_contrast/background": T.IMAGE + "close_button_high_contrast/default": T.PANEL + "close_button_high_contrast/hover": T.PANEL + "close_button_high_contrast/pressed": T.PANEL + compact_close_button: T.BUTTON + "compact_close_button/default": T.PANEL + "compact_close_button/hover": T.PANEL + "compact_close_button/pressed": T.PANEL + light_close_button: T.BUTTON + "light_close_button/default": T.PANEL + "light_close_button/hover": T.PANEL + "light_close_button/pressed": T.PANEL + help_button: T.BUTTON + "help_button/default": T.IMAGE + "help_button/hover": T.IMAGE + "help_button/pressed": T.IMAGE + cell_image: T.IMAGE + cell_image_selected: T.IMAGE + cell_image_panel: T.PANEL + "cell_image_panel/cell_image": T.IMAGE + "cell_image_panel/cell_image_selected": T.IMAGE + cell_overlay: T.UNKNOWN + highlight_slot: T.IMAGE + white_border_slot: T.IMAGE + progressive_select_progress_bar: T.PANEL + "progressive_select_progress_bar/stack_progress_bar_down": T.IMAGE + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": T.IMAGE + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": T.LABEL + stack_splitting_overlay: T.PANEL + "stack_splitting_overlay/classic_stack_splitting_overlay": T.PANEL + "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": T.PANEL + "stack_splitting_overlay/pocket_stack_splitting_overlay": T.PANEL + "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": T.PANEL + inventory_hold_icon_holding: T.PANEL + "inventory_hold_icon_holding/progressive_down": T.PANEL + "inventory_hold_icon_holding/progressive_up": T.PANEL + "inventory_hold_icon_holding/progressive_left_side": T.PANEL + "inventory_hold_icon_holding/progressive_right_side": T.PANEL + inventory_hold_icon_release: T.CUSTOM + highlight_slot_panel: T.PANEL + "highlight_slot_panel/highlight": T.IMAGE + "highlight_slot_panel/highlight/hover_text": T.CUSTOM + "highlight_slot_panel/white_border": T.IMAGE + pocket_ui_highlight_slot: T.IMAGE + hover_text: T.CUSTOM + screen_background: T.IMAGE + stack_count_label: T.LABEL + durability_bar: T.CUSTOM + durability_bar_grabbed: T.CUSTOM + storage_bar: T.CUSTOM + storage_bar_grabbed: T.CUSTOM + item_renderer: T.CUSTOM + filtered_item_renderer: T.CUSTOM + flying_item_renderer: T.CUSTOM + selected_item_details: T.PANEL + "selected_item_details/item_panel_image": T.IMAGE + item_panel_image: T.IMAGE + "item_panel_image/item_text_label": T.LABEL + item_text_label: T.LABEL + selected_item_details_factory: T.FACTORY + item_lock_notification: T.PANEL + "item_lock_notification/notification_background_image": T.IMAGE + "item_lock_notification/notification_background_image/notification_text_label": T.LABEL + item_lock_notification_factory: T.FACTORY + empty_panel_size_y_0: T.PANEL + scroll_background_and_viewport: T.PANEL + "scroll_background_and_viewport/background": T.UNKNOWN + "scroll_background_and_viewport/scrolling_view_port": T.PANEL + "scroll_background_and_viewport/scrolling_view_port/scrolling_content": T.UNKNOWN + scroll_bar_and_track: T.PANEL + "scroll_bar_and_track/stack_panel": T.STACK_PANEL + "scroll_bar_and_track/stack_panel/empty_panel_0": T.PANEL + "scroll_bar_and_track/stack_panel/panel": T.PANEL + "scroll_bar_and_track/stack_panel/panel/centered_panel": T.PANEL + "scroll_bar_and_track/stack_panel/panel/centered_panel/track": T.SCROLL_TRACK + "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": T.PANEL + "scroll_bar_and_track/stack_panel/empty_panel_1": T.PANEL + scroll_view_control: T.SCROLL_VIEW + "scroll_view_control/stack_panel": T.STACK_PANEL + "scroll_view_control/stack_panel/background_and_viewport": T.PANEL + "scroll_view_control/stack_panel/bar_and_track": T.PANEL + "scroll_view_control/panel": T.PANEL + "scroll_view_control/panel/background_and_viewport": T.PANEL + "scroll_view_control/panel/bar_and_track": T.PANEL + scrollbar_track: T.SCROLL_TRACK + "scrollbar_track/bar_indent": T.UNKNOWN + scroll_box: T.PANEL + "scroll_box/box": T.SCROLLBAR_BOX + "scroll_box/box/mouse_box": T.UNKNOWN + "scroll_box/box/touch_box": T.UNKNOWN + scroll_box_indent: T.IMAGE + scrollbar_box_image: T.IMAGE + touch_scrollbar_box_image: T.IMAGE + new_touch_scrollbar_box_image: T.IMAGE + container_touch_scrollbar_box_image: T.IMAGE + scroll_indent_image: T.IMAGE + scrolling_panel_base: T.INPUT_PANEL + scrolling_panel: T.PANEL + "scrolling_panel/scroll_touch": T.INPUT_PANEL + "scrolling_panel/scroll_mouse": T.INPUT_PANEL + scrolling_panel_with_offset: T.PANEL + container_slot_button_prototype: T.BUTTON + "container_slot_button_prototype/hover": T.UNKNOWN + no_coalesce_container_slot_button: T.BUTTON + pocket_ui_container_slot: T.BUTTON + "pocket_ui_container_slot/hover": T.PANEL + "pocket_ui_container_slot/hover/highlight_square": T.IMAGE + slot_selected: T.IMAGE + "slot_selected/progress_bar_release": T.CUSTOM + container_item: T.INPUT_PANEL + "container_item/item_cell": T.PANEL + "container_item/item_cell/item": T.PANEL + "container_item/item_cell/item/stack_count_label": T.LABEL + "container_item/item_cell/durability_bar": T.CUSTOM + "container_item/item_cell/storage_bar": T.CUSTOM + "container_item/item_cell_overlay_ref": T.UNKNOWN + "container_item/item_selected_image": T.IMAGE + "container_item/item_button_ref": T.UNKNOWN + "container_item/container_item_lock_overlay": T.PANEL + "container_item/item_lock_cell_image": T.IMAGE + "container_item/bundle_slot_panel": T.PANEL + pocket_ui_container_item: T.INPUT_PANEL + pocket_ui_large_container_item: T.INPUT_PANEL + container_item_lock_yellow: T.IMAGE + container_item_lock_red: T.IMAGE + container_item_lock_overlay: T.PANEL + "container_item_lock_overlay/container_item_lock_yellow": T.IMAGE + "container_item_lock_overlay/container_item_lock_red": T.IMAGE + item_lock_cell_image: T.IMAGE + container_grid: T.GRID + pocket_container_grid: T.GRID + container_scroll_box_image: T.IMAGE + container_scroll_bar_side_rails: T.IMAGE + container_scrollbar_track: T.PANEL + "container_scrollbar_track/rails": T.IMAGE + container_scroll_background_image: T.IMAGE + container_scroll_panel: T.PANEL + pocket_ui_highlight_selected_slot: T.IMAGE + pocket_hotbar_panel: T.INPUT_PANEL + "pocket_hotbar_panel/bg": T.PANEL + "pocket_hotbar_panel/hotbar_grid": T.GRID + drop_item_panel: T.INPUT_PANEL + pocket_hotbar_and_content_panels: T.STACK_PANEL + "pocket_hotbar_and_content_panels/pocket_content_panels": T.STACK_PANEL + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": T.INPUT_PANEL + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": T.INPUT_PANEL + blank_pocket_content_panel: T.PANEL + pocket_content_panels: T.STACK_PANEL + "pocket_content_panels/left_panel": T.UNKNOWN + "pocket_content_panels/offset_panel": T.INPUT_PANEL + "pocket_content_panels/offset_panel/center_bg": T.IMAGE + "pocket_content_panels/right_panel": T.UNKNOWN + inventory_selected_icon: T.CUSTOM + inventory_selected_stack_size_text: T.LABEL + inventory_hold_icon: T.CUSTOM + inventory_selected_item_lock_overlay: T.PANEL + "inventory_selected_item_lock_overlay/container_item_lock_yellow": T.IMAGE + "inventory_selected_item_lock_overlay/container_item_lock_red": T.IMAGE + inventory_icon_panel: T.PANEL + "inventory_icon_panel/selected_item_icon": T.CUSTOM + "inventory_icon_panel/selected_stack_size_text": T.LABEL + "inventory_icon_panel/selected_item_lock_overlay": T.PANEL + "inventory_icon_panel/hover_text": T.CUSTOM + inventory_selected_icon_button: T.BUTTON + "inventory_selected_icon_button/default": T.PANEL + "inventory_selected_icon_button/pressed": T.PANEL + "inventory_selected_icon_button/hover": T.PANEL + "inventory_selected_icon_button/durability_bar_grabbed": T.CUSTOM + "inventory_selected_icon_button/storage_bar_grabbed": T.CUSTOM + inventory_take_progress_icon_button: T.BUTTON + "inventory_take_progress_icon_button/default": T.CUSTOM + "inventory_take_progress_icon_button/pressed": T.CUSTOM + "inventory_take_progress_icon_button/hover": T.CUSTOM + gamepad_cursor_image: T.IMAGE + gamepad_cursor_button: T.BUTTON + "gamepad_cursor_button/default": T.IMAGE + "gamepad_cursor_button/pressed": T.IMAGE + "gamepad_cursor_button/hover": T.IMAGE + grid_item_for_inventory: T.INPUT_PANEL + grid_item_for_hotbar: T.INPUT_PANEL + hotbar_grid_template: T.GRID + inventory_panel: T.PANEL + "inventory_panel/inventory_grid": T.GRID + inventory_panel_bottom_half: T.PANEL + "inventory_panel_bottom_half/inventory_panel": T.PANEL + inventory_panel_bottom_half_with_label: T.PANEL + "inventory_panel_bottom_half_with_label/inventory_panel": T.PANEL + "inventory_panel_bottom_half_with_label/inventory_label": T.LABEL + common_panel: T.PANEL + "common_panel/bg_image": T.UNKNOWN + "common_panel/dialog_divider": T.IMAGE + "common_panel/close_button_holder": T.PANEL + "common_panel/close_button_holder/close": T.BUTTON + "common_panel/close_button_holder/compact_close": T.BUTTON + root_panel: T.INPUT_PANEL + input_panel: T.INPUT_PANEL + base_screen: T.SCREEN + "base_screen/variables_button_mappings_and_controls": T.INPUT_PANEL + "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": T.UNKNOWN + "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": T.STACK_PANEL + "base_screen/variables_button_mappings_and_controls/screen_background": T.PANEL + "base_screen/loading_bars_background": T.IMAGE + "base_screen/loading_bars_background/loading_bars": T.IMAGE + render_below_base_screen: T.SCREEN + safezone_buffer: T.PANEL + top_safezone_vertical_buffer: T.PANEL + bottom_safezone_vertical_buffer: T.PANEL + left_safezone_horizontal_buffer: T.PANEL + right_safezone_horizontal_buffer: T.PANEL + safe_zone_stack: T.STACK_PANEL + "safe_zone_stack/top_outer_control": T.UNKNOWN + "safe_zone_stack/top_inner_control": T.UNKNOWN + "safe_zone_stack/header_bar": T.UNKNOWN + safezone_inner_matrix: T.STACK_PANEL + "safezone_inner_matrix/outer_top": T.PANEL + "safezone_inner_matrix/outer_top/top_side_control": T.UNKNOWN + "safezone_inner_matrix/inner_top": T.PANEL + "safezone_inner_matrix/inner_top/top_side_control": T.UNKNOWN + "safezone_inner_matrix/safezone_screen_panel": T.PANEL + "safezone_inner_matrix/inner_bottom": T.PANEL + "safezone_inner_matrix/outer_bottom": T.PANEL + safezone_outer_matrix: T.STACK_PANEL + "safezone_outer_matrix/outer_left": T.PANEL + "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": T.STACK_PANEL + "safezone_outer_matrix/inner_left": T.PANEL + "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": T.STACK_PANEL + "safezone_outer_matrix/inner_matrix": T.STACK_PANEL + "safezone_outer_matrix/inner_right": T.PANEL + "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": T.STACK_PANEL + "safezone_outer_matrix/outer_right": T.PANEL + "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": T.STACK_PANEL + bundle_tooltip_wrapper: T.PANEL + "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": T.PANEL + "bundle_tooltip_wrapper/bundle_touch_tooltip": T.PANEL + screen_panel: T.PANEL + "screen_panel/root_screen_panel": T.UNKNOWN + "screen_panel/additional_screen_content": T.UNKNOWN + "screen_panel/popup_dialog_factory": T.FACTORY + "screen_panel/bundle_hover_tooltip": T.PANEL + base_screen_empty_panel: T.PANEL + modal_screen: T.SCREEN + realms_error_modal_screen: T.SCREEN + modal_area_panel_base: T.INPUT_PANEL + inactive_modal_pane_fade: T.IMAGE + inventory_screen_common: T.SCREEN + fullscreen_header: T.STACK_PANEL + "fullscreen_header/top_bar": T.IMAGE + "fullscreen_header/top_bar/title_stack_panel": T.STACK_PANEL + "fullscreen_header/top_bar/title_stack_panel/padding1": T.PANEL + "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": T.PANEL + "fullscreen_header/top_bar/title_stack_panel/padding2": T.PANEL + "fullscreen_header/child_control": T.UNKNOWN + back_content_panel: T.PANEL + "back_content_panel/back_button": T.STACK_PANEL + top_bar: T.IMAGE + tooltip_background: T.IMAGE + tooltip_button_content: T.IMAGE + "tooltip_button_content/tooltip_panel_content": T.UNKNOWN + static_tooltip_popup_with_image_and_text: T.IMAGE + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL + "static_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE + dynamic_tooltip_popup_with_custom_content: T.IMAGE + "dynamic_tooltip_popup_with_custom_content/tooltip_content": T.UNKNOWN + "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": T.IMAGE + dynamic_tooltip_popup_with_image_and_text: T.IMAGE + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL + "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE + dynamic_tooltip_left: T.IMAGE + dynamic_tooltip_below: T.IMAGE + dynamic_custom_tooltip_below: T.IMAGE + dynamic_tooltip: T.PANEL + "dynamic_tooltip/above": T.PANEL + "dynamic_tooltip/above/content": T.IMAGE + "dynamic_tooltip/below": T.PANEL + "dynamic_tooltip/below/content": T.IMAGE + legacy_pocket_close_button_default: T.IMAGE + legacy_pocket_close_button_pressed: T.IMAGE + legacy_pocket_close_button: T.BUTTON + "legacy_pocket_close_button/default": T.IMAGE + "legacy_pocket_close_button/hover": T.IMAGE + "legacy_pocket_close_button/pressed": T.IMAGE + info_icon: T.IMAGE + error_glyph: T.IMAGE + service_repo_image_panel: T.PANEL + "service_repo_image_panel/service_repo_image": T.IMAGE + "service_repo_image_panel/progress_loading": T.PANEL + common_cycler: T.UNKNOWN + image_cycler: T.IMAGE_CYCLER + text_cycler: T.LABEL_CYCLER + squaring_panel: T.PANEL + "squaring_panel/squaring_panel": T.PANEL + "squaring_panel/squaring_panel/squaring_panel_content": T.UNKNOWN +} + +export type CommonClassicType = { + button: T.BUTTON + button_state_default: T.IMAGE + button_state_hover: T.IMAGE + button_state_pressed: T.IMAGE + toggle: T.PANEL + toggle_checked_state: T.IMAGE + toggle_unchecked_state: T.IMAGE + toggle_checked_hovered_state: T.PANEL + "toggle_checked_hovered_state/toggle_checked_state": T.IMAGE + "toggle_checked_hovered_state/hover": T.IMAGE + toggle_unchecked_hovered_state: T.PANEL + "toggle_unchecked_hovered_state/toggle_unchecked_state": T.IMAGE + "toggle_unchecked_hovered_state/hover": T.IMAGE +} + +export type EduCommonType = { + light_label: T.LABEL + dark_label: T.LABEL + readable_label: T.LABEL + slider_toggle: T.TOGGLE + trash_default: T.IMAGE + trash_hover: T.IMAGE + trash_pressed: T.IMAGE + photo_trash_button: T.BUTTON + "photo_trash_button/default": T.IMAGE + "photo_trash_button/hover": T.IMAGE + "photo_trash_button/pressed": T.IMAGE + download_progress_modal_panel: T.INPUT_PANEL + "download_progress_modal_panel/downloading": T.PANEL + loading_progress_modal_panel: T.INPUT_PANEL + "loading_progress_modal_panel/loading": T.PANEL + modal_cancel_button: T.BUTTON + modal_progress_panel_with_cancel: T.PANEL + "modal_progress_panel_with_cancel/common_panel": T.PANEL + "modal_progress_panel_with_cancel/title": T.LABEL + "modal_progress_panel_with_cancel/content": T.PANEL + "modal_progress_panel_with_cancel/content/title_panel": T.PANEL + "modal_progress_panel_with_cancel/content/label": T.LABEL + "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE + "modal_progress_panel_with_cancel/cancel_button": T.BUTTON + modal_progress_panel_no_button: T.PANEL + "modal_progress_panel_no_button/common_panel": T.PANEL + "modal_progress_panel_no_button/content": T.PANEL + "modal_progress_panel_no_button/content/progress_title_text": T.LABEL + "modal_progress_panel_no_button/content/progress_loading_bars": T.IMAGE + apple_animation: T.IMAGE + book_animation: T.IMAGE + edu_loading_animation: T.IMAGE + horizontal_stack_item: T.PANEL + vertical_stack_item: T.PANEL + back_button_padded: T.STACK_PANEL + "back_button_padded/back_button_padding_before": T.PANEL + "back_button_padded/back_button": T.STACK_PANEL + home_button_content: T.IMAGE + home_button: T.BUTTON + underline_text: T.PANEL + "underline_text/label_hover": T.PANEL + underline_button: T.BUTTON + "underline_button/default": T.PANEL + "underline_button/hover": T.PANEL + "underline_button/pressed": T.PANEL + edu_screen_header: T.IMAGE + "edu_screen_header/title_controls": T.STACK_PANEL + "edu_screen_header/title_controls/back_item": T.PANEL + "edu_screen_header/title_controls/back_item/back_button": T.STACK_PANEL + "edu_screen_header/title_controls/back_item/gamepad": T.STACK_PANEL + "edu_screen_header/title_controls/image_item": T.PANEL + "edu_screen_header/title_controls/image_item/image": T.IMAGE + "edu_screen_header/title_controls/image_item_template": T.PANEL + "edu_screen_header/title_controls/image_item_template/image": T.IMAGE + "edu_screen_header/title_controls/image_item_template/image/image_color": T.IMAGE + "edu_screen_header/title_controls/title_text_padding": T.PANEL + "edu_screen_header/title_controls/title_item": T.PANEL + "edu_screen_header/title_controls/title_item/title": T.LABEL + share_dialog_title: T.LABEL + share_header_panel: T.PANEL + "share_header_panel/title": T.LABEL + "share_header_panel/close_button": T.BUTTON + teams_advanced_share_header_panel: T.PANEL + add_resource_share_header_panel: T.PANEL + body_panel: T.PANEL + "body_panel/body_stack": T.UNKNOWN + teams_body_panel: T.PANEL + teams_body_resource_panel: T.PANEL + teams_simple_body_resource_panel: T.PANEL + joincode_body_panel: T.PANEL + add_resource_body_panel: T.PANEL + icon_section: T.STACK_PANEL + "icon_section/icon_stack_panel": T.STACK_PANEL + "icon_section/icon_padding": T.PANEL + add_resources_section: T.STACK_PANEL + "add_resources_section/divider": T.PANEL + "add_resources_section/add_resource_label": T.PANEL + "add_resources_section/teams_padding_middle": T.PANEL + "add_resources_section/resource_button": T.BUTTON + edit_resource_uri_glyph: T.IMAGE + edit_resources_section: T.STACK_PANEL + "edit_resources_section/divider": T.PANEL + "edit_resources_section/resource_label_text": T.PANEL + "edit_resources_section/teams_padding_middle": T.PANEL + "edit_resources_section/edit_resource_body_button_stack": T.STACK_PANEL + "edit_resources_section/edit_resource_body_button_stack/resource_button": T.UNKNOWN + "edit_resources_section/edit_resource_body_button_stack/padding_middle": T.PANEL + "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": T.BUTTON + body_content_stack: T.STACK_PANEL + "body_content_stack/body_text_centering_panel": T.PANEL + "body_content_stack/body_text_centering_panel/body_text": T.PANEL + "body_content_stack/padding_middle": T.PANEL + "body_content_stack/icons": T.STACK_PANEL + "body_content_stack/copy_link_centering_panel": T.PANEL + "body_content_stack/copy_link_centering_panel/copy_link_panel": T.STACK_PANEL + "body_content_stack/add_resources": T.STACK_PANEL + "body_content_stack/edit_resources": T.STACK_PANEL + teams_simple_body_content_stack: T.STACK_PANEL + teams_body_content_stack: T.STACK_PANEL + teams_body_resource_content_stack: T.STACK_PANEL + joincode_body_content_stack: T.STACK_PANEL + add_resource_body_content_stack: T.STACK_PANEL + "add_resource_body_content_stack/label_one_centering_panel": T.PANEL + "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": T.PANEL + "add_resource_body_content_stack/label_padding_middle": T.PANEL + "add_resource_body_content_stack/label_two_centering_panel": T.PANEL + "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": T.PANEL + "add_resource_body_content_stack/learn_more_padding_middle": T.PANEL + "add_resource_body_content_stack/link1": T.BUTTON + "add_resource_body_content_stack/url_padding_middle": T.PANEL + "add_resource_body_content_stack/url_label": T.PANEL + "add_resource_body_content_stack/url_textbox": T.EDIT_BOX + "add_resource_body_content_stack/inline_notification": T.IMAGE + "add_resource_body_content_stack/inline_notification_spacer": T.PANEL + "add_resource_body_content_stack/button_name_label": T.PANEL + "add_resource_body_content_stack/button_middle_spacer": T.PANEL + "add_resource_body_content_stack/button_name_textbox": T.EDIT_BOX + "add_resource_body_content_stack/button_name_textbox_next_disabled": T.EDIT_BOX + add_edit_resource_body_content_stack: T.PANEL + "add_edit_resource_body_content_stack/scroll_content": T.PANEL + "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": T.PANEL + resource_popup_buttons: T.STACK_PANEL + "resource_popup_buttons/done_button": T.BUTTON + "resource_popup_buttons/button_padding": T.PANEL + "resource_popup_buttons/back_button_panel": T.PANEL + "resource_popup_buttons/back_button_panel/back_button_enabled": T.BUTTON + "resource_popup_buttons/back_button_panel/back_button_disabled": T.BUTTON + add_resource_popup_lower_button_panel: T.PANEL + "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": T.STACK_PANEL + "add_resource_popup_lower_button_panel/add_resource_popup_buttons": T.STACK_PANEL + share_dialog_body_text: T.PANEL + "share_dialog_body_text/tts_border": T.BUTTON + "share_dialog_body_text/text": T.LABEL + share_icon: T.IMAGE + share_label: T.STACK_PANEL + "share_label/share_image_offset_panel": T.PANEL + "share_label/share_image_offset_panel/link_share": T.IMAGE + copy_link_stack_panel: T.STACK_PANEL + "copy_link_stack_panel/link_box": T.EDIT_BOX + "copy_link_stack_panel/copy_button": T.BUTTON + icon_stack_panel: T.STACK_PANEL + "icon_stack_panel/padding_left": T.PANEL + "icon_stack_panel/teams_button": T.BUTTON + "icon_stack_panel/teams_mail_padding": T.PANEL + "icon_stack_panel/mail_button": T.BUTTON + "icon_stack_panel/mail_classrooms_padding": T.PANEL + "icon_stack_panel/classrooms_button": T.BUTTON + "icon_stack_panel/padding_right": T.PANEL + default_share_button_contents: T.PANEL + "default_share_button_contents/background": T.IMAGE + "default_share_button_contents/image": T.IMAGE + default_share_button: T.BUTTON + "default_share_button/default": T.PANEL + "default_share_button/hover": T.PANEL + "default_share_button/pressed": T.PANEL + vertical_divider: T.PANEL + "vertical_divider/divider": T.IMAGE + horizontal_divider: T.PANEL + "horizontal_divider/divider": T.IMAGE + stack_panel_grid_slot: T.PANEL + "stack_panel_grid_slot/stack_panel_grid_item_panel": T.PANEL + "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": T.UNKNOWN + stack_panel_grid_row: T.STACK_PANEL + "stack_panel_grid_row/stack_panel_grid_row_item": T.PANEL + "stack_panel_grid_row/stack_panel_grid_row_item/row": T.STACK_PANEL + "stack_panel_grid_row/divider": T.PANEL + "stack_panel_grid_row/divider/line": T.IMAGE + stack_panel_grid: T.STACK_PANEL + border: T.IMAGE + description_panel: T.IMAGE + "description_panel/border": T.BUTTON + "description_panel/description": T.LABEL + edu_share_text_popup: T.INPUT_PANEL + teams_edu_share_text_popup: T.INPUT_PANEL + teams_edu_share_resource_popup: T.INPUT_PANEL + teams_edu_simple_share_resource_popup: T.INPUT_PANEL + joincode_edu_popup: T.INPUT_PANEL + add_resource_dialog: T.INPUT_PANEL + share_popup_dialog_factory: T.FACTORY + inline_notification: T.IMAGE + "inline_notification/stack": T.STACK_PANEL + "inline_notification/stack/icon": T.IMAGE + "inline_notification/stack/spacer": T.PANEL + "inline_notification/stack/warning_text": T.LABEL + search_button_content: T.IMAGE + search_bar_and_home_button: T.STACK_PANEL + "search_bar_and_home_button/search_bar": T.PANEL + "search_bar_and_home_button/search_bar/search_bar": T.EDIT_BOX + "search_bar_and_home_button/search_button": T.BUTTON + "search_bar_and_home_button/search_pad": T.PANEL + "search_bar_and_home_button/home_button": T.BUTTON + "search_bar_and_home_button/end_pad": T.PANEL + hotbar_hint: T.PANEL + "hotbar_hint/inactive_slot_dimmer": T.IMAGE + "hotbar_hint/bound_key_glyph_background": T.IMAGE + "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": T.LABEL + view_toggle_content: T.STACK_PANEL + "view_toggle_content/button_image_templates": T.IMAGE + "view_toggle_content/button_image_templates/image_color_templates": T.IMAGE + "view_toggle_content/button_image_worlds": T.IMAGE + "view_toggle_content/button_label_wrapper": T.PANEL + "view_toggle_content/button_label_wrapper/button_label": T.LABEL + "view_toggle_content/left_edge_text_padding": T.PANEL + worlds_and_templates_search_bar: T.IMAGE + "worlds_and_templates_search_bar/stack_panel": T.STACK_PANEL + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": T.PANEL + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": T.EDIT_BOX + "worlds_and_templates_search_bar/stack_panel/temp_padding": T.PANEL + "worlds_and_templates_search_bar/stack_panel/view_toggle_background": T.IMAGE + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": T.STACK_PANEL + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": T.PANEL + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": T.BUTTON + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": T.PANEL + edu_cloud_conflict_resolution_popup_dialog_factory: T.FACTORY + edu_cloud_conflict_resolution_popup: T.INPUT_PANEL + edu_cloud_conflict_resolution_content: T.STACK_PANEL + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": T.PANEL + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": T.BUTTON + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": T.LABEL + "edu_cloud_conflict_resolution_content/padding1": T.PANEL + "edu_cloud_conflict_resolution_content/world_info_wrapper": T.PANEL + "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": T.BUTTON + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": T.STACK_PANEL + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": T.LABEL + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": T.LABEL + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": T.LABEL + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": T.LABEL + "edu_cloud_conflict_resolution_content/padding2": T.PANEL + "edu_cloud_conflict_resolution_content/keep_local_button": T.BUTTON + "edu_cloud_conflict_resolution_content/keep_cloud_button": T.BUTTON + "edu_cloud_conflict_resolution_content/keep_both_button": T.BUTTON + nested_buttons_base_definition: T.STACK_PANEL +} + +export type PurchaseCommonType = { + banner_fill: T.IMAGE + banner_empty: T.IMAGE + screenshots_grid_item: T.PANEL + "screenshots_grid_item/frame": T.IMAGE + "screenshots_grid_item/frame/screenshot_image": T.IMAGE + "screenshots_grid_item/frame/progress_loading": T.PANEL + "screenshots_grid_item/frame/screenshot_button": T.BUTTON + "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE + "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE + screenshots_grid: T.GRID + key_image_frame: T.IMAGE + "key_image_frame/zoomed": T.IMAGE + offer_grid_item: T.PANEL + "offer_grid_item/frame": T.IMAGE + "offer_grid_item/frame/offer_key_art": T.IMAGE + "offer_grid_item/frame/offer_button": T.BUTTON + "offer_grid_item/frame/offer_button/hover": T.IMAGE + "offer_grid_item/frame/offer_button/pressed": T.IMAGE + offer_grid: T.GRID + key_art_and_text: T.STACK_PANEL + "key_art_and_text/key_image_panel": T.INPUT_PANEL + "key_art_and_text/key_image_panel/key_image": T.IMAGE + "key_art_and_text/padding": T.PANEL + "key_art_and_text/description_scroll": T.PANEL + pack_description: T.LABEL +} + +export type CommonButtonsType = { + button_image: T.IMAGE + background_button_image: T.IMAGE + locked_button_image: T.IMAGE + light_button_assets: T.BUTTON + dark_button_assets: T.BUTTON + focus_border: T.IMAGE + new_ui_button_panel: T.PANEL + "new_ui_button_panel/button_content": T.PANEL + "new_ui_button_panel/border": T.IMAGE + new_ui_form_fitting_button_panel: T.PANEL + "new_ui_form_fitting_button_panel/border": T.IMAGE + new_ui_width_fitting_button_panel: T.PANEL + "new_ui_width_fitting_button_panel/border": T.IMAGE + new_ui_height_fitting_button_panel: T.PANEL + "new_ui_height_fitting_button_panel/border": T.IMAGE + borderless_form_fitting_button_panel: T.PANEL + light_text_button: T.BUTTON + "light_text_button/default": T.UNKNOWN + "light_text_button/hover": T.UNKNOWN + "light_text_button/pressed": T.UNKNOWN + "light_text_button/locked": T.UNKNOWN + dark_text_button: T.BUTTON + "dark_text_button/default": T.UNKNOWN + "dark_text_button/hover": T.UNKNOWN + "dark_text_button/pressed": T.UNKNOWN + "dark_text_button/locked": T.UNKNOWN + new_ui_binding_button_label: T.LABEL + underline_button: T.BUTTON + "underline_button/default": T.PANEL + "underline_button/default/label_default": T.PANEL + "underline_button/hover": T.PANEL + "underline_button/hover/label_hover": T.PANEL + "underline_button/pressed": T.PANEL + "underline_button/pressed/label_hover": T.PANEL + read_button: T.PANEL + "read_button/read_button_inner": T.BUTTON + light_content_form_fitting_button: T.BUTTON + dark_content_form_fitting_button: T.BUTTON + light_text_form_fitting_button: T.BUTTON + dark_text_form_fitting_button: T.BUTTON + transparent_content_button: T.BUTTON + single_image_with_border_button: T.BUTTON + light_content_button: T.BUTTON + "light_content_button/default": T.UNKNOWN + "light_content_button/hover": T.UNKNOWN + "light_content_button/pressed": T.UNKNOWN + "light_content_button/locked": T.UNKNOWN + light_content_button_control_content: T.BUTTON + "light_content_button_control_content/default": T.UNKNOWN + "light_content_button_control_content/hover": T.UNKNOWN + "light_content_button_control_content/pressed": T.UNKNOWN + "light_content_button_control_content/locked": T.UNKNOWN + deactivated_light_content_button: T.BUTTON + dark_content_button: T.BUTTON + "dark_content_button/default": T.UNKNOWN + "dark_content_button/hover": T.UNKNOWN + "dark_content_button/pressed": T.UNKNOWN + "dark_content_button/locked": T.UNKNOWN + no_background_content_button: T.BUTTON + "no_background_content_button/default": T.UNKNOWN + "no_background_content_button/hover": T.UNKNOWN + "no_background_content_button/pressed": T.UNKNOWN + "no_background_content_button/locked": T.UNKNOWN + button_content_panel: T.PANEL + "button_content_panel/content": T.UNKNOWN + form_fitting_button_content_panel: T.PANEL + "form_fitting_button_content_panel/content": T.UNKNOWN + horizontal_form_fitting: T.PANEL + "horizontal_form_fitting/content": T.UNKNOWN + width_fitting_button_content_panel: T.PANEL + "width_fitting_button_content_panel/content": T.UNKNOWN + height_fitting_button_content_panel: T.PANEL + "height_fitting_button_content_panel/content": T.UNKNOWN + light_glyph_button: T.BUTTON + "light_glyph_button/default": T.PANEL + "light_glyph_button/hover": T.PANEL + "light_glyph_button/pressed": T.PANEL + "light_glyph_button/locked": T.PANEL + dark_glyph_button_default: T.PANEL + dark_glyph_button_hover: T.PANEL + dark_glyph_button_pressed: T.PANEL + dark_glyph_button_locked: T.PANEL + dark_glyph_button: T.BUTTON + "dark_glyph_button/default": T.PANEL + "dark_glyph_button/hover": T.PANEL + "dark_glyph_button/pressed": T.PANEL + "dark_glyph_button/locked": T.PANEL + dark_glyph_button_with_custom_control: T.BUTTON + "dark_glyph_button_with_custom_control/custom_control": T.UNKNOWN + "dark_glyph_button_with_custom_control/default": T.PANEL + "dark_glyph_button_with_custom_control/hover": T.PANEL + "dark_glyph_button_with_custom_control/pressed": T.PANEL + "dark_glyph_button_with_custom_control/locked": T.PANEL + glyph_content_panel: T.PANEL + "glyph_content_panel/glyph_button_content": T.UNKNOWN + hyperlink_button: T.BUTTON + hyperlink_content_button: T.BUTTON + nested_button_assets: T.IMAGE + nested_overlay_assets: T.IMAGE + nested_label_content_background_assets: T.IMAGE + nested_label_background_assets: T.IMAGE + nested_transparent_label_content_background_assets: T.PANEL + "nested_transparent_label_content_background_assets/assets": T.IMAGE + nested_base_label: T.LABEL + nested_centered_label_control: T.PANEL + "nested_centered_label_control/label": T.LABEL + nested_label_with_image_control: T.STACK_PANEL + "nested_label_with_image_control/image": T.IMAGE + "nested_label_with_image_control/image_to_label_padding": T.PANEL + "nested_label_with_image_control/label_panel": T.PANEL + "nested_label_with_image_control/label_panel/label": T.LABEL + nested_six_part_empty_definition: T.LABEL + nested_six_part_label_control: T.PANEL + "nested_six_part_label_control/left_top_label": T.UNKNOWN + "nested_six_part_label_control/left_middle_label": T.UNKNOWN + "nested_six_part_label_control/left_bottom_label": T.UNKNOWN + "nested_six_part_label_control/right_top_label": T.UNKNOWN + "nested_six_part_label_control/right_middle_label": T.UNKNOWN + "nested_six_part_label_control/right_bottom_label": T.UNKNOWN + nested_dark_button_assets: T.IMAGE + nested_content_background_assets: T.IMAGE + nested_content_overlay_assets: T.IMAGE + nested_dark_control_with_image: T.PANEL + "nested_dark_control_with_image/background": T.IMAGE + "nested_dark_control_with_image/image_panel": T.PANEL + "nested_dark_control_with_image/image_panel/image": T.IMAGE + nestable_button: T.PANEL + "nestable_button/nested_controls_panel": T.INPUT_PANEL + "nestable_button/nested_controls_panel/locked_overlay": T.IMAGE + "nestable_button/nested_controls_panel/nested_controls": T.UNKNOWN + "nestable_button/base_button": T.BUTTON + "nestable_button/base_button/default": T.PANEL + "nestable_button/base_button/hover": T.PANEL + "nestable_button/base_button/pressed": T.PANEL + "nestable_button/base_button/locked": T.PANEL + nested_button_base: T.PANEL + "nested_button_base/button_overlay": T.UNKNOWN + "nested_button_base/button_control": T.STACK_PANEL + "nested_button_base/button_control/control_area": T.PANEL + "nested_button_base/button_control/control_area/background": T.UNKNOWN + "nested_button_base/button_control/control_area/control": T.UNKNOWN + "nested_button_base/button_control/control_area/overlay": T.UNKNOWN + "nested_button_base/button_control/button_stack_padding": T.PANEL + "nested_button_base/button_control/label_area": T.PANEL + "nested_button_base/button_control/label_area/background": T.UNKNOWN + "nested_button_base/button_control/label_area/control_background": T.UNKNOWN + "nested_button_base/button_control/label_area/control": T.UNKNOWN + dark_nestable_button: T.PANEL + transparent_label_nestable_button: T.PANEL + static_tooltip_notification_panel: T.BUTTON + "static_tooltip_notification_panel/default": T.IMAGE + "static_tooltip_notification_panel/pressed": T.IMAGE + "static_tooltip_notification_panel/hover": T.IMAGE + "static_tooltip_notification_panel/locked": T.IMAGE + "static_tooltip_notification_panel/static_tooltip_popup_panel": T.IMAGE + dynamic_tooltip_notification_panel: T.BUTTON + "dynamic_tooltip_notification_panel/default": T.IMAGE + "dynamic_tooltip_notification_panel/pressed": T.IMAGE + "dynamic_tooltip_notification_panel/hover": T.IMAGE + "dynamic_tooltip_notification_panel/locked": T.IMAGE + "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": T.IMAGE + text_body_focus_border_for_controller_button: T.BUTTON + "text_body_focus_border_for_controller_button/default": T.PANEL + "text_body_focus_border_for_controller_button/hover": T.PANEL + "text_body_focus_border_for_controller_button/hover/focus_border": T.IMAGE + "text_body_focus_border_for_controller_button/text_control": T.UNKNOWN +} + +export type CommonDialogsType = { + standard_title_label: T.LABEL + title_label: T.PANEL + "title_label/common_dialogs_0": T.LABEL + "title_label/common_dialogs_1": T.UNKNOWN + main_panel_three_buttons: T.PANEL + "main_panel_three_buttons/common_panel": T.PANEL + "main_panel_three_buttons/title_label": T.PANEL + "main_panel_three_buttons/panel_indent": T.PANEL + "main_panel_three_buttons/panel_indent/inside_header_panel": T.UNKNOWN + "main_panel_three_buttons/top_button_panel": T.UNKNOWN + "main_panel_three_buttons/middle_button_panel": T.UNKNOWN + "main_panel_three_buttons/bottom_button_panel": T.UNKNOWN + main_panel_two_buttons: T.PANEL + "main_panel_two_buttons/common_panel": T.PANEL + "main_panel_two_buttons/title_label": T.PANEL + "main_panel_two_buttons/panel_indent": T.PANEL + "main_panel_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN + "main_panel_two_buttons/top_button_panel": T.UNKNOWN + "main_panel_two_buttons/bottom_button_panel": T.UNKNOWN + main_panel_one_button: T.PANEL + "main_panel_one_button/common_panel": T.PANEL + "main_panel_one_button/title_label": T.PANEL + "main_panel_one_button/panel_indent": T.PANEL + "main_panel_one_button/panel_indent/inside_header_panel": T.UNKNOWN + "main_panel_one_button/bottom_button_panel": T.UNKNOWN + main_panel_no_buttons: T.PANEL + "main_panel_no_buttons/common_panel": T.PANEL + "main_panel_no_buttons/title_label": T.PANEL + "main_panel_no_buttons/panel_indent": T.PANEL + "main_panel_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN + main_panel_no_title_no_buttons: T.PANEL + "main_panel_no_title_no_buttons/common_panel": T.PANEL + "main_panel_no_title_no_buttons/panel_indent": T.PANEL + "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN + main_panel_small_title_one_button: T.PANEL + "main_panel_small_title_one_button/common_panel": T.PANEL + "main_panel_small_title_one_button/title_label": T.PANEL + "main_panel_small_title_one_button/panel_indent": T.PANEL + "main_panel_small_title_one_button/panel_indent/inside_header_panel": T.UNKNOWN + "main_panel_small_title_one_button/bottom_button_panel": T.UNKNOWN + main_panel: T.PANEL + "main_panel/modal_background_image": T.UNKNOWN + "main_panel/panel_indent": T.PANEL + "main_panel/panel_indent/inside_header_panel": T.UNKNOWN + form_fitting_main_panel_no_buttons: T.PANEL + "form_fitting_main_panel_no_buttons/common_panel": T.PANEL + common_panel: T.PANEL + "common_panel/bg_image": T.UNKNOWN + dialog_background_common: T.IMAGE + dialog_background_thin: T.IMAGE + flat_solid_background: T.IMAGE + dialog_background_hollow_common: T.IMAGE + "dialog_background_hollow_common/control": T.IMAGE + "dialog_background_hollow_common/control/inside_header_panel": T.UNKNOWN + "dialog_background_hollow_common/control/close_button_holder": T.STACK_PANEL + "dialog_background_hollow_common/control/title_label": T.PANEL + common_close_button_holder: T.STACK_PANEL + "common_close_button_holder/close": T.BUTTON + "common_close_button_holder/compact_close": T.BUTTON + dialog_background_opaque: T.IMAGE + dialog_background_opaque_with_child: T.IMAGE + dialog_background_hollow_1: T.IMAGE + dialog_background_hollow_2: T.IMAGE + dialog_background_hollow_3: T.IMAGE + dialog_background_hollow_4: T.IMAGE + dialog_background_hollow_6: T.UNKNOWN + full_screen_background: T.PANEL + "full_screen_background/background": T.UNKNOWN + background_image: T.IMAGE +} + +export type CommonTabsType = { + empty_tab_content: T.PANEL + tab_image: T.IMAGE + tab_panel: T.PANEL + "tab_panel/tab_image": T.UNKNOWN + "tab_panel/tab_content_sizer": T.PANEL + "tab_panel/tab_content_sizer/tab_content": T.UNKNOWN + base_tab: T.PANEL + tab_top: T.PANEL + tab_left: T.PANEL + tab_right: T.PANEL + pocket_tab_left: T.PANEL + pocket_tab_right: T.PANEL + pocket_tab_close_button: T.IMAGE + "pocket_tab_close_button/close_button": T.BUTTON + pocket_tab_help_button: T.IMAGE + "pocket_tab_help_button/help_button": T.BUTTON + pocket_tab_close_and_help_button: T.IMAGE + "pocket_tab_close_and_help_button/close_button": T.BUTTON + "pocket_tab_close_and_help_button/help_button": T.BUTTON + tab_close_and_help_button: T.IMAGE + "tab_close_and_help_button/close_button": T.BUTTON + "tab_close_and_help_button/help_button": T.BUTTON +} + +export type CommonTogglesType = { + content_toggle_image_panel: T.PANEL + "content_toggle_image_panel/icon": T.IMAGE + content_toggle_label_panel: T.PANEL + "content_toggle_label_panel/toggle_label": T.LABEL + content_toggle_icon_panel: T.PANEL + "content_toggle_icon_panel/content_toggle_image": T.IMAGE + toggle_content_panel: T.STACK_PANEL + "toggle_content_panel/toggle_image_panel": T.UNKNOWN + "toggle_content_panel/toggle_image_padding_label": T.PANEL + "toggle_content_panel/toggle_label_panel": T.UNKNOWN + "toggle_content_panel/toggle_label_padding_toggle_icon": T.PANEL + "toggle_content_panel/toggle_icon": T.PANEL + vertical_form_fitting_toggle_content: T.STACK_PANEL + "vertical_form_fitting_toggle_content/toggle_image_panel": T.UNKNOWN + "vertical_form_fitting_toggle_content/toggle_image_padding_label": T.PANEL + "vertical_form_fitting_toggle_content/toggle_label_panel": T.UNKNOWN + "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": T.PANEL + "vertical_form_fitting_toggle_content/toggle_icon": T.PANEL + light_text_toggle: T.PANEL + light_image_toggle: T.PANEL + light_content_toggle: T.PANEL + dark_ui_toggle: T.PANEL + dark_text_toggle: T.PANEL + dark_image_toggle: T.PANEL + dark_content_toggle: T.PANEL + dark_vertical_template_toggle: T.PANEL + dark_vertical_form_fitting_content_toggle: T.PANEL + "dark_vertical_form_fitting_content_toggle/dark_content_toggle": T.PANEL + dark_template_toggle: T.PANEL + light_template_toggle: T.PANEL + light_ui_toggle: T.PANEL + switch_toggle: T.PANEL + light_text_toggle_collection: T.PANEL + light_image_toggle_collection: T.PANEL + dark_text_toggle_collection: T.PANEL + dark_image_toggle_collection: T.PANEL + dark_ui_toggle_collection: T.PANEL + light_ui_toggle_collection: T.PANEL + switch_toggle_collection: T.PANEL + toggle_state_panel: T.PANEL + "toggle_state_panel/button_panel": T.UNKNOWN + toggle_unchecked: T.PANEL + toggle_checked: T.PANEL + toggle_unchecked_hover: T.PANEL + toggle_checked_hover: T.PANEL + toggle_locked: T.PANEL + toggle_unchecked_locked: T.PANEL + toggle_checked_locked: T.PANEL + toggle_unchecked_hover_with_chevron: T.PANEL + toggle_checked_hover_with_chevron: T.PANEL + toggle_image: T.PANEL + "toggle_image/image": T.UNKNOWN + radio_off_icon: T.IMAGE + radio_off_hover_icon: T.IMAGE + radio_on_icon: T.IMAGE + radio_on_hover_icon: T.IMAGE + check_box_button_toggle_image: T.IMAGE + checkbox_button_checked_state: T.IMAGE + checkbox_button_unchecked_state: T.IMAGE + checkbox_button_checked_hover_state: T.IMAGE + checkbox_button_unchecked_hover_state: T.IMAGE + checkbox_button_checked_locked_state: T.IMAGE + checkbox_button_unchecked_locked_state: T.IMAGE + toggle_checkbox_unchecked: T.PANEL + toggle_checkbox_checked: T.PANEL + toggle_checkbox_unchecked_hover: T.PANEL + toggle_checkbox_checked_hover: T.PANEL + toggle_checkbox_unchecked_locked: T.PANEL + toggle_checkbox_checked_locked: T.PANEL + check_box_button_ui_panel: T.PANEL + "check_box_button_ui_panel/toggle_image": T.PANEL + "check_box_button_ui_panel/toggle_image/button_content": T.PANEL + "check_box_button_ui_panel/toggle_image/border": T.IMAGE + "check_box_button_ui_panel/toggle_image/checkbox_image": T.PANEL + "check_box_button_ui_panel/toggle_image/checkbox_image/image": T.UNKNOWN + button_and_checkbox_template: T.PANEL + button_with_checkbox_toggle: T.PANEL +} + +export type FriendsbuttonType = { + friendsdrawer_animated_icon: T.IMAGE + profilepicture: T.CUSTOM + persona_icon_with_border: T.PANEL + "persona_icon_with_border/profile_icon": T.CUSTOM + "persona_icon_with_border/border_black": T.IMAGE + friendsdrawer_persona_icons: T.STACK_PANEL + social_button_stackpanel: T.STACK_PANEL + "social_button_stackpanel/image_panel": T.PANEL + "social_button_stackpanel/image_panel/social_icon": T.IMAGE + social_button_hover_stackpanel: T.STACK_PANEL + self_persona_stackpanel: T.STACK_PANEL + "self_persona_stackpanel/self_icon": T.PANEL + single_friend_persona_stackpanel: T.STACK_PANEL + "single_friend_persona_stackpanel/self_icon": T.STACK_PANEL + "single_friend_persona_stackpanel/friend_one_icon": T.PANEL + many_friend_persona_stackpanel: T.STACK_PANEL + "many_friend_persona_stackpanel/self_icon": T.STACK_PANEL + "many_friend_persona_stackpanel/extra_friends_text_panel": T.PANEL + "many_friend_persona_stackpanel/extra_friends_text_panel/background": T.IMAGE + "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": T.LABEL + "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": T.IMAGE + button: T.BUTTON + "button/default": T.UNKNOWN + "button/hover": T.UNKNOWN + "button/pressed": T.UNKNOWN + "button/locked": T.UNKNOWN + social_factory_stackpanel_default: T.STACK_PANEL + social_factory_stackpanel_hovered: T.STACK_PANEL + friendsdrawer_button_content: T.STACK_PANEL + "friendsdrawer_button_content/social_factory_stackpanel": T.UNKNOWN + "friendsdrawer_button_content/padding_middle": T.PANEL + "friendsdrawer_button_content/vertically_centered_text": T.STACK_PANEL + "friendsdrawer_button_content/vertically_centered_text/top_padding": T.PANEL + "friendsdrawer_button_content/vertically_centered_text/profile_button_label": T.LABEL + "friendsdrawer_button_content/padding_right": T.PANEL + friendsdrawer_hover_button_content: T.STACK_PANEL + friends_drawer_popup: T.BUTTON +} + +export type IconbuttonType = { + iconbutton_animated_icon: T.IMAGE + button: T.BUTTON + iconbutton_button_content: T.STACK_PANEL + "iconbutton_button_content/icon_wrapper": T.PANEL + "iconbutton_button_content/icon_wrapper/icon_with_border": T.PANEL + "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": T.IMAGE + "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": T.IMAGE + "iconbutton_button_content/padding_middle": T.PANEL + "iconbutton_button_content/vertically_centered_text": T.STACK_PANEL + "iconbutton_button_content/vertically_centered_text/top_padding": T.PANEL + "iconbutton_button_content/vertically_centered_text/profile_button_label": T.LABEL +} + +export type UpdateDimensionsType = { + update_dimensions_update_and_play_button: T.BUTTON + update_dimensions_description: T.LABEL + update_dimensions_label_panel: T.PANEL + make_backup_checkbox: T.PANEL + "make_backup_checkbox/header_description_stack_panel": T.STACK_PANEL + "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL + "make_backup_checkbox/header_description_stack_panel/buffer_panel": T.PANEL + "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL + "make_backup_checkbox/header_description_stack_panel/another_panel": T.PANEL + world_upgrade: T.IMAGE + update_dimensions_dialog: T.PANEL + "update_dimensions_dialog/common_panel": T.PANEL + "update_dimensions_dialog/title_label": T.PANEL + "update_dimensions_dialog/panel_indent": T.PANEL + "update_dimensions_dialog/panel_indent/inside_header_panel": T.UNKNOWN + "update_dimensions_dialog/top_button_panel": T.UNKNOWN + "update_dimensions_dialog/bottom_button_panel": T.UNKNOWN + "update_dimensions_dialog/world_upgrade_image": T.IMAGE + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL + update_dimensions_screen: T.SCREEN + update_dimensions_screen_content: T.PANEL + "update_dimensions_screen_content/update_dimensions_dialog": T.PANEL + "update_dimensions_screen_content/gamepad_helpers": T.PANEL +} + +export type UpdateVersionType = { + update_version_screen: T.SCREEN + update_version_popup: T.PANEL + background: T.IMAGE + update_version_content: T.STACK_PANEL + "update_version_content/top_of_version_panel": T.STACK_PANEL + "update_version_content/spacer_1px": T.PANEL + "update_version_content/update_body_text": T.LABEL + "update_version_content/spacer_1px_2": T.PANEL + patch_notes_panel: T.IMAGE + "patch_notes_panel/patch_notes_text": T.PANEL + picture_and_patch_notes: T.STACK_PANEL + "picture_and_patch_notes/patch_notes_image_outline": T.IMAGE + "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": T.IMAGE + "picture_and_patch_notes/patch_notes_panel": T.IMAGE + patch_notes: T.PANEL + "patch_notes/patch_notes_text": T.LABEL + update_body_text: T.LABEL + update_button: T.BUTTON +} + +export type WorldRecoveryType = { + world_recovery_screen: T.SCREEN + world_recovery_screen_content: T.PANEL + "world_recovery_screen_content/dialog": T.PANEL + description_panel: T.PANEL + scrolling_panel: T.PANEL + description_label: T.LABEL + button_panel: T.BUTTON + background: T.IMAGE +} + +export type WorldTemplatesType = { + horizontal_padding: T.PANEL + world_icon: T.IMAGE + realms_icon: T.IMAGE + label_background: T.IMAGE + lock_icon: T.IMAGE + realms_plus_icon: T.IMAGE + new_world_toggle: T.PANEL + new_realm_toggle: T.PANEL + world_button_content: T.STACK_PANEL + "world_button_content/horizontal_padding_0": T.PANEL + "world_button_content/icon_panel": T.PANEL + "world_button_content/horizontal_padding_1": T.PANEL + "world_button_content/world_button_label_panel": T.PANEL + "world_button_content/world_button_label_panel/world_button_label": T.LABEL + "world_button_content/horizontal_padding_2": T.PANEL + world_button_label: T.LABEL + common_button_template: T.BUTTON + generate_random: T.BUTTON + help_button: T.BUTTON + grid_button_content_template: T.STACK_PANEL + "grid_button_content_template/content": T.UNKNOWN + label_content_template: T.STACK_PANEL + "label_content_template/label_panel": T.PANEL + "label_content_template/label_panel/label_panel_layout": T.PANEL + "label_content_template/label_panel/label_panel_layout/label": T.LABEL + my_templates_label: T.STACK_PANEL + realms_plus_templates_label: T.STACK_PANEL + custom_templates_label: T.STACK_PANEL + generate_random_button: T.STACK_PANEL + realms_templates_info: T.IMAGE + "realms_templates_info/info_label": T.LABEL + world_list_text: T.LABEL + world_template_screenshot: T.IMAGE + "world_template_screenshot/picture": T.IMAGE + world_template_name: T.LABEL + world_template_description: T.LABEL + world_template_version: T.LABEL + template_download_text: T.LABEL + world_template_text_panel: T.PANEL + "world_template_text_panel/text_indent": T.PANEL + "world_template_text_panel/text_indent/top_side": T.STACK_PANEL + "world_template_text_panel/text_indent/top_side/world_template_name": T.LABEL + "world_template_text_panel/text_indent/top_side/download_text_label": T.LABEL + "world_template_text_panel/text_indent/bottom_side": T.STACK_PANEL + "world_template_text_panel/text_indent/bottom_side/csb_icon": T.PANEL + "world_template_text_panel/text_indent/bottom_side/pad": T.PANEL + "world_template_text_panel/text_indent/bottom_side/world_template_description": T.LABEL + "world_template_text_panel/text_indent/bottom_side/world_template_version": T.LABEL + csb_banner: T.PANEL + "csb_banner/banner": T.IMAGE + world_template_content_panel: T.STACK_PANEL + "world_template_content_panel/world_template_screenshot": T.IMAGE + "world_template_content_panel/world_template_text_panel": T.PANEL + "world_template_content_panel/lock_panel": T.PANEL + "world_template_content_panel/lock_panel/lock_icon": T.IMAGE + world_template_item_button: T.BUTTON + realms_plus_template_item_button: T.BUTTON + world_template_item: T.STACK_PANEL + "world_template_item/world_template_item_button": T.BUTTON + realms_plus_template_item: T.STACK_PANEL + "realms_plus_template_item/realms_plus_template_item_button": T.BUTTON + world_template_item_grid: T.GRID + see_more_templates_button: T.BUTTON + suggested_see_more_button: T.BUTTON + realms_plus_see_more_button: T.BUTTON + world_template_inventory_see_more_button: T.BUTTON + custom_world_template_see_more_button: T.BUTTON + world_template_section_factory: T.STACK_PANEL + suggested_template_section_factory: T.STACK_PANEL + realms_plus_template_section_factory: T.STACK_PANEL + world_template_inventory_section_factory: T.STACK_PANEL + custom_world_template_section_factory: T.STACK_PANEL + custom_world_template_item_grid: T.GRID + no_owned_templates_text_label: T.LABEL + no_owned_templates_text: T.LABEL + no_template_content_owned: T.IMAGE + "no_template_content_owned/no_template_content_owned_text_panel": T.LABEL + common_scrolling_panel: T.PANEL + common_content: T.PANEL + scrolling_offsets: T.PANEL + template_scroll_content: T.PANEL + "template_scroll_content/scrolling_panel": T.PANEL + common_scroll_pane: T.PANEL + template_scroll_panel: T.PANEL + "template_scroll_panel/world_template_screen_content_stack_panel": T.STACK_PANEL + world_list_grids_stack: T.STACK_PANEL + "world_list_grids_stack/template_list_panel": T.STACK_PANEL + "world_list_grids_stack/template_list_panel/my_templates_label_panel": T.STACK_PANEL + "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": T.STACK_PANEL + "world_list_grids_stack/template_list_panel/template_bottom_padding": T.PANEL + "world_list_grids_stack/store_panel": T.PANEL + "world_list_grids_stack/store_panel/loading_panel": T.PANEL + "world_list_grids_stack/store_panel/store_grids": T.STACK_PANEL + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": T.STACK_PANEL + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": T.STACK_PANEL + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": T.STACK_PANEL + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": T.PANEL + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": T.STACK_PANEL + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": T.LABEL + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": T.STACK_PANEL + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": T.PANEL + "world_list_grids_stack/custom_template_panel": T.STACK_PANEL + "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": T.STACK_PANEL + "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": T.STACK_PANEL + "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": T.PANEL + "world_list_grids_stack/realms_info_panel": T.STACK_PANEL + "world_list_grids_stack/realms_info_panel/padding": T.PANEL + "world_list_grids_stack/realms_info_panel/realms_templates_info": T.IMAGE + "world_list_grids_stack/realms_info_panel/open_uri_button": T.BUTTON + world_list_grid_content: T.PANEL + "world_list_grid_content/world_list_grids_stack": T.STACK_PANEL + world_template_screen_content_stack_panel: T.STACK_PANEL + "world_template_screen_content_stack_panel/padding_0": T.PANEL + "world_template_screen_content_stack_panel/crossplatform_disabled_panel": T.IMAGE + "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": T.LABEL + "world_template_screen_content_stack_panel/crossplatform_disable_spacer": T.PANEL + "world_template_screen_content_stack_panel/generate_random_panel": T.STACK_PANEL + "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": T.PANEL + "world_template_screen_content_stack_panel/world_list_grid_content": T.PANEL + open_account_setting_button: T.BUTTON + world_templates_screen: T.SCREEN + world_templates_picker_content: T.PANEL + "world_templates_picker_content/background": T.STACK_PANEL +} + +export type XblConsoleQrSigninType = { + banner_fill: T.IMAGE + main_panel_qr: T.STACK_PANEL + "main_panel_qr/left_panel": T.STACK_PANEL + "main_panel_qr/divider": T.PANEL + "main_panel_qr/right_panel": T.STACK_PANEL + "main_panel_qr/right_panel/scrolling_panel_sizer": T.PANEL + "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": T.BUTTON + common_scrolling_panel: T.PANEL + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL + xbl_console_qr_signin: T.SCREEN + xbl_console_qr_signin_screen_content: T.PANEL + "xbl_console_qr_signin_screen_content/gamepad_helpers": T.PANEL + "xbl_console_qr_signin_screen_content/dialog": T.PANEL + dialog: T.PANEL + scroll_content_focus_border: T.BUTTON + left_panel: T.STACK_PANEL + "left_panel/left_header": T.LABEL + "left_panel/padding_1": T.PANEL + "left_panel/left_body": T.LABEL + "left_panel/padding_2": T.PANEL + "left_panel/qr_panel": T.PANEL + "left_panel/qr_panel/qr_border": T.IMAGE + "left_panel/qr_panel/qr_code": T.CUSTOM + "left_panel/qr_panel/bee_overlay": T.IMAGE + input_panel_wrapper: T.INPUT_PANEL + "input_panel_wrapper/r_scroll_panel": T.STACK_PANEL + right_scroll_panel: T.STACK_PANEL + "right_scroll_panel/right_header": T.LABEL + "right_scroll_panel/padding_1": T.PANEL + "right_scroll_panel/website_message_label": T.LABEL + "right_scroll_panel/padding_2": T.PANEL + "right_scroll_panel/wrapper_panel_1": T.PANEL + "right_scroll_panel/wrapper_panel_1/banner_1": T.IMAGE + "right_scroll_panel/wrapper_panel_1/banner_1/url_label": T.LABEL + "right_scroll_panel/padding_3": T.PANEL + "right_scroll_panel/code_message_label": T.LABEL + "right_scroll_panel/padding_4": T.PANEL + "right_scroll_panel/wrapper_panel_2": T.PANEL + "right_scroll_panel/wrapper_panel_2/banner_2": T.IMAGE + "right_scroll_panel/wrapper_panel_2/banner_2/code_label": T.LABEL + "right_scroll_panel/padding_5": T.PANEL + "right_scroll_panel/code_message_body1": T.LABEL + "right_scroll_panel/padding_6": T.PANEL + "right_scroll_panel/code_message_body2": T.LABEL + "right_scroll_panel/padding_7": T.PANEL + "right_scroll_panel/warning_messages": T.STACK_PANEL + ps4_warning_message_panel: T.STACK_PANEL + "ps4_warning_message_panel/sign_in_account_message": T.LABEL + "ps4_warning_message_panel/padding_1": T.PANEL + "ps4_warning_message_panel/permanent_linking_message": T.LABEL +} + +export type XblConsoleSigninType = { + banner_fill: T.IMAGE + main_panel: T.STACK_PANEL + "main_panel/padding_0": T.PANEL + "main_panel/message_label_panel": T.STACK_PANEL + "main_panel/message_label_panel/message_label": T.LABEL + "main_panel/padding_1": T.PANEL + "main_panel/website_message_label": T.LABEL + "main_panel/banner_1": T.IMAGE + "main_panel/banner_1/url_label": T.LABEL + "main_panel/padding_2": T.PANEL + "main_panel/code_message_label": T.LABEL + "main_panel/banner_2": T.IMAGE + "main_panel/banner_2/code_label": T.LABEL + gamepad_helpers: T.PANEL + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL + xbl_console_signin: T.SCREEN + xbl_console_signin_screen_content: T.PANEL + "xbl_console_signin_screen_content/gamepad_helpers": T.PANEL + "xbl_console_signin_screen_content/dialog": T.PANEL + dialog: T.PANEL +} + +export type XblConsoleSigninSucceededType = { + banner_fill: T.IMAGE + gamer_score_icon: T.IMAGE + profile_pic: T.CUSTOM + gamertag_label: T.LABEL + gamer_score_label: T.LABEL + gamer_score_panel: T.STACK_PANEL + "gamer_score_panel/gamer_score_icon": T.IMAGE + "gamer_score_panel/padding_0": T.PANEL + "gamer_score_panel/gamer_score_panel": T.PANEL + "gamer_score_panel/gamer_score_panel/gamer_score": T.LABEL + button_panel: T.PANEL + "button_panel/play": T.BUTTON + text_panel: T.PANEL + "text_panel/new_account_text": T.LABEL + third_party_platform_legal_text: T.PANEL + new_account_text_panel: T.PANEL + gamer_profile_panel: T.STACK_PANEL + "gamer_profile_panel/picture_panel": T.PANEL + "gamer_profile_panel/picture_panel/banner": T.IMAGE + "gamer_profile_panel/picture_panel/banner/profile_pic": T.CUSTOM + "gamer_profile_panel/padding_1": T.PANEL + "gamer_profile_panel/info_panel": T.PANEL + "gamer_profile_panel/info_panel/profile_info_panel": T.STACK_PANEL + "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": T.LABEL + "gamer_profile_panel/info_panel/profile_info_panel/padding_0": T.PANEL + "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": T.STACK_PANEL + main_panel: T.STACK_PANEL + "main_panel/profile": T.STACK_PANEL + "main_panel/padding_0": T.PANEL + "main_panel/third_party_legal_text_panel": T.PANEL + "main_panel/padding_1": T.PANEL + "main_panel/new_account_text_panel": T.PANEL + "main_panel/padding_2": T.PANEL + "main_panel/button_panel": T.PANEL + xbl_console_signin_succeeded: T.SCREEN + xbl_console_signin_succeeded_screen_content: T.PANEL + "xbl_console_signin_succeeded_screen_content/dialog": T.PANEL + dialog: T.PANEL +} + +export type XblImmediateSigninType = { + xbl_immediate_signin_screen: T.SCREEN + xbl_immediate_signin_screen_content: T.PANEL + "xbl_immediate_signin_screen_content/root_panel": T.PANEL +} + +export type Win10TrialConversionType = { + padding_horizontal: T.PANEL + padding_vertical: T.PANEL + padding_vertical_3: T.PANEL + background_image: T.IMAGE + title_image: T.IMAGE + focus_border: T.IMAGE + pack_image: T.IMAGE + pack_image_panel: T.PANEL + "pack_image_panel/pack_image": T.IMAGE + title_image_border: T.IMAGE + "title_image_border/image": T.IMAGE + pack_image_with_border: T.IMAGE + "pack_image_with_border/image": T.IMAGE + label_panel: T.LABEL + button_panel: T.STACK_PANEL + "button_panel/padding_5": T.PANEL + "button_panel/buy_now_button": T.BUTTON + "button_panel/padding_6": T.PANEL + buy_now_button: T.BUTTON + buy_now_label: T.PANEL + "buy_now_label/button_label": T.LABEL + is_focused: T.IMAGE + filler_panel: T.PANEL + focus_border_button: T.BUTTON + "focus_border_button/default": T.PANEL + "focus_border_button/hover": T.IMAGE + "focus_border_button/pressed": T.IMAGE + grid_item: T.STACK_PANEL + "grid_item/padding_1": T.PANEL + "grid_item/pack_image_pane": T.PANEL + "grid_item/padding_2": T.PANEL + "grid_item/pack_panel": T.STACK_PANEL + "grid_item/padding_3": T.PANEL + grid_item_vertical: T.PANEL + "grid_item_vertical/grid_item_horizontal": T.STACK_PANEL + "grid_item_vertical/pack_grid": T.BUTTON + pack_panel: T.STACK_PANEL + "pack_panel/packtitle": T.LABEL + "pack_panel/padding_2": T.PANEL + "pack_panel/packdesc": T.LABEL + collection_main_panel: T.STACK_PANEL + "collection_main_panel/padding_1": T.PANEL + "collection_main_panel/title_panel": T.LABEL + "collection_main_panel/padding_2": T.PANEL + "collection_main_panel/title_image_panel": T.PANEL + "collection_main_panel/title_image_panel/border_image": T.IMAGE + "collection_main_panel/padding_3": T.PANEL + "collection_main_panel/offer_panel": T.STACK_PANEL + "collection_main_panel/offer_panel/padding_1": T.PANEL + "collection_main_panel/offer_panel/label_panel": T.PANEL + "collection_main_panel/offer_panel/label_panel/offer_label": T.LABEL + "collection_main_panel/offer_panel/padding_2": T.PANEL + "collection_main_panel/padding_4": T.PANEL + "collection_main_panel/button_panel": T.STACK_PANEL + "collection_main_panel/padding_5": T.PANEL + "collection_main_panel/include_panel": T.STACK_PANEL + "collection_main_panel/include_panel/padding_1": T.PANEL + "collection_main_panel/include_panel/include_label": T.LABEL + "collection_main_panel/padding_6": T.PANEL + "collection_main_panel/pack_list_grid": T.GRID + background_image_with_border: T.IMAGE + "background_image_with_border/main_panel_no_buttons": T.STACK_PANEL + win10_trial_conversion_main_panel: T.PANEL + "win10_trial_conversion_main_panel/scrolling_panel": T.PANEL + vertical_main_panel: T.STACK_PANEL + "vertical_main_panel/padding_1": T.PANEL + "vertical_main_panel/panel": T.STACK_PANEL + "vertical_main_panel/padding_2": T.PANEL + horizontal_main_panel: T.STACK_PANEL + "horizontal_main_panel/padding_1": T.PANEL + "horizontal_main_panel/starter_collection": T.IMAGE + "horizontal_main_panel/padding_2": T.PANEL + "horizontal_main_panel/master_collection": T.IMAGE + win10_trial_conversion_screen: T.SCREEN + win10_trial_conversion_panel: T.STACK_PANEL } diff --git a/src/types/vanilla/paths.ts b/src/types/vanilla/paths.ts new file mode 100644 index 0000000..e99e4bf --- /dev/null +++ b/src/types/vanilla/paths.ts @@ -0,0 +1,19435 @@ +export const paths = { + "achievement": { + "empty_progress_bar_icon": "ui/achievement_screen.json", + "full_progress_bar_icon_base": "ui/achievement_screen.json", + }, + "add_external_server": { + "play_button": "ui/add_external_server_screen.json", + "play_disabled_button": "ui/add_external_server_screen.json", + "remove_button": "ui/add_external_server_screen.json", + "save_button": "ui/add_external_server_screen.json", + "save_disabled_button": "ui/add_external_server_screen.json", + "text_edit_group": "ui/add_external_server_screen.json", + "text_edit_group/name_label": "ui/add_external_server_screen.json", + "text_edit_group/edit_box": "ui/add_external_server_screen.json", + "title_text": "ui/add_external_server_screen.json", + "content_panel": "ui/add_external_server_screen.json", + "content_panel/name_edit": "ui/add_external_server_screen.json", + "content_panel/ip_edit": "ui/add_external_server_screen.json", + "content_panel/port_edit": "ui/add_external_server_screen.json", + "main_panel": "ui/add_external_server_screen.json", + "main_panel/common_panel": "ui/add_external_server_screen.json", + "main_panel/title": "ui/add_external_server_screen.json", + "main_panel/main_content": "ui/add_external_server_screen.json", + "main_panel/play": "ui/add_external_server_screen.json", + "main_panel/play_disabled": "ui/add_external_server_screen.json", + "main_panel/remove": "ui/add_external_server_screen.json", + "main_panel/save": "ui/add_external_server_screen.json", + "main_panel/save_disabled": "ui/add_external_server_screen.json", + "gamepad_helpers": "ui/add_external_server_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/add_external_server_screen.json", + "add_external_server_screen_new": "ui/add_external_server_screen.json", + "add_external_server_screen_edit": "ui/add_external_server_screen.json", + "add_external_server_screen": "ui/add_external_server_screen.json", + "add_external_server_screen_content": "ui/add_external_server_screen.json", + "add_external_server_screen_content/root_panel": "ui/add_external_server_screen.json", + "add_external_server_screen_content/root_panel/gamepad_helpers": "ui/add_external_server_screen.json", + "add_external_server_screen_content/root_panel/main_panel": "ui/add_external_server_screen.json", + }, + "adhoc_inprogress": { + "title_text": "ui/adhoc_inprogess_screen.json", + "main_panel": "ui/adhoc_inprogess_screen.json", + "main_panel/common_panel": "ui/adhoc_inprogess_screen.json", + "main_panel/title": "ui/adhoc_inprogess_screen.json", + "main_panel/main_content": "ui/adhoc_inprogess_screen.json", + "main_panel/progress_loading_bars": "ui/adhoc_inprogess_screen.json", + "adhoc_inprogress_screen": "ui/adhoc_inprogess_screen.json", + "adhoc_inprogress_screen_content": "ui/adhoc_inprogess_screen.json", + "adhoc_inprogress_screen_content/root_panel": "ui/adhoc_inprogess_screen.json", + "adhoc_inprogress_screen_content/root_panel/main_panel": "ui/adhoc_inprogess_screen.json", + }, + "adhoc": { + "online_button": "ui/adhoc_screen.json", + "local_button": "ui/adhoc_screen.json", + "title_text": "ui/adhoc_screen.json", + "content_panel": "ui/adhoc_screen.json", + "content_panel/title_text": "ui/adhoc_screen.json", + "main_panel": "ui/adhoc_screen.json", + "main_panel/common_panel": "ui/adhoc_screen.json", + "main_panel/title": "ui/adhoc_screen.json", + "main_panel/main_content": "ui/adhoc_screen.json", + "main_panel/online": "ui/adhoc_screen.json", + "main_panel/local": "ui/adhoc_screen.json", + "gamepad_helpers": "ui/adhoc_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/adhoc_screen.json", + "adhoc_screen": "ui/adhoc_screen.json", + "adhoc_screen_content": "ui/adhoc_screen.json", + "adhoc_screen_content/root_panel": "ui/adhoc_screen.json", + "adhoc_screen_content/root_panel/gamepad_helpers": "ui/adhoc_screen.json", + "adhoc_screen_content/root_panel/main_panel": "ui/adhoc_screen.json", + }, + "anvil": { + "generic_label": "ui/anvil_screen.json", + "anvil_icon": "ui/anvil_screen.json", + "title_label": "ui/anvil_screen.json", + "anvil_icon_panel": "ui/anvil_screen.json", + "anvil_icon_panel/anvil_icon": "ui/anvil_screen.json", + "text_edit_control": "ui/anvil_screen.json", + "icon_and_text_panel": "ui/anvil_screen.json", + "icon_and_text_panel/anvil_icon_panel": "ui/anvil_screen.json", + "icon_and_text_panel/anvil_title_and_text_panel": "ui/anvil_screen.json", + "title_panel": "ui/anvil_screen.json", + "title_panel/title_label": "ui/anvil_screen.json", + "text_edit_panel": "ui/anvil_screen.json", + "text_edit_panel/text_edit_control": "ui/anvil_screen.json", + "anvil_title_and_text_panel": "ui/anvil_screen.json", + "anvil_title_and_text_panel/title_panel": "ui/anvil_screen.json", + "anvil_title_and_text_panel/text_edit_panel": "ui/anvil_screen.json", + "plus_sign_icon": "ui/anvil_screen.json", + "arrow_icon": "ui/anvil_screen.json", + "cross_out_icon": "ui/anvil_screen.json", + "anvil_output_slot_button": "ui/anvil_screen.json", + "anvil_item_slot": "ui/anvil_screen.json", + "anvil_item_slot/container_item": "ui/anvil_screen.json", + "recipe_grid": "ui/anvil_screen.json", + "recipe_grid/input_item_slot": "ui/anvil_screen.json", + "recipe_grid/plus": "ui/anvil_screen.json", + "recipe_grid/plus/plus_sign_icon": "ui/anvil_screen.json", + "recipe_grid/material_item_slot": "ui/anvil_screen.json", + "recipe_grid/yields": "ui/anvil_screen.json", + "recipe_grid/yields/arrow_icon": "ui/anvil_screen.json", + "recipe_grid/yields/cross_out_icon": "ui/anvil_screen.json", + "recipe_grid/result_item_slot": "ui/anvil_screen.json", + "cost_label": "ui/anvil_screen.json", + "cost_label/gray": "ui/anvil_screen.json", + "recipe_panel": "ui/anvil_screen.json", + "recipe_panel/recipe_grid": "ui/anvil_screen.json", + "recipe_panel/cost_label_0": "ui/anvil_screen.json", + "recipe_panel/cost_label_1": "ui/anvil_screen.json", + "top_half_panel": "ui/anvil_screen.json", + "top_half_panel/icon_and_text_panel": "ui/anvil_screen.json", + "top_half_panel/recipe_panel": "ui/anvil_screen.json", + "anvil_panel": "ui/anvil_screen.json", + "anvil_panel/container_gamepad_helpers": "ui/anvil_screen.json", + "anvil_panel/selected_item_details_factory": "ui/anvil_screen.json", + "anvil_panel/item_lock_notification_factory": "ui/anvil_screen.json", + "anvil_panel/root_panel": "ui/anvil_screen.json", + "anvil_panel/root_panel/common_panel": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": "ui/anvil_screen.json", + "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": "ui/anvil_screen.json", + "anvil_panel/root_panel/inventory_selected_icon_button": "ui/anvil_screen.json", + "anvil_panel/root_panel/gamepad_cursor": "ui/anvil_screen.json", + "anvil_panel/flying_item_renderer": "ui/anvil_screen.json", + "anvil_screen": "ui/anvil_screen.json", + }, + "anvil_pocket": { + "generic_label": "ui/anvil_screen_pocket.json", + "background_image": "ui/anvil_screen_pocket.json", + "arrow_icon": "ui/anvil_screen_pocket.json", + "cost_label": "ui/anvil_screen_pocket.json", + "cost_label/gray": "ui/anvil_screen_pocket.json", + "title_label": "ui/anvil_screen_pocket.json", + "text_edit_control": "ui/anvil_screen_pocket.json", + "anvil_title_and_text_panel": "ui/anvil_screen_pocket.json", + "anvil_title_and_text_panel/title_label": "ui/anvil_screen_pocket.json", + "anvil_title_and_text_panel/text_edit_control": "ui/anvil_screen_pocket.json", + "slots_panel": "ui/anvil_screen_pocket.json", + "slots_panel/input_slot": "ui/anvil_screen_pocket.json", + "slots_panel/material_slot": "ui/anvil_screen_pocket.json", + "slots_panel/result_slot": "ui/anvil_screen_pocket.json", + "slots_panel/plus_sign": "ui/anvil_screen_pocket.json", + "slots_panel/arrow": "ui/anvil_screen_pocket.json", + "slots_panel/arrow/cross_out": "ui/anvil_screen_pocket.json", + "anvil_contents_panel": "ui/anvil_screen_pocket.json", + "anvil_contents_panel/red_cost": "ui/anvil_screen_pocket.json", + "anvil_contents_panel/green_cost": "ui/anvil_screen_pocket.json", + "anvil_contents_panel/slots_panel": "ui/anvil_screen_pocket.json", + "anvil_contents_panel/anvil_title_and_text_panel": "ui/anvil_screen_pocket.json", + "inventory_grid": "ui/anvil_screen_pocket.json", + "inventory_content": "ui/anvil_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel/inventory_half_screen": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel/inventory_half_screen/inventory_content": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel/anvil_half_screen": "ui/anvil_screen_pocket.json", + "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": "ui/anvil_screen_pocket.json", + "header": "ui/anvil_screen_pocket.json", + "header/header_background": "ui/anvil_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/anvil_screen_pocket.json", + "header/panel": "ui/anvil_screen_pocket.json", + "header/panel/title_label": "ui/anvil_screen_pocket.json", + "header_and_content_stack_panel": "ui/anvil_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/anvil_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_anvil_panel": "ui/anvil_screen_pocket.json", + "anvil_panel": "ui/anvil_screen_pocket.json", + "anvil_panel/bg": "ui/anvil_screen_pocket.json", + "anvil_panel/root_panel": "ui/anvil_screen_pocket.json", + "anvil_panel/header_and_content_stack_panel": "ui/anvil_screen_pocket.json", + "anvil_panel/container_gamepad_helpers": "ui/anvil_screen_pocket.json", + "anvil_panel/inventory_selected_icon_button": "ui/anvil_screen_pocket.json", + "anvil_panel/hold_icon": "ui/anvil_screen_pocket.json", + "anvil_panel/selected_item_details_factory": "ui/anvil_screen_pocket.json", + "anvil_panel/item_lock_notification_factory": "ui/anvil_screen_pocket.json", + "anvil_panel/flying_item_renderer": "ui/anvil_screen_pocket.json", + }, + "authentication_modals": { + "modal_dialog_label": "ui/authentication_modals.json", + "modal_dialog_content": "ui/authentication_modals.json", + "modal_dialog_content/body_text": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper/buttons": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper/buttons/left": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper/buttons/padding": "ui/authentication_modals.json", + "modal_dialog_content/button_wrapper/buttons/right": "ui/authentication_modals.json", + "modal_dialog_frame": "ui/authentication_modals.json", + "modal_dialog_frame/title": "ui/authentication_modals.json", + "modal_dialog_frame/close": "ui/authentication_modals.json", + "modal_dialog_frame/black_tint_image": "ui/authentication_modals.json", + "modal_dialog_frame/black_tint_image/content": "ui/authentication_modals.json", + "ad_modal_dialog": "ui/authentication_modals.json", + }, + "authentication": { + "nothing": "ui/authentication_screen.json", + "tts_control": "ui/authentication_screen.json", + "split_button_panel": "ui/authentication_screen.json", + "split_button_panel/buttons": "ui/authentication_screen.json", + "split_button_panel/buttons/a": "ui/authentication_screen.json", + "split_button_panel/buttons/paddding": "ui/authentication_screen.json", + "split_button_panel/buttons/b": "ui/authentication_screen.json", + "vertical_split_button_panel": "ui/authentication_screen.json", + "fixed_width_wrapper": "ui/authentication_screen.json", + "fixed_width_wrapper/content": "ui/authentication_screen.json", + "sign_in_button": "ui/authentication_screen.json", + "download_button": "ui/authentication_screen.json", + "smooth_label": "ui/authentication_screen.json", + "smooth_bound_label": "ui/authentication_screen.json", + "title_label": "ui/authentication_screen.json", + "eula_hyperlink": "ui/authentication_screen.json", + "accept_eula_button": "ui/authentication_screen.json", + "eula_content": "ui/authentication_screen.json", + "eula_content/prompt_wrapper": "ui/authentication_screen.json", + "eula_content/prompt_wrapper/border": "ui/authentication_screen.json", + "eula_content/prompt_wrapper/prompt_text": "ui/authentication_screen.json", + "eula_content/padding": "ui/authentication_screen.json", + "eula_content/buttons": "ui/authentication_screen.json", + "eula": "ui/authentication_screen.json", + "version": "ui/authentication_screen.json", + "version/label": "ui/authentication_screen.json", + "version/label_background": "ui/authentication_screen.json", + "view_terms_button": "ui/authentication_screen.json", + "privacy_policy_button": "ui/authentication_screen.json", + "agree_panel": "ui/authentication_screen.json", + "agree_panel/checkbox_control": "ui/authentication_screen.json", + "agree_panel/i_agree_label": "ui/authentication_screen.json", + "term_item": "ui/authentication_screen.json", + "term_item/item": "ui/authentication_screen.json", + "terms_and_conditions_panel": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/authentication_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/authentication_screen.json", + "confirmation_panel": "ui/authentication_screen.json", + "confirmation_panel/confirm_button": "ui/authentication_screen.json", + "scroll_stack_panel": "ui/authentication_screen.json", + "scroll_stack_panel/border": "ui/authentication_screen.json", + "scroll_stack_panel/terms": "ui/authentication_screen.json", + "purchase_confirm_content": "ui/authentication_screen.json", + "purchase_confirm_content/header_padding": "ui/authentication_screen.json", + "purchase_confirm_content/panel_wrap": "ui/authentication_screen.json", + "purchase_confirm_content/panel_wrap/scrolling_panel": "ui/authentication_screen.json", + "purchase_confirm_content/terms_and_conditions_panel": "ui/authentication_screen.json", + "purchase_confirm_content/button_padding": "ui/authentication_screen.json", + "purchase_confirm_content/confirmation_panel": "ui/authentication_screen.json", + "purchase_confirm_content/padding": "ui/authentication_screen.json", + "purchase_prompt_content": "ui/authentication_screen.json", + "purchase_prompt_content/prompt_wrap": "ui/authentication_screen.json", + "purchase_prompt_content/prompt_wrap/border": "ui/authentication_screen.json", + "purchase_prompt_content/prompt_wrap/prompt": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": "ui/authentication_screen.json", + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": "ui/authentication_screen.json", + "purchase_prompt": "ui/authentication_screen.json", + "purchase_confirm": "ui/authentication_screen.json", + "purchase_panel": "ui/authentication_screen.json", + "purchase_panel/prompt": "ui/authentication_screen.json", + "purchase_panel/confirm": "ui/authentication_screen.json", + "title_panel": "ui/authentication_screen.json", + "title_panel/title_label_wrapper": "ui/authentication_screen.json", + "hyperlink_panel": "ui/authentication_screen.json", + "hyperlink_panel/link_stack": "ui/authentication_screen.json", + "hyperlink_panel/link_stack/link1": "ui/authentication_screen.json", + "hyperlink_panel/link_stack/link2": "ui/authentication_screen.json", + "hyperlink_panel/link_stack/padding": "ui/authentication_screen.json", + "auth_screen": "ui/authentication_screen.json", + "sign_in_content": "ui/authentication_screen.json", + "sign_in_content/body_text": "ui/authentication_screen.json", + "sign_in_content/body_hyperlink": "ui/authentication_screen.json", + "sign_in_content/sign_in_wrapper": "ui/authentication_screen.json", + "sign_in_content/sign_in_wrapper/button": "ui/authentication_screen.json", + "sign_in_content/download_wrapper": "ui/authentication_screen.json", + "sign_in_content/download_wrapper/button": "ui/authentication_screen.json", + "authentication_screen_content": "ui/authentication_screen.json", + "authentication_screen_content/debug": "ui/authentication_screen.json", + "authentication_screen_content/client_version": "ui/authentication_screen.json", + "authentication_screen_content/client_version/version": "ui/authentication_screen.json", + "authentication_screen_content/sign_in": "ui/authentication_screen.json", + "authentication_screen_content/sign_in_ios": "ui/authentication_screen.json", + "authentication_screen_content/pack_progress": "ui/authentication_screen.json", + "authentication_screen_content/welcome": "ui/authentication_screen.json", + "authentication_screen_content/demo": "ui/authentication_screen.json", + "authentication_screen_content/eula": "ui/authentication_screen.json", + "authentication_screen_content/purchase_panel": "ui/authentication_screen.json", + "authentication_screen_content/popup_dialog_factory": "ui/authentication_screen.json", + "popup_content_base": "ui/authentication_screen.json", + "popup_content_base/message": "ui/authentication_screen.json", + "popup_content_base/message/border": "ui/authentication_screen.json", + "popup_content_base/message/text": "ui/authentication_screen.json", + "popup_content_base/content": "ui/authentication_screen.json", + "popup_content_base/footer_padding": "ui/authentication_screen.json", + "popup_dialog": "ui/authentication_screen.json", + "popup_dialog/dialog": "ui/authentication_screen.json", + "trial_info_ios_additional_content": "ui/authentication_screen.json", + "trial_info_ios_additional_content/dismiss": "ui/authentication_screen.json", + "popup_dialog_trial_info_ios": "ui/authentication_screen.json", + "student_message_panel": "ui/authentication_screen.json", + "trial_info_additional_content": "ui/authentication_screen.json", + "trial_info_additional_content/buttons": "ui/authentication_screen.json", + "generic_welcome_additional_content": "ui/authentication_screen.json", + "generic_welcome_additional_content/button_wrapper": "ui/authentication_screen.json", + "generic_welcome_additional_content/button_wrapper/buttons": "ui/authentication_screen.json", + "popup_dialog_trial_info": "ui/authentication_screen.json", + "popup_dialog_generic_welcome": "ui/authentication_screen.json", + "popup_message": "ui/authentication_screen.json", + "popup_message/main_message": "ui/authentication_screen.json", + "popup_message/extra_message": "ui/authentication_screen.json", + "popup_message/padding": "ui/authentication_screen.json", + "popup_message_student": "ui/authentication_screen.json", + "popup_hyperlink": "ui/authentication_screen.json", + "popup_purchase_link": "ui/authentication_screen.json", + "popup_dismiss_button": "ui/authentication_screen.json", + "pack_progress_content": "ui/authentication_screen.json", + "pack_progress_content/top_padding": "ui/authentication_screen.json", + "pack_progress_content/loading_text_panel": "ui/authentication_screen.json", + "pack_progress_content/loading_text_panel/loading_text": "ui/authentication_screen.json", + "pack_progress_content/loading_bar_panel": "ui/authentication_screen.json", + "pack_progress_content/loading_bar_panel/loading_bar": "ui/authentication_screen.json", + "pack_progress_content/loading_padding": "ui/authentication_screen.json", + "pack_progress_content/skip_panel": "ui/authentication_screen.json", + "pack_progress_content/skip_panel/skip_button": "ui/authentication_screen.json", + "pack_progress_content/bottom_padding": "ui/authentication_screen.json", + "sign_in_ios_content": "ui/authentication_screen.json", + "sign_in_ios_content/body_text": "ui/authentication_screen.json", + "sign_in_ios_content/body_hyperlink": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel/buttons": "ui/authentication_screen.json", + "sign_in_ios_content/signin_ios_button_panel/pad_footer": "ui/authentication_screen.json", + "sign_in_ios_content/error_sign_in_panel": "ui/authentication_screen.json", + "sign_in_ios_content/error_sign_in_panel/button": "ui/authentication_screen.json", + "sign_in_ios_content/error_download_panel": "ui/authentication_screen.json", + "sign_in_ios_content/error_download_panel/button": "ui/authentication_screen.json", + "sign_in_ios_button": "ui/authentication_screen.json", + "to_app_store": "ui/authentication_screen.json", + "debug_panel": "ui/authentication_screen.json", + "debug_panel/state_label": "ui/authentication_screen.json", + "debug_panel/state_text_box": "ui/authentication_screen.json", + "debug_panel/open_popup": "ui/authentication_screen.json", + "debug_panel/refresh_popup": "ui/authentication_screen.json", + "debug_panel/reset": "ui/authentication_screen.json", + "debug_panel/toggle_ios": "ui/authentication_screen.json", + "authentication_popup_link_button": "ui/authentication_screen.json", + "authentication_popup_link_button/top_padding": "ui/authentication_screen.json", + "authentication_popup_link_button/link_button": "ui/authentication_screen.json", + "authentication_popup_contents": "ui/authentication_screen.json", + "authentication_popup_contents/initial_padding": "ui/authentication_screen.json", + "authentication_popup_contents/body": "ui/authentication_screen.json", + "authentication_popup_contents/learn_more_link": "ui/authentication_screen.json", + "authentication_popup_contents/link2": "ui/authentication_screen.json", + "authentication_popup_contents/end_padding": "ui/authentication_screen.json", + "resizeable_scrolling_panel": "ui/authentication_screen.json", + "authentication_popup_content_panel": "ui/authentication_screen.json", + "authentication_popup_button": "ui/authentication_screen.json", + "authentication_popup_one_button": "ui/authentication_screen.json", + "authentication_popup_one_button/button": "ui/authentication_screen.json", + "authentication_popup_two_buttons": "ui/authentication_screen.json", + "authentication_popup_two_buttons/first_button": "ui/authentication_screen.json", + "authentication_popup_two_buttons/button_padding": "ui/authentication_screen.json", + "authentication_popup_two_buttons/second_button": "ui/authentication_screen.json", + "authentication_popup_lower_button_panel": "ui/authentication_screen.json", + "authentication_popup_lower_button_panel/one_button": "ui/authentication_screen.json", + "authentication_popup_lower_button_panel/two_buttons": "ui/authentication_screen.json", + "authentication_popup": "ui/authentication_screen.json", + }, + "auto_save_info": { + "auto_save": "ui/auto_save_info_screen.json", + "accept_label": "ui/auto_save_info_screen.json", + "accept_label/button_label": "ui/auto_save_info_screen.json", + "accept_button": "ui/auto_save_info_screen.json", + "main_panel": "ui/auto_save_info_screen.json", + "main_panel/common_panel": "ui/auto_save_info_screen.json", + "main_panel/title_label": "ui/auto_save_info_screen.json", + "main_panel/message_label": "ui/auto_save_info_screen.json", + "main_panel/save_icon": "ui/auto_save_info_screen.json", + "main_panel/a": "ui/auto_save_info_screen.json", + "main_panel/gamepad_helpers": "ui/auto_save_info_screen.json", + "gamepad_helpers": "ui/auto_save_info_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/auto_save_info_screen.json", + "auto_save_info_screen": "ui/auto_save_info_screen.json", + "auto_save_info_screen_content": "ui/auto_save_info_screen.json", + "auto_save_info_screen_content/root_panel": "ui/auto_save_info_screen.json", + "auto_save_info_screen_content/root_panel/main_panel": "ui/auto_save_info_screen.json", + }, + "beacon": { + "selected_item_details": "ui/beacon_screen.json", + "beacon_panel": "ui/beacon_screen.json", + "beacon_panel/container_gamepad_helpers": "ui/beacon_screen.json", + "beacon_panel/selected_item_details_factory": "ui/beacon_screen.json", + "beacon_panel/item_lock_notification_factory": "ui/beacon_screen.json", + "beacon_panel/root_panel": "ui/beacon_screen.json", + "beacon_panel/root_panel/common_panel": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/payment_panel": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": "ui/beacon_screen.json", + "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": "ui/beacon_screen.json", + "beacon_panel/flying_item_renderer": "ui/beacon_screen.json", + "inventory_slot_button": "ui/beacon_screen.json", + "hotbar_slot_button": "ui/beacon_screen.json", + "image_atlas": "ui/beacon_screen.json", + "pyramid_image": "ui/beacon_screen.json", + "pyramid_panel": "ui/beacon_screen.json", + "pyramid_panel/level1": "ui/beacon_screen.json", + "pyramid_panel/level2": "ui/beacon_screen.json", + "pyramid_panel/level3": "ui/beacon_screen.json", + "pyramid_panel/level4": "ui/beacon_screen.json", + "item_seperator": "ui/beacon_screen.json", + "item_renderer": "ui/beacon_screen.json", + "usable_items_panel": "ui/beacon_screen.json", + "usable_items_panel/netherite": "ui/beacon_screen.json", + "usable_items_panel/item_seperator_0": "ui/beacon_screen.json", + "usable_items_panel/emerald": "ui/beacon_screen.json", + "usable_items_panel/item_seperator_1": "ui/beacon_screen.json", + "usable_items_panel/diamond": "ui/beacon_screen.json", + "usable_items_panel/item_seperator_2": "ui/beacon_screen.json", + "usable_items_panel/gold": "ui/beacon_screen.json", + "usable_items_panel/item_seperator_3": "ui/beacon_screen.json", + "usable_items_panel/iron": "ui/beacon_screen.json", + "base_image": "ui/beacon_screen.json", + "hover_text": "ui/beacon_screen.json", + "hover_state": "ui/beacon_screen.json", + "hover_state/hover_text": "ui/beacon_screen.json", + "button_unchecked_default": "ui/beacon_screen.json", + "button_unchecked_hover": "ui/beacon_screen.json", + "button_unchecked_hover/hover_text": "ui/beacon_screen.json", + "button_checked_hover": "ui/beacon_screen.json", + "button_checked_hover/hover_text": "ui/beacon_screen.json", + "button_locked": "ui/beacon_screen.json", + "button_locked_hover": "ui/beacon_screen.json", + "button_locked_hover/hover_text": "ui/beacon_screen.json", + "button_checked": "ui/beacon_screen.json", + "toggle_button": "ui/beacon_screen.json", + "base_button": "ui/beacon_screen.json", + "base_button/default": "ui/beacon_screen.json", + "base_button/hover": "ui/beacon_screen.json", + "base_button/pressed": "ui/beacon_screen.json", + "active_button": "ui/beacon_screen.json", + "inactive_button": "ui/beacon_screen.json", + "inactive_button/default": "ui/beacon_screen.json", + "inactive_button/hover": "ui/beacon_screen.json", + "selected_button": "ui/beacon_screen.json", + "selected_button/default": "ui/beacon_screen.json", + "selected_button/hover": "ui/beacon_screen.json", + "secondary_effect_base": "ui/beacon_screen.json", + "speed_secondary": "ui/beacon_screen.json", + "haste_secondary": "ui/beacon_screen.json", + "resist_secondary": "ui/beacon_screen.json", + "jump_secondary": "ui/beacon_screen.json", + "strength_secondary": "ui/beacon_screen.json", + "image_template": "ui/beacon_screen.json", + "image_template/base_image": "ui/beacon_screen.json", + "secondary_effect_images": "ui/beacon_screen.json", + "secondary_effect_images/speed_secondary": "ui/beacon_screen.json", + "secondary_effect_images/haste_secondary": "ui/beacon_screen.json", + "secondary_effect_images/resist_secondary": "ui/beacon_screen.json", + "secondary_effect_images/jump_secondary": "ui/beacon_screen.json", + "secondary_effect_images/strength_secondary": "ui/beacon_screen.json", + "toggle_template": "ui/beacon_screen.json", + "toggle_template/toggle_button": "ui/beacon_screen.json", + "button_template": "ui/beacon_screen.json", + "button_template/active_button": "ui/beacon_screen.json", + "button_template/inactive_button": "ui/beacon_screen.json", + "button_template/image_template": "ui/beacon_screen.json", + "panel_template": "ui/beacon_screen.json", + "button_panel": "ui/beacon_screen.json", + "button_panel/speed_panel": "ui/beacon_screen.json", + "button_panel/speed_panel/toggle_template": "ui/beacon_screen.json", + "button_panel/haste_panel": "ui/beacon_screen.json", + "button_panel/resist_panel": "ui/beacon_screen.json", + "button_panel/jump_panel": "ui/beacon_screen.json", + "button_panel/strength_panel": "ui/beacon_screen.json", + "button_panel/regen_panel": "ui/beacon_screen.json", + "button_panel/extra_panel": "ui/beacon_screen.json", + "payment_panel": "ui/beacon_screen.json", + "payment_panel/confirm_panel": "ui/beacon_screen.json", + "payment_panel/cancel_panel": "ui/beacon_screen.json", + "payment_panel/ingredient_item": "ui/beacon_screen.json", + "payment_panel/usable_items_panel": "ui/beacon_screen.json", + "beacon_label": "ui/beacon_screen.json", + "beacon_inner_panel": "ui/beacon_screen.json", + "beacon_inner_panel/button_panel": "ui/beacon_screen.json", + "beacon_inner_panel/pyramid_panel": "ui/beacon_screen.json", + "beacon_inner_panel/middle_strip": "ui/beacon_screen.json", + "beacon_inner_panel/primary_power_label": "ui/beacon_screen.json", + "beacon_inner_panel/secondary_power_label": "ui/beacon_screen.json", + "beacon_screen": "ui/beacon_screen.json", + }, + "beacon_pocket": { + "generic_label": "ui/beacon_screen_pocket.json", + "panel_outline": "ui/beacon_screen_pocket.json", + "dark_bg": "ui/beacon_screen_pocket.json", + "background_image": "ui/beacon_screen_pocket.json", + "item_seperator": "ui/beacon_screen_pocket.json", + "item_renderer": "ui/beacon_screen_pocket.json", + "usable_items_panel": "ui/beacon_screen_pocket.json", + "usable_items_panel/netherite": "ui/beacon_screen_pocket.json", + "usable_items_panel/item_seperator_0": "ui/beacon_screen_pocket.json", + "usable_items_panel/emerald": "ui/beacon_screen_pocket.json", + "usable_items_panel/item_seperator_1": "ui/beacon_screen_pocket.json", + "usable_items_panel/diamond": "ui/beacon_screen_pocket.json", + "usable_items_panel/item_seperator_2": "ui/beacon_screen_pocket.json", + "usable_items_panel/gold": "ui/beacon_screen_pocket.json", + "usable_items_panel/item_seperator_3": "ui/beacon_screen_pocket.json", + "usable_items_panel/iron": "ui/beacon_screen_pocket.json", + "pyramid_image": "ui/beacon_screen_pocket.json", + "pyramid_panel": "ui/beacon_screen_pocket.json", + "pyramid_panel/pyramid_image": "ui/beacon_screen_pocket.json", + "background_panel": "ui/beacon_screen_pocket.json", + "beacon_background": "ui/beacon_screen_pocket.json", + "beacon_background/middle_strip": "ui/beacon_screen_pocket.json", + "inventory_grid": "ui/beacon_screen_pocket.json", + "inventory_content": "ui/beacon_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/beacon_screen_pocket.json", + "highlight_hover_square": "ui/beacon_screen_pocket.json", + "highlight_hover_square/highlight_square": "ui/beacon_screen_pocket.json", + "button_unchecked_default": "ui/beacon_screen_pocket.json", + "button_unchecked_hover": "ui/beacon_screen_pocket.json", + "button_unchecked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "button_checked": "ui/beacon_screen_pocket.json", + "button_checked_hover": "ui/beacon_screen_pocket.json", + "button_checked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "button_locked": "ui/beacon_screen_pocket.json", + "button_locked_hover": "ui/beacon_screen_pocket.json", + "button_locked_hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "toggle_button": "ui/beacon_screen_pocket.json", + "base_button": "ui/beacon_screen_pocket.json", + "base_button/default": "ui/beacon_screen_pocket.json", + "base_button/hover": "ui/beacon_screen_pocket.json", + "base_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "base_button/pressed": "ui/beacon_screen_pocket.json", + "active_button": "ui/beacon_screen_pocket.json", + "inactive_button_image": "ui/beacon_screen_pocket.json", + "inactive_button": "ui/beacon_screen_pocket.json", + "inactive_button/default": "ui/beacon_screen_pocket.json", + "inactive_button/hover": "ui/beacon_screen_pocket.json", + "inactive_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "selected_button_image": "ui/beacon_screen_pocket.json", + "selected_button": "ui/beacon_screen_pocket.json", + "selected_button/default": "ui/beacon_screen_pocket.json", + "selected_button/hover": "ui/beacon_screen_pocket.json", + "selected_button/hover/highlight_hover_square": "ui/beacon_screen_pocket.json", + "secondary_effect_base": "ui/beacon_screen_pocket.json", + "speed_secondary": "ui/beacon_screen_pocket.json", + "haste_secondary": "ui/beacon_screen_pocket.json", + "resist_secondary": "ui/beacon_screen_pocket.json", + "jump_secondary": "ui/beacon_screen_pocket.json", + "strength_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images": "ui/beacon_screen_pocket.json", + "secondary_effect_images/speed_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images/haste_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images/resist_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images/jump_secondary": "ui/beacon_screen_pocket.json", + "secondary_effect_images/strength_secondary": "ui/beacon_screen_pocket.json", + "base_image": "ui/beacon_screen_pocket.json", + "image_template": "ui/beacon_screen_pocket.json", + "image_template/base_image": "ui/beacon_screen_pocket.json", + "toggle_template": "ui/beacon_screen_pocket.json", + "toggle_template/toggle_button": "ui/beacon_screen_pocket.json", + "button_template": "ui/beacon_screen_pocket.json", + "button_template/active_button": "ui/beacon_screen_pocket.json", + "button_template/inactive_button": "ui/beacon_screen_pocket.json", + "button_template/image_template": "ui/beacon_screen_pocket.json", + "panel_template": "ui/beacon_screen_pocket.json", + "beacon_power_label": "ui/beacon_screen_pocket.json", + "beacon_power_label/label": "ui/beacon_screen_pocket.json", + "beacon_sub_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/primary_power_label": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/level1": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/level2": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/level3": "ui/beacon_screen_pocket.json", + "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/secondary_power_label": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel/buttons_and_pyramid": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel/buttons_and_pyramid/level4": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": "ui/beacon_screen_pocket.json", + "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": "ui/beacon_screen_pocket.json", + "beacon_buttons_panel": "ui/beacon_screen_pocket.json", + "beacon_buttons_panel/beacon_background": "ui/beacon_screen_pocket.json", + "beacon_buttons_panel/left_panel": "ui/beacon_screen_pocket.json", + "beacon_buttons_panel/right_panel": "ui/beacon_screen_pocket.json", + "confirm_panel": "ui/beacon_screen_pocket.json", + "confirm_panel/ingredient_item": "ui/beacon_screen_pocket.json", + "confirm_panel/confirm_panel": "ui/beacon_screen_pocket.json", + "confirm_panel/cancel_panel": "ui/beacon_screen_pocket.json", + "beacon_payment_panel": "ui/beacon_screen_pocket.json", + "beacon_payment_panel/usable_items_panel": "ui/beacon_screen_pocket.json", + "beacon_payment_panel/pad": "ui/beacon_screen_pocket.json", + "beacon_payment_panel/confirm_panel": "ui/beacon_screen_pocket.json", + "beacon_contents_panel": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/fill1": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/beacon_buttons_panel": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/pad1": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/beacon_payment_panel": "ui/beacon_screen_pocket.json", + "beacon_contents_panel/fill2": "ui/beacon_screen_pocket.json", + "header": "ui/beacon_screen_pocket.json", + "header/header_background": "ui/beacon_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/beacon_screen_pocket.json", + "header/panel": "ui/beacon_screen_pocket.json", + "header/panel/title_label": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel/inventory_half_screen": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel/inventory_half_screen/inventory_content": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel/beacon_half_screen": "ui/beacon_screen_pocket.json", + "inventory_and_beacon_panel/beacon_half_screen/beacon_content": "ui/beacon_screen_pocket.json", + "header_and_content_stack_panel": "ui/beacon_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/beacon_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_beacon_panel": "ui/beacon_screen_pocket.json", + "beacon_panel": "ui/beacon_screen_pocket.json", + "beacon_panel/bg": "ui/beacon_screen_pocket.json", + "beacon_panel/root_panel": "ui/beacon_screen_pocket.json", + "beacon_panel/header_and_content_stack_panel": "ui/beacon_screen_pocket.json", + "beacon_panel/container_gamepad_helpers": "ui/beacon_screen_pocket.json", + "beacon_panel/inventory_selected_icon_button": "ui/beacon_screen_pocket.json", + "beacon_panel/hold_icon": "ui/beacon_screen_pocket.json", + "beacon_panel/selected_item_details_factory": "ui/beacon_screen_pocket.json", + "beacon_panel/item_lock_notification_factory": "ui/beacon_screen_pocket.json", + "beacon_panel/flying_item_renderer": "ui/beacon_screen_pocket.json", + }, + "blast_furnace": { + "blast_furnace_screen": "ui/blast_furnace_screen.json", + }, + "book": { + "screenshot": "ui/book_screen.json", + "screenshot_frame": "ui/book_screen.json", + "screenshot_frame/caption_edit": "ui/book_screen.json", + "photo_corner": "ui/book_screen.json", + "photo_corner_bl": "ui/book_screen.json", + "photo_corner_br": "ui/book_screen.json", + "photo_corner_tr": "ui/book_screen.json", + "photo_corner_tl": "ui/book_screen.json", + "page_caption": "ui/book_screen.json", + "page_photo": "ui/book_screen.json", + "page_photo/screenshot": "ui/book_screen.json", + "page_photo/screenshot_frame": "ui/book_screen.json", + "page_photo/photo_corner_bl": "ui/book_screen.json", + "page_photo/photo_corner_br": "ui/book_screen.json", + "page_photo/photo_corner_tl": "ui/book_screen.json", + "page_photo/photo_corner_tr": "ui/book_screen.json", + "pick_item": "ui/book_screen.json", + "pick_item/photo": "ui/book_screen.json", + "pick_item/button": "ui/book_screen.json", + "pick_item_inventory": "ui/book_screen.json", + "pick_item_inventory/photo": "ui/book_screen.json", + "pick_item_inventory/button": "ui/book_screen.json", + "header": "ui/book_screen.json", + "text_centering_panel_inventory": "ui/book_screen.json", + "text_centering_panel_inventory/inventory_header": "ui/book_screen.json", + "text_centering_panel_portfolio": "ui/book_screen.json", + "text_centering_panel_portfolio/portfolio_header": "ui/book_screen.json", + "pick_scrolling_content": "ui/book_screen.json", + "pick_scrolling_content/inventory_header": "ui/book_screen.json", + "pick_scrolling_content/inventory_grid": "ui/book_screen.json", + "pick_scrolling_content/portfolio_header": "ui/book_screen.json", + "pick_scrolling_content/portfolio_grid": "ui/book_screen.json", + "pick_panel": "ui/book_screen.json", + "pick_panel/scroll": "ui/book_screen.json", + "pick_panel/close_button": "ui/book_screen.json", + "blank": "ui/book_screen.json", + "book_background": "ui/book_screen.json", + "book_spine_image": "ui/book_screen.json", + "page_crease_left_image": "ui/book_screen.json", + "page_crease_right_image": "ui/book_screen.json", + "page_edge_left_image": "ui/book_screen.json", + "page_edge_right_image": "ui/book_screen.json", + "text_edit_hover_image": "ui/book_screen.json", + "base_button": "ui/book_screen.json", + "base_button/default": "ui/book_screen.json", + "base_button/hover": "ui/book_screen.json", + "base_button/pressed": "ui/book_screen.json", + "book_buttons_panel": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons/left_spacer": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons/sign_button": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons/export_button": "ui/book_screen.json", + "book_buttons_panel/sign_export_buttons/right_spacer": "ui/book_screen.json", + "book_buttons_panel/im_content_button": "ui/book_screen.json", + "cover_buttons_stack_panel_holder": "ui/book_screen.json", + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": "ui/book_screen.json", + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": "ui/book_screen.json", + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": "ui/book_screen.json", + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": "ui/book_screen.json", + "close_button_default": "ui/book_screen.json", + "close_button_hover": "ui/book_screen.json", + "close_button_pressed": "ui/book_screen.json", + "close_button": "ui/book_screen.json", + "close_button/default": "ui/book_screen.json", + "close_button/hover": "ui/book_screen.json", + "close_button/pressed": "ui/book_screen.json", + "page_text_edit": "ui/book_screen.json", + "page_text": "ui/book_screen.json", + "page_number_label": "ui/book_screen.json", + "padded_button": "ui/book_screen.json", + "padded_button/button": "ui/book_screen.json", + "page_buttons_panel": "ui/book_screen.json", + "page_buttons_panel/swap_page_left": "ui/book_screen.json", + "page_buttons_panel/insert_text_page": "ui/book_screen.json", + "page_buttons_panel/insert_photo_page": "ui/book_screen.json", + "page_buttons_panel/delete_page": "ui/book_screen.json", + "page_buttons_panel/swap_page_right": "ui/book_screen.json", + "page_content_panel": "ui/book_screen.json", + "page_content_panel/page_text": "ui/book_screen.json", + "page_content_panel/page_photo": "ui/book_screen.json", + "page_content_panel/page_number_label": "ui/book_screen.json", + "page_content_panel/page_buttons_panel": "ui/book_screen.json", + "page_content_panel/edit_page": "ui/book_screen.json", + "title_label": "ui/book_screen.json", + "title_text_box": "ui/book_screen.json", + "author_label": "ui/book_screen.json", + "author_text_box": "ui/book_screen.json", + "author_stack_panel": "ui/book_screen.json", + "author_stack_panel/author_label_panel": "ui/book_screen.json", + "author_stack_panel/author_label_panel/author_label": "ui/book_screen.json", + "author_stack_panel/author_text_panel": "ui/book_screen.json", + "author_stack_panel/author_text_panel/author_text_box": "ui/book_screen.json", + "warning_label": "ui/book_screen.json", + "cover_content_panel": "ui/book_screen.json", + "cover_content_panel/title_label": "ui/book_screen.json", + "cover_content_panel/title_text_box": "ui/book_screen.json", + "cover_content_panel/author_stack_panel": "ui/book_screen.json", + "cover_content_panel/warning_label": "ui/book_screen.json", + "cover_and_buttons_panel": "ui/book_screen.json", + "cover_and_buttons_panel/cover_panel": "ui/book_screen.json", + "cover_and_buttons_panel/cover_panel/cover_content_panel": "ui/book_screen.json", + "cover_and_buttons_panel/cover_panel/book_background": "ui/book_screen.json", + "cover_and_buttons_panel/cover_panel/close_button": "ui/book_screen.json", + "cover_and_buttons_panel/cover_buttons_stack_panel_holder": "ui/book_screen.json", + "page_panel": "ui/book_screen.json", + "page_panel/page_content_panel": "ui/book_screen.json", + "book_grid": "ui/book_screen.json", + "book_grid/page_panel_left": "ui/book_screen.json", + "book_grid/page_panel_right": "ui/book_screen.json", + "book_and_buttons_panel": "ui/book_screen.json", + "book_and_buttons_panel/book_panel": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/book_grid": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/book_background": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/book_spine_image": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/close_button": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/prev_button": "ui/book_screen.json", + "book_and_buttons_panel/book_panel/next_button": "ui/book_screen.json", + "book_and_buttons_panel/book_buttons_panel": "ui/book_screen.json", + "root_panel": "ui/book_screen.json", + "book_screen": "ui/book_screen.json", + "book_screen_content": "ui/book_screen.json", + "book_screen_content/root_panel": "ui/book_screen.json", + "book_screen_content/root_panel/book_and_buttons_panel": "ui/book_screen.json", + "book_screen_content/root_panel/cover_and_buttons_panel": "ui/book_screen.json", + "book_screen_content/root_panel/pick_panel": "ui/book_screen.json", + "book_screen_content/root_panel/export_progress": "ui/book_screen.json", + "book_screen_content/root_panel/gamepad_helper_a": "ui/book_screen.json", + "book_screen_content/root_panel/gamepad_helper_b": "ui/book_screen.json", + }, + "brewing_stand": { + "brewing_pipes": "ui/brewing_stand_screen.json", + "brewing_fuel_pipes": "ui/brewing_stand_screen.json", + "bottle_empty_image": "ui/brewing_stand_screen.json", + "fuel_empty_image": "ui/brewing_stand_screen.json", + "bubbles_empty_image": "ui/brewing_stand_screen.json", + "bubbles_full_image": "ui/brewing_stand_screen.json", + "brewing_arrow_empty_image": "ui/brewing_stand_screen.json", + "brewing_arrow_full_image": "ui/brewing_stand_screen.json", + "brewing_fuel_bar_empty_image": "ui/brewing_stand_screen.json", + "brewing_fuel_bar_full_image": "ui/brewing_stand_screen.json", + "brewing_label": "ui/brewing_stand_screen.json", + "brewingstand_output_item": "ui/brewing_stand_screen.json", + "brewing_output_slots": "ui/brewing_stand_screen.json", + "brewing_output_slots/left_offset": "ui/brewing_stand_screen.json", + "brewing_output_slots/left_offset/output_grid_item1": "ui/brewing_stand_screen.json", + "brewing_output_slots/output_grid_item2": "ui/brewing_stand_screen.json", + "brewing_output_slots/right_offset": "ui/brewing_stand_screen.json", + "brewing_output_slots/right_offset/output_grid_item3": "ui/brewing_stand_screen.json", + "brewing_input_slot": "ui/brewing_stand_screen.json", + "brewing_input_slot/input_grid_item": "ui/brewing_stand_screen.json", + "brewing_fuel_slot": "ui/brewing_stand_screen.json", + "brewing_fuel_slot/fuel_grid_item": "ui/brewing_stand_screen.json", + "brewing_panel_top_half": "ui/brewing_stand_screen.json", + "brewing_panel_top_half/brewing_label": "ui/brewing_stand_screen.json", + "brewing_panel_top_half/brewing_stand_pictogram": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_input_slot": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_output_slots": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_fuel_slot": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_arrow_empty_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_arrow_full_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_fuel_bar_empty_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_fuel_bar_full_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/bubbles_empty_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/bubbles_full_image": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_fuel_pipes": "ui/brewing_stand_screen.json", + "brewing_stand_pictogram/brewing_pipes": "ui/brewing_stand_screen.json", + "brewing_stand_panel": "ui/brewing_stand_screen.json", + "brewing_stand_panel/container_gamepad_helpers": "ui/brewing_stand_screen.json", + "brewing_stand_panel/selected_item_details_factory": "ui/brewing_stand_screen.json", + "brewing_stand_panel/item_lock_notification_factory": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/common_panel": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/inventory_selected_icon_button": "ui/brewing_stand_screen.json", + "brewing_stand_panel/root_panel/gamepad_cursor": "ui/brewing_stand_screen.json", + "brewing_stand_panel/flying_item_renderer": "ui/brewing_stand_screen.json", + "brewing_stand_screen": "ui/brewing_stand_screen.json", + }, + "brewing_stand_pocket": { + "generic_label": "ui/brewing_stand_screen_pocket.json", + "brewing_fuel_pipes": "ui/brewing_stand_screen_pocket.json", + "bubbles_empty_image": "ui/brewing_stand_screen_pocket.json", + "bubbles_full_image": "ui/brewing_stand_screen_pocket.json", + "bottle_empty_image": "ui/brewing_stand_screen_pocket.json", + "background_image": "ui/brewing_stand_screen_pocket.json", + "output_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_input_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_input_slot/input_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_fuel_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_fuel_slot/fuel_slot": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/left_offset": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/left_offset/output_slot1": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/middle": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/middle/output_slot2": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/right_offset": "ui/brewing_stand_screen_pocket.json", + "brewing_out_slots/right_offset/output_slot3": "ui/brewing_stand_screen_pocket.json", + "slots_panel": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_input_slot": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_slot": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_out_slots": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_arrow_panel": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_bubbles_panel": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_bubbles_panel/bubbles_empty_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_bubbles_panel/bubbles_full_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_bar_panel": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_fuel_pipes": "ui/brewing_stand_screen_pocket.json", + "slots_panel/brewing_pipes": "ui/brewing_stand_screen_pocket.json", + "inventory_grid": "ui/brewing_stand_screen_pocket.json", + "inventory_content": "ui/brewing_stand_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_contents_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_contents_panel/slots_panel": "ui/brewing_stand_screen_pocket.json", + "header": "ui/brewing_stand_screen_pocket.json", + "header/header_background": "ui/brewing_stand_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/brewing_stand_screen_pocket.json", + "header/panel": "ui/brewing_stand_screen_pocket.json", + "header/panel/title_label": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel/inventory_half_screen": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel/inventory_half_screen/inventory_content": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel/brewing_half_screen": "ui/brewing_stand_screen_pocket.json", + "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": "ui/brewing_stand_screen_pocket.json", + "header_and_content_stack_panel": "ui/brewing_stand_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/brewing_stand_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_brewing_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/bg": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/root_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/header_and_content_stack_panel": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/container_gamepad_helpers": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/inventory_selected_icon_button": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/hold_icon": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/selected_item_details_factory": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/item_lock_notification_factory": "ui/brewing_stand_screen_pocket.json", + "brewing_stand_panel/flying_item_renderer": "ui/brewing_stand_screen_pocket.json", + }, + "bundle_purchase_warning": { + "x_padding": "ui/bundle_purchase_warning_screen.json", + "y_padding": "ui/bundle_purchase_warning_screen.json", + "bundle_grid_item": "ui/bundle_purchase_warning_screen.json", + "bundle_grid_item/banner_image": "ui/bundle_purchase_warning_screen.json", + "bundle_grid_item/content": "ui/bundle_purchase_warning_screen.json", + "bundle_grid_item/game_pad_focus_border": "ui/bundle_purchase_warning_screen.json", + "is_focused": "ui/bundle_purchase_warning_screen.json", + "is_focused/image_border": "ui/bundle_purchase_warning_screen.json", + "is_focused/banner_border": "ui/bundle_purchase_warning_screen.json", + "focus_border": "ui/bundle_purchase_warning_screen.json", + "focus_border_button": "ui/bundle_purchase_warning_screen.json", + "focus_border_button/default": "ui/bundle_purchase_warning_screen.json", + "focus_border_button/hover": "ui/bundle_purchase_warning_screen.json", + "focus_border_button/pressed": "ui/bundle_purchase_warning_screen.json", + "grid_item_content": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/image_border": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/image_border/bundle_thumbnail": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/padding_0": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/bundle_title_panel": "ui/bundle_purchase_warning_screen.json", + "grid_item_content/bundle_title_panel/bundle_title": "ui/bundle_purchase_warning_screen.json", + "bundle_grid": "ui/bundle_purchase_warning_screen.json", + "side_contents": "ui/bundle_purchase_warning_screen.json", + "side_contents/title_alignment_hack": "ui/bundle_purchase_warning_screen.json", + "side_contents/title_alignment_hack/side_section_title": "ui/bundle_purchase_warning_screen.json", + "side_contents/padding_y_0": "ui/bundle_purchase_warning_screen.json", + "side_contents/grid_input_panel": "ui/bundle_purchase_warning_screen.json", + "side_contents/grid_input_panel/grid_scroll": "ui/bundle_purchase_warning_screen.json", + "dialog_content": "ui/bundle_purchase_warning_screen.json", + "dialog_content/grid_stack": "ui/bundle_purchase_warning_screen.json", + "dialog_content/grid_stack/left_grid_scroll": "ui/bundle_purchase_warning_screen.json", + "dialog_content/grid_stack/padding_x_divider": "ui/bundle_purchase_warning_screen.json", + "dialog_content/grid_stack/right_grid_scroll": "ui/bundle_purchase_warning_screen.json", + "purchase_button_panel": "ui/bundle_purchase_warning_screen.json", + "screen_dialog": "ui/bundle_purchase_warning_screen.json", + "bundle_purchase_warning_screen_content": "ui/bundle_purchase_warning_screen.json", + "bundle_purchase_warning_screen_content/dialog": "ui/bundle_purchase_warning_screen.json", + "background": "ui/bundle_purchase_warning_screen.json", + "bundle_purchase_warning_screen": "ui/bundle_purchase_warning_screen.json", + }, + "cartography": { + "title_label": "ui/cartography_screen.json", + "arrow_icon": "ui/cartography_screen.json", + "plus_sign_icon": "ui/cartography_screen.json", + "text_edit_control": "ui/cartography_screen.json", + "cartography_output_slot_button": "ui/cartography_screen.json", + "cartography_item_slot": "ui/cartography_screen.json", + "cartography_item_slot/container_item": "ui/cartography_screen.json", + "map_image": "ui/cartography_screen.json", + "map_image_panel": "ui/cartography_screen.json", + "map_image_panel/none_map": "ui/cartography_screen.json", + "map_image_panel/copy_map": "ui/cartography_screen.json", + "map_image_panel/rename_map": "ui/cartography_screen.json", + "map_image_panel/map": "ui/cartography_screen.json", + "map_image_panel/locator_map": "ui/cartography_screen.json", + "map_image_panel/zoom_map": "ui/cartography_screen.json", + "map_image_panel/lock_map": "ui/cartography_screen.json", + "text_box_panel": "ui/cartography_screen.json", + "text_box_panel/map_name_label": "ui/cartography_screen.json", + "text_box_panel/text_edit_control": "ui/cartography_screen.json", + "input_slots": "ui/cartography_screen.json", + "input_slots/input_item_slot": "ui/cartography_screen.json", + "input_slots/plus_centerer": "ui/cartography_screen.json", + "input_slots/plus_centerer/plus_sign_icon": "ui/cartography_screen.json", + "input_slots/additional_item_slot": "ui/cartography_screen.json", + "output_description_label": "ui/cartography_screen.json", + "main_panel": "ui/cartography_screen.json", + "main_panel/input_slots": "ui/cartography_screen.json", + "main_panel/arrow_icon": "ui/cartography_screen.json", + "main_panel/map_image_panel": "ui/cartography_screen.json", + "main_panel/arrow_icon2": "ui/cartography_screen.json", + "main_panel/result_item_slot": "ui/cartography_screen.json", + "top_half_panel": "ui/cartography_screen.json", + "top_half_panel/padding1": "ui/cartography_screen.json", + "top_half_panel/title_panel": "ui/cartography_screen.json", + "top_half_panel/title_panel/title_label": "ui/cartography_screen.json", + "top_half_panel/padding2": "ui/cartography_screen.json", + "top_half_panel/text_box_panel": "ui/cartography_screen.json", + "top_half_panel/padding3": "ui/cartography_screen.json", + "top_half_panel/padding4": "ui/cartography_screen.json", + "top_half_panel/main_panel_wrap": "ui/cartography_screen.json", + "top_half_panel/main_panel_wrap/main_panel": "ui/cartography_screen.json", + "top_half_panel/output_description_label": "ui/cartography_screen.json", + "top_half_panel/padding5": "ui/cartography_screen.json", + "cartography_panel": "ui/cartography_screen.json", + "cartography_panel/container_gamepad_helpers": "ui/cartography_screen.json", + "cartography_panel/selected_item_details_factory": "ui/cartography_screen.json", + "cartography_panel/item_lock_notification_factory": "ui/cartography_screen.json", + "cartography_panel/root_panel": "ui/cartography_screen.json", + "cartography_panel/root_panel/common_panel": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": "ui/cartography_screen.json", + "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": "ui/cartography_screen.json", + "cartography_panel/root_panel/inventory_selected_icon_button": "ui/cartography_screen.json", + "cartography_panel/root_panel/gamepad_cursor": "ui/cartography_screen.json", + "cartography_panel/root_panel/tab_close_and_help_button": "ui/cartography_screen.json", + "cartography_panel/flying_item_renderer": "ui/cartography_screen.json", + "cartography_screen": "ui/cartography_screen.json", + }, + "cartography_pocket": { + "vertical_arrow_icon": "ui/cartography_screen_pocket.json", + "chest_item_renderer": "ui/cartography_screen_pocket.json", + "cartography_item_renderer": "ui/cartography_screen_pocket.json", + "input_item_slot": "ui/cartography_screen_pocket.json", + "additional_item_slot": "ui/cartography_screen_pocket.json", + "result_item_slot": "ui/cartography_screen_pocket.json", + "right_panel": "ui/cartography_screen_pocket.json", + "right_panel/content": "ui/cartography_screen_pocket.json", + "right_panel/content/bg": "ui/cartography_screen_pocket.json", + "right_panel/content/cartography_content_stack_panel": "ui/cartography_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/cartography_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/cartography_screen_pocket.json", + "right_tab_cartography": "ui/cartography_screen_pocket.json", + "right_navigation_tabs": "ui/cartography_screen_pocket.json", + "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/cartography_screen_pocket.json", + "right_navigation_tabs/fill": "ui/cartography_screen_pocket.json", + "right_navigation_tabs/right_tab_cartography": "ui/cartography_screen_pocket.json", + "input_slots_stack_panel": "ui/cartography_screen_pocket.json", + "input_slots_stack_panel/input_item_slot": "ui/cartography_screen_pocket.json", + "input_slots": "ui/cartography_screen_pocket.json", + "input_slots/input_item_slot": "ui/cartography_screen_pocket.json", + "input_slots/plus_centerer": "ui/cartography_screen_pocket.json", + "input_slots/plus_centerer/plus_sign_icon": "ui/cartography_screen_pocket.json", + "input_slots/additional_item_slot": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/label_holder": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/label_holder/cartography_label": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/padding_1": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/panel": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/panel/input_slots": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/padding_2": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/map_centerer": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/map_centerer/map_image_panel": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/description_centerer": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/description_centerer/output_description_label": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/padding_3": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/arrow_centerer": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/padding_4": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/result_centerer": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/result_centerer/result_item_slot": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/filling_panel": "ui/cartography_screen_pocket.json", + "cartography_content_stack_panel/text_box_panel": "ui/cartography_screen_pocket.json", + "inventory_panel": "ui/cartography_screen_pocket.json", + "inventory_panel/inventory_title_label_centerer": "ui/cartography_screen_pocket.json", + "inventory_panel/inventory_title_label_centerer/inventory_title_label": "ui/cartography_screen_pocket.json", + "inventory_panel/inventory_scroll_panel": "ui/cartography_screen_pocket.json", + "inventory_scroll_panel": "ui/cartography_screen_pocket.json", + "pattern_button": "ui/cartography_screen_pocket.json", + "pattern_scroll_panel": "ui/cartography_screen_pocket.json", + "left_panel": "ui/cartography_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/cartography_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/cartography_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/cartography_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/cartography_screen_pocket.json", + "left_panel/content": "ui/cartography_screen_pocket.json", + "left_panel/content/bg": "ui/cartography_screen_pocket.json", + "left_panel/content/inventory_panel": "ui/cartography_screen_pocket.json", + "left_tab_inventory": "ui/cartography_screen_pocket.json", + "left_navigation_tabs": "ui/cartography_screen_pocket.json", + "left_navigation_tabs/padding": "ui/cartography_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/cartography_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/cartography_screen_pocket.json", + "cartography_panel": "ui/cartography_screen_pocket.json", + "cartography_panel/pocket_hotbar_and_content_panels": "ui/cartography_screen_pocket.json", + "cartography_panel/container_gamepad_helpers": "ui/cartography_screen_pocket.json", + "cartography_panel/selected_item_details_factory": "ui/cartography_screen_pocket.json", + "cartography_panel/item_lock_notification_factory": "ui/cartography_screen_pocket.json", + "cartography_panel/inventory_selected_icon_button": "ui/cartography_screen_pocket.json", + "cartography_panel/inventory_take_progress_icon_button": "ui/cartography_screen_pocket.json", + "cartography_panel/flying_item_renderer": "ui/cartography_screen_pocket.json", + }, + "chalkboard": { + "text_edit_control": "ui/chalkboard_screen.json", + "locked_toggle": "ui/chalkboard_screen.json", + "locked_label": "ui/chalkboard_screen.json", + "lock_control": "ui/chalkboard_screen.json", + "lock_control/toggle": "ui/chalkboard_screen.json", + "lock_control/pad_wrap": "ui/chalkboard_screen.json", + "lock_control/pad_wrap/label": "ui/chalkboard_screen.json", + "gamepad_helpers": "ui/chalkboard_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/chalkboard_screen.json", + "chalkboard_screen": "ui/chalkboard_screen.json", + "chalkboard_root": "ui/chalkboard_screen.json", + "chalkboard_content": "ui/chalkboard_screen.json", + "chalkboard_content/gamepad_helpers": "ui/chalkboard_screen.json", + "chalkboard_content/edit_box": "ui/chalkboard_screen.json", + "chalkboard_content/locked_toggle": "ui/chalkboard_screen.json", + }, + "chat": { + "down_arrow_image": "ui/chat_screen.json", + "keyboard_image": "ui/chat_screen.json", + "copy_image": "ui/chat_screen.json", + "paste_image": "ui/chat_screen.json", + "gear_image": "ui/chat_screen.json", + "send_image": "ui/chat_screen.json", + "send_panel": "ui/chat_screen.json", + "send_panel/send_image_panel": "ui/chat_screen.json", + "send_panel/send_image_panel/send_image": "ui/chat_screen.json", + "send_panel/gamepad_x_button": "ui/chat_screen.json", + "send_panel/gamepad_x_button/side_padding": "ui/chat_screen.json", + "send_panel/gamepad_x_button/gamepad_x_button_image": "ui/chat_screen.json", + "send_panel/gamepad_x_button/gamepad_x_button_image/icon": "ui/chat_screen.json", + "keyboard_image_panel": "ui/chat_screen.json", + "keyboard_image_panel/keyboard_image": "ui/chat_screen.json", + "keyboard_image_panel/down_arrow_image": "ui/chat_screen.json", + "small_button": "ui/chat_screen.json", + "keyboard_button": "ui/chat_screen.json", + "chat_settings_button": "ui/chat_screen.json", + "send_button": "ui/chat_screen.json", + "messages_text": "ui/chat_screen.json", + "messages_text/text": "ui/chat_screen.json", + "message_tts_wrapper": "ui/chat_screen.json", + "messages_stack_panel": "ui/chat_screen.json", + "messages_scrolling_panel": "ui/chat_screen.json", + "text_edit_box": "ui/chat_screen.json", + "commands_background": "ui/chat_screen.json", + "click_autocomplete_is_focused": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/auto_complete_item_renderer": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/text": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/autocomplete_button": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/autocomplete_button/default": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/autocomplete_button/hover": "ui/chat_screen.json", + "auto_complete_panel_contents_with_item/autocomplete_button/pressed": "ui/chat_screen.json", + "auto_complete_panel": "ui/chat_screen.json", + "auto_complete_panel/panel": "ui/chat_screen.json", + "auto_complete_panel/panel/auto_complete_grid": "ui/chat_screen.json", + "commands_panel": "ui/chat_screen.json", + "commands_panel/auto_complete_panel": "ui/chat_screen.json", + "chat_bottom_panel": "ui/chat_screen.json", + "chat_bottom_panel/keyboard_button": "ui/chat_screen.json", + "chat_bottom_panel/host_main_button": "ui/chat_screen.json", + "chat_bottom_panel/chat_settings": "ui/chat_screen.json", + "chat_bottom_panel/text_box": "ui/chat_screen.json", + "chat_bottom_panel/send_button": "ui/chat_screen.json", + "title_text": "ui/chat_screen.json", + "title_text/title_panel": "ui/chat_screen.json", + "back_content_panel": "ui/chat_screen.json", + "back_content_panel/back_button": "ui/chat_screen.json", + "back_content_panel/gamepad_back_helper": "ui/chat_screen.json", + "back_content_panel/gamepad_back_helper/gamepad_helper_button": "ui/chat_screen.json", + "coordinate_dropdown_content": "ui/chat_screen.json", + "coordinate_dropdown_content/top_padding": "ui/chat_screen.json", + "coordinate_dropdown_content/my_position": "ui/chat_screen.json", + "coordinate_dropdown_content/block_position": "ui/chat_screen.json", + "coordinate_dropdown_content/bottom_padding": "ui/chat_screen.json", + "coordinate_dropdown": "ui/chat_screen.json", + "popup_toast": "ui/chat_screen.json", + "copy_coordinate_button": "ui/chat_screen.json", + "paste_button": "ui/chat_screen.json", + "chat_header": "ui/chat_screen.json", + "chat_header/title_panel": "ui/chat_screen.json", + "chat_header/title_panel/back_button_content_panel": "ui/chat_screen.json", + "chat_header/title_panel/title": "ui/chat_screen.json", + "chat_header/title_panel/popup_dialog_factory": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/coordinates_panel": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/icon": "ui/chat_screen.json", + "chat_header/title_panel/chat_header_content_area/paste_button": "ui/chat_screen.json", + "chat_screen": "ui/chat_screen.json", + "chat_screen_content": "ui/chat_screen.json", + "chat_screen_content/messages_panel": "ui/chat_screen.json", + "chat_screen_content/chat_bottom_panel": "ui/chat_screen.json", + "chat_screen_content/chat_top_panel": "ui/chat_screen.json", + "chat_screen_content/autocomplete_commands_panel": "ui/chat_screen.json", + "chat_screen_content/host_main_panel": "ui/chat_screen.json", + "chat_screen_content/popup_factory": "ui/chat_screen.json", + "chat_background": "ui/chat_screen.json", + }, + "chat_settings": { + "mute_all_toggle": "ui/chat_settings_menu_screen.json", + "mute_emote_chat_toggle": "ui/chat_settings_menu_screen.json", + "chat_tts_toggle": "ui/chat_settings_menu_screen.json", + "reset_button": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content/top_padding": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content/mojangles": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content/noto_sans": "ui/chat_settings_menu_screen.json", + "typeface_dropdown_content/bottom_padding": "ui/chat_settings_menu_screen.json", + "typeface_dropdown": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/top_padding": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/0": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/1": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/2": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/3": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/4": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/5": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/6": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown_content/bottom_padding": "ui/chat_settings_menu_screen.json", + "colors_dropdown_base": "ui/chat_settings_menu_screen.json", + "chat_color_dropdown": "ui/chat_settings_menu_screen.json", + "mentions_color_dropdown": "ui/chat_settings_menu_screen.json", + "font_size_slider": "ui/chat_settings_menu_screen.json", + "line_spacing_slider": "ui/chat_settings_menu_screen.json", + "colored_icon_panel": "ui/chat_settings_menu_screen.json", + "colored_icon_panel/icon": "ui/chat_settings_menu_screen.json", + "colored_icon_panel/icon_overlay": "ui/chat_settings_menu_screen.json", + "paintbrush": "ui/chat_settings_menu_screen.json", + "line_break": "ui/chat_settings_menu_screen.json", + "line_break/line_break_image": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/font_size": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/chat_color": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": "ui/chat_settings_menu_screen.json", + "chat_settings_scrolling_content/chat_settings_content_area/reset_button": "ui/chat_settings_menu_screen.json", + "chat_setting_scrolling_panel": "ui/chat_settings_menu_screen.json", + "chat_settings_popup": "ui/chat_settings_menu_screen.json", + "popup_factory": "ui/chat_settings_menu_screen.json", + }, + "chest": { + "chest_label": "ui/chest_screen.json", + "chest_grid_item": "ui/chest_screen.json", + "small_chest_grid": "ui/chest_screen.json", + "large_chest_grid": "ui/chest_screen.json", + "small_chest_panel_top_half": "ui/chest_screen.json", + "small_chest_panel_top_half/chest_label": "ui/chest_screen.json", + "small_chest_panel_top_half/small_chest_grid": "ui/chest_screen.json", + "large_chest_panel_top_half": "ui/chest_screen.json", + "large_chest_panel_top_half/chest_label": "ui/chest_screen.json", + "large_chest_panel_top_half/large_chest_grid": "ui/chest_screen.json", + "small_chest_panel": "ui/chest_screen.json", + "small_chest_panel/container_gamepad_helpers": "ui/chest_screen.json", + "small_chest_panel/selected_item_details_factory": "ui/chest_screen.json", + "small_chest_panel/item_lock_notification_factory": "ui/chest_screen.json", + "small_chest_panel/root_panel": "ui/chest_screen.json", + "small_chest_panel/root_panel/common_panel": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/hotbar_grid": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": "ui/chest_screen.json", + "small_chest_panel/root_panel/chest_panel/flying_item_renderer": "ui/chest_screen.json", + "small_chest_panel/root_panel/inventory_selected_icon_button": "ui/chest_screen.json", + "small_chest_panel/root_panel/gamepad_cursor": "ui/chest_screen.json", + "selected_item_details": "ui/chest_screen.json", + "large_chest_panel": "ui/chest_screen.json", + "large_chest_panel/container_gamepad_helpers": "ui/chest_screen.json", + "large_chest_panel/selected_item_details_factory": "ui/chest_screen.json", + "large_chest_panel/item_lock_notification_factory": "ui/chest_screen.json", + "large_chest_panel/root_panel": "ui/chest_screen.json", + "large_chest_panel/root_panel/common_panel": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/hotbar_grid": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": "ui/chest_screen.json", + "large_chest_panel/root_panel/chest_panel/flying_item_renderer": "ui/chest_screen.json", + "large_chest_panel/root_panel/inventory_selected_icon_button": "ui/chest_screen.json", + "large_chest_panel/root_panel/gamepad_cursor": "ui/chest_screen.json", + "ender_chest_panel": "ui/chest_screen.json", + "shulker_box_panel": "ui/chest_screen.json", + "barrel_panel": "ui/chest_screen.json", + "small_chest_screen": "ui/chest_screen.json", + "large_chest_screen": "ui/chest_screen.json", + "ender_chest_screen": "ui/chest_screen.json", + "shulker_box_screen": "ui/chest_screen.json", + "barrel_screen": "ui/chest_screen.json", + }, + "choose_realm": { + "realm_screenshot": "ui/choose_realm_screen.json", + "realm_screenshot/picture": "ui/choose_realm_screen.json", + "realms_scroll_content": "ui/choose_realm_screen.json", + "realms_scroll_content/scrolling_panel": "ui/choose_realm_screen.json", + "realms_scroll_panel": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/padding_0": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/add_realm_button": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/ten_player_button": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/padding_1": "ui/choose_realm_screen.json", + "realms_scroll_panel/realms_stack_panel/two_player_button": "ui/choose_realm_screen.json", + "realms_world_item_grid": "ui/choose_realm_screen.json", + "realms_world_item": "ui/choose_realm_screen.json", + "realms_world_item/realms_world_item_button": "ui/choose_realm_screen.json", + "realms_world_item_button": "ui/choose_realm_screen.json", + "add_realm_button": "ui/choose_realm_screen.json", + "ten_player_button": "ui/choose_realm_screen.json", + "two_player_button": "ui/choose_realm_screen.json", + "realms_world_content_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realm_screenshot": "ui/choose_realm_screen.json", + "realms_world_content_panel/padding": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_text_area_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": "ui/choose_realm_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": "ui/choose_realm_screen.json", + "main_panel": "ui/choose_realm_screen.json", + "main_panel/progress_loading_bars": "ui/choose_realm_screen.json", + "main_panel/realms_scroll_content": "ui/choose_realm_screen.json", + "slots_scroll_panel": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel/padding_0": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel/choose_slot_text": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel/padding_1": "ui/choose_realm_screen.json", + "slots_scroll_panel/slots_stack_panel/slots_grid": "ui/choose_realm_screen.json", + "slots_grid": "ui/choose_realm_screen.json", + "slots_grid/slot_1": "ui/choose_realm_screen.json", + "slots_grid/padding_0": "ui/choose_realm_screen.json", + "slots_grid/slot_2": "ui/choose_realm_screen.json", + "slots_grid/padding_1": "ui/choose_realm_screen.json", + "slots_grid/slot_3": "ui/choose_realm_screen.json", + "slot_content_panel": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_top": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_top/plus_image": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_top/world_thumbnail": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/white_line_hover": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/world_text_panel": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/world_text_panel/background_green": "ui/choose_realm_screen.json", + "slot_content_panel/world_slot_bottom/world_text_panel/world_text": "ui/choose_realm_screen.json", + "slot_panel": "ui/choose_realm_screen.json", + "slot_panel/slots_scroll_content": "ui/choose_realm_screen.json", + "slot_panel/slots_scroll_content/scrolling_panel": "ui/choose_realm_screen.json", + "choose_realm_screen": "ui/choose_realm_screen.json", + "choose_realm_screen_content": "ui/choose_realm_screen.json", + "choose_realm_screen_content/realm_dialog": "ui/choose_realm_screen.json", + "choose_realm_screen_content/slot_dialog": "ui/choose_realm_screen.json", + "background": "ui/choose_realm_screen.json", + }, + "coin_purchase": { + "black_image": "ui/coin_purchase_screen.json", + "banner_fill": "ui/coin_purchase_screen.json", + "coins_stack_panel": "ui/coin_purchase_screen.json", + "coins_stack_panel/coin": "ui/coin_purchase_screen.json", + "coins_stack_panel/coin_padding": "ui/coin_purchase_screen.json", + "coins_stack_panel/text_padding": "ui/coin_purchase_screen.json", + "coins_stack_panel/text_padding/coins_without_bonus": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel/coin": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel/coin_padding": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel/text_padding": "ui/coin_purchase_screen.json", + "call_out_coins_stack_panel/text_padding/coins_without_bonus": "ui/coin_purchase_screen.json", + "button_content": "ui/coin_purchase_screen.json", + "button_content/bonus_coins_stack": "ui/coin_purchase_screen.json", + "button_content/call_out_background": "ui/coin_purchase_screen.json", + "button_content/call_out_background/bevel": "ui/coin_purchase_screen.json", + "call_out_button_content": "ui/coin_purchase_screen.json", + "call_out_button_content/call_out_header": "ui/coin_purchase_screen.json", + "call_out_button_content/call_out_bonus_coins_stack": "ui/coin_purchase_screen.json", + "call_out_button_content/call_out_background": "ui/coin_purchase_screen.json", + "call_out_button_content/call_out_background/call_out_border": "ui/coin_purchase_screen.json", + "call_out_header": "ui/coin_purchase_screen.json", + "call_out_header/call_out_banner": "ui/coin_purchase_screen.json", + "call_out_header/call_out_label": "ui/coin_purchase_screen.json", + "bonus_coins_stack": "ui/coin_purchase_screen.json", + "bonus_coins_stack/image_padding": "ui/coin_purchase_screen.json", + "bonus_coins_stack/image_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/image_panel/image": "ui/coin_purchase_screen.json", + "bonus_coins_stack/non_bonus_padding_0": "ui/coin_purchase_screen.json", + "bonus_coins_stack/price_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/price_panel/coins_stack_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/plus_label": "ui/coin_purchase_screen.json", + "bonus_coins_stack/plus_label/plus_label": "ui/coin_purchase_screen.json", + "bonus_coins_stack/non_bonus_padding_1": "ui/coin_purchase_screen.json", + "bonus_coins_stack/bonus_label_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/bonus_label_panel/bonus_label": "ui/coin_purchase_screen.json", + "bonus_coins_stack/padding_0": "ui/coin_purchase_screen.json", + "bonus_coins_stack/bonus_price_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/bonus_price_panel/coins_stack_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/padding_1": "ui/coin_purchase_screen.json", + "bonus_coins_stack/currency_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", + "bonus_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", + "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", + "bonus_coins_stack/padding_2": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/image_padding": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/image_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/image_panel/image": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/non_bonus_padding_0": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/price_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/plus_label": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/plus_label/plus_label": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/non_bonus_padding": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_label_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/padding_0": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/padding_1": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/currency_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", + "call_out_bonus_coins_stack/padding_2": "ui/coin_purchase_screen.json", + "price": "ui/coin_purchase_screen.json", + "offer_panel": "ui/coin_purchase_screen.json", + "call_out_offer_panel": "ui/coin_purchase_screen.json", + "offer_item": "ui/coin_purchase_screen.json", + "offer_item/offer_panel": "ui/coin_purchase_screen.json", + "offer_item/call_out_offer_panel": "ui/coin_purchase_screen.json", + "offer_grid_item": "ui/coin_purchase_screen.json", + "offer_grid_item/offer_item": "ui/coin_purchase_screen.json", + "not_enough_coins": "ui/coin_purchase_screen.json", + "faq_button": "ui/coin_purchase_screen.json", + "divider_panel": "ui/coin_purchase_screen.json", + "divider_panel/divider": "ui/coin_purchase_screen.json", + "coin_purchase_panel": "ui/coin_purchase_screen.json", + "coin_purchase_panel/padding_0": "ui/coin_purchase_screen.json", + "coin_purchase_panel/not_enough_coins_panel": "ui/coin_purchase_screen.json", + "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": "ui/coin_purchase_screen.json", + "coin_purchase_panel/padding_1": "ui/coin_purchase_screen.json", + "coin_purchase_panel/coin_purchase_grid": "ui/coin_purchase_screen.json", + "coin_purchase_panel/divider_panel": "ui/coin_purchase_screen.json", + "coin_purchase_panel/faq_button": "ui/coin_purchase_screen.json", + "main_panel": "ui/coin_purchase_screen.json", + "main_panel/coin_purchase_panel": "ui/coin_purchase_screen.json", + "main_panel/loading_background": "ui/coin_purchase_screen.json", + "main_panel/progress_loading_spinner": "ui/coin_purchase_screen.json", + "main_panel/no_offers_panel": "ui/coin_purchase_screen.json", + "background": "ui/coin_purchase_screen.json", + "bundle_description": "ui/coin_purchase_screen.json", + "bundle_description_left": "ui/coin_purchase_screen.json", + "bundle_description_center": "ui/coin_purchase_screen.json", + "bundle_description_right": "ui/coin_purchase_screen.json", + "bundle_coins_stack": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/text_stack": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/text_stack/title_label": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/text_stack/padding_1": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/text_stack/description_section_factory": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/thumbnail_panel": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": "ui/coin_purchase_screen.json", + "bundle_coins_stack/content_panel/padding_0": "ui/coin_purchase_screen.json", + "bundle_coins_stack/padding_0": "ui/coin_purchase_screen.json", + "bundle_coins_stack/currency_panel": "ui/coin_purchase_screen.json", + "bundle_coins_stack/currency_panel/currency_price_panel": "ui/coin_purchase_screen.json", + "bundle_coins_stack/currency_panel/currency_price_panel/price": "ui/coin_purchase_screen.json", + "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": "ui/coin_purchase_screen.json", + "bundle_coins_stack/padding_2": "ui/coin_purchase_screen.json", + "bundle_button_content": "ui/coin_purchase_screen.json", + "bundle_button_content/bundle_coins_stack": "ui/coin_purchase_screen.json", + "bundle_button_content/call_out_background": "ui/coin_purchase_screen.json", + "bundle_button_content/call_out_background/bevel": "ui/coin_purchase_screen.json", + "bundle_offer_panel": "ui/coin_purchase_screen.json", + "bundle_offer_item": "ui/coin_purchase_screen.json", + "bundle_offer_item/offer_panel": "ui/coin_purchase_screen.json", + "bundle_offer_grid_item": "ui/coin_purchase_screen.json", + "bundle_offer_grid_item/offer_item": "ui/coin_purchase_screen.json", + "bundle_stack_factory": "ui/coin_purchase_screen.json", + "bundle_factory_panel": "ui/coin_purchase_screen.json", + "bundle_factory_panel/bundle_stack_factory": "ui/coin_purchase_screen.json", + "bundle_panel": "ui/coin_purchase_screen.json", + "bundle_panel/progress_loading_spinner": "ui/coin_purchase_screen.json", + "bundle_panel/loading_background": "ui/coin_purchase_screen.json", + "bundle_panel/bundle_stack_factory": "ui/coin_purchase_screen.json", + }, + "command_block": { + "plus_icon": "ui/command_block_screen.json", + "paste_icon": "ui/command_block_screen.json", + "plus_button": "ui/command_block_screen.json", + "paste_button": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/icon_panel": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/spacer": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/label_panel": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/label_panel/label": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/arrow_panel": "ui/command_block_screen.json", + "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": "ui/command_block_screen.json", + "command_block_multiline_text_edit_box": "ui/command_block_screen.json", + "command_block_text_edit_box": "ui/command_block_screen.json", + "command_block_helper_stack": "ui/command_block_screen.json", + "command_block_helper_stack/offset": "ui/command_block_screen.json", + "command_block_helper_stack/text_": "ui/command_block_screen.json", + "previous_command_block_info_stack": "ui/command_block_screen.json", + "previous_command_block_info_stack/offset": "ui/command_block_screen.json", + "previous_command_block_info_stack/start_label": "ui/command_block_screen.json", + "previous_command_block_info_stack/offset1": "ui/command_block_screen.json", + "previous_command_block_info_stack/start_label_dynamic_text": "ui/command_block_screen.json", + "cancel_button": "ui/command_block_screen.json", + "blocktype_dropdown_content": "ui/command_block_screen.json", + "block_type_panel": "ui/command_block_screen.json", + "condition_dropdown_content": "ui/command_block_screen.json", + "condition_mode_panel": "ui/command_block_screen.json", + "redstone_dropdown_content": "ui/command_block_screen.json", + "redstone_mode_panel": "ui/command_block_screen.json", + "left_scrolling_panel": "ui/command_block_screen.json", + "left_scroll_panel_content": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset1": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset2": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset3": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset4": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/condition_mode_panel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset5": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset_tick_delay": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/tick_delay_text": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset7": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/cancel": "ui/command_block_screen.json", + "left_scroll_panel_content/content_stack_panel/offset8": "ui/command_block_screen.json", + "left_divider_content": "ui/command_block_screen.json", + "left_divider_content/left_scrolling_panel": "ui/command_block_screen.json", + "right_scrolling_panel": "ui/command_block_screen.json", + "right_scroll_panel_content": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/spacer1": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/spacer2": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": "ui/command_block_screen.json", + "right_scroll_panel_content/switch_warning_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/switch_warning_panel/switch_warning_label": "ui/command_block_screen.json", + "right_scroll_panel_content/self_label": "ui/command_block_screen.json", + "right_scroll_panel_content/self_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/nearest_player_label": "ui/command_block_screen.json", + "right_scroll_panel_content/nearest_player_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/random_player_label": "ui/command_block_screen.json", + "right_scroll_panel_content/random_player_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/all_players_label": "ui/command_block_screen.json", + "right_scroll_panel_content/all_players_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/all_entities_label": "ui/command_block_screen.json", + "right_scroll_panel_content/all_entities_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/nearest_label": "ui/command_block_screen.json", + "right_scroll_panel_content/nearest_label_offset": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/spacer": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": "ui/command_block_screen.json", + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": "ui/command_block_screen.json", + "right_scroll_panel_content/previous_block_type_text": "ui/command_block_screen.json", + "right_scroll_panel_content/offset4": "ui/command_block_screen.json", + "right_scroll_panel_content/previous_conditional_mode_text": "ui/command_block_screen.json", + "right_scroll_panel_content/offset5": "ui/command_block_screen.json", + "right_scroll_panel_content/previous_redstone_mode_text": "ui/command_block_screen.json", + "divider_content": "ui/command_block_screen.json", + "divider_content/left_side": "ui/command_block_screen.json", + "divider_content/right_side": "ui/command_block_screen.json", + "command_block_screen_content": "ui/command_block_screen.json", + "command_block_screen_content/background_divider": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/bg_image": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/dialog_divider": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": "ui/command_block_screen.json", + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": "ui/command_block_screen.json", + "command_block_screen_content/title": "ui/command_block_screen.json", + "command_block_screen_content/content": "ui/command_block_screen.json", + "command_block_screen_content/maximized_command_block_text": "ui/command_block_screen.json", + "right_divider_content": "ui/command_block_screen.json", + "right_divider_content/right_scrolling_panel": "ui/command_block_screen.json", + "command_block_screen": "ui/command_block_screen.json", + }, + "confirm_delete_account": { + "horizontal_divider": "ui/confirm_delete_account_screen.json", + "image_panel": "ui/confirm_delete_account_screen.json", + "image_panel/image": "ui/confirm_delete_account_screen.json", + "header_panel": "ui/confirm_delete_account_screen.json", + "header_panel/image_panel": "ui/confirm_delete_account_screen.json", + "header_panel/padding": "ui/confirm_delete_account_screen.json", + "header_panel/text_panel": "ui/confirm_delete_account_screen.json", + "header_panel/text_panel/header_text": "ui/confirm_delete_account_screen.json", + "header_panel/text_panel/padding_2": "ui/confirm_delete_account_screen.json", + "header_panel/text_panel/header_text_2": "ui/confirm_delete_account_screen.json", + "dialog_content": "ui/confirm_delete_account_screen.json", + "dialog_content/body_content": "ui/confirm_delete_account_screen.json", + "dialog_content/padding": "ui/confirm_delete_account_screen.json", + "dialog_content/button_panel": "ui/confirm_delete_account_screen.json", + "dialog_content/button_panel/confirm_delete_account_button": "ui/confirm_delete_account_screen.json", + "dialog_content/button_panel/padding": "ui/confirm_delete_account_screen.json", + "dialog_content/button_panel/cancel_delete_account_button": "ui/confirm_delete_account_screen.json", + "confirm_checkbox": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/check_box_wrapper": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/check_box_wrapper/check_box": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/padding": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/label_wrapper": "ui/confirm_delete_account_screen.json", + "confirm_checkbox/label_wrapper/label": "ui/confirm_delete_account_screen.json", + "scrolling_panel": "ui/confirm_delete_account_screen.json", + "description_label_panel": "ui/confirm_delete_account_screen.json", + "description_label_panel/header_label_wrapper": "ui/confirm_delete_account_screen.json", + "description_label_panel/padding": "ui/confirm_delete_account_screen.json", + "description_label_panel/divider_0": "ui/confirm_delete_account_screen.json", + "description_label_panel/confirm_0": "ui/confirm_delete_account_screen.json", + "description_label_panel/divider_1": "ui/confirm_delete_account_screen.json", + "description_label_panel/confirm_1": "ui/confirm_delete_account_screen.json", + "description_label_panel/divider_2": "ui/confirm_delete_account_screen.json", + "description_label_panel/confirm_2": "ui/confirm_delete_account_screen.json", + "description_label_panel/divider_3": "ui/confirm_delete_account_screen.json", + "description_label_panel/confirm_3": "ui/confirm_delete_account_screen.json", + "confirm_delete_account_screen": "ui/confirm_delete_account_screen.json", + "confirm_delete_account_screen_content": "ui/confirm_delete_account_screen.json", + "confirm_delete_account_screen_content/root_panel": "ui/confirm_delete_account_screen.json", + "confirm_delete_account_screen_content/root_panel/dialog": "ui/confirm_delete_account_screen.json", + "screen_dialog": "ui/confirm_delete_account_screen.json", + "background": "ui/confirm_delete_account_screen.json", + }, + "content_log": { + "content_log_label": "ui/content_log.json", + "content_log_grid_item": "ui/content_log.json", + "content_log_grid_item/content_log_background": "ui/content_log.json", + "content_log_grid_item/content_log_background/content_log_text": "ui/content_log.json", + "content_log_panel": "ui/content_log.json", + "content_log_panel/stack_panel": "ui/content_log.json", + }, + "content_log_history": { + "clipboard_icon": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/icon_panel": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/icon_panel/icon": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/offset": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/label_panel": "ui/content_log_history_screen.json", + "clipboard_icon_wrapper/stack_panel/label_panel/label": "ui/content_log_history_screen.json", + "clipboard_button": "ui/content_log_history_screen.json", + "clear_icon": "ui/content_log_history_screen.json", + "clear_icon_wrapper": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/icon_panel": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/icon_panel/icon": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/offset": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/label_panel": "ui/content_log_history_screen.json", + "clear_icon_wrapper/stack_panel/label_panel/label": "ui/content_log_history_screen.json", + "clear_button": "ui/content_log_history_screen.json", + "horizontal_button_stack_panel": "ui/content_log_history_screen.json", + "horizontal_button_stack_panel/clipboard_button": "ui/content_log_history_screen.json", + "horizontal_button_stack_panel/clear_button": "ui/content_log_history_screen.json", + "content_log_message": "ui/content_log_history_screen.json", + "content_log_message_panel": "ui/content_log_history_screen.json", + "content_log_message_panel/content_log_message": "ui/content_log_history_screen.json", + "content_log_message_panel_panel": "ui/content_log_history_screen.json", + "content_log_message_panel_panel/content_log_message_panel": "ui/content_log_history_screen.json", + "messages_stack_panel": "ui/content_log_history_screen.json", + "messages_scrolling_panel": "ui/content_log_history_screen.json", + "main_stack_panel": "ui/content_log_history_screen.json", + "main_stack_panel/messages_scrolling_panel": "ui/content_log_history_screen.json", + "content_log_history_panel": "ui/content_log_history_screen.json", + "content_log_history_panel/content_log_history_dialog": "ui/content_log_history_screen.json", + "content_log_history_screen": "ui/content_log_history_screen.json", + }, + "crafter_pocket": { + "generic_label": "ui/crafter_screen_pocket.json", + "header_panel": "ui/crafter_screen_pocket.json", + "header_panel/header_background": "ui/crafter_screen_pocket.json", + "header_panel/title_label": "ui/crafter_screen_pocket.json", + "header_area": "ui/crafter_screen_pocket.json", + "header_area/x": "ui/crafter_screen_pocket.json", + "header_area/inventory_header": "ui/crafter_screen_pocket.json", + "header_area/container_header": "ui/crafter_screen_pocket.json", + "dark_bg": "ui/crafter_screen_pocket.json", + "panel_outline": "ui/crafter_screen_pocket.json", + "background_panel": "ui/crafter_screen_pocket.json", + "inventory_panel": "ui/crafter_screen_pocket.json", + "inventory_panel/scrolling_panel": "ui/crafter_screen_pocket.json", + "left_screen": "ui/crafter_screen_pocket.json", + "left_screen/inventory_panel": "ui/crafter_screen_pocket.json", + "crafter_input_grid": "ui/crafter_screen_pocket.json", + "crafter_disabled_slot": "ui/crafter_screen_pocket.json", + "crafter_disabled_slot/default": "ui/crafter_screen_pocket.json", + "crafter_disabled_slot/hover": "ui/crafter_screen_pocket.json", + "crafter_disabled_slot/pressed": "ui/crafter_screen_pocket.json", + "cell_image": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot": "ui/crafter_screen_pocket.json", + "crafter_container_slot_button_prototype": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot_panel": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot_panel/highlight": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot_panel/highlight/hover_text": "ui/crafter_screen_pocket.json", + "crafter_highlight_slot_panel/white_border": "ui/crafter_screen_pocket.json", + "crafter_enabled_slot_template": "ui/crafter_screen_pocket.json", + "output_slot_hover_info": "ui/crafter_screen_pocket.json", + "output_slot_hover_info/hover": "ui/crafter_screen_pocket.json", + "output_slot_hover_info/output_slot": "ui/crafter_screen_pocket.json", + "output_slot_hover_info/output_slot_border": "ui/crafter_screen_pocket.json", + "output_slot_hover_info/output_count": "ui/crafter_screen_pocket.json", + "panel_crafter": "ui/crafter_screen_pocket.json", + "panel_crafter/item_lock_notification_factory": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_0_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_1_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_2_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_3_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_4_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_5_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_6_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_7_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/disabled_slot_8_button": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": "ui/crafter_screen_pocket.json", + "panel_crafter/root_panel/red_icon": "ui/crafter_screen_pocket.json", + "right_screen_background": "ui/crafter_screen_pocket.json", + "right_screen": "ui/crafter_screen_pocket.json", + "right_screen/right_screen_bg": "ui/crafter_screen_pocket.json", + "right_screen/right_screen_bg/inventory_panel": "ui/crafter_screen_pocket.json", + "panel": "ui/crafter_screen_pocket.json", + "panel/container_gamepad_helpers": "ui/crafter_screen_pocket.json", + "panel/header": "ui/crafter_screen_pocket.json", + "panel/bg": "ui/crafter_screen_pocket.json", + "panel/inventory": "ui/crafter_screen_pocket.json", + "panel/container": "ui/crafter_screen_pocket.json", + "panel/selected_item_details_factory": "ui/crafter_screen_pocket.json", + "panel/item_lock_notification_factory": "ui/crafter_screen_pocket.json", + "panel/gamepad_cursor": "ui/crafter_screen_pocket.json", + "panel/flying_item_renderer": "ui/crafter_screen_pocket.json", + "crafter": "ui/crafter_screen_pocket.json", + }, + "create_world_upsell": { + "world_icon": "ui/create_world_upsell_screen.json", + "realms_icon": "ui/create_world_upsell_screen.json", + "dark_banner": "ui/create_world_upsell_screen.json", + "grey_banner": "ui/create_world_upsell_screen.json", + "checkmark": "ui/create_world_upsell_screen.json", + "largex": "ui/create_world_upsell_screen.json", + "realms_art_icon": "ui/create_world_upsell_screen.json", + "new_world_button": "ui/create_world_upsell_screen.json", + "new_realm_button": "ui/create_world_upsell_screen.json", + "remove_trial_button": "ui/create_world_upsell_screen.json", + "button_content": "ui/create_world_upsell_screen.json", + "button_content/padding_0": "ui/create_world_upsell_screen.json", + "button_content/icon_panel": "ui/create_world_upsell_screen.json", + "button_content/padding_1": "ui/create_world_upsell_screen.json", + "button_content/label_panel": "ui/create_world_upsell_screen.json", + "realm_button_content": "ui/create_world_upsell_screen.json", + "world_button_content": "ui/create_world_upsell_screen.json", + "realms_button_text_panel": "ui/create_world_upsell_screen.json", + "realms_button_text_panel/new_realm_label": "ui/create_world_upsell_screen.json", + "realms_button_text_panel/new_realm_trial_label": "ui/create_world_upsell_screen.json", + "price_label": "ui/create_world_upsell_screen.json", + "new_realm_label": "ui/create_world_upsell_screen.json", + "new_realm_trial_label": "ui/create_world_upsell_screen.json", + "new_world_label": "ui/create_world_upsell_screen.json", + "button_and_price_panel": "ui/create_world_upsell_screen.json", + "button_and_price_panel/padding": "ui/create_world_upsell_screen.json", + "button_and_price_panel/price_label_panel": "ui/create_world_upsell_screen.json", + "button_and_price_panel/price_label_panel/price": "ui/create_world_upsell_screen.json", + "border_shell": "ui/create_world_upsell_screen.json", + "head_banner_panel": "ui/create_world_upsell_screen.json", + "create_new_realm_content": "ui/create_world_upsell_screen.json", + "create_new_realm_content/head_banner_panel": "ui/create_world_upsell_screen.json", + "create_new_realm_content/head_banner_panel/realm_button_price": "ui/create_world_upsell_screen.json", + "create_new_realm_content/realm_grid": "ui/create_world_upsell_screen.json", + "create_world_upsell_grid_item": "ui/create_world_upsell_screen.json", + "create_world_upsell_grid_item/db": "ui/create_world_upsell_screen.json", + "create_world_upsell_grid_item/gb": "ui/create_world_upsell_screen.json", + "create_world_upsell_grid_item/gp": "ui/create_world_upsell_screen.json", + "grid_panel": "ui/create_world_upsell_screen.json", + "grid_panel/padding": "ui/create_world_upsell_screen.json", + "grid_panel/upsell_text_panel": "ui/create_world_upsell_screen.json", + "grid_panel/upsell_text_panel/upsell_label": "ui/create_world_upsell_screen.json", + "create_new_world_content": "ui/create_world_upsell_screen.json", + "create_new_world_content/head_banner_panel": "ui/create_world_upsell_screen.json", + "create_new_world_content/head_banner_panel/world_button_price": "ui/create_world_upsell_screen.json", + "create_new_world_content/world_grid": "ui/create_world_upsell_screen.json", + "new_world_or_realm_scroll": "ui/create_world_upsell_screen.json", + "create_new_world_or_realm_content": "ui/create_world_upsell_screen.json", + "create_new_world_or_realm_content/world": "ui/create_world_upsell_screen.json", + "create_new_world_or_realm_content/padding": "ui/create_world_upsell_screen.json", + "create_new_world_or_realm_content/realm_content": "ui/create_world_upsell_screen.json", + "new_realm_scroll": "ui/create_world_upsell_screen.json", + "new_realm_content_panel": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/key_art_panel": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/key_art_panel/realms_art_icon": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/padding_hack": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/padding_0": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/new_realm_scroll": "ui/create_world_upsell_screen.json", + "new_realm_content_panel/padding_1": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content/realm_content": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content/padding_0": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content/remove_trial_button": "ui/create_world_upsell_screen.json", + "create_realm_upsell_content/padding_1": "ui/create_world_upsell_screen.json", + "realm_content": "ui/create_world_upsell_screen.json", + "create_world_upsell": "ui/create_world_upsell_screen.json", + "create_world_upsell_realms": "ui/create_world_upsell_screen.json", + "main_panel": "ui/create_world_upsell_screen.json", + "variable_screen_size_panel": "ui/create_world_upsell_screen.json", + "variable_screen_size_panel/dialog_0": "ui/create_world_upsell_screen.json", + "variable_screen_size_panel/dialog_1": "ui/create_world_upsell_screen.json", + "main_panel_realms_only": "ui/create_world_upsell_screen.json", + }, + "credits": { + "fade_in_image": "ui/credits_screen.json", + "fade_out_image": "ui/credits_screen.json", + "skip_panel": "ui/credits_screen.json", + "skip_panel/skip_button": "ui/credits_screen.json", + "skip_panel/exit_credits_input_panel": "ui/credits_screen.json", + "credits_renderer": "ui/credits_screen.json", + "credits_screen_content": "ui/credits_screen.json", + "credits_screen_content/credits_renderer": "ui/credits_screen.json", + "credits_screen_content/vignette_renderer": "ui/credits_screen.json", + "credits_screen_content/fade_in_image": "ui/credits_screen.json", + "credits_screen_content/credits_factory": "ui/credits_screen.json", + "credits_screen_content/whole_screen_input_panel": "ui/credits_screen.json", + "background": "ui/credits_screen.json", + "credits_screen": "ui/credits_screen.json", + }, + "csb_purchase_error": { + "csb_purchase_error_screen": "ui/csb_purchase_error_screen.json", + "purchase_error_screen_content": "ui/csb_purchase_error_screen.json", + "purchase_error_screen_content/main_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/text_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/text_panel/text": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/padding_1": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/art_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/art_panel/art": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/padding_2": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/error_panel": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/error_panel/error_code": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_main_panel/error_panel/correlation_id": "ui/csb_purchase_error_screen.json", + "purchase_error_modal_back_button": "ui/csb_purchase_error_screen.json", + }, + "csb": { + "csb_pdp_screen": "ui/csb_screen.json", + "csb_upgrade_notice_screen": "ui/csb_screen.json", + "csb_background": "ui/csb_screen.json", + "gradient_image_stack": "ui/csb_screen.json", + "gradient_image_stack/gradient": "ui/csb_screen.json", + "gradient_content_panel": "ui/csb_screen.json", + "gradient_content_panel/gradient": "ui/csb_screen.json", + "gradient_content_panel/particles": "ui/csb_screen.json", + "gradient_content_panel/content_panel": "ui/csb_screen.json", + "csb_screen_main_panel": "ui/csb_screen.json", + "csb_main_panel": "ui/csb_screen.json", + "csb_main_panel/root_panel": "ui/csb_screen.json", + "csb_main_panel/root_panel/main_panel": "ui/csb_screen.json", + "dialog_content": "ui/csb_screen.json", + "dialog_content/selector_area": "ui/csb_screen.json", + "dialog_content/padding_1": "ui/csb_screen.json", + "dialog_content/allow_divider_offset_panel": "ui/csb_screen.json", + "dialog_content/allow_divider_offset_panel/left_right_pane_divider": "ui/csb_screen.json", + "dialog_content/padding_2": "ui/csb_screen.json", + "dialog_content/content_area": "ui/csb_screen.json", + "dialog_content/padding_3": "ui/csb_screen.json", + "selector_area": "ui/csb_screen.json", + "selector_area/scrolling_panel": "ui/csb_screen.json", + "scrollable_selector_area_content": "ui/csb_screen.json", + "scrollable_selector_area_content/focus_reset_input_panel": "ui/csb_screen.json", + "scrollable_selector_area_content/csb_toggle": "ui/csb_screen.json", + "scrollable_selector_area_content/content_toggle": "ui/csb_screen.json", + "scrollable_selector_area_content/faq_toggle": "ui/csb_screen.json", + "scrollable_selector_area_content/toggle_section_divider": "ui/csb_screen.json", + "scrollable_selector_area_content/buy_now_toggle": "ui/csb_screen.json", + "scrollable_selector_area_content/xbl_btn_panel": "ui/csb_screen.json", + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": "ui/csb_screen.json", + "section_toggle_base": "ui/csb_screen.json", + "tab_button_text": "ui/csb_screen.json", + "toggle_base": "ui/csb_screen.json", + "toggle_base/toggle": "ui/csb_screen.json", + "toggle_base/padding": "ui/csb_screen.json", + "csb_toggle": "ui/csb_screen.json", + "content_toggle": "ui/csb_screen.json", + "faq_toggle": "ui/csb_screen.json", + "buy_now_toggle": "ui/csb_screen.json", + "left_right_pane_divider": "ui/csb_screen.json", + "content_area": "ui/csb_screen.json", + "content_area/control": "ui/csb_screen.json", + "content_area/control/scrolling_panel_csb": "ui/csb_screen.json", + "section_content_panels": "ui/csb_screen.json", + "vertical_padding_4px": "ui/csb_screen.json", + "section_base": "ui/csb_screen.json", + "buy_now_content_section": "ui/csb_screen.json", + "buy_now_content_section/vertical_padding": "ui/csb_screen.json", + "buy_now_content_section/content": "ui/csb_screen.json", + "markdown_background_animated": "ui/csb_screen.json", + "markdown_background_animated/csb_chevron": "ui/csb_screen.json", + "markdown_background": "ui/csb_screen.json", + "markdown_background/banner_panel": "ui/csb_screen.json", + "markdown_background/banner_panel/banner": "ui/csb_screen.json", + "markdown_background/banner_panel/banner/banner_stack_panel": "ui/csb_screen.json", + "markdown_background/banner_panel/banner/banner_stack_panel/0": "ui/csb_screen.json", + "markdown_background/triangle_panel": "ui/csb_screen.json", + "markdown_background/triangle_panel/triangle": "ui/csb_screen.json", + "empty_label": "ui/csb_screen.json", + "full_width_section_divider": "ui/csb_screen.json", + }, + "csb_content": { + "csb_content_section": "ui/csb_sections/content_section.json", + "csb_content_section/content_section_vertical_padding_1": "ui/csb_sections/content_section.json", + "csb_content_section/popular_packs_label_panel": "ui/csb_sections/content_section.json", + "csb_content_section/popular_packs_label_panel/label_with_gradient": "ui/csb_sections/content_section.json", + "csb_content_section/popular_packs_label_panel/tts_border": "ui/csb_sections/content_section.json", + "csb_content_section/content_section_vertical_padding_2": "ui/csb_sections/content_section.json", + "csb_content_section/content_pack_types": "ui/csb_sections/content_section.json", + "csb_content_section/content_packs_included": "ui/csb_sections/content_section.json", + "csb_content_section/content_section_vertical_padding_3": "ui/csb_sections/content_section.json", + "content_pack_types_section": "ui/csb_sections/content_section.json", + "content_pack_types_section/pack_types": "ui/csb_sections/content_section.json", + "content_pack_types_section/padding": "ui/csb_sections/content_section.json", + "content_packs_included_section": "ui/csb_sections/content_section.json", + "content_packs_included_section/popular_packs": "ui/csb_sections/content_section.json", + "content_packs_included_section/section_divider": "ui/csb_sections/content_section.json", + "pack_types": "ui/csb_sections/content_section.json", + "pack_types/padding_01": "ui/csb_sections/content_section.json", + "pack_types/pack_types_1": "ui/csb_sections/content_section.json", + "pack_types/padding_02": "ui/csb_sections/content_section.json", + "pack_types/pack_types_2": "ui/csb_sections/content_section.json", + "pack_types/padding_03": "ui/csb_sections/content_section.json", + "pack_types_1": "ui/csb_sections/content_section.json", + "pack_types_1/worlds": "ui/csb_sections/content_section.json", + "pack_types_1/padding_01": "ui/csb_sections/content_section.json", + "pack_types_1/textures": "ui/csb_sections/content_section.json", + "pack_types_1/padding_02": "ui/csb_sections/content_section.json", + "pack_types_1/persona": "ui/csb_sections/content_section.json", + "pack_types_2": "ui/csb_sections/content_section.json", + "pack_types_2/padding_1": "ui/csb_sections/content_section.json", + "pack_types_2/skins": "ui/csb_sections/content_section.json", + "pack_types_2/padding_2": "ui/csb_sections/content_section.json", + "pack_types_2/mashups": "ui/csb_sections/content_section.json", + "pack_types_2/padding_3": "ui/csb_sections/content_section.json", + "pack_type_description": "ui/csb_sections/content_section.json", + "pack_type_description/image_nesting_panel": "ui/csb_sections/content_section.json", + "pack_type_description/image_nesting_panel/texture": "ui/csb_sections/content_section.json", + "pack_type_description/padding_0": "ui/csb_sections/content_section.json", + "pack_type_description/description_nesting_panel": "ui/csb_sections/content_section.json", + "pack_type_description/description_nesting_panel/description_label": "ui/csb_sections/content_section.json", + "pack_type_description/description_nesting_panel/tts_border": "ui/csb_sections/content_section.json", + "pack_type_description/padding_1": "ui/csb_sections/content_section.json", + "popular_packs": "ui/csb_sections/content_section.json", + "popular_packs/padding_0": "ui/csb_sections/content_section.json", + "popular_packs/pack_grid": "ui/csb_sections/content_section.json", + "popular_packs/view_all_packs_panel": "ui/csb_sections/content_section.json", + "popular_packs/view_all_packs_panel/view_all_packs_button": "ui/csb_sections/content_section.json", + "popular_packs/view_all_packs_panel/padding": "ui/csb_sections/content_section.json", + "popular_packs/view_all_packs_panel/view_character_creator_items": "ui/csb_sections/content_section.json", + "popular_packs/padding_1": "ui/csb_sections/content_section.json", + "popular_packs_label": "ui/csb_sections/content_section.json", + "packs_collection": "ui/csb_sections/content_section.json", + "packs_collection/row_1": "ui/csb_sections/content_section.json", + "packs_collection/row_1/pack_image_grid_item_0": "ui/csb_sections/content_section.json", + "packs_collection/row_1/padding": "ui/csb_sections/content_section.json", + "packs_collection/row_1/pack_image_grid_item_1": "ui/csb_sections/content_section.json", + "packs_collection/padding_1": "ui/csb_sections/content_section.json", + "packs_collection/row_2": "ui/csb_sections/content_section.json", + "packs_collection/row_2/pack_image_grid_item_0": "ui/csb_sections/content_section.json", + "packs_collection/row_2/padding": "ui/csb_sections/content_section.json", + "packs_collection/row_2/pack_image_grid_item_1": "ui/csb_sections/content_section.json", + "packs_collection/padding_2": "ui/csb_sections/content_section.json", + "pack_image_grid_item": "ui/csb_sections/content_section.json", + "pack_image_grid_item/bg": "ui/csb_sections/content_section.json", + "pack_image_grid_item/bg/featured_key_art": "ui/csb_sections/content_section.json", + "pack_image_grid_item/bg/progress_loading": "ui/csb_sections/content_section.json", + "pack_image_grid_item/offer_button": "ui/csb_sections/content_section.json", + "pack_image_grid_item/offer_button/default": "ui/csb_sections/content_section.json", + "pack_image_grid_item/offer_button/hover": "ui/csb_sections/content_section.json", + "pack_image_grid_item/offer_button/pressed": "ui/csb_sections/content_section.json", + }, + "csb_banner": { + "csb_banner": "ui/csb_sections/csb_banner.json", + "csb_banner/static_button": "ui/csb_sections/csb_banner.json", + "csb_banner/animated_button": "ui/csb_sections/csb_banner.json", + "csb_banner_slim": "ui/csb_sections/csb_banner.json", + "csb_banner_slim/banner_button": "ui/csb_sections/csb_banner.json", + "csb_banner_portal": "ui/csb_sections/csb_banner.json", + "csb_banner_portal/banner_button": "ui/csb_sections/csb_banner.json", + "promo_banner_csb_button": "ui/csb_sections/csb_banner.json", + "promo_banner_csb_button/default": "ui/csb_sections/csb_banner.json", + "promo_banner_csb_button/hover": "ui/csb_sections/csb_banner.json", + "csb_banner_slim_content": "ui/csb_sections/csb_banner.json", + "csb_banner_slim_content/banner_content": "ui/csb_sections/csb_banner.json", + "csb_banner_portal_content": "ui/csb_sections/csb_banner.json", + "csb_banner_portal_content/banner_content": "ui/csb_sections/csb_banner.json", + "slim_logo_panel": "ui/csb_sections/csb_banner.json", + "slim_logo_panel/mpp_logo": "ui/csb_sections/csb_banner.json", + "portal_logo_panel": "ui/csb_sections/csb_banner.json", + "portal_logo_panel/mpp_logo": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text/logo_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text/offer_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text/offer_panel/upsell_text": "ui/csb_sections/csb_banner.json", + "csb_banner_new_content/text/pixel_art": "ui/csb_sections/csb_banner.json", + "sdl_upsell_text_component_factory": "ui/csb_sections/csb_banner.json", + "csb_banner_content": "ui/csb_sections/csb_banner.json", + "csb_banner_content/banner": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/logo_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/logo_panel/logo": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/offer_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/offer_panel/offer": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/learn_more_panel": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/learn_more_panel/learn_more": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/learn_more_panel/learn_more/more": "ui/csb_sections/csb_banner.json", + "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": "ui/csb_sections/csb_banner.json", + "animated_promo_banner_csb_button": "ui/csb_sections/csb_banner.json", + "animated_promo_banner_csb_button/default": "ui/csb_sections/csb_banner.json", + "animated_promo_banner_csb_button/hover": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/banner": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/logo_panel": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/logo_panel/logo": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/offer_panel": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/offer_panel/offer": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/learn_more_panel": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/learn_more_panel/learn_more": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/learn_more_panel/learn_more/more": "ui/csb_sections/csb_banner.json", + "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": "ui/csb_sections/csb_banner.json", + "still_pixel_art_panel": "ui/csb_sections/csb_banner.json", + "still_pixel_art_panel/banner": "ui/csb_sections/csb_banner.json", + "animated_pixel_art_panel": "ui/csb_sections/csb_banner.json", + "animated_pixel_art_panel/mygif": "ui/csb_sections/csb_banner.json", + "image_component_factory": "ui/csb_sections/csb_banner.json", + "image_asset_factory": "ui/csb_sections/csb_banner.json", + }, + "csb_buy": { + "buy_now_content": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/description_stack": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/terms_and_conditions": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/padding_2": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/button_panel": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/button_panel/buy_button": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/button_panel/icon_panel": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/padding_3": "ui/csb_sections/csb_buy_now_screen.json", + "buy_now_content/terms": "ui/csb_sections/csb_buy_now_screen.json", + "content_text_section": "ui/csb_sections/csb_buy_now_screen.json", + "content_text_section/text_description": "ui/csb_sections/csb_buy_now_screen.json", + "content_text_section/padding": "ui/csb_sections/csb_buy_now_screen.json", + "content_description": "ui/csb_sections/csb_buy_now_screen.json", + "content_description/content_description_label": "ui/csb_sections/csb_buy_now_screen.json", + "content_description/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/image_border": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/padding": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/description_text": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/description_text/descriptions_label": "ui/csb_sections/csb_buy_now_screen.json", + "trial_image_and_description/description_text/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", + "title_text": "ui/csb_sections/csb_buy_now_screen.json", + "title_text/inner_text": "ui/csb_sections/csb_buy_now_screen.json", + "title_text/tts_hover": "ui/csb_sections/csb_buy_now_screen.json", + "description_stack": "ui/csb_sections/csb_buy_now_screen.json", + "description_stack/title_with_gradient": "ui/csb_sections/csb_buy_now_screen.json", + "description_stack/padding": "ui/csb_sections/csb_buy_now_screen.json", + "description_stack/image_and_description": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions/terms_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/name_label": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/csb_sections/csb_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/csb_sections/csb_buy_now_screen.json", + "button_text": "ui/csb_sections/csb_buy_now_screen.json", + "mcten_text_centering_panel": "ui/csb_sections/csb_buy_now_screen.json", + "mcten_text_centering_panel/button_text": "ui/csb_sections/csb_buy_now_screen.json", + "view_terms_button": "ui/csb_sections/csb_buy_now_screen.json", + "privacy_policy_button": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_panel": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_panel/buy_button": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon/info_icon": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon/default": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon/hover": "ui/csb_sections/csb_buy_now_screen.json", + "tool_tip_icon_panel/issue_icon/pressed": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_content": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_content/button_chevron_panel": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_content/button_chevron_panel/buy_button_chevron": "ui/csb_sections/csb_buy_now_screen.json", + "buy_button_content/button_text_centering_panel": "ui/csb_sections/csb_buy_now_screen.json", + "info_icon": "ui/csb_sections/csb_buy_now_screen.json", + "info_icon/panel_icon": "ui/csb_sections/csb_buy_now_screen.json", + }, + "common_csb": { + "csb_expiration_banner": "ui/csb_sections/csb_common.json", + "csb_expiration_banner/background": "ui/csb_sections/csb_common.json", + "csb_expiration_banner/icon": "ui/csb_sections/csb_common.json", + "csb_expiration_banner/text": "ui/csb_sections/csb_common.json", + "csb_icon_large": "ui/csb_sections/csb_common.json", + "csb_header": "ui/csb_sections/csb_common.json", + "csb_header/label_a_text_csb": "ui/csb_sections/csb_common.json", + "csb_header/label_space_text_csb": "ui/csb_sections/csb_common.json", + "csb_header/label_b_text_pass": "ui/csb_sections/csb_common.json", + "csb_header_two_lines": "ui/csb_sections/csb_common.json", + "csb_header_two_lines/top_header": "ui/csb_sections/csb_common.json", + "csb_header_two_lines/panel_centre_second_line": "ui/csb_sections/csb_common.json", + "csb_header_two_lines/panel_centre_second_line/sub_header": "ui/csb_sections/csb_common.json", + "csb_gold_button": "ui/csb_sections/csb_common.json", + "csb_gold_text_button": "ui/csb_sections/csb_common.json", + }, + "csb_purchase_amazondevicewarning": { + "csb_purchase_amazondevicewarning_screen": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "screen_content": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "screen_content/main_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/text_panel_1": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/text_panel_1/text": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/art_panel": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/art_panel/art": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/padding": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/text_panel_2": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "main_panel/text_panel_2/text": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + "back_button": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", + }, + "csb_purchase_warning": { + "csb_purchase_warning_screen": "ui/csb_sections/csb_purchase_warning_screen.json", + "purchase_warning_screen_content": "ui/csb_sections/csb_purchase_warning_screen.json", + "purchase_warning_screen_content/main_panel": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel_1": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel_1/text": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/padding_1": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/art_panel": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/art_panel/art": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/padding_2": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel_2": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel_2/text": "ui/csb_sections/csb_purchase_warning_screen.json", + "warning_modal_back_button": "ui/csb_sections/csb_purchase_warning_screen.json", + }, + "csb_subscription_panel": { + "csb_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/fill": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/border": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_image_stack_left": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/padding_02": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/button_panel_spacer": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/csb_buttons": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/csb_buttons/button_panel_padding": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/csb_buttons/padding_01": "ui/csb_sections/csb_subscription_panel.json", + "csb_container/panel_contents/csb_buttons/csb_info_button": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit/bullet_holder_01": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit/bullet_holder_01/bullet_01": "ui/csb_sections/csb_subscription_panel.json", + "csb_marketplace_benefit/panel_details_ln1": "ui/csb_sections/csb_subscription_panel.json", + "csb_buy_container": "ui/csb_sections/csb_subscription_panel.json", + "csb_buy_container/csb_buy_button": "ui/csb_sections/csb_subscription_panel.json", + "csb_buy_button_text": "ui/csb_sections/csb_subscription_panel.json", + "csb_cancel_button": "ui/csb_sections/csb_subscription_panel.json", + }, + "csb_upsell": { + "csb_upsell_screen": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_compare_dialog": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/border": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/border": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half/header_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half/header_panel/top_header": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/padding_b": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/bullet_one": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/padding_0": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/bullet_two": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/padding_1": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_left_side_panel/bottom_half/bullet_three": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/marketing_banner": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/header_panel": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/header_panel/top_header": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/middle_spacer": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/padding_b": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/bullet_one": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/padding_1": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/bullet_two": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/padding_0": "ui/csb_sections/csb_upsell_dialog.json", + "csb_upsell_right_side_panel/bottom_half/bullet_three": "ui/csb_sections/csb_upsell_dialog.json", + "csb_big_padding": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_padding": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_padding/desktop": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_padding/pocket": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_desktop_padding": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_pocket_padding": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_left": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_vertical": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_vertical/padding_vertical": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_vertical/label_icon": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet/padding_icon_right": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_point": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_point/bullet_icon": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_point/label_text": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/bullet_icon": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/label_text": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/space": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/space/label_text_csb": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/csb_name": "ui/csb_sections/csb_upsell_dialog.json", + "csb_bullet_split_point/csb_name/csb_name_string": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price/price_details": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details/price_panel_1": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details/price_panel_1/amount": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details/price_panel_first_period": "ui/csb_sections/csb_upsell_dialog.json", + "csb_price_details/price_panel_first_period/second_line": "ui/csb_sections/csb_upsell_dialog.json", + "csb_learn_more": "ui/csb_sections/csb_upsell_dialog.json", + "csb_learn_more/learn_more": "ui/csb_sections/csb_upsell_dialog.json", + }, + "csb_packs": { + "view_all_packs_screen": "ui/csb_sections/csb_view_packs_screen.json", + "view_packs_screen_content": "ui/csb_sections/csb_view_packs_screen.json", + "view_packs_screen_content/main_panel": "ui/csb_sections/csb_view_packs_screen.json", + "csb_view_packs_screen_main_panel": "ui/csb_sections/csb_view_packs_screen.json", + "main_panel": "ui/csb_sections/csb_view_packs_screen.json", + "main_panel/offers": "ui/csb_sections/csb_view_packs_screen.json", + "main_panel/progress_loading": "ui/csb_sections/csb_view_packs_screen.json", + "scrolling_content_stack": "ui/csb_sections/csb_view_packs_screen.json", + "scrolling_content_stack/padding_0": "ui/csb_sections/csb_view_packs_screen.json", + "scrolling_content_stack/store_factory": "ui/csb_sections/csb_view_packs_screen.json", + }, + "csb_welcome": { + "csb_welcome_screen": "ui/csb_sections/csb_welcome_screen.json", + "welcome_screen_content": "ui/csb_sections/csb_welcome_screen.json", + "welcome_screen_content/main_panel": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/art_panel": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/art_panel/art": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/padding": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/text_panel": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_main_panel/text_panel/text": "ui/csb_sections/csb_welcome_screen.json", + "welcome_modal_continue_button": "ui/csb_sections/csb_welcome_screen.json", + }, + "csb_faq": { + "faq_bottom_button": "ui/csb_sections/faq_section.json", + "faq_image_section": "ui/csb_sections/faq_section.json", + "faq_image_section/faq_image": "ui/csb_sections/faq_section.json", + "faq_text_section_body": "ui/csb_sections/faq_section.json", + "faq_text_question": "ui/csb_sections/faq_section.json", + "faq_text_section": "ui/csb_sections/faq_section.json", + "faq_text_section/faq_text_question": "ui/csb_sections/faq_section.json", + "faq_text_section/faq_text_answer": "ui/csb_sections/faq_section.json", + "faq_price_bound_text_section": "ui/csb_sections/faq_section.json", + "faq_price_bound_text_section/faq_text_question": "ui/csb_sections/faq_section.json", + "faq_price_bound_text_section/faq_text_answer": "ui/csb_sections/faq_section.json", + "faq_question_body": "ui/csb_sections/faq_section.json", + "faq_question_body/0": "ui/csb_sections/faq_section.json", + "faq_question_body_stack": "ui/csb_sections/faq_section.json", + "faq_question_body_horz_padding": "ui/csb_sections/faq_section.json", + "image_left_faq_question_body": "ui/csb_sections/faq_section.json", + "image_right_faq_question_body": "ui/csb_sections/faq_section.json", + "image_left_faq_price_bound": "ui/csb_sections/faq_section.json", + "image_right_faq_price_bound": "ui/csb_sections/faq_section.json", + "faq_section_header_space": "ui/csb_sections/faq_section.json", + "faq_section_divider": "ui/csb_sections/faq_section.json", + "faq_content_section": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_section_vertical_padding_1": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_header": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_section_vertical_padding_2": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_1": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_1_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_2": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_2_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_3": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_3_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_4": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_4_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_5": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_5_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_6": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_6_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_7": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_7_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_8": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_8_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_9": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_9_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_10": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_question_10_divider": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_button": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_bottom_padding": "ui/csb_sections/faq_section.json", + "faq_content_section/faq_bottom_padding/bottom_left_particles": "ui/csb_sections/faq_section.json", + }, + "csb_landing": { + "landing_content_section": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_section_vertical_padding": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/title_stack": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/info_stack": "ui/csb_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", + "horizontal_small_spacer": "ui/csb_sections/landing_section.json", + "vertical_small_spacer": "ui/csb_sections/landing_section.json", + "vertical_large_spacer": "ui/csb_sections/landing_section.json", + "title_stack": "ui/csb_sections/landing_section.json", + "title_stack/title_image_panel": "ui/csb_sections/landing_section.json", + "title_stack/title_space": "ui/csb_sections/landing_section.json", + "title_stack/action_button": "ui/csb_sections/landing_section.json", + "title_stack/sign_in_button": "ui/csb_sections/landing_section.json", + "title_stack/vertical_space2": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel/label_with_gradient": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel/tts_hover": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel2": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel2/label_with_gradient2": "ui/csb_sections/landing_section.json", + "title_stack/gradient_panel2/tts_hover": "ui/csb_sections/landing_section.json", + "subscription_includes_text": "ui/csb_sections/landing_section.json", + "free_trial_text": "ui/csb_sections/landing_section.json", + "title_space": "ui/csb_sections/landing_section.json", + "title_image_panel": "ui/csb_sections/landing_section.json", + "title_image_panel/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", + "title_image_panel/title_image_container": "ui/csb_sections/landing_section.json", + "title_image_panel/title_image_container/title_image": "ui/csb_sections/landing_section.json", + "title_image_panel/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", + "info_stack": "ui/csb_sections/landing_section.json", + "info_stack/info_section_image": "ui/csb_sections/landing_section.json", + "info_stack/info_description_stack_retail": "ui/csb_sections/landing_section.json", + "info_description_stack_retail": "ui/csb_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1": "ui/csb_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": "ui/csb_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1/info_section_text_1": "ui/csb_sections/landing_section.json", + "info_section_stack": "ui/csb_sections/landing_section.json", + "info_section_image_with_border": "ui/csb_sections/landing_section.json", + "info_section_text_1": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_section_text": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_1": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_2": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_2": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_3": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_3": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_4": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_4": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_5": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_5": "ui/csb_sections/landing_section.json", + "info_section_text_1/info_text_bullet_6": "ui/csb_sections/landing_section.json", + "info_section_text_1/vertical_large_spacer_6": "ui/csb_sections/landing_section.json", + "info_section_text_2": "ui/csb_sections/landing_section.json", + "info_section_text_2/info_text_bullet_1": "ui/csb_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_0": "ui/csb_sections/landing_section.json", + "info_section_text_2/info_text_bullet_2": "ui/csb_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_1": "ui/csb_sections/landing_section.json", + "info_section_text_2/info_text_bullet_4": "ui/csb_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_3": "ui/csb_sections/landing_section.json", + "info_section_text_2/info_text_bullet_5": "ui/csb_sections/landing_section.json", + "info_section_text": "ui/csb_sections/landing_section.json", + "info_text_bullet": "ui/csb_sections/landing_section.json", + "info_text_bullet/info_text_bullet_bullet": "ui/csb_sections/landing_section.json", + "info_text_bullet/bullet_spacer": "ui/csb_sections/landing_section.json", + "info_text_bullet/info_text_bullet_body": "ui/csb_sections/landing_section.json", + "info_text_bullet/bullet_spacer_end": "ui/csb_sections/landing_section.json", + "info_text_unbulletted": "ui/csb_sections/landing_section.json", + "info_text_unbulletted/info_text_bullet_body": "ui/csb_sections/landing_section.json", + "info_text_body": "ui/csb_sections/landing_section.json", + "info_text_body/text_body": "ui/csb_sections/landing_section.json", + "info_text_body/tts_border": "ui/csb_sections/landing_section.json", + }, + "custom_templates": { + "lock_icon": "ui/custom_templates_screen.json", + "templates_scroll_content": "ui/custom_templates_screen.json", + "templates_scroll_content/scrolling_panel": "ui/custom_templates_screen.json", + "templates_scroll_panel": "ui/custom_templates_screen.json", + "templates_scroll_panel/templates_stack_panel": "ui/custom_templates_screen.json", + "templates_scroll_panel/templates_stack_panel/templates_item_grid": "ui/custom_templates_screen.json", + "templates_item_grid": "ui/custom_templates_screen.json", + "templates_item": "ui/custom_templates_screen.json", + "templates_item/template_item_button": "ui/custom_templates_screen.json", + "template_item_button": "ui/custom_templates_screen.json", + "template_content_panel": "ui/custom_templates_screen.json", + "template_content_panel/template_screenshot": "ui/custom_templates_screen.json", + "template_content_panel/template_text_panel": "ui/custom_templates_screen.json", + "template_content_panel/lock_panel": "ui/custom_templates_screen.json", + "template_content_panel/lock_panel/lock_icon": "ui/custom_templates_screen.json", + "template_screenshot": "ui/custom_templates_screen.json", + "template_screenshot/picture": "ui/custom_templates_screen.json", + "template_text_panel": "ui/custom_templates_screen.json", + "template_text_panel/text_indent": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/top_side": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/top_side/template_name": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/top_side/download_text_label": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/bottom_side": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/bottom_side/template_description": "ui/custom_templates_screen.json", + "template_text_panel/text_indent/bottom_side/template_version": "ui/custom_templates_screen.json", + "template_name": "ui/custom_templates_screen.json", + "template_download_text": "ui/custom_templates_screen.json", + "template_list_text": "ui/custom_templates_screen.json", + "template_description": "ui/custom_templates_screen.json", + "template_version": "ui/custom_templates_screen.json", + "main_panel": "ui/custom_templates_screen.json", + "main_panel/templates_scroll_content": "ui/custom_templates_screen.json", + "custom_templates_screen": "ui/custom_templates_screen.json", + "custom_templates_screen_content": "ui/custom_templates_screen.json", + "custom_templates_screen_content/dialog": "ui/custom_templates_screen.json", + "background": "ui/custom_templates_screen.json", + }, + "world_conversion_complete": { + "background": "ui/world_conversion_complete_screen.json", + "prompt_text": "ui/world_conversion_complete_screen.json", + "prompt_text/message": "ui/world_conversion_complete_screen.json", + "converted_world_preview_name": "ui/world_conversion_complete_screen.json", + "converted_world_preview_date": "ui/world_conversion_complete_screen.json", + "converted_world_preview_game_mode": "ui/world_conversion_complete_screen.json", + "converted_world_preview_filesize": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/top_side": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/bottom_side": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": "ui/world_conversion_complete_screen.json", + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content/converted_world_screenshot": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": "ui/world_conversion_complete_screen.json", + "converted_world_preview_panel/world_preview_content/converted_world_text_panel": "ui/world_conversion_complete_screen.json", + "main_panel": "ui/world_conversion_complete_screen.json", + "main_panel/padding_0": "ui/world_conversion_complete_screen.json", + "main_panel/prompt_1": "ui/world_conversion_complete_screen.json", + "main_panel/world_entry_container": "ui/world_conversion_complete_screen.json", + "main_panel/world_entry_container/world_entry_sizer": "ui/world_conversion_complete_screen.json", + "main_panel/world_entry_container/world_entry_sizer/world_entry": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer/buttons_panel": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer/buttons_panel/padding": "ui/world_conversion_complete_screen.json", + "main_panel/buttons_panel_sizer/buttons_panel/return_button": "ui/world_conversion_complete_screen.json", + "world_conversion_complete_screen_content": "ui/world_conversion_complete_screen.json", + "world_conversion_complete_screen_content/dialog": "ui/world_conversion_complete_screen.json", + "world_conversion_complete_screen": "ui/world_conversion_complete_screen.json", + }, + "day_one_experience_intro": { + "padding_horizontal": "ui/day_one_experience_intro_screen.json", + "padding_vertical": "ui/day_one_experience_intro_screen.json", + "label_panel": "ui/day_one_experience_intro_screen.json", + "label_panel/label_text": "ui/day_one_experience_intro_screen.json", + "text_panel": "ui/day_one_experience_intro_screen.json", + "text_panel/padding_00": "ui/day_one_experience_intro_screen.json", + "text_panel/tab_content_description_panel": "ui/day_one_experience_intro_screen.json", + "text_panel/padding_01": "ui/day_one_experience_intro_screen.json", + "dialog_image": "ui/day_one_experience_intro_screen.json", + "image_panel": "ui/day_one_experience_intro_screen.json", + "image_panel/dialog_image_with_border": "ui/day_one_experience_intro_screen.json", + "image_panel/focus_image": "ui/day_one_experience_intro_screen.json", + "top_tab": "ui/day_one_experience_intro_screen.json", + "common_tab_navigation_panel_layout": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/realms_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/welcome_tab_content": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/marketplace_tab_content": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/cross_platform_tab_content": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/realms_tab_content": "ui/day_one_experience_intro_screen.json", + "tab_header_image_panel/villager_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/welcome_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/marketplace_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/cross_platform_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/realms_tab_content": "ui/day_one_experience_intro_screen.json", + "tabbed_tab_content_panel_layout/villager_tab_content": "ui/day_one_experience_intro_screen.json", + "common_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "common_tab_header_image_panel/header_image": "ui/day_one_experience_intro_screen.json", + "common_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "common_tab_content_panel/content": "ui/day_one_experience_intro_screen.json", + "welcome_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "welcome_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "marketplace_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "marketplace_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "cross_platform_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "cross_platform_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "realms_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "realms_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "villager_tab_header_image_panel": "ui/day_one_experience_intro_screen.json", + "villager_tab_content_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel/tab_header_image": "ui/day_one_experience_intro_screen.json", + "tab_panel/padding_00": "ui/day_one_experience_intro_screen.json", + "tab_panel/tab_navigation_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel/tab_content_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel/padding_4": "ui/day_one_experience_intro_screen.json", + "tab_panel/continue_button_panel": "ui/day_one_experience_intro_screen.json", + "tab_panel/continue_button_panel/continue_button": "ui/day_one_experience_intro_screen.json", + "day_one_experience_intro_screen": "ui/day_one_experience_intro_screen.json", + "day_one_experience_intro_screen_content": "ui/day_one_experience_intro_screen.json", + "day_one_experience_intro_screen_content/welcome_dialog": "ui/day_one_experience_intro_screen.json", + }, + "day_one_experience": { + "alpha_scroll_background": "ui/day_one_experience_screen.json", + "tip_text": "ui/day_one_experience_screen.json", + "tip_arrow_base": "ui/day_one_experience_screen.json", + "tip_arrow_left": "ui/day_one_experience_screen.json", + "tip_arrow_right": "ui/day_one_experience_screen.json", + "import_time": "ui/day_one_experience_screen.json", + "skins_tip_image": "ui/day_one_experience_screen.json", + "skins_tip_image/arrows": "ui/day_one_experience_screen.json", + "skins_tip_image/arrows/right_arrow": "ui/day_one_experience_screen.json", + "skins_tip_image/arrows/padding": "ui/day_one_experience_screen.json", + "skins_tip_image/arrows/left_arrow": "ui/day_one_experience_screen.json", + "skins_tip_top_text": "ui/day_one_experience_screen.json", + "skins_tip_panel": "ui/day_one_experience_screen.json", + "skins_tip_panel/top_text_sizer": "ui/day_one_experience_screen.json", + "skins_tip_panel/top_text_sizer/settings_and_skin_text": "ui/day_one_experience_screen.json", + "skins_tip_panel/top_text_sizer/settings_text": "ui/day_one_experience_screen.json", + "skins_tip_panel/image_sizer": "ui/day_one_experience_screen.json", + "skins_tip_panel/image_sizer/image_section": "ui/day_one_experience_screen.json", + "skins_tip_panel/bottom_text_sizer": "ui/day_one_experience_screen.json", + "skins_tip_panel/bottom_text_sizer/bottom_text": "ui/day_one_experience_screen.json", + "skin_viewer_panel_text": "ui/day_one_experience_screen.json", + "skin_viewer_panel": "ui/day_one_experience_screen.json", + "skin_viewer_panel/paper_doll_container": "ui/day_one_experience_screen.json", + "skin_viewer_panel/paper_doll_container/paper_doll": "ui/day_one_experience_screen.json", + "skin_viewer_panel/legacy_skin_loading_panel": "ui/day_one_experience_screen.json", + "skin_viewer_panel/bottom_skin_text": "ui/day_one_experience_screen.json", + "skin_viewer_panel/bottom_skin_text/current_skin_text": "ui/day_one_experience_screen.json", + "skin_viewer_panel/bottom_skin_text/default_skin_text": "ui/day_one_experience_screen.json", + "skin_tip_screen": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skin_viewer_panel": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/padding": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skins_tip_panel_container": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skins_tip_panel_container/background": "ui/day_one_experience_screen.json", + "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": "ui/day_one_experience_screen.json", + "skin_tip_screen/no_network_message": "ui/day_one_experience_screen.json", + "legacy_world_item": "ui/day_one_experience_screen.json", + "legacy_world_item/header_button_panel": "ui/day_one_experience_screen.json", + "legacy_world_item_grid": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/padding_0": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/skip_button": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/padding_1": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/loading_legacy_worlds_panel": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/padding_2": "ui/day_one_experience_screen.json", + "world_picker_scrolling_content/world_item_grid": "ui/day_one_experience_screen.json", + "world_picker_content": "ui/day_one_experience_screen.json", + "world_picker_content/scrolling_panel": "ui/day_one_experience_screen.json", + "advanced_worlds_screen": "ui/day_one_experience_screen.json", + "advanced_worlds_screen/world_picker": "ui/day_one_experience_screen.json", + "advanced_worlds_screen/padding_1": "ui/day_one_experience_screen.json", + "advanced_worlds_screen/import_time_container": "ui/day_one_experience_screen.json", + "advanced_worlds_screen/import_time_container/import_time_label": "ui/day_one_experience_screen.json", + "next_screen_button_content": "ui/day_one_experience_screen.json", + "next_screen_button_content/arrow_panel": "ui/day_one_experience_screen.json", + "next_screen_button_content/arrow_panel/label_panel": "ui/day_one_experience_screen.json", + "next_screen_button_content/arrow_panel/label_panel/label": "ui/day_one_experience_screen.json", + "next_screen_button_content/arrow_panel/image": "ui/day_one_experience_screen.json", + "next_screen_button_content/loading_panel": "ui/day_one_experience_screen.json", + "next_screen_button": "ui/day_one_experience_screen.json", + "next_panel": "ui/day_one_experience_screen.json", + "next_panel/next_button": "ui/day_one_experience_screen.json", + "common_scrolling_panel": "ui/day_one_experience_screen.json", + "skin_tip_scroll_panel": "ui/day_one_experience_screen.json", + "skin_tip_scroll_panel/skin_tip_screen": "ui/day_one_experience_screen.json", + "worlds_import_scroll_panel": "ui/day_one_experience_screen.json", + "worlds_import_scroll_panel/advanced_screen": "ui/day_one_experience_screen.json", + "common_content": "ui/day_one_experience_screen.json", + "skin_tip_scroll_content": "ui/day_one_experience_screen.json", + "skin_tip_scroll_content/scrolling_panel": "ui/day_one_experience_screen.json", + "world_import_scroll_content": "ui/day_one_experience_screen.json", + "world_import_scroll_content/scrolling_panel": "ui/day_one_experience_screen.json", + "default_tab_content_panel_layout": "ui/day_one_experience_screen.json", + "default_tab_content_panel_layout/skin_tip_tab_content": "ui/day_one_experience_screen.json", + "default_tab_content_panel_layout/world_import_tab_content": "ui/day_one_experience_screen.json", + "default_wizard_screen": "ui/day_one_experience_screen.json", + "default_wizard_screen/tab_content_panel": "ui/day_one_experience_screen.json", + "wizard_screen": "ui/day_one_experience_screen.json", + "wizard_screen_content": "ui/day_one_experience_screen.json", + "wizard_screen_content/main_control": "ui/day_one_experience_screen.json", + "wizard_screen_content/next_button": "ui/day_one_experience_screen.json", + }, + "death": { + "a_button_panel": "ui/death_screen.json", + "a_button_panel/gamepad_helper_a": "ui/death_screen.json", + "you_died_panel": "ui/death_screen.json", + "you_died_panel/you_died_label": "ui/death_screen.json", + "death_reason_panel": "ui/death_screen.json", + "death_reason_panel/death_reason_label": "ui/death_screen.json", + "labels_panel": "ui/death_screen.json", + "labels_panel/fill_1": "ui/death_screen.json", + "labels_panel/you_died": "ui/death_screen.json", + "labels_panel/padd_1": "ui/death_screen.json", + "labels_panel/death_reason": "ui/death_screen.json", + "labels_panel/padd_2": "ui/death_screen.json", + "buttons_panel": "ui/death_screen.json", + "buttons_panel/padd_0": "ui/death_screen.json", + "buttons_panel/respawn_button": "ui/death_screen.json", + "buttons_panel/padd_1": "ui/death_screen.json", + "buttons_panel/main_menu_button": "ui/death_screen.json", + "buttons_panel/fill_2": "ui/death_screen.json", + "buttons_panel/select_button": "ui/death_screen.json", + "death_screen_content": "ui/death_screen.json", + "death_screen_content/death_screen_buttons_and_stuff": "ui/death_screen.json", + "death_screen_content/death_screen_buttons_and_stuff/labels_panel": "ui/death_screen.json", + "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": "ui/death_screen.json", + "death_screen_content/loading_label": "ui/death_screen.json", + "background_gradient": "ui/death_screen.json", + "death_screen": "ui/death_screen.json", + }, + "debug_screen": { + "access_button": "ui/debug_screen.json", + "special_render": "ui/debug_screen.json", + "content_panel": "ui/debug_screen.json", + "content_panel/access_button": "ui/debug_screen.json", + "content_panel/special_render": "ui/debug_screen.json", + "debug_screen": "ui/debug_screen.json", + }, + "dev_console": { + "keyboard_button_content": "ui/dev_console_screen.json", + "keyboard_button_content/keyboard_image": "ui/dev_console_screen.json", + "keyboard_button": "ui/dev_console_screen.json", + "button_content": "ui/dev_console_screen.json", + "button_content/image": "ui/dev_console_screen.json", + "up_arrow": "ui/dev_console_screen.json", + "down_arrow": "ui/dev_console_screen.json", + "send_button": "ui/dev_console_screen.json", + "sent_message_up_button": "ui/dev_console_screen.json", + "sent_message_down_button": "ui/dev_console_screen.json", + "chat_stack_panel": "ui/dev_console_screen.json", + "chat_stack_panel/text_box": "ui/dev_console_screen.json", + "chat_stack_panel/send_button": "ui/dev_console_screen.json", + "chat_stack_panel/sent_message_up_button": "ui/dev_console_screen.json", + "chat_stack_panel/sent_message_down_button": "ui/dev_console_screen.json", + "main_stack_panel": "ui/dev_console_screen.json", + "main_stack_panel/messages_scrolling_panel": "ui/dev_console_screen.json", + "main_stack_panel/chat_stack_panel": "ui/dev_console_screen.json", + "main_with_intellisense": "ui/dev_console_screen.json", + "main_with_intellisense/main_stack": "ui/dev_console_screen.json", + "main_with_intellisense/commands_panel": "ui/dev_console_screen.json", + "dev_console_dialog": "ui/dev_console_screen.json", + "dev_console_screen": "ui/dev_console_screen.json", + }, + "disconnect": { + "disconnect_screen_text": "ui/disconnect_screen.json", + "disconnect_text": "ui/disconnect_screen.json", + "disconnect_title_text": "ui/disconnect_screen.json", + "title_panel": "ui/disconnect_screen.json", + "title_panel/disconnect_title_text": "ui/disconnect_screen.json", + "title_panel/disconnect_text": "ui/disconnect_screen.json", + "menu_button_template": "ui/disconnect_screen.json", + "continue_button": "ui/disconnect_screen.json", + "check_store_button": "ui/disconnect_screen.json", + "exit_button": "ui/disconnect_screen.json", + "ok_button": "ui/disconnect_screen.json", + "open_uri_button": "ui/disconnect_screen.json", + "cancel_button": "ui/disconnect_screen.json", + "button_panel": "ui/disconnect_screen.json", + "button_panel/open_uri_button_panel": "ui/disconnect_screen.json", + "button_panel/open_uri_button_panel/open_uri_button": "ui/disconnect_screen.json", + "button_panel/open_button_panel": "ui/disconnect_screen.json", + "button_panel/open_button_panel/ok_button": "ui/disconnect_screen.json", + "gamepad_helpers": "ui/disconnect_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/disconnect_screen.json", + "disconnect_screen": "ui/disconnect_screen.json", + "disconnect_screen_content": "ui/disconnect_screen.json", + "disconnect_screen_content/title_panel": "ui/disconnect_screen.json", + "disconnect_screen_content/gamepad_helpers": "ui/disconnect_screen.json", + "spacing_gap": "ui/disconnect_screen.json", + "realms_disconnect_screen": "ui/disconnect_screen.json", + "realms_disconnect_button_panel": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/open_uri_button_panel": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": "ui/disconnect_screen.json", + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": "ui/disconnect_screen.json", + "realms_warning_screen": "ui/disconnect_screen.json", + "realms_warning_button_panel": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": "ui/disconnect_screen.json", + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": "ui/disconnect_screen.json", + "realms_warning_button_panel/realms_warning_button_gap": "ui/disconnect_screen.json", + "realms_warning_button_panel/cancel_button_panel": "ui/disconnect_screen.json", + "realms_warning_button_panel/cancel_button_panel/cancel_button": "ui/disconnect_screen.json", + "open_account_setting_button": "ui/disconnect_screen.json", + }, + "display_logged_error": { + "display_logged_error_screen": "ui/display_logged_error_screen.json", + "factory_panel": "ui/display_logged_error_screen.json", + "factory_panel/error_dialog_factory": "ui/display_logged_error_screen.json", + "display_logged_error_modal": "ui/display_logged_error_screen.json", + "error_message_stack": "ui/display_logged_error_screen.json", + "error_message_stack/error_message": "ui/display_logged_error_screen.json", + "error_message_stack/error_count": "ui/display_logged_error_screen.json", + "input_blocking_button_base": "ui/display_logged_error_screen.json", + "details_button": "ui/display_logged_error_screen.json", + "dismiss_button": "ui/display_logged_error_screen.json", + "error_details_modal": "ui/display_logged_error_screen.json", + "copy_path_button": "ui/display_logged_error_screen.json", + "hide_error_details_button": "ui/display_logged_error_screen.json", + "error_stack_scrolling_panel": "ui/display_logged_error_screen.json", + "error_stack": "ui/display_logged_error_screen.json", + "error_controller_panel": "ui/display_logged_error_screen.json", + "error_controller_panel/error_message": "ui/display_logged_error_screen.json", + "error_controller_panel/controller_button": "ui/display_logged_error_screen.json", + "error_controller_panel/controller_button/hover": "ui/display_logged_error_screen.json", + "error_controller_panel/controller_button/pressed": "ui/display_logged_error_screen.json", + "error_base": "ui/display_logged_error_screen.json", + "error_base/error_message": "ui/display_logged_error_screen.json", + "error_base/expand_button": "ui/display_logged_error_screen.json", + "error_short": "ui/display_logged_error_screen.json", + "error_expanded": "ui/display_logged_error_screen.json", + }, + "discovery_dialog": { + "service_body_label": "ui/edu_discovery_dialog.json", + "service_button": "ui/edu_discovery_dialog.json", + "service_buttons": "ui/edu_discovery_dialog.json", + "content": "ui/edu_discovery_dialog.json", + "content/body_text": "ui/edu_discovery_dialog.json", + "content/text_to_button_padding": "ui/edu_discovery_dialog.json", + "content/buttons": "ui/edu_discovery_dialog.json", + "service_dialog": "ui/edu_discovery_dialog.json", + "discovery_dialog_factory": "ui/edu_discovery_dialog.json", + }, + "edu_featured": { + "featured_button_content": "ui/edu_featured.json", + "featured_button_content/button_label": "ui/edu_featured.json", + "featured_button": "ui/edu_featured.json", + }, + "edu_quit_button": { + "quit_button": "ui/edu_pause_screen_pause_button.json", + }, + "persona_emote": { + "emote_wheel_screen": "ui/emote_wheel_screen.json", + "emote_wheel_touch_zone": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/top_padding": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/root_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/root_panel/emotes_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_padding": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/dressing_room_button_panel": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": "ui/emote_wheel_screen.json", + "emote_wheel_screen_content/bottom_padding": "ui/emote_wheel_screen.json", + "swap_emote_button": "ui/emote_wheel_screen.json", + }, + "enchanting": { + "enchanting_image": "ui/enchanting_screen.json", + "lapis_image": "ui/enchanting_screen.json", + "dust_image": "ui/enchanting_screen.json", + "dust_image_selectable": "ui/enchanting_screen.json", + "dust_image_unselectable": "ui/enchanting_screen.json", + "dust_template": "ui/enchanting_screen.json", + "dust_template/dust_image_selectable": "ui/enchanting_screen.json", + "dust_template/dust_image_unselectable": "ui/enchanting_screen.json", + "dust_panel": "ui/enchanting_screen.json", + "dust_panel/a": "ui/enchanting_screen.json", + "dust_panel/b": "ui/enchanting_screen.json", + "dust_panel/c": "ui/enchanting_screen.json", + "background_with_hover_text": "ui/enchanting_screen.json", + "background_with_hover_text/hover_text": "ui/enchanting_screen.json", + "dark_background": "ui/enchanting_screen.json", + "dark_background_with_hover_text": "ui/enchanting_screen.json", + "active_background": "ui/enchanting_screen.json", + "active_background_with_hover_text": "ui/enchanting_screen.json", + "enchant_runes": "ui/enchanting_screen.json", + "enchant_cost": "ui/enchanting_screen.json", + "success_runes": "ui/enchanting_screen.json", + "fail_runes": "ui/enchanting_screen.json", + "success_cost": "ui/enchanting_screen.json", + "fail_cost": "ui/enchanting_screen.json", + "enchanting_label": "ui/enchanting_screen.json", + "base_button": "ui/enchanting_screen.json", + "unselectable_button": "ui/enchanting_screen.json", + "unselectable_button/default": "ui/enchanting_screen.json", + "unselectable_button/hover": "ui/enchanting_screen.json", + "unselectable_button/pressed": "ui/enchanting_screen.json", + "unselectable_button/rune_text": "ui/enchanting_screen.json", + "unselectable_button/enchant_cost": "ui/enchanting_screen.json", + "selectable_button": "ui/enchanting_screen.json", + "selectable_button/default": "ui/enchanting_screen.json", + "selectable_button/hover": "ui/enchanting_screen.json", + "selectable_button/pressed": "ui/enchanting_screen.json", + "selectable_button/rune_text": "ui/enchanting_screen.json", + "selectable_button/enchant_cost": "ui/enchanting_screen.json", + "enchant_button_panel": "ui/enchanting_screen.json", + "enchant_button_panel/dark_background": "ui/enchanting_screen.json", + "enchant_button_panel/unselectable_button": "ui/enchanting_screen.json", + "enchant_button_panel/selectable_button": "ui/enchanting_screen.json", + "enchanting_panel_top_half": "ui/enchanting_screen.json", + "enchanting_panel_top_half/enchanting_label": "ui/enchanting_screen.json", + "enchanting_panel_top_half/enchanting_book_panel": "ui/enchanting_screen.json", + "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": "ui/enchanting_screen.json", + "enchanting_panel_top_half/item_grid": "ui/enchanting_screen.json", + "enchanting_panel_top_half/item_grid/item_slot": "ui/enchanting_screen.json", + "enchanting_panel_top_half/lapis_grid": "ui/enchanting_screen.json", + "enchanting_panel_top_half/lapis_grid/lapis": "ui/enchanting_screen.json", + "enchanting_panel_top_half/grid_panel": "ui/enchanting_screen.json", + "enchanting_panel_top_half/grid_panel/indent": "ui/enchanting_screen.json", + "enchanting_panel_top_half/grid_panel/dust_panel": "ui/enchanting_screen.json", + "enchanting_panel_top_half/grid_panel/enchantments_grid": "ui/enchanting_screen.json", + "enchanting_panel": "ui/enchanting_screen.json", + "enchanting_panel/container_gamepad_helpers": "ui/enchanting_screen.json", + "enchanting_panel/selected_item_details_factory": "ui/enchanting_screen.json", + "enchanting_panel/item_lock_notification_factory": "ui/enchanting_screen.json", + "enchanting_panel/root_panel": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/common_panel": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/inventory_selected_icon_button": "ui/enchanting_screen.json", + "enchanting_panel/root_panel/gamepad_cursor": "ui/enchanting_screen.json", + "enchanting_panel/flying_item_renderer": "ui/enchanting_screen.json", + "enchanting_screen": "ui/enchanting_screen.json", + }, + "enchanting_pocket": { + "generic_label": "ui/enchanting_screen_pocket.json", + "background_image": "ui/enchanting_screen_pocket.json", + "inventory_grid": "ui/enchanting_screen_pocket.json", + "inventory_content": "ui/enchanting_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/enchanting_screen_pocket.json", + "lapis_image": "ui/enchanting_screen_pocket.json", + "enchanting_slots_panel": "ui/enchanting_screen_pocket.json", + "enchanting_slots_panel/input_slot": "ui/enchanting_screen_pocket.json", + "enchanting_slots_panel/lapis_slot": "ui/enchanting_screen_pocket.json", + "enchant_text_runes": "ui/enchanting_screen_pocket.json", + "show_highlighted_slot_control": "ui/enchanting_screen_pocket.json", + "show_highlighted_hover_slot_control": "ui/enchanting_screen_pocket.json", + "inactive_background": "ui/enchanting_screen_pocket.json", + "unselectable_button": "ui/enchanting_screen_pocket.json", + "unselectable_button/default": "ui/enchanting_screen_pocket.json", + "unselectable_button/hover": "ui/enchanting_screen_pocket.json", + "unselectable_button/pressed": "ui/enchanting_screen_pocket.json", + "unselectable_button/enchant_cost": "ui/enchanting_screen_pocket.json", + "selectable_button": "ui/enchanting_screen_pocket.json", + "selectable_button/default": "ui/enchanting_screen_pocket.json", + "selectable_button/hover": "ui/enchanting_screen_pocket.json", + "selectable_button/pressed": "ui/enchanting_screen_pocket.json", + "selectable_button/enchant_cost": "ui/enchanting_screen_pocket.json", + "enchant_button_panel": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/inactive_background": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/unselectable_button": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/selectable_button": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/dust": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/rune_text": "ui/enchanting_screen_pocket.json", + "enchant_button_panel/highlight": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel/grid": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel/grid/button1": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel/grid/button2": "ui/enchanting_screen_pocket.json", + "enchant_selection_panel/grid/button3": "ui/enchanting_screen_pocket.json", + "item_renderer": "ui/enchanting_screen_pocket.json", + "confirm_default_control": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/default": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/hover": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/pressed": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/arrow_active": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/arrow_inactive": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/input_item_renderer": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_button/output_item_renderer": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_panel": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_panel/confirm": "ui/enchanting_screen_pocket.json", + "enchanting_confirm_panel/enchantment_hint_text": "ui/enchanting_screen_pocket.json", + "enchanting_book_contents_panel": "ui/enchanting_screen_pocket.json", + "enchanting_book_contents_panel/enchanting_book": "ui/enchanting_screen_pocket.json", + "enchanting_book_contents_panel/player_level_label": "ui/enchanting_screen_pocket.json", + "enchanting_book_contents_panel/level_label": "ui/enchanting_screen_pocket.json", + "enchanting_book_panel": "ui/enchanting_screen_pocket.json", + "enchanting_book_panel/enchanting_slots_panel": "ui/enchanting_screen_pocket.json", + "enchanting_slots_and_selection": "ui/enchanting_screen_pocket.json", + "enchanting_slots_and_selection/enchanting_slots_panel": "ui/enchanting_screen_pocket.json", + "enchanting_slots_and_selection/pad1": "ui/enchanting_screen_pocket.json", + "enchanting_slots_and_selection/enchant_selection_panel": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/fill1": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/enchanting_book_panel": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/pad1": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/enchanting_slots_and_selection": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/pad2": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/enchanting_confirm_panel": "ui/enchanting_screen_pocket.json", + "enchanting_contents_panel/fill2": "ui/enchanting_screen_pocket.json", + "header": "ui/enchanting_screen_pocket.json", + "header/header_background": "ui/enchanting_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/enchanting_screen_pocket.json", + "header/panel": "ui/enchanting_screen_pocket.json", + "header/panel/title_label": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel/inventory_half_screen": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel/enchanting_half_screen": "ui/enchanting_screen_pocket.json", + "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": "ui/enchanting_screen_pocket.json", + "header_and_content_stack_panel": "ui/enchanting_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/enchanting_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_enchanting_panel": "ui/enchanting_screen_pocket.json", + "error_text_panel": "ui/enchanting_screen_pocket.json", + "error_text_panel/item_text_label": "ui/enchanting_screen_pocket.json", + "enchanting_panel": "ui/enchanting_screen_pocket.json", + "enchanting_panel/bg": "ui/enchanting_screen_pocket.json", + "enchanting_panel/root_panel": "ui/enchanting_screen_pocket.json", + "enchanting_panel/header_and_content_stack_panel": "ui/enchanting_screen_pocket.json", + "enchanting_panel/container_gamepad_helpers": "ui/enchanting_screen_pocket.json", + "enchanting_panel/inventory_selected_icon_button": "ui/enchanting_screen_pocket.json", + "enchanting_panel/hold_icon": "ui/enchanting_screen_pocket.json", + "enchanting_panel/selected_item_details_factory": "ui/enchanting_screen_pocket.json", + "enchanting_panel/item_lock_notification_factory": "ui/enchanting_screen_pocket.json", + "enchanting_panel/flying_item_renderer": "ui/enchanting_screen_pocket.json", + }, + "encyclopedia": { + "encyclopedia_screen": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": "ui/encyclopedia_screen.json", + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/armor_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/banners_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/beacons_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/beds_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/blocks_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/chests_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/conduits_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/dyes_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/farming_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/fishing_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/jigsaw": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/mounts_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/navigation_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/pets_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/raids_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/ranching_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/tools_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/transportation_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/trading_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/weapons_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/anvil_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/furnace_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/loom_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/droppers_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/redstone_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/the_end_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/elytra_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/commands_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/addons_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/worlds_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/textures_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/skins_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/mashups_section": "ui/encyclopedia_screen.json", + "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": "ui/encyclopedia_screen.json", + "adventure_mode_button": "ui/encyclopedia_screen.json", + "adventure_mode_section": "ui/encyclopedia_screen.json", + "adventure_mode_section/paragraph_1": "ui/encyclopedia_screen.json", + "adventure_mode_section/padding_1": "ui/encyclopedia_screen.json", + "adventure_mode_section/paragraph_2": "ui/encyclopedia_screen.json", + "anvil_button": "ui/encyclopedia_screen.json", + "anvil_section": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_1": "ui/encyclopedia_screen.json", + "anvil_section/padding_1": "ui/encyclopedia_screen.json", + "anvil_section/header_1": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_2": "ui/encyclopedia_screen.json", + "anvil_section/padding_2": "ui/encyclopedia_screen.json", + "anvil_section/header_2": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_3": "ui/encyclopedia_screen.json", + "anvil_section/padding_3": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_4": "ui/encyclopedia_screen.json", + "anvil_section/padding_4": "ui/encyclopedia_screen.json", + "anvil_section/paragraph_5": "ui/encyclopedia_screen.json", + "armor_button": "ui/encyclopedia_screen.json", + "armor_section": "ui/encyclopedia_screen.json", + "armor_section/paragraph_1": "ui/encyclopedia_screen.json", + "armor_section/padding_1": "ui/encyclopedia_screen.json", + "armor_section/header_1": "ui/encyclopedia_screen.json", + "armor_section/paragraph_2": "ui/encyclopedia_screen.json", + "armor_section/padding_2": "ui/encyclopedia_screen.json", + "armor_section/paragraph_3": "ui/encyclopedia_screen.json", + "armor_section/padding_3": "ui/encyclopedia_screen.json", + "armor_section/paragraph_4": "ui/encyclopedia_screen.json", + "armor_section/padding_4": "ui/encyclopedia_screen.json", + "armor_section/header_2": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", + "armor_section/padding_5a_touch": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", + "armor_section/padding_5b_touch": "ui/encyclopedia_screen.json", + "armor_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", + "armor_section/padding_5": "ui/encyclopedia_screen.json", + "armor_section/paragraph_6": "ui/encyclopedia_screen.json", + "armor_section/padding_6": "ui/encyclopedia_screen.json", + "armor_section/header_3": "ui/encyclopedia_screen.json", + "armor_section/paragraph_7": "ui/encyclopedia_screen.json", + "armor_stand_button": "ui/encyclopedia_screen.json", + "armor_stand_section": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_1": "ui/encyclopedia_screen.json", + "armor_stand_section/padding_1": "ui/encyclopedia_screen.json", + "armor_stand_section/header_1": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "armor_stand_section/padding_2": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "armor_stand_section/padding_3": "ui/encyclopedia_screen.json", + "armor_stand_section/header_2": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "armor_stand_section/padding_4": "ui/encyclopedia_screen.json", + "armor_stand_section/header_3": "ui/encyclopedia_screen.json", + "armor_stand_section/paragraph_5": "ui/encyclopedia_screen.json", + "banners_button": "ui/encyclopedia_screen.json", + "banners_section": "ui/encyclopedia_screen.json", + "banners_section/paragraph_1": "ui/encyclopedia_screen.json", + "banners_section/padding_1": "ui/encyclopedia_screen.json", + "banners_section/paragraph_2": "ui/encyclopedia_screen.json", + "banners_section/padding_2": "ui/encyclopedia_screen.json", + "banners_section/header_1": "ui/encyclopedia_screen.json", + "banners_section/paragraph_3": "ui/encyclopedia_screen.json", + "banners_section/padding_3": "ui/encyclopedia_screen.json", + "banners_section/paragraph_4": "ui/encyclopedia_screen.json", + "banners_section/padding_4": "ui/encyclopedia_screen.json", + "banners_section/paragraph_5": "ui/encyclopedia_screen.json", + "banners_section/padding_5": "ui/encyclopedia_screen.json", + "banners_section/paragraph_6": "ui/encyclopedia_screen.json", + "banners_section/padding_6": "ui/encyclopedia_screen.json", + "banners_section/paragraph_7": "ui/encyclopedia_screen.json", + "banners_section/padding_7": "ui/encyclopedia_screen.json", + "banners_section/header_2": "ui/encyclopedia_screen.json", + "banners_section/paragraph_8": "ui/encyclopedia_screen.json", + "banners_section/padding_8": "ui/encyclopedia_screen.json", + "banners_section/header_3": "ui/encyclopedia_screen.json", + "banners_section/paragraph_9": "ui/encyclopedia_screen.json", + "beacons_button": "ui/encyclopedia_screen.json", + "beacons_section": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_1": "ui/encyclopedia_screen.json", + "beacons_section/padding_1": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_2": "ui/encyclopedia_screen.json", + "beacons_section/padding_2": "ui/encyclopedia_screen.json", + "beacons_section/header_1": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_3": "ui/encyclopedia_screen.json", + "beacons_section/padding_3": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_4": "ui/encyclopedia_screen.json", + "beacons_section/padding_4": "ui/encyclopedia_screen.json", + "beacons_section/header_2": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_5": "ui/encyclopedia_screen.json", + "beacons_section/padding_5": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_6": "ui/encyclopedia_screen.json", + "beacons_section/padding_6": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_7": "ui/encyclopedia_screen.json", + "beacons_section/padding_7": "ui/encyclopedia_screen.json", + "beacons_section/paragraph_8": "ui/encyclopedia_screen.json", + "conduits_button": "ui/encyclopedia_screen.json", + "conduits_section": "ui/encyclopedia_screen.json", + "conduits_section/paragraph_1": "ui/encyclopedia_screen.json", + "conduits_section/padding_1": "ui/encyclopedia_screen.json", + "conduits_section/paragraph_2": "ui/encyclopedia_screen.json", + "conduits_section/padding_2": "ui/encyclopedia_screen.json", + "conduits_section/header_1": "ui/encyclopedia_screen.json", + "conduits_section/paragraph_3": "ui/encyclopedia_screen.json", + "conduits_section/padding_3": "ui/encyclopedia_screen.json", + "conduits_section/paragraph_4": "ui/encyclopedia_screen.json", + "beds_button": "ui/encyclopedia_screen.json", + "beds_section": "ui/encyclopedia_screen.json", + "beds_section/paragraph_1": "ui/encyclopedia_screen.json", + "beds_section/padding_1": "ui/encyclopedia_screen.json", + "beds_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "beds_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "beds_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "beds_section/padding_2": "ui/encyclopedia_screen.json", + "beds_section/paragraph_3": "ui/encyclopedia_screen.json", + "beds_section/padding_3": "ui/encyclopedia_screen.json", + "beds_section/paragraph_4": "ui/encyclopedia_screen.json", + "beds_section/padding_4": "ui/encyclopedia_screen.json", + "beds_section/paragraph_5": "ui/encyclopedia_screen.json", + "blocks_button": "ui/encyclopedia_screen.json", + "blocks_section": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_1": "ui/encyclopedia_screen.json", + "blocks_section/padding_1": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_2": "ui/encyclopedia_screen.json", + "blocks_section/padding_2": "ui/encyclopedia_screen.json", + "blocks_section/header_1": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_3": "ui/encyclopedia_screen.json", + "blocks_section/padding_3": "ui/encyclopedia_screen.json", + "blocks_section/header_2": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_4": "ui/encyclopedia_screen.json", + "blocks_section/padding_4": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_5": "ui/encyclopedia_screen.json", + "blocks_section/padding_5": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_6": "ui/encyclopedia_screen.json", + "blocks_section/padding_6": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_7": "ui/encyclopedia_screen.json", + "blocks_section/padding_7": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_8": "ui/encyclopedia_screen.json", + "blocks_section/padding_8": "ui/encyclopedia_screen.json", + "blocks_section/paragraph_9": "ui/encyclopedia_screen.json", + "book_and_quill_button": "ui/encyclopedia_screen.json", + "book_and_quill_section": "ui/encyclopedia_screen.json", + "book_and_quill_section/paragraph_1": "ui/encyclopedia_screen.json", + "brewing_stand_button": "ui/encyclopedia_screen.json", + "brewing_stand_section": "ui/encyclopedia_screen.json", + "brewing_stand_section/paragraph_1": "ui/encyclopedia_screen.json", + "brewing_stand_section/padding_1": "ui/encyclopedia_screen.json", + "brewing_stand_section/header_1": "ui/encyclopedia_screen.json", + "brewing_stand_section/paragraph_2": "ui/encyclopedia_screen.json", + "brewing_stand_section/padding_2": "ui/encyclopedia_screen.json", + "brewing_stand_section/header_2": "ui/encyclopedia_screen.json", + "brewing_stand_section/paragraph_3": "ui/encyclopedia_screen.json", + "brewing_stand_section/padding_3": "ui/encyclopedia_screen.json", + "brewing_stand_section/paragraph_4": "ui/encyclopedia_screen.json", + "cauldron_button": "ui/encyclopedia_screen.json", + "cauldron_section": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_1": "ui/encyclopedia_screen.json", + "cauldron_section/padding_1": "ui/encyclopedia_screen.json", + "cauldron_section/header_1": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "cauldron_section/padding_2": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_3": "ui/encyclopedia_screen.json", + "cauldron_section/padding_3": "ui/encyclopedia_screen.json", + "cauldron_section/header_2": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "cauldron_section/padding_4": "ui/encyclopedia_screen.json", + "cauldron_section/header_3": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_5_touch": "ui/encyclopedia_screen.json", + "cauldron_section/padding_5": "ui/encyclopedia_screen.json", + "cauldron_section/paragraph_6": "ui/encyclopedia_screen.json", + "chests_button": "ui/encyclopedia_screen.json", + "chests_section": "ui/encyclopedia_screen.json", + "chests_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", + "chests_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", + "chests_section/paragraph_1_touch": "ui/encyclopedia_screen.json", + "chests_section/padding_1": "ui/encyclopedia_screen.json", + "chests_section/paragraph_2": "ui/encyclopedia_screen.json", + "chests_section/padding_2": "ui/encyclopedia_screen.json", + "chests_section/paragraph_3": "ui/encyclopedia_screen.json", + "command_blocks_button": "ui/encyclopedia_screen.json", + "command_blocks_section": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_1": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_2": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_3": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_4": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_5_1": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_5_2": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_5_3": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_5": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_6_1": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_6_2": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_6": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_7_1": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_7_2": "ui/encyclopedia_screen.json", + "command_blocks_section/padding_7": "ui/encyclopedia_screen.json", + "command_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", + "commands_button": "ui/encyclopedia_screen.json", + "commands_section": "ui/encyclopedia_screen.json", + "commands_section/paragraph_1": "ui/encyclopedia_screen.json", + "commands_section/padding_1": "ui/encyclopedia_screen.json", + "commands_section/paragraph_2": "ui/encyclopedia_screen.json", + "crafting_table_button": "ui/encyclopedia_screen.json", + "crafting_table_section": "ui/encyclopedia_screen.json", + "crafting_table_section/paragraph_1": "ui/encyclopedia_screen.json", + "crafting_table_section/padding_1": "ui/encyclopedia_screen.json", + "crafting_table_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "crafting_table_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "crafting_table_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "creative_mode_button": "ui/encyclopedia_screen.json", + "creative_mode_section": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_1": "ui/encyclopedia_screen.json", + "creative_mode_section/padding_1": "ui/encyclopedia_screen.json", + "creative_mode_section/header_1": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_2": "ui/encyclopedia_screen.json", + "creative_mode_section/padding_2": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_3": "ui/encyclopedia_screen.json", + "creative_mode_section/padding_3": "ui/encyclopedia_screen.json", + "creative_mode_section/header_2": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4a_touch_joystick_tap": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4a_touch_classic_dpad": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4a_touch_joystick_crosshair": "ui/encyclopedia_screen.json", + "creative_mode_section/padding_4a_touch": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4b_touch_joystick_tap": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4b_touch_classic_dpad": "ui/encyclopedia_screen.json", + "creative_mode_section/paragraph_4b_touch_joystick_crosshair": "ui/encyclopedia_screen.json", + "difficulty_button": "ui/encyclopedia_screen.json", + "difficulty_section": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_1": "ui/encyclopedia_screen.json", + "difficulty_section/padding_1": "ui/encyclopedia_screen.json", + "difficulty_section/header_1": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_2": "ui/encyclopedia_screen.json", + "difficulty_section/padding_2": "ui/encyclopedia_screen.json", + "difficulty_section/header_2": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_3": "ui/encyclopedia_screen.json", + "difficulty_section/padding_3": "ui/encyclopedia_screen.json", + "difficulty_section/header_3": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_4": "ui/encyclopedia_screen.json", + "difficulty_section/padding_4": "ui/encyclopedia_screen.json", + "difficulty_section/header_4": "ui/encyclopedia_screen.json", + "difficulty_section/paragraph_5": "ui/encyclopedia_screen.json", + "dispensers_button": "ui/encyclopedia_screen.json", + "dispensers_section": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_1": "ui/encyclopedia_screen.json", + "dispensers_section/padding_1": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "dispensers_section/padding_2": "ui/encyclopedia_screen.json", + "dispensers_section/header_1": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_3": "ui/encyclopedia_screen.json", + "dispensers_section/padding_3": "ui/encyclopedia_screen.json", + "dispensers_section/paragraph_4": "ui/encyclopedia_screen.json", + "droppers_button": "ui/encyclopedia_screen.json", + "droppers_section": "ui/encyclopedia_screen.json", + "droppers_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", + "droppers_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", + "droppers_section/paragraph_1_touch": "ui/encyclopedia_screen.json", + "droppers_section/padding_1": "ui/encyclopedia_screen.json", + "droppers_section/header_1": "ui/encyclopedia_screen.json", + "droppers_section/paragraph_2": "ui/encyclopedia_screen.json", + "dyes_button": "ui/encyclopedia_screen.json", + "dyes_section": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_1": "ui/encyclopedia_screen.json", + "dyes_section/padding_1": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_2": "ui/encyclopedia_screen.json", + "dyes_section/padding_2": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_3": "ui/encyclopedia_screen.json", + "dyes_section/padding_3": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_4": "ui/encyclopedia_screen.json", + "dyes_section/padding_4": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_5": "ui/encyclopedia_screen.json", + "dyes_section/padding_5": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_6": "ui/encyclopedia_screen.json", + "dyes_section/padding_6": "ui/encyclopedia_screen.json", + "dyes_section/paragraph_7": "ui/encyclopedia_screen.json", + "elytra_button": "ui/encyclopedia_screen.json", + "elytra_section": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_1": "ui/encyclopedia_screen.json", + "elytra_section/padding_1": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_2": "ui/encyclopedia_screen.json", + "elytra_section/padding_2": "ui/encyclopedia_screen.json", + "elytra_section/header_1": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "elytra_section/padding_3": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_4": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "elytra_section/padding_4": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_5": "ui/encyclopedia_screen.json", + "elytra_section/padding_5": "ui/encyclopedia_screen.json", + "elytra_section/header_2": "ui/encyclopedia_screen.json", + "elytra_section/paragraph_6": "ui/encyclopedia_screen.json", + "enchanting_table_button": "ui/encyclopedia_screen.json", + "enchanting_table_section": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_1": "ui/encyclopedia_screen.json", + "enchanting_table_section/padding_1": "ui/encyclopedia_screen.json", + "enchanting_table_section/header_1": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_2": "ui/encyclopedia_screen.json", + "enchanting_table_section/padding_2": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_3": "ui/encyclopedia_screen.json", + "enchanting_table_section/padding_3": "ui/encyclopedia_screen.json", + "enchanting_table_section/header_2": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_4": "ui/encyclopedia_screen.json", + "enchanting_table_section/padding_4": "ui/encyclopedia_screen.json", + "enchanting_table_section/header_3": "ui/encyclopedia_screen.json", + "enchanting_table_section/paragraph_5": "ui/encyclopedia_screen.json", + "end_cities_button": "ui/encyclopedia_screen.json", + "end_cities_section": "ui/encyclopedia_screen.json", + "end_cities_section/paragraph_1": "ui/encyclopedia_screen.json", + "end_cities_section/padding_1": "ui/encyclopedia_screen.json", + "end_cities_section/paragraph_2": "ui/encyclopedia_screen.json", + "eye_of_ender_button": "ui/encyclopedia_screen.json", + "eye_of_ender_section": "ui/encyclopedia_screen.json", + "eye_of_ender_section/paragraph_1": "ui/encyclopedia_screen.json", + "eye_of_ender_section/padding_1": "ui/encyclopedia_screen.json", + "eye_of_ender_section/paragraph_2": "ui/encyclopedia_screen.json", + "farming_button": "ui/encyclopedia_screen.json", + "farming_section": "ui/encyclopedia_screen.json", + "farming_section/paragraph_1": "ui/encyclopedia_screen.json", + "farming_section/padding_1": "ui/encyclopedia_screen.json", + "farming_section/header_1": "ui/encyclopedia_screen.json", + "farming_section/paragraph_2": "ui/encyclopedia_screen.json", + "farming_section/padding_2": "ui/encyclopedia_screen.json", + "farming_section/paragraph_3": "ui/encyclopedia_screen.json", + "farming_section/padding_3": "ui/encyclopedia_screen.json", + "farming_section/header_2": "ui/encyclopedia_screen.json", + "farming_section/paragraph_4": "ui/encyclopedia_screen.json", + "farming_section/padding_4": "ui/encyclopedia_screen.json", + "farming_section/paragraph_5": "ui/encyclopedia_screen.json", + "farming_section/padding_5": "ui/encyclopedia_screen.json", + "farming_section/paragraph_6": "ui/encyclopedia_screen.json", + "farming_section/padding_6": "ui/encyclopedia_screen.json", + "farming_section/paragraph_7": "ui/encyclopedia_screen.json", + "fireworks_button": "ui/encyclopedia_screen.json", + "fireworks_section": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_1": "ui/encyclopedia_screen.json", + "fireworks_section/padding_1": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_2": "ui/encyclopedia_screen.json", + "fireworks_section/padding_2": "ui/encyclopedia_screen.json", + "fireworks_section/header_1": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "fireworks_section/padding_3": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_4": "ui/encyclopedia_screen.json", + "fireworks_section/padding_4": "ui/encyclopedia_screen.json", + "fireworks_section/header_2": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_5": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5a": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_1": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5b": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_2": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5c": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_3": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5d": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_4": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5e": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_5": "ui/encyclopedia_screen.json", + "fireworks_section/padding_5f": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_6_6": "ui/encyclopedia_screen.json", + "fireworks_section/padding_6": "ui/encyclopedia_screen.json", + "fireworks_section/header_3": "ui/encyclopedia_screen.json", + "fireworks_section/paragraph_7": "ui/encyclopedia_screen.json", + "jigsaw_blocks_button": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_1": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/header_1": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_2": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/header_2": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_3": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_4": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_5": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_6": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_7": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/padding_8": "ui/encyclopedia_screen.json", + "jigsaw_blocks_section/paragraph_9": "ui/encyclopedia_screen.json", + "fishing_button": "ui/encyclopedia_screen.json", + "fishing_section": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_1": "ui/encyclopedia_screen.json", + "fishing_section/padding_1": "ui/encyclopedia_screen.json", + "fishing_section/header_1": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "fishing_section/padding_2": "ui/encyclopedia_screen.json", + "fishing_section/header_2": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_3": "ui/encyclopedia_screen.json", + "fishing_section/padding_3": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_4_keyboard": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_4_gamepad": "ui/encyclopedia_screen.json", + "fishing_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "furnace_button": "ui/encyclopedia_screen.json", + "furnace_section": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_1": "ui/encyclopedia_screen.json", + "furnace_section/padding_1": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_2_keyboard": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_2_gamepad": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "furnace_section/padding_2": "ui/encyclopedia_screen.json", + "furnace_section/paragraph_3": "ui/encyclopedia_screen.json", + "game_settings_button": "ui/encyclopedia_screen.json", + "game_settings_section": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_1": "ui/encyclopedia_screen.json", + "game_settings_section/padding_1": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_2": "ui/encyclopedia_screen.json", + "game_settings_section/padding_2": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_3": "ui/encyclopedia_screen.json", + "game_settings_section/padding_3": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_4": "ui/encyclopedia_screen.json", + "game_settings_section/padding_4": "ui/encyclopedia_screen.json", + "game_settings_section/header_1": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_5": "ui/encyclopedia_screen.json", + "game_settings_section/padding_5": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_6": "ui/encyclopedia_screen.json", + "game_settings_section/padding_6": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_7": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_7_1": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_7_2": "ui/encyclopedia_screen.json", + "game_settings_section/padding_7": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_8": "ui/encyclopedia_screen.json", + "game_settings_section/padding_8": "ui/encyclopedia_screen.json", + "game_settings_section/header_2": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_9": "ui/encyclopedia_screen.json", + "game_settings_section/padding_9": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_10": "ui/encyclopedia_screen.json", + "game_settings_section/padding_10": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_11": "ui/encyclopedia_screen.json", + "game_settings_section/padding_11": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_12": "ui/encyclopedia_screen.json", + "game_settings_section/padding_12": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_13": "ui/encyclopedia_screen.json", + "game_settings_section/padding_13": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_14": "ui/encyclopedia_screen.json", + "game_settings_section/padding_14": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_15": "ui/encyclopedia_screen.json", + "game_settings_section/padding_15": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_16": "ui/encyclopedia_screen.json", + "game_settings_section/padding_16": "ui/encyclopedia_screen.json", + "game_settings_section/paragraph_17": "ui/encyclopedia_screen.json", + "hoppers_button": "ui/encyclopedia_screen.json", + "hoppers_section": "ui/encyclopedia_screen.json", + "hoppers_section/paragraph_1": "ui/encyclopedia_screen.json", + "hoppers_section/padding_1": "ui/encyclopedia_screen.json", + "hoppers_section/paragraph_2": "ui/encyclopedia_screen.json", + "hoppers_section/padding_2": "ui/encyclopedia_screen.json", + "hoppers_section/header_1": "ui/encyclopedia_screen.json", + "hoppers_section/paragraph_3": "ui/encyclopedia_screen.json", + "hoppers_section/padding_3": "ui/encyclopedia_screen.json", + "hoppers_section/paragraph_4": "ui/encyclopedia_screen.json", + "host_and_player_options_button": "ui/encyclopedia_screen.json", + "host_and_player_options_section": "ui/encyclopedia_screen.json", + "host_and_player_options_section/paragraph_1_not_touch": "ui/encyclopedia_screen.json", + "host_and_player_options_section/paragraph_1_touch": "ui/encyclopedia_screen.json", + "jukebox_button": "ui/encyclopedia_screen.json", + "jukebox_section": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_1": "ui/encyclopedia_screen.json", + "jukebox_section/padding_1": "ui/encyclopedia_screen.json", + "jukebox_section/header_1": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_2_not_touch": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "jukebox_section/padding_2": "ui/encyclopedia_screen.json", + "jukebox_section/header_2": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_3": "ui/encyclopedia_screen.json", + "jukebox_section/padding_3": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_4": "ui/encyclopedia_screen.json", + "jukebox_section/padding_4": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_5": "ui/encyclopedia_screen.json", + "jukebox_section/padding_5": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_6": "ui/encyclopedia_screen.json", + "jukebox_section/padding_6": "ui/encyclopedia_screen.json", + "jukebox_section/header_3": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_7": "ui/encyclopedia_screen.json", + "jukebox_section/padding_7": "ui/encyclopedia_screen.json", + "jukebox_section/paragraph_8": "ui/encyclopedia_screen.json", + "loom_button": "ui/encyclopedia_screen.json", + "loom_section": "ui/encyclopedia_screen.json", + "loom_section/paragraph_1": "ui/encyclopedia_screen.json", + "loom_section/padding_1": "ui/encyclopedia_screen.json", + "loom_section/header_1": "ui/encyclopedia_screen.json", + "loom_section/paragraph_2": "ui/encyclopedia_screen.json", + "loom_section/padding_2": "ui/encyclopedia_screen.json", + "loom_section/paragraph_3": "ui/encyclopedia_screen.json", + "loom_section/padding_3": "ui/encyclopedia_screen.json", + "loom_section/header_2": "ui/encyclopedia_screen.json", + "loom_section/paragraph_4": "ui/encyclopedia_screen.json", + "realms_stories_button": "ui/encyclopedia_screen.json", + "realms_stories_section": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_1": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_1": "ui/encyclopedia_screen.json", + "realms_stories_section/header_1": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_2": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_2": "ui/encyclopedia_screen.json", + "realms_stories_section/header_2": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_3": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_3": "ui/encyclopedia_screen.json", + "realms_stories_section/header_3": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_4": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_4": "ui/encyclopedia_screen.json", + "realms_stories_section/header_4": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_5": "ui/encyclopedia_screen.json", + "realms_stories_section/padding_5": "ui/encyclopedia_screen.json", + "realms_stories_section/header_5": "ui/encyclopedia_screen.json", + "realms_stories_section/paragraph_6": "ui/encyclopedia_screen.json", + "smithing_table_button": "ui/encyclopedia_screen.json", + "smithing_table_section": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_1": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_1": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_2": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_2": "ui/encyclopedia_screen.json", + "smithing_table_section/header_1": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_3": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_3": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_4": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_4": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_5": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_5": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_6": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_6": "ui/encyclopedia_screen.json", + "smithing_table_section/header_2": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_7": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_7": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_8": "ui/encyclopedia_screen.json", + "smithing_table_section/padding_8": "ui/encyclopedia_screen.json", + "smithing_table_section/paragraph_9": "ui/encyclopedia_screen.json", + "mounts_button": "ui/encyclopedia_screen.json", + "mounts_section": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_1": "ui/encyclopedia_screen.json", + "mounts_section/padding_1": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_2": "ui/encyclopedia_screen.json", + "mounts_section/padding_2": "ui/encyclopedia_screen.json", + "mounts_section/header_1": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_3_not_touch": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "mounts_section/padding_3": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_4": "ui/encyclopedia_screen.json", + "mounts_section/padding_4": "ui/encyclopedia_screen.json", + "mounts_section/header_2": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_5": "ui/encyclopedia_screen.json", + "mounts_section/padding_5": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_6": "ui/encyclopedia_screen.json", + "mounts_section/padding_6": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_6b": "ui/encyclopedia_screen.json", + "mounts_section/padding_6b": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_7": "ui/encyclopedia_screen.json", + "mounts_section/padding_7": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_8": "ui/encyclopedia_screen.json", + "mounts_section/padding_8": "ui/encyclopedia_screen.json", + "mounts_section/header_3": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_9": "ui/encyclopedia_screen.json", + "mounts_section/padding_9": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_10": "ui/encyclopedia_screen.json", + "mounts_section/padding_10": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_11": "ui/encyclopedia_screen.json", + "mounts_section/padding_11": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_12": "ui/encyclopedia_screen.json", + "mounts_section/padding_12": "ui/encyclopedia_screen.json", + "mounts_section/header_4": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_13": "ui/encyclopedia_screen.json", + "mounts_section/padding_13": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_14": "ui/encyclopedia_screen.json", + "mounts_section/padding_14": "ui/encyclopedia_screen.json", + "mounts_section/header_5": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_15_not_touch": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_15a_touch": "ui/encyclopedia_screen.json", + "mounts_section/padding_15": "ui/encyclopedia_screen.json", + "mounts_section/paragraph_15b_touch": "ui/encyclopedia_screen.json", + "navigation_button": "ui/encyclopedia_screen.json", + "navigation_section": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_1": "ui/encyclopedia_screen.json", + "navigation_section/padding_1": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_2": "ui/encyclopedia_screen.json", + "navigation_section/padding_2": "ui/encyclopedia_screen.json", + "navigation_section/header_1": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_3": "ui/encyclopedia_screen.json", + "navigation_section/padding_3": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_4": "ui/encyclopedia_screen.json", + "navigation_section/padding_4": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_5": "ui/encyclopedia_screen.json", + "navigation_section/padding_5": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_6": "ui/encyclopedia_screen.json", + "navigation_section/padding_6": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_7": "ui/encyclopedia_screen.json", + "navigation_section/padding_7": "ui/encyclopedia_screen.json", + "navigation_section/header_2": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_8": "ui/encyclopedia_screen.json", + "navigation_section/padding_8": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_9": "ui/encyclopedia_screen.json", + "navigation_section/padding_9": "ui/encyclopedia_screen.json", + "navigation_section/header_3": "ui/encyclopedia_screen.json", + "navigation_section/paragraph_10": "ui/encyclopedia_screen.json", + "nether_portals_button": "ui/encyclopedia_screen.json", + "nether_portals_section": "ui/encyclopedia_screen.json", + "nether_portals_section/paragraph_1": "ui/encyclopedia_screen.json", + "nether_portals_section/padding_1": "ui/encyclopedia_screen.json", + "nether_portals_section/paragraph_2": "ui/encyclopedia_screen.json", + "nether_portals_section/padding_2": "ui/encyclopedia_screen.json", + "nether_portals_section/paragraph_3": "ui/encyclopedia_screen.json", + "nether_portals_section/padding_3": "ui/encyclopedia_screen.json", + "nether_portals_section/image_1": "ui/encyclopedia_screen.json", + "pets_button": "ui/encyclopedia_screen.json", + "pets_section": "ui/encyclopedia_screen.json", + "pets_section/header_1": "ui/encyclopedia_screen.json", + "pets_section/paragraph_1_not_touch": "ui/encyclopedia_screen.json", + "pets_section/paragraph_1_touch": "ui/encyclopedia_screen.json", + "pets_section/padding_1": "ui/encyclopedia_screen.json", + "pets_section/header_2": "ui/encyclopedia_screen.json", + "pets_section/paragraph_2": "ui/encyclopedia_screen.json", + "pets_section/padding_2": "ui/encyclopedia_screen.json", + "pets_section/header_3": "ui/encyclopedia_screen.json", + "pets_section/paragraph_3": "ui/encyclopedia_screen.json", + "pets_section/padding_3": "ui/encyclopedia_screen.json", + "pets_section/header_4": "ui/encyclopedia_screen.json", + "pets_section/paragraph_4": "ui/encyclopedia_screen.json", + "raids_button": "ui/encyclopedia_screen.json", + "raids_section": "ui/encyclopedia_screen.json", + "raids_section/paragraph_1": "ui/encyclopedia_screen.json", + "raids_section/padding_1": "ui/encyclopedia_screen.json", + "raids_section/paragraph_2": "ui/encyclopedia_screen.json", + "raids_section/padding_2": "ui/encyclopedia_screen.json", + "raids_section/header_1": "ui/encyclopedia_screen.json", + "raids_section/paragraph_3": "ui/encyclopedia_screen.json", + "ranching_button": "ui/encyclopedia_screen.json", + "ranching_section": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_1": "ui/encyclopedia_screen.json", + "ranching_section/padding_1": "ui/encyclopedia_screen.json", + "ranching_section/header_1": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_2": "ui/encyclopedia_screen.json", + "ranching_section/padding_2": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_3": "ui/encyclopedia_screen.json", + "ranching_section/padding_3": "ui/encyclopedia_screen.json", + "ranching_section/header_2": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_4": "ui/encyclopedia_screen.json", + "ranching_section/padding_4": "ui/encyclopedia_screen.json", + "ranching_section/paragraph_5": "ui/encyclopedia_screen.json", + "redstone_button": "ui/encyclopedia_screen.json", + "redstone_section": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_1": "ui/encyclopedia_screen.json", + "redstone_section/padding_1": "ui/encyclopedia_screen.json", + "redstone_section/header_1": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_2": "ui/encyclopedia_screen.json", + "redstone_section/padding_2": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_3": "ui/encyclopedia_screen.json", + "redstone_section/padding_3": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_4": "ui/encyclopedia_screen.json", + "redstone_section/padding_4": "ui/encyclopedia_screen.json", + "redstone_section/paragraph_5": "ui/encyclopedia_screen.json", + "scaffolding_button": "ui/encyclopedia_screen.json", + "scaffolding_section": "ui/encyclopedia_screen.json", + "scaffolding_section/header_1": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1_keyboard": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1_gamepad": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1a_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_1a_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1b_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_1b_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_1c_touch": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_1": "ui/encyclopedia_screen.json", + "scaffolding_section/header_2": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_2": "ui/encyclopedia_screen.json", + "scaffolding_section/image_1": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_2": "ui/encyclopedia_screen.json", + "scaffolding_section/header_3": "ui/encyclopedia_screen.json", + "scaffolding_section/paragraph_3": "ui/encyclopedia_screen.json", + "scaffolding_section/padding_3": "ui/encyclopedia_screen.json", + "structure_blocks_button": "ui/encyclopedia_screen.json", + "structure_blocks_section": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_1": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_1": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_1": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_2": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_2": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_2": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_3": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_3": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_4": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_4": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_5": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_5": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_6": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_6": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_7": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_7": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_3": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_8": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_8": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_9_keyboard": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_9_gamepad": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_9_touch": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_9": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_4": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_10": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_10": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_5": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_11": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_11": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_12": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_12": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_13": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_13": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_6": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_14": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_14": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_15": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_15": "ui/encyclopedia_screen.json", + "structure_blocks_section/header_7": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_16": "ui/encyclopedia_screen.json", + "structure_blocks_section/padding_16": "ui/encyclopedia_screen.json", + "structure_blocks_section/paragraph_17": "ui/encyclopedia_screen.json", + "shulker_boxes_button": "ui/encyclopedia_screen.json", + "shulker_boxes_section": "ui/encyclopedia_screen.json", + "shulker_boxes_section/paragraph_1": "ui/encyclopedia_screen.json", + "the_end_button": "ui/encyclopedia_screen.json", + "the_end_section": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_1": "ui/encyclopedia_screen.json", + "the_end_section/padding_1": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_2": "ui/encyclopedia_screen.json", + "the_end_section/padding_2": "ui/encyclopedia_screen.json", + "the_end_section/header_1": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_3": "ui/encyclopedia_screen.json", + "the_end_section/padding_3": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_4": "ui/encyclopedia_screen.json", + "the_end_section/padding_4": "ui/encyclopedia_screen.json", + "the_end_section/paragraph_5": "ui/encyclopedia_screen.json", + "tools_button": "ui/encyclopedia_screen.json", + "tools_section": "ui/encyclopedia_screen.json", + "tools_section/paragraph_1": "ui/encyclopedia_screen.json", + "tools_section/padding_1": "ui/encyclopedia_screen.json", + "tools_section/paragraph_2": "ui/encyclopedia_screen.json", + "tools_section/padding_2": "ui/encyclopedia_screen.json", + "tools_section/header_1": "ui/encyclopedia_screen.json", + "tools_section/paragraph_3": "ui/encyclopedia_screen.json", + "tools_section/padding_3": "ui/encyclopedia_screen.json", + "tools_section/paragraph_4": "ui/encyclopedia_screen.json", + "tools_section/padding_4": "ui/encyclopedia_screen.json", + "tools_section/paragraph_5_not_touch": "ui/encyclopedia_screen.json", + "tools_section/paragraph_5_touch": "ui/encyclopedia_screen.json", + "tools_section/padding_5": "ui/encyclopedia_screen.json", + "tools_section/paragraph_6_not_touch": "ui/encyclopedia_screen.json", + "tools_section/paragraph_6_touch": "ui/encyclopedia_screen.json", + "tools_section/padding_6": "ui/encyclopedia_screen.json", + "tools_section/paragraph_7": "ui/encyclopedia_screen.json", + "tools_section/padding_7": "ui/encyclopedia_screen.json", + "tools_section/header_2": "ui/encyclopedia_screen.json", + "tools_section/paragraph_8": "ui/encyclopedia_screen.json", + "tools_section/padding_8": "ui/encyclopedia_screen.json", + "tools_section/paragraph_9": "ui/encyclopedia_screen.json", + "tools_section/padding_9": "ui/encyclopedia_screen.json", + "tools_section/paragraph_10": "ui/encyclopedia_screen.json", + "tools_section/padding_10": "ui/encyclopedia_screen.json", + "tools_section/paragraph_11": "ui/encyclopedia_screen.json", + "tools_section/padding_11": "ui/encyclopedia_screen.json", + "tools_section/paragraph_12": "ui/encyclopedia_screen.json", + "trading_button": "ui/encyclopedia_screen.json", + "trading_section": "ui/encyclopedia_screen.json", + "trading_section/paragraph_1": "ui/encyclopedia_screen.json", + "trading_section/padding_1": "ui/encyclopedia_screen.json", + "trading_section/header_1": "ui/encyclopedia_screen.json", + "trading_section/paragraph_2": "ui/encyclopedia_screen.json", + "trading_section/padding_2": "ui/encyclopedia_screen.json", + "trading_section/paragraph_3": "ui/encyclopedia_screen.json", + "trading_section/padding_3": "ui/encyclopedia_screen.json", + "trading_section/paragraph_4": "ui/encyclopedia_screen.json", + "transportation_button": "ui/encyclopedia_screen.json", + "transportation_section": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_1": "ui/encyclopedia_screen.json", + "transportation_section/padding_1": "ui/encyclopedia_screen.json", + "transportation_section/header_1": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_2": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_2": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3_keyboard": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3_gamepad": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3a_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_3a": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3b_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_3b": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_3c_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_3": "ui/encyclopedia_screen.json", + "transportation_section/header_2": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_4": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_4_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_4": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5_keyboard": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5_gamepad": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_5a": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", + "transportation_section/padding_5b": "ui/encyclopedia_screen.json", + "transportation_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", + "weapons_button": "ui/encyclopedia_screen.json", + "weapons_section": "ui/encyclopedia_screen.json", + "weapons_section/header_1": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_1": "ui/encyclopedia_screen.json", + "weapons_section/padding_1": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_2_not_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_2_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_2": "ui/encyclopedia_screen.json", + "weapons_section/header_2": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_3_not_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_3_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_3": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_4": "ui/encyclopedia_screen.json", + "weapons_section/padding_5": "ui/encyclopedia_screen.json", + "weapons_section/header_3": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5_not_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5a_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_5a_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5b_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_5b_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5c_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_5c_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_5d_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_6": "ui/encyclopedia_screen.json", + "weapons_section/header_4": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_6_not_touch": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_6_touch": "ui/encyclopedia_screen.json", + "weapons_section/padding_7": "ui/encyclopedia_screen.json", + "weapons_section/header_5": "ui/encyclopedia_screen.json", + "weapons_section/paragraph_7": "ui/encyclopedia_screen.json", + "minecoins_button": "ui/encyclopedia_screen.json", + "minecoins_section": "ui/encyclopedia_screen.json", + "minecoins_section/paragraph_1": "ui/encyclopedia_screen.json", + "minecoins_section/padding_1": "ui/encyclopedia_screen.json", + "minecoins_section/paragraph_2": "ui/encyclopedia_screen.json", + "minecoins_section/padding_2": "ui/encyclopedia_screen.json", + "minecoins_section/get_minecoins_button": "ui/encyclopedia_screen.json", + "minecoins_section/padding_3": "ui/encyclopedia_screen.json", + "minecoins_section/header_1": "ui/encyclopedia_screen.json", + "minecoins_section/paragraph_3": "ui/encyclopedia_screen.json", + "addons_button": "ui/encyclopedia_screen.json", + "addons_section": "ui/encyclopedia_screen.json", + "addons_section/paragraph_1": "ui/encyclopedia_screen.json", + "addons_section/padding_1": "ui/encyclopedia_screen.json", + "addons_section/paragraph_2": "ui/encyclopedia_screen.json", + "addons_section/padding_2": "ui/encyclopedia_screen.json", + "addons_section/header_1": "ui/encyclopedia_screen.json", + "addons_section/paragraph_3": "ui/encyclopedia_screen.json", + "addons_section/padding_3": "ui/encyclopedia_screen.json", + "addons_section/paragraph_4": "ui/encyclopedia_screen.json", + "addons_section/padding_4": "ui/encyclopedia_screen.json", + "addons_section/paragraph_5": "ui/encyclopedia_screen.json", + "addons_section/addons_faq_button": "ui/encyclopedia_screen.json", + "worlds_button": "ui/encyclopedia_screen.json", + "worlds_section": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_1": "ui/encyclopedia_screen.json", + "worlds_section/padding_1": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_2": "ui/encyclopedia_screen.json", + "worlds_section/padding_2": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_3": "ui/encyclopedia_screen.json", + "worlds_section/padding_3": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_4": "ui/encyclopedia_screen.json", + "worlds_section/padding_4": "ui/encyclopedia_screen.json", + "worlds_section/header_1": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_5": "ui/encyclopedia_screen.json", + "worlds_section/padding_5": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_6": "ui/encyclopedia_screen.json", + "worlds_section/padding_6": "ui/encyclopedia_screen.json", + "worlds_section/header_2": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_7": "ui/encyclopedia_screen.json", + "worlds_section/padding_7": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_8": "ui/encyclopedia_screen.json", + "worlds_section/padding_8": "ui/encyclopedia_screen.json", + "worlds_section/header_3": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_9": "ui/encyclopedia_screen.json", + "worlds_section/padding_9": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_10": "ui/encyclopedia_screen.json", + "worlds_section/padding_10": "ui/encyclopedia_screen.json", + "worlds_section/header_4": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_11": "ui/encyclopedia_screen.json", + "worlds_section/padding_11": "ui/encyclopedia_screen.json", + "worlds_section/paragraph_12": "ui/encyclopedia_screen.json", + "worlds_section/padding_12": "ui/encyclopedia_screen.json", + "textures_button": "ui/encyclopedia_screen.json", + "textures_section": "ui/encyclopedia_screen.json", + "textures_section/paragraph_1": "ui/encyclopedia_screen.json", + "skins_button": "ui/encyclopedia_screen.json", + "skins_section": "ui/encyclopedia_screen.json", + "skins_section/paragraph_1": "ui/encyclopedia_screen.json", + "mashups_button": "ui/encyclopedia_screen.json", + "mashups_section": "ui/encyclopedia_screen.json", + "mashups_section/paragraph_1": "ui/encyclopedia_screen.json", + }, + "expanded_skin_pack": { + "banner_fill": "ui/expanded_skin_pack_screen.json", + "title_label": "ui/expanded_skin_pack_screen.json", + "label": "ui/expanded_skin_pack_screen.json", + "undo_image": "ui/expanded_skin_pack_screen.json", + "lock_icon": "ui/expanded_skin_pack_screen.json", + "skin_button": "ui/expanded_skin_pack_screen.json", + "skin_button/hover": "ui/expanded_skin_pack_screen.json", + "skin_button/pressed": "ui/expanded_skin_pack_screen.json", + "skin_rotation_arrows": "ui/expanded_skin_pack_screen.json", + "skin_viewer_panel": "ui/expanded_skin_pack_screen.json", + "skin_viewer_panel/skin_model_panel": "ui/expanded_skin_pack_screen.json", + "skin_viewer_panel/skin_model_panel/skin_model": "ui/expanded_skin_pack_screen.json", + "skin_viewer_panel/lock": "ui/expanded_skin_pack_screen.json", + "undo_skin_button": "ui/expanded_skin_pack_screen.json", + "confirm_skin_button": "ui/expanded_skin_pack_screen.json", + "stack_item": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel/stack_item_0": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel/stack_item_0/undo_btn": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel/stack_item_1": "ui/expanded_skin_pack_screen.json", + "accept_skin_panel/stack_item_1/confirm_button": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/preview": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame/stack_item_0": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame/stack_item_0/rotation": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame/stack_item_1": "ui/expanded_skin_pack_screen.json", + "preview_skin_panel/button_frame/stack_item_1/accept": "ui/expanded_skin_pack_screen.json", + "skin_model": "ui/expanded_skin_pack_screen.json", + "scrolling_content": "ui/expanded_skin_pack_screen.json", + "scrolling_content/padding_0": "ui/expanded_skin_pack_screen.json", + "scrolling_content/pack_info_panel": "ui/expanded_skin_pack_screen.json", + "scrolling_content/pack_info_panel/pack_info_panel": "ui/expanded_skin_pack_screen.json", + "scrolling_content/skin_grid_panel": "ui/expanded_skin_pack_screen.json", + "scrolling_content/skin_grid_panel/skins_grid": "ui/expanded_skin_pack_screen.json", + "pack_info_panel": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/lock_icon_panel": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/lock_icon_panel/lock_icon": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/pack_info_panel": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/pack_info_panel/pack_name": "ui/expanded_skin_pack_screen.json", + "pack_info_panel/pack_info_panel/creator_name": "ui/expanded_skin_pack_screen.json", + "skins_grid_item": "ui/expanded_skin_pack_screen.json", + "skins_grid_item/clip": "ui/expanded_skin_pack_screen.json", + "skins_grid_item/clip/model": "ui/expanded_skin_pack_screen.json", + "skins_grid_item/lock": "ui/expanded_skin_pack_screen.json", + "skins_grid_item/button": "ui/expanded_skin_pack_screen.json", + "skins_grid": "ui/expanded_skin_pack_screen.json", + "select_skin_button": "ui/expanded_skin_pack_screen.json", + "select_skin_button/default": "ui/expanded_skin_pack_screen.json", + "select_skin_button/hover": "ui/expanded_skin_pack_screen.json", + "select_skin_button/pressed": "ui/expanded_skin_pack_screen.json", + "all_skins_content": "ui/expanded_skin_pack_screen.json", + "all_skins_content/scrolling_frame": "ui/expanded_skin_pack_screen.json", + "all_skins_content/scrolling_frame/change_skin_scroll": "ui/expanded_skin_pack_screen.json", + "all_skins_frame": "ui/expanded_skin_pack_screen.json", + "all_skins_frame/all_skins_content": "ui/expanded_skin_pack_screen.json", + "title_bar": "ui/expanded_skin_pack_screen.json", + "title_bar/padding_0": "ui/expanded_skin_pack_screen.json", + "title_bar/fill_panel": "ui/expanded_skin_pack_screen.json", + "title_bar/fill_panel/title_holder": "ui/expanded_skin_pack_screen.json", + "title_bar/fill_panel/title_holder/change_skin_title": "ui/expanded_skin_pack_screen.json", + "title_bar/padding_1": "ui/expanded_skin_pack_screen.json", + "title_bar/skin_name_holder": "ui/expanded_skin_pack_screen.json", + "title_bar/skin_name_holder/preview_skin_name": "ui/expanded_skin_pack_screen.json", + "title_bar/padding_2": "ui/expanded_skin_pack_screen.json", + "content": "ui/expanded_skin_pack_screen.json", + "content/title": "ui/expanded_skin_pack_screen.json", + "content/selector_area": "ui/expanded_skin_pack_screen.json", + "content/content_area": "ui/expanded_skin_pack_screen.json", + "content/section_divider": "ui/expanded_skin_pack_screen.json", + "expanded_skin_pack_screen": "ui/expanded_skin_pack_screen.json", + "skin_picker_screen_content": "ui/expanded_skin_pack_screen.json", + "skin_picker_screen_content/bg": "ui/expanded_skin_pack_screen.json", + "skin_picker_screen_content/container": "ui/expanded_skin_pack_screen.json", + "skin_picker_screen_content/container/content": "ui/expanded_skin_pack_screen.json", + "scrollable_selector_area_content": "ui/expanded_skin_pack_screen.json", + "selector_area": "ui/expanded_skin_pack_screen.json", + "selector_area/all_skins": "ui/expanded_skin_pack_screen.json", + "selector_area/inactive_modal_pane_fade": "ui/expanded_skin_pack_screen.json", + "content_area": "ui/expanded_skin_pack_screen.json", + "content_area/preview_skin": "ui/expanded_skin_pack_screen.json", + "content_area/inactive_modal_pane_fade": "ui/expanded_skin_pack_screen.json", + "section_divider": "ui/expanded_skin_pack_screen.json", + }, + "feed_common": { + "top_bar_gradient": "ui/feed_common.json", + "label": "ui/feed_common.json", + "smooth_label": "ui/feed_common.json", + "share_label": "ui/feed_common.json", + "title_label": "ui/feed_common.json", + "feed_label": "ui/feed_common.json", + "item_label": "ui/feed_common.json", + "return_label": "ui/feed_common.json", + "prev_label": "ui/feed_common.json", + "next_label": "ui/feed_common.json", + "delete_label": "ui/feed_common.json", + "report_to_club_label": "ui/feed_common.json", + "report_to_xbox_label": "ui/feed_common.json", + "new_post_header_text": "ui/feed_common.json", + "feed_button": "ui/feed_common.json", + "return_button": "ui/feed_common.json", + "prev_button": "ui/feed_common.json", + "prev_panel": "ui/feed_common.json", + "prev_panel/padding_1": "ui/feed_common.json", + "prev_panel/lab_panel": "ui/feed_common.json", + "prev_panel/lab_panel/vert_pad": "ui/feed_common.json", + "prev_panel/lab_panel/prevlab": "ui/feed_common.json", + "next_button": "ui/feed_common.json", + "next_panel": "ui/feed_common.json", + "next_panel/lab_panel2": "ui/feed_common.json", + "next_panel/lab_panel2/vert_pad2": "ui/feed_common.json", + "next_panel/lab_panel2/nextlab": "ui/feed_common.json", + "next_panel/padding_2": "ui/feed_common.json", + "like_button": "ui/feed_common.json", + "delete_button": "ui/feed_common.json", + "report_to_xbox_button": "ui/feed_common.json", + "report_to_club_button": "ui/feed_common.json", + "options_button": "ui/feed_common.json", + "options_close_button_high_contrast": "ui/feed_common.json", + "options_close_button_high_contrast/background": "ui/feed_common.json", + "options_close_button_high_contrast/default": "ui/feed_common.json", + "options_close_button_high_contrast/hover": "ui/feed_common.json", + "options_close_button_high_contrast/pressed": "ui/feed_common.json", + "share_button": "ui/feed_common.json", + "spacing_gap": "ui/feed_common.json", + "platform_icon": "ui/feed_common.json", + "platform_icon_panel": "ui/feed_common.json", + "platform_icon_panel/platform_icon": "ui/feed_common.json", + "account_link_image": "ui/feed_common.json", + "account_link_icon": "ui/feed_common.json", + "account_link_icon/space_01": "ui/feed_common.json", + "account_link_icon/account_link_image": "ui/feed_common.json", + "account_link_icon/space_02": "ui/feed_common.json", + "player_pic_bevel": "ui/feed_common.json", + "no_feed_item_content": "ui/feed_common.json", + "gamepad_helpers": "ui/feed_common.json", + "share_text_box": "ui/feed_common.json", + "progress_loading_bars": "ui/feed_common.json", + "popup_dialog_bg": "ui/feed_common.json", + "pagination_panel": "ui/feed_common.json", + "pagination_panel/prev_button": "ui/feed_common.json", + "pagination_panel/page_text": "ui/feed_common.json", + "pagination_panel/next_button": "ui/feed_common.json", + "pagination_panel_gamepad": "ui/feed_common.json", + "pagination_panel_gamepad/prev_panel": "ui/feed_common.json", + "pagination_panel_gamepad/page_text": "ui/feed_common.json", + "pagination_panel_gamepad/next_panel": "ui/feed_common.json", + "like_image": "ui/feed_common.json", + "like_image_default": "ui/feed_common.json", + "like_image_panel": "ui/feed_common.json", + "like_image_panel/like_image_instance": "ui/feed_common.json", + "like_image_panel/like_image_default": "ui/feed_common.json", + "feed_like_content_panel": "ui/feed_common.json", + "feed_like_content_panel/like_image_panel": "ui/feed_common.json", + "feed_like_content_panel/like_label": "ui/feed_common.json", + "white_banner": "ui/feed_common.json", + "page_text": "ui/feed_common.json", + "options_icon": "ui/feed_common.json", + "transparent_background": "ui/feed_common.json", + "black_arrow": "ui/feed_common.json", + "faded_background_image": "ui/feed_common.json", + "unviewed_post_badge": "ui/feed_common.json", + "unviewed_post_badge/unviewed_post_text": "ui/feed_common.json", + }, + "file_upload": { + "empty_progress_bar_icon": "ui/file_upload_screen.json", + "full_progress_bar_icon": "ui/file_upload_screen.json", + "progress_bar_nub": "ui/file_upload_screen.json", + "progress_bar_icon": "ui/file_upload_screen.json", + "progress_bar_icon/empty_progress_bar_icon": "ui/file_upload_screen.json", + "progress_bar_icon/progress_percent_panel": "ui/file_upload_screen.json", + "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": "ui/file_upload_screen.json", + "progress_bar_icon/progress_percent_panel/progress_bar_nub": "ui/file_upload_screen.json", + "common_label": "ui/file_upload_screen.json", + "progress_text_panel": "ui/file_upload_screen.json", + "progress_text_panel/progress": "ui/file_upload_screen.json", + "progress_text_panel/total": "ui/file_upload_screen.json", + "message_text_panel": "ui/file_upload_screen.json", + "message_text_panel/message_text": "ui/file_upload_screen.json", + "button_common": "ui/file_upload_screen.json", + "lets_go_button": "ui/file_upload_screen.json", + "cancel_button": "ui/file_upload_screen.json", + "continue_button": "ui/file_upload_screen.json", + "continue_or_cancel_button": "ui/file_upload_screen.json", + "continue_or_cancel_button/continue": "ui/file_upload_screen.json", + "continue_or_cancel_button/cancel": "ui/file_upload_screen.json", + "single_title_panel": "ui/file_upload_screen.json", + "single_title_panel/center": "ui/file_upload_screen.json", + "dual_title_panel": "ui/file_upload_screen.json", + "dual_title_panel/left": "ui/file_upload_screen.json", + "dual_title_panel/right": "ui/file_upload_screen.json", + "upload_title_panel": "ui/file_upload_screen.json", + "upload_title_panel/single_label": "ui/file_upload_screen.json", + "upload_title_panel/dual_label": "ui/file_upload_screen.json", + "content_panel": "ui/file_upload_screen.json", + "content_panel/stack_panel_0": "ui/file_upload_screen.json", + "content_panel/stack_panel_1": "ui/file_upload_screen.json", + "content_stack_panel": "ui/file_upload_screen.json", + "content_stack_panel/message": "ui/file_upload_screen.json", + "content_stack_panel/description": "ui/file_upload_screen.json", + "content_stack_panel/progress": "ui/file_upload_screen.json", + "warning_content_panel": "ui/file_upload_screen.json", + "warning_content_panel/message": "ui/file_upload_screen.json", + "button_panel": "ui/file_upload_screen.json", + "button_panel/play": "ui/file_upload_screen.json", + "button_panel/cancel": "ui/file_upload_screen.json", + "button_panel/continue_cancel": "ui/file_upload_screen.json", + "file_upload_content": "ui/file_upload_screen.json", + "file_upload_content/title_panel_content": "ui/file_upload_screen.json", + "file_upload_content/content": "ui/file_upload_screen.json", + "file_upload_content/content/background": "ui/file_upload_screen.json", + "file_upload_content/content/title": "ui/file_upload_screen.json", + "file_upload_content/content/content": "ui/file_upload_screen.json", + "file_upload_content/content/buttons": "ui/file_upload_screen.json", + "file_transmission_screen": "ui/file_upload_screen.json", + }, + "furnace": { + "flame_panel": "ui/furnace_screen.json", + "flame_panel/flame_empty_image": "ui/furnace_screen.json", + "flame_panel/flame_full_image": "ui/furnace_screen.json", + "furnace_arrow_empty_image": "ui/furnace_screen.json", + "furnace_arrow_full_image": "ui/furnace_screen.json", + "flame_empty_image": "ui/furnace_screen.json", + "flame_full_image": "ui/furnace_screen.json", + "furnace_label": "ui/furnace_screen.json", + "furnace_input_panel": "ui/furnace_screen.json", + "furnace_input_panel/panel": "ui/furnace_screen.json", + "furnace_input_panel/panel/furnace_ingredient_panel": "ui/furnace_screen.json", + "furnace_input_panel/panel/flame_panel": "ui/furnace_screen.json", + "furnace_input_panel/panel/furnace_fuel_panel": "ui/furnace_screen.json", + "furnace_ingredient_panel": "ui/furnace_screen.json", + "furnace_ingredient_panel/ingredient_item": "ui/furnace_screen.json", + "furnace_fuel_panel": "ui/furnace_screen.json", + "furnace_fuel_panel/fuel_item": "ui/furnace_screen.json", + "furnace_output_panel": "ui/furnace_screen.json", + "furnace_output_panel/output_item": "ui/furnace_screen.json", + "furnace_panel_top_half": "ui/furnace_screen.json", + "furnace_panel_top_half/furnace_label": "ui/furnace_screen.json", + "furnace_panel_top_half/input": "ui/furnace_screen.json", + "furnace_panel_top_half/furnace_arrow_empty_image": "ui/furnace_screen.json", + "furnace_panel_top_half/furnace_arrow_full_image": "ui/furnace_screen.json", + "furnace_panel_top_half/output": "ui/furnace_screen.json", + "furnace_panel": "ui/furnace_screen.json", + "furnace_panel/container_gamepad_helpers": "ui/furnace_screen.json", + "furnace_panel/selected_item_details_factory": "ui/furnace_screen.json", + "furnace_panel/item_lock_notification_factory": "ui/furnace_screen.json", + "furnace_panel/root_panel": "ui/furnace_screen.json", + "furnace_panel/root_panel/common_panel": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": "ui/furnace_screen.json", + "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": "ui/furnace_screen.json", + "furnace_panel/root_panel/inventory_selected_icon_button": "ui/furnace_screen.json", + "furnace_panel/root_panel/gamepad_cursor": "ui/furnace_screen.json", + "furnace_panel/flying_item_renderer": "ui/furnace_screen.json", + "furnace_screen": "ui/furnace_screen.json", + }, + "furnace_pocket": { + "generic_label": "ui/furnace_screen_pocket.json", + "background_image": "ui/furnace_screen_pocket.json", + "empty_arrow": "ui/furnace_screen_pocket.json", + "full_arrow": "ui/furnace_screen_pocket.json", + "flame_empty": "ui/furnace_screen_pocket.json", + "flame_full": "ui/furnace_screen_pocket.json", + "input_label": "ui/furnace_screen_pocket.json", + "fuel_label": "ui/furnace_screen_pocket.json", + "result_label": "ui/furnace_screen_pocket.json", + "result_name_label": "ui/furnace_screen_pocket.json", + "furnace_content": "ui/furnace_screen_pocket.json", + "furnace_content/input_panel": "ui/furnace_screen_pocket.json", + "furnace_content/input_panel/input_label": "ui/furnace_screen_pocket.json", + "furnace_content/input_panel/ingredient_item": "ui/furnace_screen_pocket.json", + "furnace_content/flame_empty": "ui/furnace_screen_pocket.json", + "furnace_content/flame_full": "ui/furnace_screen_pocket.json", + "furnace_content/fuel_panel": "ui/furnace_screen_pocket.json", + "furnace_content/fuel_panel/fuel_label": "ui/furnace_screen_pocket.json", + "furnace_content/fuel_panel/fuel_item": "ui/furnace_screen_pocket.json", + "furnace_content/empty_arrow": "ui/furnace_screen_pocket.json", + "furnace_content/full_arrow": "ui/furnace_screen_pocket.json", + "furnace_content/output_panel": "ui/furnace_screen_pocket.json", + "furnace_content/output_panel/result_label": "ui/furnace_screen_pocket.json", + "furnace_content/output_panel/result_name_label": "ui/furnace_screen_pocket.json", + "furnace_content/output_panel/output_item": "ui/furnace_screen_pocket.json", + "inventory_grid": "ui/furnace_screen_pocket.json", + "inventory_content": "ui/furnace_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/furnace_screen_pocket.json", + "header": "ui/furnace_screen_pocket.json", + "header/header_background": "ui/furnace_screen_pocket.json", + "header/close_button": "ui/furnace_screen_pocket.json", + "header/panel": "ui/furnace_screen_pocket.json", + "header/panel/title_label": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel/inventory_half_screen": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel/inventory_half_screen/inventory_content": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel/furnace_half_screen": "ui/furnace_screen_pocket.json", + "inventory_and_furnace_panel/furnace_half_screen/furnace_content": "ui/furnace_screen_pocket.json", + "header_and_content_stack_panel": "ui/furnace_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/furnace_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_furnace_panel": "ui/furnace_screen_pocket.json", + "furnace_panel": "ui/furnace_screen_pocket.json", + "furnace_panel/bg": "ui/furnace_screen_pocket.json", + "furnace_panel/root_panel": "ui/furnace_screen_pocket.json", + "furnace_panel/header_and_content_stack_panel": "ui/furnace_screen_pocket.json", + "furnace_panel/container_gamepad_helpers": "ui/furnace_screen_pocket.json", + "furnace_panel/inventory_selected_icon_button": "ui/furnace_screen_pocket.json", + "furnace_panel/hold_icon": "ui/furnace_screen_pocket.json", + "furnace_panel/selected_item_details_factory": "ui/furnace_screen_pocket.json", + "furnace_panel/item_lock_notification_factory": "ui/furnace_screen_pocket.json", + "furnace_panel/flying_item_renderer": "ui/furnace_screen_pocket.json", + }, + "game_tip": { + "game_tip_animation": "ui/game_tip_screen.json", + "game_tip_animation_panel": "ui/game_tip_screen.json", + "game_tip_animation_panel/animated_icon": "ui/game_tip_screen.json", + "game_tip_label": "ui/game_tip_screen.json", + "game_tip_text_panel": "ui/game_tip_screen.json", + "game_tip_text_panel/upper_padding": "ui/game_tip_screen.json", + "game_tip_text_panel/label": "ui/game_tip_screen.json", + "game_tip_text_panel/lower_padding": "ui/game_tip_screen.json", + "game_tip_arrow_image": "ui/game_tip_screen.json", + "game_tip_arrow_panel": "ui/game_tip_screen.json", + "game_tip_arrow_panel/tip_arrow": "ui/game_tip_screen.json", + "game_tip_panel": "ui/game_tip_screen.json", + "game_tip_panel/animated_panel": "ui/game_tip_screen.json", + "game_tip_panel/middle_padding": "ui/game_tip_screen.json", + "game_tip_panel/label": "ui/game_tip_screen.json", + "game_tip_panel/right_padding": "ui/game_tip_screen.json", + "game_tip_item_background": "ui/game_tip_screen.json", + "game_tip_item_background/horizontal_container": "ui/game_tip_screen.json", + "game_tip_item_background/arrow_panel": "ui/game_tip_screen.json", + "chat_stack_game_tip_panel": "ui/game_tip_screen.json", + "chat_stack_game_tip_panel/top_padding": "ui/game_tip_screen.json", + "chat_stack_game_tip_panel/game_tip_background": "ui/game_tip_screen.json", + "game_tip_factory": "ui/game_tip_screen.json", + "game_tip_chat_stack_factory": "ui/game_tip_screen.json", + }, + "gamepad_disconnected": { + "gamepad_disconnected_modal": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": "ui/gamepad_disconnected.json", + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": "ui/gamepad_disconnected.json", + "gamepad_disconnected_screen": "ui/gamepad_disconnected.json", + }, + "gameplay": { + "bundle_selected_item_icon": "ui/gameplay_common.json", + "bundle_open_icon_back": "ui/gameplay_common.json", + "bundle_open_icon_front": "ui/gameplay_common.json", + "bundle_selected_item_background": "ui/gameplay_common.json", + "bundle_selected_item_background/bundle_selected_item_background_colour_green": "ui/gameplay_common.json", + "bundle_selected_item_background/bundle_selected_item_background_colour": "ui/gameplay_common.json", + "bundle_selected_item_background/bundle_selected_item_frame": "ui/gameplay_common.json", + "bundle_selected_item_panel": "ui/gameplay_common.json", + "bundle_selected_item_panel/bundle_selected_item_background": "ui/gameplay_common.json", + "bundle_selected_item_panel/bundle_open_icon_back": "ui/gameplay_common.json", + "bundle_selected_item_panel/bundle_selected_item_icon": "ui/gameplay_common.json", + "bundle_selected_item_panel/bundle_open_icon_front": "ui/gameplay_common.json", + "bundle_selected_item_panel/storage_bar": "ui/gameplay_common.json", + "bundle_slot_panel": "ui/gameplay_common.json", + "bundle_slot_panel/bundle_selected_item_panel": "ui/gameplay_common.json", + "bundle_cell_image": "ui/gameplay_common.json", + "bundle_cell_image/background_panel": "ui/gameplay_common.json", + "bundle_cell_image/background_panel/item_background": "ui/gameplay_common.json", + "bundle_cell_image/highlight_panel": "ui/gameplay_common.json", + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": "ui/gameplay_common.json", + "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": "ui/gameplay_common.json", + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": "ui/gameplay_common.json", + "bundle_tooltip_slot_button": "ui/gameplay_common.json", + "bundle_tooltip_slot_pocket": "ui/gameplay_common.json", + "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": "ui/gameplay_common.json", + "bundle_tooltip_slot_pocket/more_hidden_items_label": "ui/gameplay_common.json", + "bundle_tooltip_slot_classic": "ui/gameplay_common.json", + "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": "ui/gameplay_common.json", + "bundle_tooltip_slot_classic/more_hidden_items_label": "ui/gameplay_common.json", + "bundle_tooltip": "ui/gameplay_common.json", + "bundle_tooltip/background": "ui/gameplay_common.json", + "bundle_tooltip/background/empty_button": "ui/gameplay_common.json", + "bundle_tooltip/background/empty_button/default": "ui/gameplay_common.json", + "bundle_tooltip/background/empty_button/hover": "ui/gameplay_common.json", + "bundle_tooltip/background/empty_button/pressed": "ui/gameplay_common.json", + "bundle_tooltip/background/selected_item_tooltip": "ui/gameplay_common.json", + "bundle_tooltip/background/selected_item_tooltip/item_text_label": "ui/gameplay_common.json", + "bundle_tooltip/header_stack": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/bundle_label": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/close_button": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/close_button/default": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/close_button/hover": "ui/gameplay_common.json", + "bundle_tooltip/header_stack/close_button/pressed": "ui/gameplay_common.json", + "bundle_tooltip/wrapper": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": "ui/gameplay_common.json", + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": "ui/gameplay_common.json", + "bundle_touch_tooltip": "ui/gameplay_common.json", + "bundle_tooltip_factory_wrapper": "ui/gameplay_common.json", + "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": "ui/gameplay_common.json", + "bundle_cursor_tooltip": "ui/gameplay_common.json", + "bundle_cursor_tooltip/tooltip": "ui/gameplay_common.json", + }, + "gathering_info": { + "gathering_info_screen": "ui/gathering_info_screen.json", + "info_content": "ui/gathering_info_screen.json", + "info_content/header": "ui/gathering_info_screen.json", + "info_content/left_panel": "ui/gathering_info_screen.json", + "info_content/left_panel/stack": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/event_image": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_2": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/button_and_caption": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/button_and_caption/caption": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/button_and_caption/action_button": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_3": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/info_button": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_4": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/gamepad_helper_panel": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_fill": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/gathering_id_label": "ui/gathering_info_screen.json", + "info_content/left_panel/stack/pad_5": "ui/gathering_info_screen.json", + "info_content/section_divider": "ui/gathering_info_screen.json", + "info_content/right_panel": "ui/gathering_info_screen.json", + "info_content/right_panel/scroll": "ui/gathering_info_screen.json", + "right_panel_content": "ui/gathering_info_screen.json", + "right_panel_content/pad": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/sign_in_image": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/horizontal_pad": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/text_stack": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/text_stack/sign_in_title": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/text_stack/text_pad": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_panel/text_stack/sign_in_body": "ui/gathering_info_screen.json", + "right_panel_content/sign_in_pad": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/qr_background": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/qr_background/qr_image": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/horizontal_pad": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/text_stack": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/text_stack/qr_title": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/text_stack/text_pad": "ui/gathering_info_screen.json", + "right_panel_content/qr_panel/text_stack/qr_body": "ui/gathering_info_screen.json", + "right_panel_content/qr_pad": "ui/gathering_info_screen.json", + "right_panel_content/title": "ui/gathering_info_screen.json", + "right_panel_content/pad_1": "ui/gathering_info_screen.json", + "right_panel_content/body": "ui/gathering_info_screen.json", + "right_panel_content/pad_2": "ui/gathering_info_screen.json", + "right_panel_content/body_image": "ui/gathering_info_screen.json", + "right_panel_content/footer": "ui/gathering_info_screen.json", + "tts_label": "ui/gathering_info_screen.json", + "tts_label_title": "ui/gathering_info_screen.json", + "sign_in_title": "ui/gathering_info_screen.json", + "sign_in_body": "ui/gathering_info_screen.json", + "qr_title": "ui/gathering_info_screen.json", + "qr_body": "ui/gathering_info_screen.json", + "title_panel": "ui/gathering_info_screen.json", + "body_panel": "ui/gathering_info_screen.json", + "section_divider": "ui/gathering_info_screen.json", + "gamepad_helpers": "ui/gathering_info_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/gathering_info_screen.json", + "gamepad_helpers/gamepad_helper_b": "ui/gathering_info_screen.json", + }, + "globalpause": { + "message": "ui/global_pause_screen.json", + "quit_button": "ui/global_pause_screen.json", + "globalpause_screen": "ui/global_pause_screen.json", + "pause_screen_content": "ui/global_pause_screen.json", + "pause_screen_content/transparentFill": "ui/global_pause_screen.json", + "pause_screen_content/message": "ui/global_pause_screen.json", + "pause_screen_content/quit_button": "ui/global_pause_screen.json", + }, + "grindstone": { + "title_label": "ui/grindstone_screen.json", + "arrow_icon": "ui/grindstone_screen.json", + "cross_out_icon": "ui/grindstone_screen.json", + "grindstone_output_slot_button": "ui/grindstone_screen.json", + "grindstone_item_slot": "ui/grindstone_screen.json", + "grindstone_item_slot/container_item": "ui/grindstone_screen.json", + "grindstone_middle_panel": "ui/grindstone_screen.json", + "grindstone_middle_panel/input_item_slot": "ui/grindstone_screen.json", + "grindstone_middle_panel/additional_item_slot": "ui/grindstone_screen.json", + "grindstone_slots_panel": "ui/grindstone_screen.json", + "grindstone_slots_panel/grindstone_middle_panel": "ui/grindstone_screen.json", + "grindstone_slots_panel/yields": "ui/grindstone_screen.json", + "grindstone_slots_panel/yields/arrow_icon": "ui/grindstone_screen.json", + "grindstone_slots_panel/yields/cross_out_icon": "ui/grindstone_screen.json", + "grindstone_slots_panel/result_item_slot": "ui/grindstone_screen.json", + "top_half_panel": "ui/grindstone_screen.json", + "top_half_panel/title_label": "ui/grindstone_screen.json", + "top_half_panel/grindstone_slots_panel": "ui/grindstone_screen.json", + "grindstone_panel": "ui/grindstone_screen.json", + "grindstone_panel/container_gamepad_helpers": "ui/grindstone_screen.json", + "grindstone_panel/selected_item_details_factory": "ui/grindstone_screen.json", + "grindstone_panel/item_lock_notification_factory": "ui/grindstone_screen.json", + "grindstone_panel/root_panel": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/common_panel": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/inventory_selected_icon_button": "ui/grindstone_screen.json", + "grindstone_panel/root_panel/gamepad_cursor": "ui/grindstone_screen.json", + "grindstone_panel/flying_item_renderer": "ui/grindstone_screen.json", + "grindstone_screen": "ui/grindstone_screen.json", + }, + "grindstone_pocket": { + "background_image": "ui/grindstone_screen_pocket.json", + "repair_title_label": "ui/grindstone_screen_pocket.json", + "grindstone_middle_panel": "ui/grindstone_screen_pocket.json", + "grindstone_middle_panel/input_slot": "ui/grindstone_screen_pocket.json", + "grindstone_middle_panel/additional_slot": "ui/grindstone_screen_pocket.json", + "slots_panel": "ui/grindstone_screen_pocket.json", + "slots_panel/grindstone_middle_panel": "ui/grindstone_screen_pocket.json", + "slots_panel/arrow": "ui/grindstone_screen_pocket.json", + "slots_panel/arrow/cross_out": "ui/grindstone_screen_pocket.json", + "slots_panel/result_slot": "ui/grindstone_screen_pocket.json", + "grindstone_contents_panel": "ui/grindstone_screen_pocket.json", + "grindstone_contents_panel/repair_title_label": "ui/grindstone_screen_pocket.json", + "grindstone_contents_panel/slots_panel": "ui/grindstone_screen_pocket.json", + "inventory_grid": "ui/grindstone_screen_pocket.json", + "inventory_content": "ui/grindstone_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/grindstone_screen_pocket.json", + "header": "ui/grindstone_screen_pocket.json", + "header/header_background": "ui/grindstone_screen_pocket.json", + "header/legacy_pocket_close_button": "ui/grindstone_screen_pocket.json", + "header/panel": "ui/grindstone_screen_pocket.json", + "header/panel/title_label": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel/inventory_half_screen": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel/grindstone_half_screen": "ui/grindstone_screen_pocket.json", + "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": "ui/grindstone_screen_pocket.json", + "header_and_content_stack_panel": "ui/grindstone_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/grindstone_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_grindstone_panel": "ui/grindstone_screen_pocket.json", + "grindstone_panel": "ui/grindstone_screen_pocket.json", + "grindstone_panel/bg": "ui/grindstone_screen_pocket.json", + "grindstone_panel/root_panel": "ui/grindstone_screen_pocket.json", + "grindstone_panel/header_and_content_stack_panel": "ui/grindstone_screen_pocket.json", + "grindstone_panel/container_gamepad_helpers": "ui/grindstone_screen_pocket.json", + "grindstone_panel/inventory_selected_icon_button": "ui/grindstone_screen_pocket.json", + "grindstone_panel/hold_icon": "ui/grindstone_screen_pocket.json", + "grindstone_panel/selected_item_details_factory": "ui/grindstone_screen_pocket.json", + "grindstone_panel/item_lock_notification_factory": "ui/grindstone_screen_pocket.json", + "grindstone_panel/flying_item_renderer": "ui/grindstone_screen_pocket.json", + }, + "gamma_calibration": { + "stack_panel_centering_panel": "ui/gamma_calibration_screen.json", + "stack_panel_centering_panel/child": "ui/gamma_calibration_screen.json", + "stack_panel_align_left_panel": "ui/gamma_calibration_screen.json", + "stack_panel_align_left_panel/child": "ui/gamma_calibration_screen.json", + "stack_panel_align_right_panel": "ui/gamma_calibration_screen.json", + "stack_panel_align_right_panel/child": "ui/gamma_calibration_screen.json", + "image_panel": "ui/gamma_calibration_screen.json", + "image_panel/padding": "ui/gamma_calibration_screen.json", + "image_panel/image": "ui/gamma_calibration_screen.json", + "horizontal_padding": "ui/gamma_calibration_screen.json", + "image_stack": "ui/gamma_calibration_screen.json", + "image_stack/not_visible_image": "ui/gamma_calibration_screen.json", + "image_stack/padding_0": "ui/gamma_calibration_screen.json", + "image_stack/barely_visible_image": "ui/gamma_calibration_screen.json", + "image_stack/padding_1": "ui/gamma_calibration_screen.json", + "image_stack/easily_visible_image": "ui/gamma_calibration_screen.json", + "button_stack": "ui/gamma_calibration_screen.json", + "button_stack/continue_button_panel": "ui/gamma_calibration_screen.json", + "button_stack/padding": "ui/gamma_calibration_screen.json", + "button_stack/reset_button_panel": "ui/gamma_calibration_screen.json", + "message_panel": "ui/gamma_calibration_screen.json", + "message_panel/message_label": "ui/gamma_calibration_screen.json", + "calibration_slider": "ui/gamma_calibration_screen.json", + "calibration_slider/slider": "ui/gamma_calibration_screen.json", + "continue_button": "ui/gamma_calibration_screen.json", + "reset_button": "ui/gamma_calibration_screen.json", + "main_panel": "ui/gamma_calibration_screen.json", + "main_panel/hdr_message_panel": "ui/gamma_calibration_screen.json", + "main_panel/image_stack_panel": "ui/gamma_calibration_screen.json", + "main_panel/padding_0": "ui/gamma_calibration_screen.json", + "main_panel/slider_panel": "ui/gamma_calibration_screen.json", + "main_panel/padding_1": "ui/gamma_calibration_screen.json", + "main_panel/button_stack_panel": "ui/gamma_calibration_screen.json", + "gamma_calibration_screen": "ui/gamma_calibration_screen.json", + }, + "horse": { + "renderer_bg": "ui/horse_screen.json", + "overlay_image": "ui/horse_screen.json", + "saddle_image": "ui/horse_screen.json", + "horse_armor_image": "ui/horse_screen.json", + "carpet_image": "ui/horse_screen.json", + "nautilus_armor_image": "ui/horse_screen.json", + "horse_label": "ui/horse_screen.json", + "equip_grid": "ui/horse_screen.json", + "inv_grid": "ui/horse_screen.json", + "inv_bg_panel": "ui/horse_screen.json", + "inv_bg_panel/cell_image": "ui/horse_screen.json", + "equip_panel": "ui/horse_screen.json", + "equip_panel/equip_grid": "ui/horse_screen.json", + "equip_panel/saddle": "ui/horse_screen.json", + "equip_panel/horse_armor_0": "ui/horse_screen.json", + "equip_panel/carpet_0": "ui/horse_screen.json", + "equip_panel/nautilus_armor_0": "ui/horse_screen.json", + "equip_panel/horse_armor_1": "ui/horse_screen.json", + "equip_panel/carpet_1": "ui/horse_screen.json", + "equip_panel/nautilus_armor_1": "ui/horse_screen.json", + "inv_panel": "ui/horse_screen.json", + "inv_panel/inv_bg_panel": "ui/horse_screen.json", + "inv_panel/inv_grid": "ui/horse_screen.json", + "horse_renderer": "ui/horse_screen.json", + "horse_renderer/renderer_bg": "ui/horse_screen.json", + "horse_renderer/horse_custom_panel": "ui/horse_screen.json", + "horse_renderer/horse_custom_panel/horse_custom": "ui/horse_screen.json", + "horse_panel": "ui/horse_screen.json", + "horse_panel/container_gamepad_helpers": "ui/horse_screen.json", + "horse_panel/selected_item_details_factory": "ui/horse_screen.json", + "horse_panel/item_lock_notification_factory": "ui/horse_screen.json", + "horse_panel/root_panel": "ui/horse_screen.json", + "horse_panel/root_panel/common_panel": "ui/horse_screen.json", + "horse_panel/root_panel/horse_section_label": "ui/horse_screen.json", + "horse_panel/root_panel/inv_panel": "ui/horse_screen.json", + "horse_panel/root_panel/equipment": "ui/horse_screen.json", + "horse_panel/root_panel/renderer": "ui/horse_screen.json", + "horse_panel/root_panel/inventory_panel_bottom_half_with_label": "ui/horse_screen.json", + "horse_panel/root_panel/hotbar_grid_template": "ui/horse_screen.json", + "horse_panel/root_panel/inventory_selected_icon_button": "ui/horse_screen.json", + "horse_panel/root_panel/gamepad_cursor": "ui/horse_screen.json", + "horse_panel/flying_item_renderer": "ui/horse_screen.json", + "horse_screen": "ui/horse_screen.json", + }, + "horse_pocket": { + "horse_panel": "ui/horse_screen_pocket.json", + "horse_panel/gamepad_helpers": "ui/horse_screen_pocket.json", + "horse_panel/inventory_selected_icon_button": "ui/horse_screen_pocket.json", + "horse_panel/gamepad_cursor": "ui/horse_screen_pocket.json", + "horse_panel/selected_item_details_factory": "ui/horse_screen_pocket.json", + "horse_panel/item_lock_notification_factory": "ui/horse_screen_pocket.json", + "horse_panel/base_panel": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/root_panel": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/hold_icon": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/bg": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/interactive_tabs": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/close_button": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/inventory": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/equipment": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/chest_tab": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/chest_tab/visual_tabs_chest": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/chest_tab/chest": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/renderer_tab": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/renderer_tab/visual_tabs_equip": "ui/horse_screen_pocket.json", + "horse_panel/base_panel/renderer_tab/renderer": "ui/horse_screen_pocket.json", + "horse_panel/flying_item_renderer": "ui/horse_screen_pocket.json", + "background_image": "ui/horse_screen_pocket.json", + "dark_bg": "ui/horse_screen_pocket.json", + "renderer_bg": "ui/horse_screen_pocket.json", + "saddle_image": "ui/horse_screen_pocket.json", + "horse_armor_image": "ui/horse_screen_pocket.json", + "carpet_image": "ui/horse_screen_pocket.json", + "nautilus_armor_image": "ui/horse_screen_pocket.json", + "panel_outline": "ui/horse_screen_pocket.json", + "close_button_default": "ui/horse_screen_pocket.json", + "close_button_pressed": "ui/horse_screen_pocket.json", + "close_button": "ui/horse_screen_pocket.json", + "close_button/default": "ui/horse_screen_pocket.json", + "close_button/hover": "ui/horse_screen_pocket.json", + "close_button/pressed": "ui/horse_screen_pocket.json", + "base_grid": "ui/horse_screen_pocket.json", + "inventory_grid": "ui/horse_screen_pocket.json", + "chest_grid": "ui/horse_screen_pocket.json", + "base_grid_panel": "ui/horse_screen_pocket.json", + "base_grid_panel/panel_outline": "ui/horse_screen_pocket.json", + "base_grid_panel/dark_bg": "ui/horse_screen_pocket.json", + "base_grid_panel/scrolling_panel": "ui/horse_screen_pocket.json", + "inventory_panel": "ui/horse_screen_pocket.json", + "chest_panel": "ui/horse_screen_pocket.json", + "half_screen": "ui/horse_screen_pocket.json", + "middle_screen": "ui/horse_screen_pocket.json", + "half_screen_inventory": "ui/horse_screen_pocket.json", + "half_screen_inventory/inventory_panel": "ui/horse_screen_pocket.json", + "half_screen_chest": "ui/horse_screen_pocket.json", + "half_screen_chest/chest_panel": "ui/horse_screen_pocket.json", + "horse_renderer": "ui/horse_screen_pocket.json", + "horse_renderer/horse_custom": "ui/horse_screen_pocket.json", + "half_screen_renderer": "ui/horse_screen_pocket.json", + "half_screen_renderer/renderer_bg": "ui/horse_screen_pocket.json", + "half_screen_renderer/horse_custom_panel": "ui/horse_screen_pocket.json", + "half_screen_renderer/camel_custom_panel": "ui/horse_screen_pocket.json", + "equip_item_panel": "ui/horse_screen_pocket.json", + "equip_item_panel/equip_container_item": "ui/horse_screen_pocket.json", + "equip_grid": "ui/horse_screen_pocket.json", + "equip_middle_screen": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/equip_grid": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/centered_0": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/offset": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/centered_1": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/centered_2": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/horse_armor_image": "ui/horse_screen_pocket.json", + "equip_middle_screen/equip_grid_panel/carpet_image": "ui/horse_screen_pocket.json", + "horse_screen_tab_toggle": "ui/horse_screen_pocket.json", + "interactive_tabs": "ui/horse_screen_pocket.json", + "interactive_tabs/renderer_tab_interactive": "ui/horse_screen_pocket.json", + "interactive_tabs/chest_tab_interactive": "ui/horse_screen_pocket.json", + "tab_front": "ui/horse_screen_pocket.json", + "tab_back": "ui/horse_screen_pocket.json", + "close_tab": "ui/horse_screen_pocket.json", + "item_icon_renderer": "ui/horse_screen_pocket.json", + "saddle_icon_front": "ui/horse_screen_pocket.json", + "chest_icon_front": "ui/horse_screen_pocket.json", + "visual_tabs_equip": "ui/horse_screen_pocket.json", + "visual_tabs_equip/close_tab": "ui/horse_screen_pocket.json", + "visual_tabs_equip/close_tab/nodrop_zone": "ui/horse_screen_pocket.json", + "visual_tabs_equip/chest": "ui/horse_screen_pocket.json", + "visual_tabs_equip/chest/chest_icon": "ui/horse_screen_pocket.json", + "visual_tabs_equip/equip": "ui/horse_screen_pocket.json", + "visual_tabs_equip/equip/equip_icon": "ui/horse_screen_pocket.json", + "visual_tabs_chest": "ui/horse_screen_pocket.json", + "visual_tabs_chest/close_tab": "ui/horse_screen_pocket.json", + "visual_tabs_chest/chest": "ui/horse_screen_pocket.json", + "visual_tabs_chest/chest/chest_icon": "ui/horse_screen_pocket.json", + "visual_tabs_chest/equip": "ui/horse_screen_pocket.json", + "visual_tabs_chest/equip/equip_icon": "ui/horse_screen_pocket.json", + }, + "how_to_play_common": { + "dynamic_dialog_screen": "ui/how_to_play_common.json", + "screen_background": "ui/how_to_play_common.json", + "top_bar": "ui/how_to_play_common.json", + "button_panel": "ui/how_to_play_common.json", + "light_text_button": "ui/how_to_play_common.json", + "action_button": "ui/how_to_play_common.json", + "topic_category": "ui/how_to_play_common.json", + "topic_category/top_padding": "ui/how_to_play_common.json", + "topic_category/category_text": "ui/how_to_play_common.json", + "toggle_button_control": "ui/how_to_play_common.json", + "toggle_button_control/tab_button_text": "ui/how_to_play_common.json", + "glyph_button_control": "ui/how_to_play_common.json", + "glyph_button_control/tab_button_text": "ui/how_to_play_common.json", + "glyph_button_control/glyph": "ui/how_to_play_common.json", + "section_toggle_button": "ui/how_to_play_common.json", + "section_toggle_button/section_toggle_button": "ui/how_to_play_common.json", + "edu_section_toggle_button": "ui/how_to_play_common.json", + "padding": "ui/how_to_play_common.json", + "touch_padding": "ui/how_to_play_common.json", + "small_padding": "ui/how_to_play_common.json", + "large_padding": "ui/how_to_play_common.json", + "section_contents_header": "ui/how_to_play_common.json", + "section_contents_footer": "ui/how_to_play_common.json", + "main_sections": "ui/how_to_play_common.json", + "splitscreen_only_content": "ui/how_to_play_common.json", + "splitscreen_only_content/0": "ui/how_to_play_common.json", + "tts_focus_border": "ui/how_to_play_common.json", + "header_tts_focus_border": "ui/how_to_play_common.json", + "header_background": "ui/how_to_play_common.json", + "header_background/header_label": "ui/how_to_play_common.json", + "header_background/focus_border": "ui/how_to_play_common.json", + "header": "ui/how_to_play_common.json", + "header/header": "ui/how_to_play_common.json", + "paragraph_panel": "ui/how_to_play_common.json", + "paragraph_label": "ui/how_to_play_common.json", + "paragraph_tts_focus_border": "ui/how_to_play_common.json", + "paragraph": "ui/how_to_play_common.json", + "paragraph/label": "ui/how_to_play_common.json", + "paragraph/focus_border": "ui/how_to_play_common.json", + "paragraph_with_icons": "ui/how_to_play_common.json", + "paragraph_with_icons/label": "ui/how_to_play_common.json", + "paragraph_with_icons/focus_border": "ui/how_to_play_common.json", + "input_conditional_paragraph": "ui/how_to_play_common.json", + "input_conditional_paragraph_with_icons": "ui/how_to_play_common.json", + "paragraph_keyboard": "ui/how_to_play_common.json", + "paragraph_gamepad": "ui/how_to_play_common.json", + "paragraph_gamepad_no_icons": "ui/how_to_play_common.json", + "paragraph_touch": "ui/how_to_play_common.json", + "paragraph_touch_classic_dpad_spacing": "ui/how_to_play_common.json", + "paragraph_touch_no_icons": "ui/how_to_play_common.json", + "paragraph_touch_joystick_tap": "ui/how_to_play_common.json", + "paragraph_touch_classic_dpad": "ui/how_to_play_common.json", + "paragraph_touch_joystick_crosshair": "ui/how_to_play_common.json", + "paragraph_not_touch": "ui/how_to_play_common.json", + "image": "ui/how_to_play_common.json", + "how_to_play_header": "ui/how_to_play_common.json", + "how_to_play_header/top_bar": "ui/how_to_play_common.json", + "how_to_play_header/top_bar/back_button": "ui/how_to_play_common.json", + "how_to_play_header/top_bar/how_to_play_title": "ui/how_to_play_common.json", + "how_to_play_header/top_bar/gamepad_bumper_helpers": "ui/how_to_play_common.json", + "how_to_play_content": "ui/how_to_play_common.json", + "how_to_play_content/header": "ui/how_to_play_common.json", + "how_to_play_content/container": "ui/how_to_play_common.json", + "dialog_content": "ui/how_to_play_common.json", + "dialog_content/selector_area": "ui/how_to_play_common.json", + "dialog_content/content_area": "ui/how_to_play_common.json", + "dialog_content/section_divider": "ui/how_to_play_common.json", + "scrollable_selector_area_content": "ui/how_to_play_common.json", + "selector_area": "ui/how_to_play_common.json", + "selector_area/scrolling_panel": "ui/how_to_play_common.json", + "section_divider": "ui/how_to_play_common.json", + "content_area_wrapper": "ui/how_to_play_common.json", + "content_area_wrapper/content_area": "ui/how_to_play_common.json", + "content_area": "ui/how_to_play_common.json", + "content_area/control": "ui/how_to_play_common.json", + "content_area/control/scrolling_panel": "ui/how_to_play_common.json", + "screen_base": "ui/how_to_play_common.json", + "gamepad_bumper_helper_description": "ui/how_to_play_common.json", + "gamepad_bumper_helpers": "ui/how_to_play_common.json", + "gamepad_bumper_helpers/gamepad_helper_left_bumper": "ui/how_to_play_common.json", + "gamepad_bumper_helpers/padding": "ui/how_to_play_common.json", + "gamepad_bumper_helpers/gamepad_helper_right_bumper": "ui/how_to_play_common.json", + }, + "how_to_play": { + "how_to_play_screen": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": "ui/how_to_play_screen.json", + "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/section_contents_header": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/moving_around_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/inventory_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/mining_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/food_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/beds_new_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/world_builder_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/chemistry_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/npc_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/camera_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/portfolio_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/code_builder_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/playing_together_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": "ui/how_to_play_screen.json", + "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": "ui/how_to_play_screen.json", + "moving_around_button": "ui/how_to_play_screen.json", + "moving_around_section": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_1": "ui/how_to_play_screen.json", + "moving_around_section/padding_1": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_touch_joystick_tap": "ui/how_to_play_screen.json", + "moving_around_section/padding_2": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3a_keyboard": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3b_keyboard": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3a_gamepad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3b_gamepad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3_touch_joystick_tap": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3a_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3b_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3c_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3d_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3e_touch_classic_dpad": "ui/how_to_play_screen.json", + "moving_around_section/paragraph_3_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "moving_around_section/image_1": "ui/how_to_play_screen.json", + "gathering_resources_button": "ui/how_to_play_screen.json", + "gathering_resources_section": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_1": "ui/how_to_play_screen.json", + "gathering_resources_section/padding_1": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_touch_joystick_tap": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_touch_classic_dpad": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_2_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "gathering_resources_section/padding_2": "ui/how_to_play_screen.json", + "gathering_resources_section/paragraph_3": "ui/how_to_play_screen.json", + "selecting_items_button": "ui/how_to_play_screen.json", + "selecting_items_section": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_1": "ui/how_to_play_screen.json", + "selecting_items_section/padding_1": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_touch_joystick_tap": "ui/how_to_play_screen.json", + "selecting_items_section/padding_2": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_touch_joystick_tap": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_touch_classic_dpad": "ui/how_to_play_screen.json", + "selecting_items_section/paragraph_3_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "selecting_items_section/padding_3": "ui/how_to_play_screen.json", + "selecting_items_section/header_1": "ui/how_to_play_screen.json", + "selecting_items_section/image_1_not_touch": "ui/how_to_play_screen.json", + "selecting_items_section/image_1_touch": "ui/how_to_play_screen.json", + "placing_blocks_button": "ui/how_to_play_screen.json", + "placing_blocks_section": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_1": "ui/how_to_play_screen.json", + "placing_blocks_section/padding_1": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_touch_joystick_tap": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_touch_classic_dpad": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_2_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "placing_blocks_section/padding_2": "ui/how_to_play_screen.json", + "placing_blocks_section/paragraph_3": "ui/how_to_play_screen.json", + "inventory_button": "ui/how_to_play_screen.json", + "inventory_section": "ui/how_to_play_screen.json", + "inventory_section/image_1_not_touch": "ui/how_to_play_screen.json", + "inventory_section/image_1_touch": "ui/how_to_play_screen.json", + "inventory_section/header_1": "ui/how_to_play_screen.json", + "inventory_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", + "inventory_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", + "inventory_section/paragraph_1_touch": "ui/how_to_play_screen.json", + "inventory_section/padding_2": "ui/how_to_play_screen.json", + "inventory_section/header_2": "ui/how_to_play_screen.json", + "inventory_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "inventory_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "inventory_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "your_first_craft_button": "ui/how_to_play_screen.json", + "your_first_craft_section": "ui/how_to_play_screen.json", + "your_first_craft_section/image_1_not_touch": "ui/how_to_play_screen.json", + "your_first_craft_section/image_1_touch": "ui/how_to_play_screen.json", + "your_first_craft_section/header_1": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_1": "ui/how_to_play_screen.json", + "your_first_craft_section/padding_2": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_2": "ui/how_to_play_screen.json", + "your_first_craft_section/padding_3": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_3_touch": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", + "your_first_craft_section/padding_4": "ui/how_to_play_screen.json", + "your_first_craft_section/header_2": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_4": "ui/how_to_play_screen.json", + "your_first_craft_section/padding_5": "ui/how_to_play_screen.json", + "your_first_craft_section/paragraph_5": "ui/how_to_play_screen.json", + "recipe_book_button": "ui/how_to_play_screen.json", + "recipe_book_section": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_1_touch": "ui/how_to_play_screen.json", + "recipe_book_section/padding_1": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "recipe_book_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "the_crafting_table_button": "ui/how_to_play_screen.json", + "the_crafting_table_section": "ui/how_to_play_screen.json", + "the_crafting_table_section/image_1": "ui/how_to_play_screen.json", + "the_crafting_table_section/paragraph_1": "ui/how_to_play_screen.json", + "the_crafting_table_section/padding_2": "ui/how_to_play_screen.json", + "the_crafting_table_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "the_crafting_table_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "the_crafting_table_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "crafting_a_tool_button": "ui/how_to_play_screen.json", + "crafting_a_tool_section": "ui/how_to_play_screen.json", + "crafting_a_tool_section/paragraph_1": "ui/how_to_play_screen.json", + "crafting_a_tool_section/padding_1": "ui/how_to_play_screen.json", + "crafting_a_tool_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "crafting_a_tool_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "crafting_a_tool_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "mining_button": "ui/how_to_play_screen.json", + "mining_section": "ui/how_to_play_screen.json", + "mining_section/image_1": "ui/how_to_play_screen.json", + "mining_section/paragraph_1": "ui/how_to_play_screen.json", + "mining_section/padding_2": "ui/how_to_play_screen.json", + "mining_section/paragraph_2": "ui/how_to_play_screen.json", + "mining_section/padding_3": "ui/how_to_play_screen.json", + "mining_section/paragraph_3": "ui/how_to_play_screen.json", + "nightfall_new_button": "ui/how_to_play_screen.json", + "nightfall_new_section": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_1": "ui/how_to_play_screen.json", + "nightfall_new_section/padding_1": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_2": "ui/how_to_play_screen.json", + "nightfall_new_section/padding_2": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_3": "ui/how_to_play_screen.json", + "nightfall_new_section/padding_3": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_keyboard": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_gamepad": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_touch_joystick_tap": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_touch_classic_dpad": "ui/how_to_play_screen.json", + "nightfall_new_section/paragraph_4_touch_joystick_crosshair": "ui/how_to_play_screen.json", + "building_a_shelter_button": "ui/how_to_play_screen.json", + "building_a_shelter_section": "ui/how_to_play_screen.json", + "building_a_shelter_section/image_1": "ui/how_to_play_screen.json", + "building_a_shelter_section/paragraph_1": "ui/how_to_play_screen.json", + "building_a_shelter_section/padding_2": "ui/how_to_play_screen.json", + "building_a_shelter_section/paragraph_2": "ui/how_to_play_screen.json", + "building_a_shelter_section/padding_3": "ui/how_to_play_screen.json", + "building_a_shelter_section/paragraph_3": "ui/how_to_play_screen.json", + "death_and_respawn_button": "ui/how_to_play_screen.json", + "death_and_respawn_section": "ui/how_to_play_screen.json", + "death_and_respawn_section/paragraph_1": "ui/how_to_play_screen.json", + "death_and_respawn_section/padding_1": "ui/how_to_play_screen.json", + "death_and_respawn_section/paragraph_2": "ui/how_to_play_screen.json", + "food_button": "ui/how_to_play_screen.json", + "food_section": "ui/how_to_play_screen.json", + "food_section/paragraph_1": "ui/how_to_play_screen.json", + "food_section/padding_1": "ui/how_to_play_screen.json", + "food_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "food_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "food_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "food_section/padding_2": "ui/how_to_play_screen.json", + "food_section/paragraph_3": "ui/how_to_play_screen.json", + "beds_new_button": "ui/how_to_play_screen.json", + "beds_new_section": "ui/how_to_play_screen.json", + "beds_new_section/paragraph_1": "ui/how_to_play_screen.json", + "beds_new_section/padding_1": "ui/how_to_play_screen.json", + "beds_new_section/paragraph_2": "ui/how_to_play_screen.json", + "beds_new_section/padding_2": "ui/how_to_play_screen.json", + "beds_new_section/paragraph_3": "ui/how_to_play_screen.json", + "improved_tools_button": "ui/how_to_play_screen.json", + "improved_tools_section": "ui/how_to_play_screen.json", + "improved_tools_section/paragraph_1": "ui/how_to_play_screen.json", + "improved_tools_section/padding_1": "ui/how_to_play_screen.json", + "improved_tools_section/paragraph_2": "ui/how_to_play_screen.json", + "world_builder_button": "ui/how_to_play_screen.json", + "world_builder_section": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_1": "ui/how_to_play_screen.json", + "world_builder_section/padding_1": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_2": "ui/how_to_play_screen.json", + "world_builder_section/padding_2": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_3": "ui/how_to_play_screen.json", + "world_builder_section/padding_3": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_4": "ui/how_to_play_screen.json", + "world_builder_section/padding_4": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_5": "ui/how_to_play_screen.json", + "world_builder_section/padding_5": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_6": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_7": "ui/how_to_play_screen.json", + "world_builder_section/padding_7": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_8": "ui/how_to_play_screen.json", + "world_builder_section/padding_8": "ui/how_to_play_screen.json", + "world_builder_section/paragraph_9": "ui/how_to_play_screen.json", + "permission_blocks_button": "ui/how_to_play_screen.json", + "permission_blocks_section": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_1": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_1": "ui/how_to_play_screen.json", + "permission_blocks_section/header_1": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_2": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_3": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_3": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_4": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_4": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_5": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_5": "ui/how_to_play_screen.json", + "permission_blocks_section/padding_7": "ui/how_to_play_screen.json", + "permission_blocks_section/header_2": "ui/how_to_play_screen.json", + "permission_blocks_section/paragraph_6": "ui/how_to_play_screen.json", + "chalkboard_button": "ui/how_to_play_screen.json", + "chalkboard_section": "ui/how_to_play_screen.json", + "chalkboard_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", + "chalkboard_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", + "chalkboard_section/paragraph_1_touch": "ui/how_to_play_screen.json", + "chemistry_button": "ui/how_to_play_screen.json", + "chemistry_section": "ui/how_to_play_screen.json", + "chemistry_section/paragraph_1": "ui/how_to_play_screen.json", + "chemistry_section/padding_1": "ui/how_to_play_screen.json", + "chemistry_section/paragraph_2": "ui/how_to_play_screen.json", + "npc_button": "ui/how_to_play_screen.json", + "npc_section": "ui/how_to_play_screen.json", + "npc_section/paragraph_1": "ui/how_to_play_screen.json", + "npc_section/padding_1": "ui/how_to_play_screen.json", + "npc_section/paragraph_2": "ui/how_to_play_screen.json", + "npc_section/padding_2": "ui/how_to_play_screen.json", + "npc_section/paragraph_3": "ui/how_to_play_screen.json", + "camera_button": "ui/how_to_play_screen.json", + "camera_section": "ui/how_to_play_screen.json", + "camera_section/paragraph_1": "ui/how_to_play_screen.json", + "camera_section/padding_1": "ui/how_to_play_screen.json", + "camera_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "camera_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "camera_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "camera_section/padding_2": "ui/how_to_play_screen.json", + "camera_section/paragraph_3_keyboard": "ui/how_to_play_screen.json", + "camera_section/paragraph_3_gamepad": "ui/how_to_play_screen.json", + "camera_section/paragraph_3_touch": "ui/how_to_play_screen.json", + "camera_section/padding_3": "ui/how_to_play_screen.json", + "camera_section/paragraph_4": "ui/how_to_play_screen.json", + "portfolio_button": "ui/how_to_play_screen.json", + "portfolio_section": "ui/how_to_play_screen.json", + "portfolio_section/paragraph_1_keyboard": "ui/how_to_play_screen.json", + "portfolio_section/paragraph_1_gamepad": "ui/how_to_play_screen.json", + "portfolio_section/paragraph_1_touch": "ui/how_to_play_screen.json", + "classroom_mode_button": "ui/how_to_play_screen.json", + "classroom_mode_section": "ui/how_to_play_screen.json", + "classroom_mode_section/paragraph_1": "ui/how_to_play_screen.json", + "classroom_mode_section/padding_1": "ui/how_to_play_screen.json", + "classroom_mode_section/paragraph_2": "ui/how_to_play_screen.json", + "code_builder_button": "ui/how_to_play_screen.json", + "code_builder_section": "ui/how_to_play_screen.json", + "code_builder_section/paragraph_1": "ui/how_to_play_screen.json", + "code_builder_section/padding_1": "ui/how_to_play_screen.json", + "code_builder_section/paragraph_2_keyboard": "ui/how_to_play_screen.json", + "code_builder_section/paragraph_2_gamepad": "ui/how_to_play_screen.json", + "code_builder_section/paragraph_2_touch": "ui/how_to_play_screen.json", + "playing_together_button": "ui/how_to_play_screen.json", + "playing_together_section": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_1": "ui/how_to_play_screen.json", + "playing_together_section/padding_1": "ui/how_to_play_screen.json", + "playing_together_section/header_1": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_2": "ui/how_to_play_screen.json", + "playing_together_section/padding_2": "ui/how_to_play_screen.json", + "playing_together_section/header_2": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_3": "ui/how_to_play_screen.json", + "playing_together_section/padding_3": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_4": "ui/how_to_play_screen.json", + "playing_together_section/padding_4": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_5": "ui/how_to_play_screen.json", + "playing_together_section/padding_5": "ui/how_to_play_screen.json", + "playing_together_section/header_3": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_6": "ui/how_to_play_screen.json", + "playing_together_section/padding_6": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_7": "ui/how_to_play_screen.json", + "playing_together_section/padding_7": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_8": "ui/how_to_play_screen.json", + "playing_together_section/realms_button": "ui/how_to_play_screen.json", + "playing_together_section/sign_in_button": "ui/how_to_play_screen.json", + "playing_together_section/padding_8": "ui/how_to_play_screen.json", + "playing_together_section/header_4": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_9": "ui/how_to_play_screen.json", + "playing_together_section/padding_9": "ui/how_to_play_screen.json", + "playing_together_section/paragraph_10": "ui/how_to_play_screen.json", + "try_realms_action_button": "ui/how_to_play_screen.json", + "encyclopedia_button": "ui/how_to_play_screen.json", + "encyclopedia_section": "ui/how_to_play_screen.json", + "encyclopedia_section/paragraph_1": "ui/how_to_play_screen.json", + }, + "hud": { + "hud_player_renderer": "ui/hud_screen.json", + "hud_player_renderer/hud_player": "ui/hud_screen.json", + "hotbar_renderer": "ui/hud_screen.json", + "hotbar_renderer/hotbar_slot_image": "ui/hud_screen.json", + "cooldown_renderer": "ui/hud_screen.json", + "heart_renderer": "ui/hud_screen.json", + "horse_heart_renderer": "ui/hud_screen.json", + "armor_renderer": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend/hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar/item_text_factory": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/hotbar_panel": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/item_text": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": "ui/hud_screen.json", + "exp_progress_bar_and_hotbar_pocket/dash_rend": "ui/hud_screen.json", + "full_progress_bar": "ui/hud_screen.json", + "empty_progress_bar": "ui/hud_screen.json", + "progress_bar_nub": "ui/hud_screen.json", + "progress_text_label": "ui/hud_screen.json", + "horse_jump_renderer": "ui/hud_screen.json", + "dash_renderer": "ui/hud_screen.json", + "locator_bar": "ui/hud_screen.json", + "hunger_renderer": "ui/hud_screen.json", + "bubbles_renderer": "ui/hud_screen.json", + "mob_effects_renderer": "ui/hud_screen.json", + "vignette_renderer": "ui/hud_screen.json", + "editor_gizmo_renderer": "ui/hud_screen.json", + "cursor_renderer": "ui/hud_screen.json", + "progress_indicator_renderer": "ui/hud_screen.json", + "camera_renderer": "ui/hud_screen.json", + "editor_volume_highlight_renderer": "ui/hud_screen.json", + "editor_compass_renderer": "ui/hud_screen.json", + "hotbar_hud_item_icon": "ui/hud_screen.json", + "elipses_image": "ui/hud_screen.json", + "bound_button_label": "ui/hud_screen.json", + "default_borderless_button_layout": "ui/hud_screen.json", + "hover_borderless_button_layout": "ui/hud_screen.json", + "pressed_borderless_button_layout": "ui/hud_screen.json", + "borderless_button": "ui/hud_screen.json", + "borderless_button/default": "ui/hud_screen.json", + "borderless_button/hover": "ui/hud_screen.json", + "borderless_button/pressed": "ui/hud_screen.json", + "borderless_button/elipses": "ui/hud_screen.json", + "hotbar_elipses_button": "ui/hud_screen.json", + "start_cap_image": "ui/hud_screen.json", + "end_cap_image": "ui/hud_screen.json", + "hotbar_start_cap": "ui/hud_screen.json", + "hotbar_start_cap/start_cap_image": "ui/hud_screen.json", + "hotbar_end_cap": "ui/hud_screen.json", + "hotbar_end_cap/end_cap_image": "ui/hud_screen.json", + "heart_image": "ui/hud_screen.json", + "hotbar_slot_image": "ui/hud_screen.json", + "hotbar_slot_selected_image": "ui/hud_screen.json", + "gui_hotbar_slot_button_prototype": "ui/hud_screen.json", + "player_position": "ui/hud_screen.json", + "player_position/player_position_text": "ui/hud_screen.json", + "number_of_days_played": "ui/hud_screen.json", + "number_of_days_played/number_of_days_played_text": "ui/hud_screen.json", + "chat_label": "ui/hud_screen.json", + "chat_grid_item": "ui/hud_screen.json", + "chat_grid_item/chat_background": "ui/hud_screen.json", + "chat_grid_item/chat_background/chat_text": "ui/hud_screen.json", + "chat_panel": "ui/hud_screen.json", + "chat_panel/stack_panel": "ui/hud_screen.json", + "item_durability": "ui/hud_screen.json", + "item_storage": "ui/hud_screen.json", + "container_item_lock_overlay": "ui/hud_screen.json", + "item_lock_cell_image": "ui/hud_screen.json", + "gui_hotbar_grid_item": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_slot_selected_image": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_renderer": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/item_icon": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/item_count": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/item_dura": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/item_store": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": "ui/hud_screen.json", + "gui_hotbar_grid_item/cooldown_renderer": "ui/hud_screen.json", + "gui_hotbar_grid_item/hotbar_slot_button": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_renderer": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/cooldown_renderer": "ui/hud_screen.json", + "gui_hotbar_grid_item_pocket/hotbar_slot_button": "ui/hud_screen.json", + "centered_gui_elements": "ui/hud_screen.json", + "centered_gui_elements/hud_player_rend_desktop": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/heart_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/armor_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/hunger_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/bubbles_rend_0": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/bubbles_rend_1": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle/exp_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/heart_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/armor_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/hunger_rend": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": "ui/hud_screen.json", + "centered_gui_elements_at_bottom_middle_touch/exp_rend": "ui/hud_screen.json", + "not_centered_gui_elements": "ui/hud_screen.json", + "not_centered_gui_elements/heart_rend": "ui/hud_screen.json", + "not_centered_gui_elements/horse_heart_rend": "ui/hud_screen.json", + "not_centered_gui_elements/hunger_rend": "ui/hud_screen.json", + "not_centered_gui_elements/armor_rend": "ui/hud_screen.json", + "not_centered_gui_elements/hud_player_rend_pocket": "ui/hud_screen.json", + "not_centered_gui_elements/bubbles_rend_0": "ui/hud_screen.json", + "not_centered_gui_elements/bubbles_rend_1": "ui/hud_screen.json", + "hotbar_chooser": "ui/hud_screen.json", + "hotbar_chooser/desktop_hotbar": "ui/hud_screen.json", + "hotbar_chooser/pocket_hotbar": "ui/hud_screen.json", + "hotbar_elipses_panel_right_content": "ui/hud_screen.json", + "hotbar_elipses_panel_right_content/elipses_content": "ui/hud_screen.json", + "hotbar_elipses_panel_right_art": "ui/hud_screen.json", + "hotbar_elipses_panel_right_art/slot": "ui/hud_screen.json", + "hotbar_elipses_panel_right_art/button": "ui/hud_screen.json", + "hotbar_elipses_panel_left_content": "ui/hud_screen.json", + "hotbar_elipses_panel_left_content/button": "ui/hud_screen.json", + "hotbar_elipses_panel_left_art": "ui/hud_screen.json", + "hotbar_elipses_panel_left_art/slot": "ui/hud_screen.json", + "hotbar_elipses_panel_left_art/button": "ui/hud_screen.json", + "hotbar_panel": "ui/hud_screen.json", + "hotbar_panel/hotbar_start_cap": "ui/hud_screen.json", + "hotbar_panel/hotbar_elipses_panel_left": "ui/hud_screen.json", + "hotbar_panel/hotbar_grid": "ui/hud_screen.json", + "hotbar_panel/hotbar_elipses_panel_right": "ui/hud_screen.json", + "hotbar_panel/hotbar_end_cap": "ui/hud_screen.json", + "hotbar_panel_pocket": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_start_cap_frame": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_elipses_panel_left": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_grid": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_elipses_panel_right": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_end_cap_frame": "ui/hud_screen.json", + "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": "ui/hud_screen.json", + "hotbar_grid": "ui/hud_screen.json", + "edu_hotbar_grid": "ui/hud_screen.json", + "item_name_text_root": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/item_text_control": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/item_text_control/item_text_background": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/item_text_control/item_text_label": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/interact_padding": "ui/hud_screen.json", + "item_name_text_root/item_text_aligner/survival_buffer": "ui/hud_screen.json", + "item_name_text": "ui/hud_screen.json", + "jukebox_popup_text": "ui/hud_screen.json", + "hud_tip_text": "ui/hud_screen.json", + "hud_tip_text/item_text_label": "ui/hud_screen.json", + "auto_save": "ui/hud_screen.json", + "hud_actionbar_text": "ui/hud_screen.json", + "hud_actionbar_text/actionbar_message": "ui/hud_screen.json", + "hud_title_text": "ui/hud_screen.json", + "hud_title_text/title_frame": "ui/hud_screen.json", + "hud_title_text/title_frame/title_background": "ui/hud_screen.json", + "hud_title_text/title_frame/title": "ui/hud_screen.json", + "hud_title_text/subtitle_frame": "ui/hud_screen.json", + "hud_title_text/subtitle_frame/subtitle_background": "ui/hud_screen.json", + "hud_title_text/subtitle_frame/subtitle": "ui/hud_screen.json", + "boss_name_panel": "ui/hud_screen.json", + "boss_name_panel/boss_name": "ui/hud_screen.json", + "tooltip_helper_icon_description": "ui/hud_screen.json", + "tooltip_helper_icon_description/label_background": "ui/hud_screen.json", + "tooltip_helper": "ui/hud_screen.json", + "tooltip_helper/icon": "ui/hud_screen.json", + "tooltip_helper/padding": "ui/hud_screen.json", + "tooltip_helper/centerer": "ui/hud_screen.json", + "tooltip_helper/centerer/desc": "ui/hud_screen.json", + "tooltip_helper_form_fitting": "ui/hud_screen.json", + "tooltip_helper_form_fitting/icon": "ui/hud_screen.json", + "tooltip_helper_form_fitting/padding": "ui/hud_screen.json", + "tooltip_helper_form_fitting/centerer": "ui/hud_screen.json", + "tooltip_helper_form_fitting/centerer/desc": "ui/hud_screen.json", + "keyboard_tooltip_helper": "ui/hud_screen.json", + "keyboard_tooltip_helper_form_fitting": "ui/hud_screen.json", + "mixed_tooltip_helper": "ui/hud_screen.json", + "mixed_tooltip_helper/gamepad_tooltip": "ui/hud_screen.json", + "mixed_tooltip_helper/keyboard_tooltip": "ui/hud_screen.json", + "mixed_tooltip_helper_form_fitting": "ui/hud_screen.json", + "mixed_tooltip_helper_form_fitting/gamepad_tooltip": "ui/hud_screen.json", + "mixed_tooltip_helper_form_fitting/keyboard_tooltip": "ui/hud_screen.json", + "base_icon_image": "ui/hud_screen.json", + "base_icon_image/icon": "ui/hud_screen.json", + "base_icon_image/postfix_label_wrapper": "ui/hud_screen.json", + "base_icon_image/postfix_label_wrapper/label": "ui/hud_screen.json", + "base_keyboard_icon": "ui/hud_screen.json", + "base_keyboard_icon/icon": "ui/hud_screen.json", + "base_keyboard_icon/icon/key_backing": "ui/hud_screen.json", + "base_keyboard_icon/icon/key_backing/key_label": "ui/hud_screen.json", + "base_keyboard_icon/icon/mouse_buttons": "ui/hud_screen.json", + "left_helpers_edu": "ui/hud_screen.json", + "left_helpers_edu/tip_window": "ui/hud_screen.json", + "left_helpers_edu/tip_window/stack_panel": "ui/hud_screen.json", + "left_helpers_edu/tip_paddding": "ui/hud_screen.json", + "left_helpers_edu/controls_toggle_label": "ui/hud_screen.json", + "left_helpers_edu/controls_toggle_label/tip": "ui/hud_screen.json", + "left_helpers_edu/controls_inventory_label": "ui/hud_screen.json", + "left_helpers_edu/controls_inventory_label/tip": "ui/hud_screen.json", + "left_helpers_edu/controls_menu_label": "ui/hud_screen.json", + "left_helpers_edu/controls_menu_label/tip": "ui/hud_screen.json", + "left_helpers": "ui/hud_screen.json", + "left_helpers/stack_panel": "ui/hud_screen.json", + "emote_label_background": "ui/hud_screen.json", + "emote_tip": "ui/hud_screen.json", + "emote_tip/emote_keyboard_centerer": "ui/hud_screen.json", + "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": "ui/hud_screen.json", + "emote_tip/emote_gamepad_helper": "ui/hud_screen.json", + "emote_expediate_helpers": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel/emote_tip_0": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel/emote_tip_1": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel/emote_tip_2": "ui/hud_screen.json", + "emote_expediate_helpers/stack_panel/emote_tip_3": "ui/hud_screen.json", + "right_helpers": "ui/hud_screen.json", + "right_helpers/stack_panel": "ui/hud_screen.json", + "boss_health_panel": "ui/hud_screen.json", + "boss_health_panel/boss_name": "ui/hud_screen.json", + "boss_health_panel/progress_bar_for_collections": "ui/hud_screen.json", + "boss_health_grid": "ui/hud_screen.json", + "wysiwyg_reset_modal_ok": "ui/hud_screen.json", + "wysiwyg_reset_modal_cancel": "ui/hud_screen.json", + "wysiwyg_close_without_saving_modal_ok": "ui/hud_screen.json", + "wysiwyg_close_without_saving_modal_cancel": "ui/hud_screen.json", + "root_panel": "ui/hud_screen.json", + "root_panel/layout_customization_reset": "ui/hud_screen.json", + "root_panel/layout_customization_reset/layout_customization_reset_modal": "ui/hud_screen.json", + "root_panel/layout_customization_close_without_saving": "ui/hud_screen.json", + "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": "ui/hud_screen.json", + "root_panel/layout_customization_main_panel": "ui/hud_screen.json", + "root_panel/layout_customization_sub_panel": "ui/hud_screen.json", + "root_panel/layout_customization_hint_drag_frame": "ui/hud_screen.json", + "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": "ui/hud_screen.json", + "root_panel/layout_customization_hint_deselect_frame": "ui/hud_screen.json", + "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": "ui/hud_screen.json", + "root_panel/layout_customization_hint_saved": "ui/hud_screen.json", + "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": "ui/hud_screen.json", + "root_panel/left_helpers": "ui/hud_screen.json", + "root_panel/right_helpers": "ui/hud_screen.json", + "root_panel/emote_expediate_helpers": "ui/hud_screen.json", + "root_panel/centered_gui_elements": "ui/hud_screen.json", + "root_panel/centered_gui_elements_at_bottom_middle": "ui/hud_screen.json", + "root_panel/centered_gui_elements_at_bottom_middle_touch": "ui/hud_screen.json", + "root_panel/not_centered_gui_elements": "ui/hud_screen.json", + "root_panel/gamertag_label_for_splitscreen": "ui/hud_screen.json", + "root_panel/exp_rend": "ui/hud_screen.json", + "root_panel/exp_rend_resizable": "ui/hud_screen.json", + "root_panel/hud_tip_text_factory": "ui/hud_screen.json", + "root_panel/hud_actionbar_text_area": "ui/hud_screen.json", + "root_panel/hud_title_text_area": "ui/hud_screen.json", + "root_panel/mob_effects_renderer": "ui/hud_screen.json", + "root_panel/vignette_rend": "ui/hud_screen.json", + "root_panel/curor_rend": "ui/hud_screen.json", + "root_panel/game_tip": "ui/hud_screen.json", + "root_panel/sidebar": "ui/hud_screen.json", + "root_panel/progress_rend": "ui/hud_screen.json", + "root_panel/chat_stack": "ui/hud_screen.json", + "root_panel/chat_stack/paper_doll_padding": "ui/hud_screen.json", + "root_panel/chat_stack/non_centered_gui_padding": "ui/hud_screen.json", + "root_panel/chat_stack/player_position": "ui/hud_screen.json", + "root_panel/chat_stack/number_of_days_played": "ui/hud_screen.json", + "root_panel/chat_stack/game_tip": "ui/hud_screen.json", + "root_panel/chat_stack/chat_panel": "ui/hud_screen.json", + "root_panel/boss_health_panel": "ui/hud_screen.json", + "root_panel/boss_health_panel/boss_hud_padding": "ui/hud_screen.json", + "root_panel/boss_health_panel/boss_hud_touch_padding": "ui/hud_screen.json", + "root_panel/boss_health_panel/boss_hud_panel": "ui/hud_screen.json", + "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": "ui/hud_screen.json", + "root_panel/save_icon": "ui/hud_screen.json", + "hud_screen": "ui/hud_screen.json", + "hud_content": "ui/hud_screen.json", + "hud_content/root_panel": "ui/hud_screen.json", + "hud_content/editor_gizmo_renderer": "ui/hud_screen.json", + "hud_content/editor_compass_renderer": "ui/hud_screen.json", + "hud_content/editor_volume_highlight_renderer": "ui/hud_screen.json", + "hud_content/camera_renderer": "ui/hud_screen.json", + "layout_customization_main_panel_button": "ui/hud_screen.json", + "layout_customization_main_panel_button/button": "ui/hud_screen.json", + "layout_customization_main_panel": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": "ui/hud_screen.json", + "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": "ui/hud_screen.json", + "layout_customization_option_slider": "ui/hud_screen.json", + "layout_customization_option_slider/slider": "ui/hud_screen.json", + "layout_customization_option_slider/reset": "ui/hud_screen.json", + "layout_customization_option_slider/reset/reset_button": "ui/hud_screen.json", + "layout_customization_option_slider/reset/reset_button/default": "ui/hud_screen.json", + "layout_customization_option_slider/reset/reset_button/hover": "ui/hud_screen.json", + "layout_customization_option_slider/reset/reset_button/pressed": "ui/hud_screen.json", + "layout_customization_option_content": "ui/hud_screen.json", + "layout_customization_option_content/scale_option": "ui/hud_screen.json", + "layout_customization_option_content/opacity_option": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/caption_frame": "ui/hud_screen.json", + "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": "ui/hud_screen.json", + "layout_customization_option": "ui/hud_screen.json", + "layout_customization_option/content": "ui/hud_screen.json", + "layout_customization_sub_panel": "ui/hud_screen.json", + "layout_customization_sub_panel/background": "ui/hud_screen.json", + "layout_customization_sub_panel/background/sub_panel_content": "ui/hud_screen.json", + }, + "host_options": { + "button_label": "ui/host_options_screen.json", + "host_image_panel": "ui/host_options_screen.json", + "host_image_panel/host_image": "ui/host_options_screen.json", + "host_glyph_panel": "ui/host_options_screen.json", + "scrollable_selector_area": "ui/host_options_screen.json", + "host_main_button": "ui/host_options_screen.json", + "scrolling_panel": "ui/host_options_screen.json", + "scrolling_panel/background": "ui/host_options_screen.json", + "scrolling_panel/scrollable_tab": "ui/host_options_screen.json", + "button_content": "ui/host_options_screen.json", + "button_content/button_label": "ui/host_options_screen.json", + "button_content/image": "ui/host_options_screen.json", + "main_light_button": "ui/host_options_screen.json", + "main_dark_button": "ui/host_options_screen.json", + "host_grid": "ui/host_options_screen.json", + "host_sub_command_grid_item": "ui/host_options_screen.json", + "host_sub_command_grid_item/host_option_banner": "ui/host_options_screen.json", + "return_from_sub_command_button": "ui/host_options_screen.json", + "platform_icon_panel": "ui/host_options_screen.json", + "gamertag_wrapper": "ui/host_options_screen.json", + "player_pic_panel": "ui/host_options_screen.json", + "player_pic_panel/player_gamer_pic": "ui/host_options_screen.json", + "player_pic_panel/player_local_icon": "ui/host_options_screen.json", + "player_button_content": "ui/host_options_screen.json", + "player_button_content/player_pic_panel": "ui/host_options_screen.json", + "player_button_content/player_gamertag": "ui/host_options_screen.json", + "player_button_content/platform_icon": "ui/host_options_screen.json", + "player_grid_item": "ui/host_options_screen.json", + "player_grid_item/player_banner": "ui/host_options_screen.json", + "host_friends_tab": "ui/host_options_screen.json", + "host_friends_tab/players_grid": "ui/host_options_screen.json", + "host_teleport_grid_item": "ui/host_options_screen.json", + "host_teleport_grid_item/host_option_toggle": "ui/host_options_screen.json", + "host_teleport_grid_item/host_option_button": "ui/host_options_screen.json", + "host_teleport_buttons": "ui/host_options_screen.json", + "host_teleport_buttons/return": "ui/host_options_screen.json", + "host_teleport_buttons/sub_tab": "ui/host_options_screen.json", + "host_teleport_buttons/sub_tab/host_main_grid": "ui/host_options_screen.json", + "host_teleport_player_list_buttons": "ui/host_options_screen.json", + "host_teleport_player_list_buttons/toggle": "ui/host_options_screen.json", + "host_teleport_player_list_buttons/toggle/host_time_panel": "ui/host_options_screen.json", + "host_teleport_player_buttons": "ui/host_options_screen.json", + "host_time_buttons": "ui/host_options_screen.json", + "host_time_buttons/return": "ui/host_options_screen.json", + "host_time_buttons/sub_tab": "ui/host_options_screen.json", + "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": "ui/host_options_screen.json", + "host_weather_buttons": "ui/host_options_screen.json", + "host_weather_buttons/return": "ui/host_options_screen.json", + "host_weather_buttons/sub_tab": "ui/host_options_screen.json", + "host_weather_buttons/sub_tab/host_main_grid": "ui/host_options_screen.json", + "host_menu_grid_item": "ui/host_options_screen.json", + "host_menu_grid_item/host_option_banner": "ui/host_options_screen.json", + "host_main_buttons": "ui/host_options_screen.json", + "host_main_buttons/host_main_grid": "ui/host_options_screen.json", + "host_panel": "ui/host_options_screen.json", + "host_panel/host_main_panel": "ui/host_options_screen.json", + "host_panel/host_teleport_panel": "ui/host_options_screen.json", + "host_panel/host_teleport_player_panel": "ui/host_options_screen.json", + "host_panel/host_time_panel": "ui/host_options_screen.json", + "host_panel/host_weather_panel": "ui/host_options_screen.json", + }, + "bed": { + "in_bed_screen": "ui/in_bed_screen.json", + "in_bed_screen_content": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_button_panel": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_button_panel/wake_up_button": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_button_panel/spacer": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_button_panel/chat_button": "ui/in_bed_screen.json", + "in_bed_screen_content/wake_up_label_panel": "ui/in_bed_screen.json", + "in_bed_screen_content/select_button": "ui/in_bed_screen.json", + "background": "ui/in_bed_screen.json", + }, + "im_reader": { + "reader_button_contents": "ui/immersive_reader.json", + "reader_button": "ui/immersive_reader.json", + "webview": "ui/immersive_reader.json", + "loading": "ui/immersive_reader.json", + "loading/animation_item": "ui/immersive_reader.json", + "loading/animation_item/animation": "ui/immersive_reader.json", + "loading/loading_text_item": "ui/immersive_reader.json", + "loading/loading_text_item/loading_text": "ui/immersive_reader.json", + "loading/bottom_padding": "ui/immersive_reader.json", + "loading/cancel_button": "ui/immersive_reader.json", + "no_retry_error_button": "ui/immersive_reader.json", + "retry_error_buttons": "ui/immersive_reader.json", + "retry_error_buttons/try_again": "ui/immersive_reader.json", + "retry_error_buttons/middle_padding": "ui/immersive_reader.json", + "retry_error_buttons/cancel": "ui/immersive_reader.json", + "error": "ui/immersive_reader.json", + "error/error_text": "ui/immersive_reader.json", + "error/error_buttons": "ui/immersive_reader.json", + "error/error_buttons/retry": "ui/immersive_reader.json", + "error/error_buttons/no_retry": "ui/immersive_reader.json", + "loading_and_error_panel": "ui/immersive_reader.json", + "loading_and_error_panel/loading": "ui/immersive_reader.json", + "loading_and_error_panel/error": "ui/immersive_reader.json", + "immersive_reader_screen_content": "ui/immersive_reader.json", + "immersive_reader_screen_content/loading_and_error": "ui/immersive_reader.json", + "immersive_reader_screen_content/webview": "ui/immersive_reader.json", + "immersive_reader_screen": "ui/immersive_reader.json", + }, + "crafting": { + "inventory_x_gamepad_helper": "ui/inventory_screen.json", + "inventory_y_gamepad_helper": "ui/inventory_screen.json", + "inventory_a_gamepad_helper": "ui/inventory_screen.json", + "inventory_b_gamepad_helper": "ui/inventory_screen.json", + "gamepad_helper_bumpers": "ui/inventory_screen.json", + "gamepad_helper_bumpers/gamepad_helper_left_bumper": "ui/inventory_screen.json", + "gamepad_helper_bumpers/gamepad_helper_right_bumper": "ui/inventory_screen.json", + "gamepad_helper_left_trigger": "ui/inventory_screen.json", + "gamepad_helper_right_trigger": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/buffer_panel_left": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/left_thumbstick_visibility": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/fill_panel": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/right_thumbstick_visibility": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": "ui/inventory_screen.json", + "container_gamepad_helpers_second_row/buffer_panel_right": "ui/inventory_screen.json", + "crafting_root_panel": "ui/inventory_screen.json", + "drop_item_panel": "ui/inventory_screen.json", + "inventory_container_slot_button": "ui/inventory_screen.json", + "creative_hotbar_container_slot_button": "ui/inventory_screen.json", + "no_coalesce_container_slot_button": "ui/inventory_screen.json", + "creative_no_coalesce_container_slot_button": "ui/inventory_screen.json", + "output_no_coalesce_container_slot_button": "ui/inventory_screen.json", + "tab_image": "ui/inventory_screen.json", + "item_renderer": "ui/inventory_screen.json", + "inventory_icon": "ui/inventory_screen.json", + "recipe_book_icon": "ui/inventory_screen.json", + "creative_icon": "ui/inventory_screen.json", + "icon_image": "ui/inventory_screen.json", + "tab_front": "ui/inventory_screen.json", + "tab_back": "ui/inventory_screen.json", + "equipment_icon": "ui/inventory_screen.json", + "construction_icon": "ui/inventory_screen.json", + "nature_icon": "ui/inventory_screen.json", + "search_icon": "ui/inventory_screen.json", + "miscellaneous_icon": "ui/inventory_screen.json", + "empty_tab_panel": "ui/inventory_screen.json", + "empty_tab_panel/img": "ui/inventory_screen.json", + "top_tab": "ui/inventory_screen.json", + "search_tab": "ui/inventory_screen.json", + "construction_tab": "ui/inventory_screen.json", + "equipment_tab": "ui/inventory_screen.json", + "nature_tab": "ui/inventory_screen.json", + "items_tab": "ui/inventory_screen.json", + "tab_navigation_panel_layout": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": "ui/inventory_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": "ui/inventory_screen.json", + "tab_content_padding": "ui/inventory_screen.json", + "tab_content": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/vertical_padding_1": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/vertical_padding_2": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/vertical_padding_3": "ui/inventory_screen.json", + "tab_content/tab_content_search_bar_panel/scroll_pane": "ui/inventory_screen.json", + "tab_content/nodrop_zone": "ui/inventory_screen.json", + "armor_overlay": "ui/inventory_screen.json", + "offhand_overlay": "ui/inventory_screen.json", + "armor_overlay_helmet": "ui/inventory_screen.json", + "armor_overlay_chest": "ui/inventory_screen.json", + "armor_overlay_legs": "ui/inventory_screen.json", + "armor_image_feet": "ui/inventory_screen.json", + "armor_overlay_shield": "ui/inventory_screen.json", + "player_armor_panel": "ui/inventory_screen.json", + "player_armor_panel/player_bg": "ui/inventory_screen.json", + "player_armor_panel/player_bg/player_renderer_panel": "ui/inventory_screen.json", + "player_armor_panel/player_bg/player_renderer_panel/player_renderer": "ui/inventory_screen.json", + "player_armor_panel/player_preview_border": "ui/inventory_screen.json", + "player_armor_panel/armor_grid": "ui/inventory_screen.json", + "player_armor_panel/armor_grid/head_grid_item": "ui/inventory_screen.json", + "player_armor_panel/armor_grid/chest_grid_item": "ui/inventory_screen.json", + "player_armor_panel/armor_grid/legs_grid_item": "ui/inventory_screen.json", + "player_armor_panel/armor_grid/feet_grid_item": "ui/inventory_screen.json", + "player_armor_panel/offhand_grid": "ui/inventory_screen.json", + "player_armor_panel/offhand_grid/offhand_grid_item": "ui/inventory_screen.json", + "crafting_label": "ui/inventory_screen.json", + "inventory_label": "ui/inventory_screen.json", + "crafting_arrow": "ui/inventory_screen.json", + "crafting_arrow_large": "ui/inventory_screen.json", + "crafting_input_grid_item": "ui/inventory_screen.json", + "crafting_grid_3x3": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_top_left": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_top_mid": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_top_right": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_mid_left": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_middle": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_mid_right": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_bot_left": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_bot_mid": "ui/inventory_screen.json", + "crafting_grid_3x3/crafting_input_item_bot_right": "ui/inventory_screen.json", + "crafting_grid_2x2": "ui/inventory_screen.json", + "crafting_grid_2x2/crafting_input_item_top_left": "ui/inventory_screen.json", + "crafting_grid_2x2/crafting_input_item_top_right": "ui/inventory_screen.json", + "crafting_grid_2x2/crafting_input_item_bot_left": "ui/inventory_screen.json", + "crafting_grid_2x2/crafting_input_item_bot_right": "ui/inventory_screen.json", + "output_grid_3x3": "ui/inventory_screen.json", + "output_grid_3x3/work_bench_output": "ui/inventory_screen.json", + "output_grid_2x2": "ui/inventory_screen.json", + "output_grid_2x2/work_bench_output": "ui/inventory_screen.json", + "work_bench_panel_3x3": "ui/inventory_screen.json", + "work_bench_panel_3x3/inventory_label": "ui/inventory_screen.json", + "work_bench_panel_3x3/crafting_arrow_large": "ui/inventory_screen.json", + "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": "ui/inventory_screen.json", + "work_bench_panel_3x3/work_bench_output_grid": "ui/inventory_screen.json", + "crafting_grid_3x3_with_label": "ui/inventory_screen.json", + "crafting_grid_3x3_with_label/crafting_label": "ui/inventory_screen.json", + "crafting_grid_3x3_with_label/crafting_grid_3x3": "ui/inventory_screen.json", + "crafting_grid_2x2_with_label": "ui/inventory_screen.json", + "crafting_grid_2x2_with_label/crafting_label": "ui/inventory_screen.json", + "crafting_grid_2x2_with_label/crafting_grid_2x2": "ui/inventory_screen.json", + "crafting_panel_2x2": "ui/inventory_screen.json", + "crafting_panel_2x2/crafting_arrow": "ui/inventory_screen.json", + "crafting_panel_2x2/crafting_table": "ui/inventory_screen.json", + "crafting_panel_2x2/crafting_grid_2x2": "ui/inventory_screen.json", + "crafting_panel_2x2/survival_crafting_output_grid": "ui/inventory_screen.json", + "survival_panel_top_half": "ui/inventory_screen.json", + "survival_panel_top_half/player_armor_panel": "ui/inventory_screen.json", + "survival_panel_top_half/crafting_panel": "ui/inventory_screen.json", + "crafting_panel_top_half": "ui/inventory_screen.json", + "crafting_panel_top_half/crafting_panel": "ui/inventory_screen.json", + "recipe_container_cell_images": "ui/inventory_screen.json", + "cell_image_recipe_default": "ui/inventory_screen.json", + "cell_image_recipe_group_head_collapsed": "ui/inventory_screen.json", + "cell_image_recipe_group_head_expanded": "ui/inventory_screen.json", + "cell_image_recipe_group_item": "ui/inventory_screen.json", + "cell_image_recipe_selected": "ui/inventory_screen.json", + "cell_image_recipe_default_red": "ui/inventory_screen.json", + "container_cell_images": "ui/inventory_screen.json", + "container_cell_images/cell_classic": "ui/inventory_screen.json", + "container_cell_images/cell_normal": "ui/inventory_screen.json", + "container_cell_images/cell_invert": "ui/inventory_screen.json", + "container_cell_images/cell_red": "ui/inventory_screen.json", + "container_cell_images/cell_selected": "ui/inventory_screen.json", + "container_cell_images/cell_darkgrey": "ui/inventory_screen.json", + "crafting_container_cell_images": "ui/inventory_screen.json", + "cell_image": "ui/inventory_screen.json", + "cell_image_classic": "ui/inventory_screen.json", + "cell_image_normal": "ui/inventory_screen.json", + "cell_image_invert": "ui/inventory_screen.json", + "cell_image_red": "ui/inventory_screen.json", + "cell_image_selected": "ui/inventory_screen.json", + "cell_image_darkgrey": "ui/inventory_screen.json", + "container_overlay_images": "ui/inventory_screen.json", + "container_overlay_images/expand": "ui/inventory_screen.json", + "container_overlay_images/contract": "ui/inventory_screen.json", + "item_overlay_image": "ui/inventory_screen.json", + "item_overlay_contract": "ui/inventory_screen.json", + "item_overlay_expand": "ui/inventory_screen.json", + "inventory_container_item": "ui/inventory_screen.json", + "inventory_container_item/item_cell": "ui/inventory_screen.json", + "inventory_container_item/item_cell/item": "ui/inventory_screen.json", + "inventory_container_item/item_cell/item/stack_count_label": "ui/inventory_screen.json", + "inventory_container_item/item_cell/durability_bar": "ui/inventory_screen.json", + "inventory_container_item/item_cell/storage_bar": "ui/inventory_screen.json", + "inventory_container_item/item_cell_overlay_ref": "ui/inventory_screen.json", + "inventory_container_item/item_selected_image": "ui/inventory_screen.json", + "inventory_container_item/item_button_ref": "ui/inventory_screen.json", + "inventory_container_item/container_item_lock_overlay": "ui/inventory_screen.json", + "inventory_container_item/item_lock_cell_image": "ui/inventory_screen.json", + "inventory_container_item/bundle_slot_panel": "ui/inventory_screen.json", + "grid_item_for_recipe_book": "ui/inventory_screen.json", + "scroll_grid_panel": "ui/inventory_screen.json", + "scroll_grid_panel/grid": "ui/inventory_screen.json", + "scroll_grid": "ui/inventory_screen.json", + "scroll_panel": "ui/inventory_screen.json", + "recipe_book_scroll_panel": "ui/inventory_screen.json", + "creative_label": "ui/inventory_screen.json", + "filter_toggle": "ui/inventory_screen.json", + "toolbar_background": "ui/inventory_screen.json", + "layout_toggle_content": "ui/inventory_screen.json", + "layout_toggle_content/image": "ui/inventory_screen.json", + "layout_toggle_content/icon": "ui/inventory_screen.json", + "layout_template_toggle": "ui/inventory_screen.json", + "layout_toggle": "ui/inventory_screen.json", + "creative_layout_toggle": "ui/inventory_screen.json", + "recipe_book_layout_toggle": "ui/inventory_screen.json", + "survival_layout_toggle": "ui/inventory_screen.json", + "help_button": "ui/inventory_screen.json", + "help_button/default": "ui/inventory_screen.json", + "help_button/hover": "ui/inventory_screen.json", + "help_button/pressed": "ui/inventory_screen.json", + "player_inventory": "ui/inventory_screen.json", + "player_inventory/common_panel": "ui/inventory_screen.json", + "player_inventory/inventory_panel_top_half": "ui/inventory_screen.json", + "player_inventory/inventory_panel_bottom_half": "ui/inventory_screen.json", + "player_inventory/hotbar_grid": "ui/inventory_screen.json", + "recipe_book": "ui/inventory_screen.json", + "recipe_book/gamepad_helper_bumpers": "ui/inventory_screen.json", + "recipe_book/tab_navigation_panel": "ui/inventory_screen.json", + "recipe_book/bg": "ui/inventory_screen.json", + "recipe_book/tab_content_panel": "ui/inventory_screen.json", + "recipe_book/creative_hotbar_panel": "ui/inventory_screen.json", + "creative_hotbar_panel": "ui/inventory_screen.json", + "creative_hotbar_panel/creative_hotbar_background": "ui/inventory_screen.json", + "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": "ui/inventory_screen.json", + "center_fold": "ui/inventory_screen.json", + "center_fold/center_bg": "ui/inventory_screen.json", + "toolbar_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": "ui/inventory_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": "ui/inventory_screen.json", + "inventory_screen_base": "ui/inventory_screen.json", + "crafting_screen": "ui/inventory_screen.json", + "inventory_screen": "ui/inventory_screen.json", + "recipe_book_toggle_image": "ui/inventory_screen.json", + "recipe_inventory_screen_content": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/recipe_book": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/center_fold": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/survival_padding": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/player_inventory": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": "ui/inventory_screen.json", + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": "ui/inventory_screen.json", + "recipe_inventory_screen_content/inventory_take_progress_icon_button": "ui/inventory_screen.json", + "recipe_inventory_screen_content/inventory_selected_icon_button": "ui/inventory_screen.json", + "recipe_inventory_screen_content/hold_icon": "ui/inventory_screen.json", + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": "ui/inventory_screen.json", + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": "ui/inventory_screen.json", + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": "ui/inventory_screen.json", + "recipe_inventory_screen_content/selected_item_details_factory": "ui/inventory_screen.json", + "recipe_inventory_screen_content/item_lock_notification_factory": "ui/inventory_screen.json", + "recipe_inventory_screen_content/flying_item_renderer": "ui/inventory_screen.json", + }, + "crafting_pocket": { + "survival_icon": "ui/inventory_screen_pocket.json", + "full_screen_icon": "ui/inventory_screen_pocket.json", + "crafting_icon": "ui/inventory_screen_pocket.json", + "armor_icon": "ui/inventory_screen_pocket.json", + "crafting_arrow_down": "ui/inventory_screen_pocket.json", + "empty_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab": "ui/inventory_screen_pocket.json", + "right_tab": "ui/inventory_screen_pocket.json", + "full_screen_tab": "ui/inventory_screen_pocket.json", + "crafting_tab": "ui/inventory_screen_pocket.json", + "armor_tab": "ui/inventory_screen_pocket.json", + "search_tab": "ui/inventory_screen_pocket.json", + "construction_tab": "ui/inventory_screen_pocket.json", + "equipment_tab": "ui/inventory_screen_pocket.json", + "items_tab": "ui/inventory_screen_pocket.json", + "nature_tab": "ui/inventory_screen_pocket.json", + "inventory_tab": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/search_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/construction_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/equipment_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/items_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/nature_tab_panel": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/fill": "ui/inventory_screen_pocket.json", + "left_tab_navigation_panel_pocket/content/inventory_tab": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/close": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/close/nodrop_zone": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/close/close_button": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/fill": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/full_screen_tab": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/crafting_tab": "ui/inventory_screen_pocket.json", + "right_tab_navigation_panel_pocket/content/armor_tab": "ui/inventory_screen_pocket.json", + "recipe_book_tab_content": "ui/inventory_screen_pocket.json", + "inventory_tab_content": "ui/inventory_screen_pocket.json", + "right_tab_content": "ui/inventory_screen_pocket.json", + "right_tab_content/bg": "ui/inventory_screen_pocket.json", + "right_tab_content/content": "ui/inventory_screen_pocket.json", + "crafting_input_grid_item": "ui/inventory_screen_pocket.json", + "crafting_grid_3x3": "ui/inventory_screen_pocket.json", + "crafting_grid_2x2": "ui/inventory_screen_pocket.json", + "output_grid_and_label": "ui/inventory_screen_pocket.json", + "output_grid_and_label/recipe_item_label": "ui/inventory_screen_pocket.json", + "output_grid_and_label/output_grid": "ui/inventory_screen_pocket.json", + "output_grid": "ui/inventory_screen_pocket.json", + "output_grid/work_bench_output": "ui/inventory_screen_pocket.json", + "crafting_grid_3x3_with_label": "ui/inventory_screen_pocket.json", + "crafting_grid_3x3_with_label/crafting_label": "ui/inventory_screen_pocket.json", + "crafting_grid_3x3_with_label/crafting_grid_3x3": "ui/inventory_screen_pocket.json", + "crafting_grid_2x2_with_label": "ui/inventory_screen_pocket.json", + "crafting_grid_2x2_with_label/crafting_label": "ui/inventory_screen_pocket.json", + "crafting_grid_2x2_with_label/crafting_grid_2x2": "ui/inventory_screen_pocket.json", + "scroll_background_image": "ui/inventory_screen_pocket.json", + "grid_item_for_inventory": "ui/inventory_screen_pocket.json", + "survival_inventory_grid": "ui/inventory_screen_pocket.json", + "scroll_panel_pocket": "ui/inventory_screen_pocket.json", + "recipe_book_scroll_panel_pocket": "ui/inventory_screen_pocket.json", + "survival_scroll_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer/label_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer/renderer_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": "ui/inventory_screen_pocket.json", + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": "ui/inventory_screen_pocket.json", + "hotbar_panel": "ui/inventory_screen_pocket.json", + "hotbar_panel/bg": "ui/inventory_screen_pocket.json", + "hotbar_panel/hotbar_grid": "ui/inventory_screen_pocket.json", + "hotbar_grid_item": "ui/inventory_screen_pocket.json", + "survival_panel_pocket": "ui/inventory_screen_pocket.json", + "survival_panel_pocket/crafting_panel": "ui/inventory_screen_pocket.json", + "survival_panel_pocket/crafting_arrow_down": "ui/inventory_screen_pocket.json", + "survival_panel_pocket/crafting_table": "ui/inventory_screen_pocket.json", + "survival_panel_pocket/output": "ui/inventory_screen_pocket.json", + "survival_panel_crafting_pocket": "ui/inventory_screen_pocket.json", + "survival_panel_crafting_pocket/crafting_panel": "ui/inventory_screen_pocket.json", + "survival_panel_crafting_pocket/crafting_arrow_down": "ui/inventory_screen_pocket.json", + "survival_panel_crafting_pocket/output": "ui/inventory_screen_pocket.json", + "inventory_screen_pocket_base": "ui/inventory_screen_pocket.json", + "crafting_screen_pocket": "ui/inventory_screen_pocket.json", + "inventory_screen_pocket": "ui/inventory_screen_pocket.json", + "left_panel": "ui/inventory_screen_pocket.json", + "left_panel/left_background": "ui/inventory_screen_pocket.json", + "left_panel/recipe_book_tab_content": "ui/inventory_screen_pocket.json", + "left_panel/inventory_tab_content": "ui/inventory_screen_pocket.json", + "right_panel": "ui/inventory_screen_pocket.json", + "right_panel/right_background": "ui/inventory_screen_pocket.json", + "right_panel/help_button": "ui/inventory_screen_pocket.json", + "right_panel/crafting_tab_content": "ui/inventory_screen_pocket.json", + "right_panel/armor_tab_content": "ui/inventory_screen_pocket.json", + "both_panels": "ui/inventory_screen_pocket.json", + "both_panels/left_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", + "both_panels/left_panel": "ui/inventory_screen_pocket.json", + "both_panels/offset_panel": "ui/inventory_screen_pocket.json", + "both_panels/offset_panel/center_bg": "ui/inventory_screen_pocket.json", + "both_panels/right_panel": "ui/inventory_screen_pocket.json", + "both_panels/right_tab_navigation_panel_pocket": "ui/inventory_screen_pocket.json", + "gamepad_helper_border": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/left_gamepad_panel": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/both_panels": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/right_gamepad_panel": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": "ui/inventory_screen_pocket.json", + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": "ui/inventory_screen_pocket.json", + "hotbar_and_panels": "ui/inventory_screen_pocket.json", + "hotbar_and_panels/padding_1": "ui/inventory_screen_pocket.json", + "hotbar_and_panels/gamepad_helper_border": "ui/inventory_screen_pocket.json", + "hotbar_and_panels/hotbar_section_panel": "ui/inventory_screen_pocket.json", + "hotbar_and_panels/hotbar_section_panel/hotbar": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/toast_screen_content": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/selected_item_details_factory": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/item_lock_notification_factory": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/root_panel": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/hold_icon": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": "ui/inventory_screen_pocket.json", + "recipe_inventory_screen_content_pocket/flying_item_renderer": "ui/inventory_screen_pocket.json", + }, + "invite": { + "black_border": "ui/invite_screen.json", + "black_border_hover": "ui/invite_screen.json", + "platform_icon": "ui/invite_screen.json", + "grey_borderless_locked": "ui/invite_screen.json", + "checked_locked_image": "ui/invite_screen.json", + "unchecked_locked_image": "ui/invite_screen.json", + "left_arrow_image": "ui/invite_screen.json", + "right_arrow_image": "ui/invite_screen.json", + "account_link_image": "ui/invite_screen.json", + "panel_text": "ui/invite_screen.json", + "loading_friends": "ui/invite_screen.json", + "account_link_icon": "ui/invite_screen.json", + "account_link_icon/space_01": "ui/invite_screen.json", + "account_link_icon/account_link_image": "ui/invite_screen.json", + "account_link_icon/space_03": "ui/invite_screen.json", + "gamerpic": "ui/invite_screen.json", + "third_party_profile_pic": "ui/invite_screen.json", + "gamerpic_panel": "ui/invite_screen.json", + "gamerpic_panel/black_border": "ui/invite_screen.json", + "gamerpic_panel/gamerpic": "ui/invite_screen.json", + "gamerpic_panel/online_indication_positioner": "ui/invite_screen.json", + "gamerpic_panel/online_indication_positioner/indicator_images": "ui/invite_screen.json", + "third_party_profile_pic_panel": "ui/invite_screen.json", + "third_party_profile_pic_panel/black_border": "ui/invite_screen.json", + "third_party_profile_pic_panel/third_party_profile_pic": "ui/invite_screen.json", + "platform_icon_panel": "ui/invite_screen.json", + "platform_icon_panel/platform_icon": "ui/invite_screen.json", + "status_image": "ui/invite_screen.json", + "online_image": "ui/invite_screen.json", + "offline_image": "ui/invite_screen.json", + "online_indicator": "ui/invite_screen.json", + "online_indicator/online_image": "ui/invite_screen.json", + "checkbox_panel": "ui/invite_screen.json", + "checked_panel": "ui/invite_screen.json", + "checked_panel/checked_image": "ui/invite_screen.json", + "unchecked_panel": "ui/invite_screen.json", + "unchecked_panel/unchecked_image": "ui/invite_screen.json", + "checked_locked_panel": "ui/invite_screen.json", + "checked_locked_panel/checked_image": "ui/invite_screen.json", + "unchecked_locked_panel": "ui/invite_screen.json", + "unchecked_locked_panel/unchecked_image": "ui/invite_screen.json", + "checked_hover_panel": "ui/invite_screen.json", + "checked_hover_panel/checked_hover_image": "ui/invite_screen.json", + "unchecked_hover_panel": "ui/invite_screen.json", + "unchecked_hover_panel/unchecked_hover_image": "ui/invite_screen.json", + "friend_label": "ui/invite_screen.json", + "friend_grid_xbl_gamertag": "ui/invite_screen.json", + "friend_grid_current_game_label": "ui/invite_screen.json", + "friend_grid_third_party_tag": "ui/invite_screen.json", + "friend_background": "ui/invite_screen.json", + "friend_background_hover": "ui/invite_screen.json", + "friend_background_borderless": "ui/invite_screen.json", + "hover_friend_button": "ui/invite_screen.json", + "hover_friend_button/friend_button_layout": "ui/invite_screen.json", + "hover_friend_button/hover_text": "ui/invite_screen.json", + "linked_hover_friend_button": "ui/invite_screen.json", + "linked_hover_friend_button/hover_text": "ui/invite_screen.json", + "msa_friend_button_layout": "ui/invite_screen.json", + "msa_friend_button_layout/spacer01": "ui/invite_screen.json", + "msa_friend_button_layout/platform_icon_spacer": "ui/invite_screen.json", + "msa_friend_button_layout/spacer_02": "ui/invite_screen.json", + "msa_friend_button_layout/friend_grid_label_layout": "ui/invite_screen.json", + "msa_friend_button_layout/friend_grid_label_layout/spacer_01": "ui/invite_screen.json", + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": "ui/invite_screen.json", + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": "ui/invite_screen.json", + "platform_friend_button_layout": "ui/invite_screen.json", + "platform_friend_button_layout/spacer01": "ui/invite_screen.json", + "platform_friend_button_layout/platform_icon_spacer": "ui/invite_screen.json", + "platform_friend_button_layout/third_party_pic_panel_positioner": "ui/invite_screen.json", + "platform_friend_button_layout/third_party_pic_panel_positioner/pp": "ui/invite_screen.json", + "platform_friend_button_layout/spacer_02": "ui/invite_screen.json", + "platform_friend_button_layout/friend_grid_label_layout": "ui/invite_screen.json", + "platform_friend_button_layout/friend_grid_label_layout/spacer_01": "ui/invite_screen.json", + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": "ui/invite_screen.json", + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": "ui/invite_screen.json", + "platform_friend_button_layout/platform_icon_positioner": "ui/invite_screen.json", + "platform_friend_button_layout/platform_icon_positioner/platform_icon": "ui/invite_screen.json", + "platform_friend_button_layout/online_indication_positioner": "ui/invite_screen.json", + "platform_friend_button_layout/online_indication_positioner/indicator_images": "ui/invite_screen.json", + "linked_friend_button_layout": "ui/invite_screen.json", + "linked_friend_button_layout/spacer01": "ui/invite_screen.json", + "linked_friend_button_layout/platform_icon_positioner": "ui/invite_screen.json", + "linked_friend_button_layout/platform_icon_positioner/platform_icon": "ui/invite_screen.json", + "linked_friend_button_layout/spacer02": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/spacer_01": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/pp2": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/account_link": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/pp1": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_pictures/spacer_03": "ui/invite_screen.json", + "linked_friend_button_layout/spacer03": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/spacer_01": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/spacer_02": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": "ui/invite_screen.json", + "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": "ui/invite_screen.json", + "linked_friend_button_layout/online_indication_positioner": "ui/invite_screen.json", + "linked_friend_button_layout/online_indication_positioner/indicator_images": "ui/invite_screen.json", + "template_msa_friend_button_layout": "ui/invite_screen.json", + "template_msa_friend_button_layout/friend_background": "ui/invite_screen.json", + "template_msa_friend_button_layout/friend_button_layout": "ui/invite_screen.json", + "template_msa_friend_button_layout/unchecked": "ui/invite_screen.json", + "template_platform_friend_button_layout": "ui/invite_screen.json", + "template_platform_friend_button_layout/friend_background": "ui/invite_screen.json", + "template_platform_friend_button_layout/friend_button_layout": "ui/invite_screen.json", + "template_platform_friend_button_layout/unchecked": "ui/invite_screen.json", + "template_linked_friend_button_layout": "ui/invite_screen.json", + "template_linked_friend_button_layout/friend_background": "ui/invite_screen.json", + "template_linked_friend_button_layout/horizontal_spacer_panel": "ui/invite_screen.json", + "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": "ui/invite_screen.json", + "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": "ui/invite_screen.json", + "msa_friend_button": "ui/invite_screen.json", + "msa_friend_button/checked": "ui/invite_screen.json", + "msa_friend_button/unchecked": "ui/invite_screen.json", + "msa_friend_button/checked_hover": "ui/invite_screen.json", + "msa_friend_button/unchecked_hover": "ui/invite_screen.json", + "msa_friend_button/checked_locked": "ui/invite_screen.json", + "msa_friend_button/unchecked_locked": "ui/invite_screen.json", + "msa_friend_button/checked_locked_hover": "ui/invite_screen.json", + "msa_friend_button/unchecked_locked_hover": "ui/invite_screen.json", + "platform_friend_button": "ui/invite_screen.json", + "platform_friend_button/checked": "ui/invite_screen.json", + "platform_friend_button/unchecked": "ui/invite_screen.json", + "platform_friend_button/checked_hover": "ui/invite_screen.json", + "platform_friend_button/unchecked_hover": "ui/invite_screen.json", + "platform_friend_button/checked_locked": "ui/invite_screen.json", + "platform_friend_button/unchecked_locked": "ui/invite_screen.json", + "platform_friend_button/checked_locked_hover": "ui/invite_screen.json", + "platform_friend_button/unchecked_locked_hover": "ui/invite_screen.json", + "linked_friend_button": "ui/invite_screen.json", + "linked_friend_button/checked": "ui/invite_screen.json", + "linked_friend_button/unchecked": "ui/invite_screen.json", + "linked_friend_button/checked_hover": "ui/invite_screen.json", + "linked_friend_button/unchecked_hover": "ui/invite_screen.json", + "linked_friend_button/checked_locked": "ui/invite_screen.json", + "linked_friend_button/unchecked_locked": "ui/invite_screen.json", + "linked_friend_button/checked_locked_hover": "ui/invite_screen.json", + "linked_friend_button/unchecked_locked_hover": "ui/invite_screen.json", + "msa_friend_grid_item_template": "ui/invite_screen.json", + "msa_friend_grid_item_template/friend_button_Panel": "ui/invite_screen.json", + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": "ui/invite_screen.json", + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": "ui/invite_screen.json", + "msa_friend_grid_item_template/friend_button_Panel/friend_button": "ui/invite_screen.json", + "msa_friend_grid_item_template/profile_button_pannel": "ui/invite_screen.json", + "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": "ui/invite_screen.json", + "msa_friend_grid_item_template/spacer_03": "ui/invite_screen.json", + "platform_friend_grid_item_template": "ui/invite_screen.json", + "platform_friend_grid_item_template/friend_button": "ui/invite_screen.json", + "friend_linked_account_grid_item_template": "ui/invite_screen.json", + "friend_linked_account_grid_item_template/friend_button": "ui/invite_screen.json", + "online_xbox_live_friend_grid_item": "ui/invite_screen.json", + "offline_xbox_live_friend_grid_item": "ui/invite_screen.json", + "online_linked_account_friend_grid_item": "ui/invite_screen.json", + "offline_linked_account_friend_grid_item": "ui/invite_screen.json", + "online_platform_friend_grid_item": "ui/invite_screen.json", + "offline_platform_friend_grid_item": "ui/invite_screen.json", + "online_xbox_live_friend_list_grid": "ui/invite_screen.json", + "offline_xbox_live_friend_list_grid": "ui/invite_screen.json", + "online_platform_friend_list_grid": "ui/invite_screen.json", + "offline_platform_friend_list_grid": "ui/invite_screen.json", + "online_linked_account_friend_list_grid": "ui/invite_screen.json", + "offline_linked_account_friend_list_grid": "ui/invite_screen.json", + "friends_pagination_controls": "ui/invite_screen.json", + "friends_pagination_controls/previous_button": "ui/invite_screen.json", + "friends_pagination_controls/center_panel": "ui/invite_screen.json", + "friends_pagination_controls/center_panel/page_counter": "ui/invite_screen.json", + "friends_pagination_controls/next_button": "ui/invite_screen.json", + "friends_category": "ui/invite_screen.json", + "friends_category/friends_grid": "ui/invite_screen.json", + "friends_category/pagination_stack_panel": "ui/invite_screen.json", + "friends_category/pagination_stack_panel/padding_1": "ui/invite_screen.json", + "friends_category/pagination_stack_panel/pagination_controls": "ui/invite_screen.json", + "friends_category/pagination_stack_panel/padding_2": "ui/invite_screen.json", + "friends_category/pagination_stack_panel/divider": "ui/invite_screen.json", + "friends_category/padding": "ui/invite_screen.json", + "frame_label": "ui/invite_screen.json", + "friend_panel": "ui/invite_screen.json", + "scrolling_content_stack": "ui/invite_screen.json", + "scrolling_content_stack/message": "ui/invite_screen.json", + "scrolling_content_stack/message/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/online_platform": "ui/invite_screen.json", + "scrolling_content_stack/online_platform/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/vertical_padding_0": "ui/invite_screen.json", + "scrolling_content_stack/online_platform_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/crossplatform_disabled_panel": "ui/invite_screen.json", + "scrolling_content_stack/crossplatform_disabled_panel/disable_text": "ui/invite_screen.json", + "scrolling_content_stack/crossplatform_disable_spacer": "ui/invite_screen.json", + "scrolling_content_stack/online_cross_platform": "ui/invite_screen.json", + "scrolling_content_stack/online_cross_platform/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/vertical_padding_1": "ui/invite_screen.json", + "scrolling_content_stack/online_linked_account_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/online_xbox_live_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/offline_platform": "ui/invite_screen.json", + "scrolling_content_stack/offline_platform/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/vertical_padding_2": "ui/invite_screen.json", + "scrolling_content_stack/offline_platform_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/no_platform_friends": "ui/invite_screen.json", + "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": "ui/invite_screen.json", + "scrolling_content_stack/offline_cross_platform": "ui/invite_screen.json", + "scrolling_content_stack/offline_cross_platform/frame_label": "ui/invite_screen.json", + "scrolling_content_stack/vertical_padding_3": "ui/invite_screen.json", + "scrolling_content_stack/offline_linked_account_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/offline_xbox_live_friend_list_category": "ui/invite_screen.json", + "scrolling_content_stack/no_xbox_live_friends": "ui/invite_screen.json", + "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": "ui/invite_screen.json", + "progress_bar_and_scrolling_content_panel": "ui/invite_screen.json", + "progress_bar_and_scrolling_content_panel/progress_loading_bars": "ui/invite_screen.json", + "progress_bar_and_scrolling_content_panel/invite_scrolling_area": "ui/invite_screen.json", + "no_xbox_live_friends_frame_label": "ui/invite_screen.json", + "no_platform_friends_frame_label": "ui/invite_screen.json", + "horizontal_invite_panel": "ui/invite_screen.json", + "vertical_invite_panel": "ui/invite_screen.json", + "scrolling_area": "ui/invite_screen.json", + "invite_button_content": "ui/invite_screen.json", + "invite_button_content/gameplay_helper": "ui/invite_screen.json", + "invite_button_content/button_label": "ui/invite_screen.json", + "invite_button_content_hover": "ui/invite_screen.json", + "invite_button_content_pressed": "ui/invite_screen.json", + "invite_button_content_locked": "ui/invite_screen.json", + "add_friend_button": "ui/invite_screen.json", + "profile_button_content": "ui/invite_screen.json", + "profile_button_content/button_label": "ui/invite_screen.json", + "profile_button_content_hover": "ui/invite_screen.json", + "profile_button_content_pressed": "ui/invite_screen.json", + "profile_button_content_locked": "ui/invite_screen.json", + "add_member_button": "ui/invite_screen.json", + "send_button": "ui/invite_screen.json", + "profile_button": "ui/invite_screen.json", + "horizontal_button_stack_panel": "ui/invite_screen.json", + "horizontal_button_stack_panel/add_friend_button": "ui/invite_screen.json", + "horizontal_button_stack_panel/add_member_button": "ui/invite_screen.json", + "horizontal_button_stack_panel/padding": "ui/invite_screen.json", + "horizontal_button_stack_panel/send_button": "ui/invite_screen.json", + "vertical_buttons_top_panel": "ui/invite_screen.json", + "vertical_buttons_top_panel/add_friend_button": "ui/invite_screen.json", + "vertical_buttons_top_panel/add_member_button": "ui/invite_screen.json", + "vertical_buttons_bottom_panel": "ui/invite_screen.json", + "vertical_buttons_bottom_panel/send_button": "ui/invite_screen.json", + "gamepad_helpers": "ui/invite_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/invite_screen.json", + "invite_screen": "ui/invite_screen.json", + "invite_screen_content": "ui/invite_screen.json", + "invite_screen_content/gamepad_helpers": "ui/invite_screen.json", + "invite_screen_content/invite_panel": "ui/invite_screen.json", + }, + "jigsaw_editor": { + "horizontal_buffer": "ui/jigsaw_editor_screen.json", + "vertical_buffer": "ui/jigsaw_editor_screen.json", + "common_text_label": "ui/jigsaw_editor_screen.json", + "text_edit_box": "ui/jigsaw_editor_screen.json", + "help_icon": "ui/jigsaw_editor_screen.json", + "toggle_with_label": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle_label_padding": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle_label_wrapper": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle_label_wrapper/toggle_label": "ui/jigsaw_editor_screen.json", + "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": "ui/jigsaw_editor_screen.json", + "data_item_title_and_edit": "ui/jigsaw_editor_screen.json", + "data_item_title_and_edit/data_title": "ui/jigsaw_editor_screen.json", + "data_item_title_and_edit/data_text_edit": "ui/jigsaw_editor_screen.json", + "data_item_title_and_edit_fill": "ui/jigsaw_editor_screen.json", + "data_item_title_and_toggle": "ui/jigsaw_editor_screen.json", + "data_item_title_and_toggle/data_title": "ui/jigsaw_editor_screen.json", + "data_item_title_and_toggle/toggle": "ui/jigsaw_editor_screen.json", + "exit_buttons": "ui/jigsaw_editor_screen.json", + "exit_buttons/done_button": "ui/jigsaw_editor_screen.json", + "exit_buttons/buffer": "ui/jigsaw_editor_screen.json", + "exit_buttons/help_button": "ui/jigsaw_editor_screen.json", + "scrolling_panel_wrapper": "ui/jigsaw_editor_screen.json", + "scrolling_panel_wrapper/scrolling_panel": "ui/jigsaw_editor_screen.json", + "scrolling_panel": "ui/jigsaw_editor_screen.json", + "scroll_panel_content": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/target_pool_title_and_edit": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_1": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/name_title_and_edit": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_2": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/target_title_and_edit": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_3": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/final_block_title_and_edit": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_4": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/selection_and_placement_priority": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_5": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/joint_type_title_and_toggle": "ui/jigsaw_editor_screen.json", + "scroll_panel_content/buffer_6": "ui/jigsaw_editor_screen.json", + "selection_and_placement_priority": "ui/jigsaw_editor_screen.json", + "selection_and_placement_priority/selection_priority_title_and_edit": "ui/jigsaw_editor_screen.json", + "selection_and_placement_priority/buffer_1": "ui/jigsaw_editor_screen.json", + "selection_and_placement_priority/placement_priority_title_and_edit": "ui/jigsaw_editor_screen.json", + "button_panel_wrapper": "ui/jigsaw_editor_screen.json", + "button_panel_wrapper/exit_buttons": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_panel": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_panel/scrolling_panel": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_panel/button_wrapper": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_panel/button_wrapper/buttons": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_content": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_content/background_panel": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_content/title": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_content/jigsaw_editor_panel": "ui/jigsaw_editor_screen.json", + "jigsaw_editor_screen": "ui/jigsaw_editor_screen.json", + }, + "late_join": { + "animation_panel": "ui/late_join_pregame_screen.json", + "animation_panel/stacked_column": "ui/late_join_pregame_screen.json", + "animation_panel/stacked_column/waiting_animating_text": "ui/late_join_pregame_screen.json", + "gamepad_helpers": "ui/late_join_pregame_screen.json", + "gamepad_helpers/gamepad_helper_b_and_padding": "ui/late_join_pregame_screen.json", + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": "ui/late_join_pregame_screen.json", + "late_join_pregame_screen": "ui/late_join_pregame_screen.json", + "late_join_screen_content": "ui/late_join_pregame_screen.json", + "late_join_screen_content/animation_panel": "ui/late_join_pregame_screen.json", + "late_join_screen_content/gamepad_helpers": "ui/late_join_pregame_screen.json", + }, + "library_modal": { + "modal_button": "ui/library_modal_screen.json", + "modal_text_content": "ui/library_modal_screen.json", + "modal_ok": "ui/library_modal_screen.json", + "modal_cancel": "ui/library_modal_screen.json", + "in_game_prompt": "ui/library_modal_screen.json", + "fetch_error": "ui/library_modal_screen.json", + "content": "ui/library_modal_screen.json", + "content/fetch": "ui/library_modal_screen.json", + "content/ingame": "ui/library_modal_screen.json", + "content_wrapper": "ui/library_modal_screen.json", + "content_wrapper/content": "ui/library_modal_screen.json", + "background": "ui/library_modal_screen.json", + "library_modal_screen": "ui/library_modal_screen.json", + "text_panel": "ui/library_modal_screen.json", + "edu_icon": "ui/library_modal_screen.json", + "continue_button": "ui/library_modal_screen.json", + "paragraph": "ui/library_modal_screen.json", + "welcome_text_panel": "ui/library_modal_screen.json", + "welcome_text_panel/padding_1": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper/edu_icon": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": "ui/library_modal_screen.json", + "welcome_text_panel/padding_2": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_two": "ui/library_modal_screen.json", + "welcome_text_panel/padding_3": "ui/library_modal_screen.json", + "welcome_text_panel/paragraph_three": "ui/library_modal_screen.json", + "welcome_scrolling_panel": "ui/library_modal_screen.json", + "welcome_panel_content": "ui/library_modal_screen.json", + "welcome_panel_content/background_panel": "ui/library_modal_screen.json", + "welcome_panel_content/welcome_scrolling_panel": "ui/library_modal_screen.json", + "welcome_panel_content/continue_button": "ui/library_modal_screen.json", + "welcome_panel": "ui/library_modal_screen.json", + "welcome_panel/welcome": "ui/library_modal_screen.json", + }, + "local_world_picker": { + "local_world_picker_screen": "ui/local_world_picker_screen.json", + "local_world_picker_content": "ui/local_world_picker_screen.json", + "local_world_picker_content/background": "ui/local_world_picker_screen.json", + "local_world_picker_content/panel_label": "ui/local_world_picker_screen.json", + "local_world_picker_content/content": "ui/local_world_picker_screen.json", + }, + "loom": { + "loom_label": "ui/loom_screen.json", + "arrow_icon": "ui/loom_screen.json", + "pattern_cell_image": "ui/loom_screen.json", + "container_cell_image": "ui/loom_screen.json", + "banner_outline": "ui/loom_screen.json", + "item_empty_image": "ui/loom_screen.json", + "banner_empty_image": "ui/loom_screen.json", + "dye_empty_image": "ui/loom_screen.json", + "pattern_item_empty_image": "ui/loom_screen.json", + "toolbar_background": "ui/loom_screen.json", + "highlight_slot_panel": "ui/loom_screen.json", + "highlight_slot_panel/highlight": "ui/loom_screen.json", + "highlight_slot_panel/white_border": "ui/loom_screen.json", + "pattern_slot_button": "ui/loom_screen.json", + "pattern_slot_button/hover": "ui/loom_screen.json", + "banner_pattern": "ui/loom_screen.json", + "pattern_button": "ui/loom_screen.json", + "pattern_button/banner_pattern": "ui/loom_screen.json", + "pattern_button/item_button_ref": "ui/loom_screen.json", + "scroll_grid": "ui/loom_screen.json", + "scroll_grid_panel": "ui/loom_screen.json", + "scroll_grid_panel/grid": "ui/loom_screen.json", + "scroll_panel": "ui/loom_screen.json", + "pattern_book_panel": "ui/loom_screen.json", + "pattern_book_panel/bg": "ui/loom_screen.json", + "pattern_book_panel/scroll_panel": "ui/loom_screen.json", + "result_slot_button": "ui/loom_screen.json", + "input_item_slot": "ui/loom_screen.json", + "dye_item_slot": "ui/loom_screen.json", + "material_item_slot": "ui/loom_screen.json", + "result_item_slot": "ui/loom_screen.json", + "input_slots_stack_panel": "ui/loom_screen.json", + "input_slots_stack_panel/input_item_slot": "ui/loom_screen.json", + "input_slots_stack_panel/padding_1": "ui/loom_screen.json", + "input_slots_stack_panel/dye_item_slot": "ui/loom_screen.json", + "input_slots_stack_panel/padding_2": "ui/loom_screen.json", + "input_slots_stack_panel/material_item_slot": "ui/loom_screen.json", + "result_banner_renderer": "ui/loom_screen.json", + "top_half_stack_panel": "ui/loom_screen.json", + "top_half_stack_panel/input_slots_holder": "ui/loom_screen.json", + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/loom_screen.json", + "top_half_stack_panel/padding_1": "ui/loom_screen.json", + "top_half_stack_panel/arrow_holder": "ui/loom_screen.json", + "top_half_stack_panel/arrow_holder/arrow_icon": "ui/loom_screen.json", + "top_half_stack_panel/padding_2": "ui/loom_screen.json", + "top_half_stack_panel/result_item_slot_holder": "ui/loom_screen.json", + "top_half_stack_panel/result_item_slot_holder/result_item_slot": "ui/loom_screen.json", + "top_half_stack_panel/padding_3": "ui/loom_screen.json", + "top_half_stack_panel/result_banner_outline": "ui/loom_screen.json", + "top_half_stack_panel/result_banner_outline/result_banner_renderer": "ui/loom_screen.json", + "top_half_panel": "ui/loom_screen.json", + "top_half_panel/top_half_stack_panel": "ui/loom_screen.json", + "right_panel": "ui/loom_screen.json", + "right_panel/common_panel": "ui/loom_screen.json", + "right_panel/loom_screen_inventory": "ui/loom_screen.json", + "right_panel/loom_screen_inventory/loom_label": "ui/loom_screen.json", + "right_panel/loom_screen_inventory/top_half_panel": "ui/loom_screen.json", + "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": "ui/loom_screen.json", + "right_panel/loom_screen_inventory/hotbar_grid": "ui/loom_screen.json", + "help_button": "ui/loom_screen.json", + "toolbar_panel": "ui/loom_screen.json", + "toolbar_panel/toolbar_background": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/loom_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/loom_screen.json", + "toolbar_anchor": "ui/loom_screen.json", + "toolbar_anchor/toolbar_panel": "ui/loom_screen.json", + "center_fold": "ui/loom_screen.json", + "center_fold/center_bg": "ui/loom_screen.json", + "screen_stack_panel": "ui/loom_screen.json", + "screen_stack_panel/pattern_book_panel": "ui/loom_screen.json", + "screen_stack_panel/center_fold": "ui/loom_screen.json", + "screen_stack_panel/right_panel": "ui/loom_screen.json", + "screen_stack_panel/toolbar_anchor": "ui/loom_screen.json", + "loom_panel": "ui/loom_screen.json", + "loom_panel/screen_stack_panel": "ui/loom_screen.json", + "loom_panel/container_gamepad_helpers": "ui/loom_screen.json", + "loom_panel/selected_item_details_factory": "ui/loom_screen.json", + "loom_panel/item_lock_notification_factory": "ui/loom_screen.json", + "loom_panel/inventory_selected_icon_button": "ui/loom_screen.json", + "loom_panel/inventory_take_progress_icon_button": "ui/loom_screen.json", + "loom_panel/flying_item_renderer": "ui/loom_screen.json", + "loom_screen": "ui/loom_screen.json", + }, + "loom_pocket": { + "vertical_arrow_icon": "ui/loom_screen_pocket.json", + "banner_empty_image": "ui/loom_screen_pocket.json", + "dye_empty_image": "ui/loom_screen_pocket.json", + "pattern_item_empty_image": "ui/loom_screen_pocket.json", + "chest_item_renderer": "ui/loom_screen_pocket.json", + "banner_item_renderer": "ui/loom_screen_pocket.json", + "loom_item_renderer": "ui/loom_screen_pocket.json", + "input_item_slot": "ui/loom_screen_pocket.json", + "dye_item_slot": "ui/loom_screen_pocket.json", + "material_item_slot": "ui/loom_screen_pocket.json", + "result_item_slot": "ui/loom_screen_pocket.json", + "right_panel": "ui/loom_screen_pocket.json", + "right_panel/content": "ui/loom_screen_pocket.json", + "right_panel/content/bg": "ui/loom_screen_pocket.json", + "right_panel/content/loom_content_stack_panel": "ui/loom_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/loom_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/loom_screen_pocket.json", + "right_tab_loom": "ui/loom_screen_pocket.json", + "right_navigation_tabs": "ui/loom_screen_pocket.json", + "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/loom_screen_pocket.json", + "right_navigation_tabs/fill": "ui/loom_screen_pocket.json", + "right_navigation_tabs/right_tab_loom": "ui/loom_screen_pocket.json", + "input_slots_stack_panel": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/input_item_slot": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/padding_1": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/dye_item_slot": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/padding_2": "ui/loom_screen_pocket.json", + "input_slots_stack_panel/material_item_slot": "ui/loom_screen_pocket.json", + "result_banner_outline": "ui/loom_screen_pocket.json", + "result_banner_outline/result_banner_renderer": "ui/loom_screen_pocket.json", + "loom_content_stack_panel": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/label_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/label_holder/loom_label": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_1": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/input_slots_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_2": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/banner_pattern_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_3": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/arrow_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_4": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/result_item_slot_holder": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/result_item_slot_holder/result_item_slot": "ui/loom_screen_pocket.json", + "loom_content_stack_panel/padding_5": "ui/loom_screen_pocket.json", + "inventory_scroll_panel": "ui/loom_screen_pocket.json", + "pattern_button": "ui/loom_screen_pocket.json", + "banner_pattern": "ui/loom_screen_pocket.json", + "pattern_scroll_panel": "ui/loom_screen_pocket.json", + "left_panel": "ui/loom_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/loom_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/loom_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/loom_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/loom_screen_pocket.json", + "left_panel/content": "ui/loom_screen_pocket.json", + "left_panel/content/bg": "ui/loom_screen_pocket.json", + "left_panel/content/inventory_scroll_panel": "ui/loom_screen_pocket.json", + "left_panel/content/pattern_scroll_panel": "ui/loom_screen_pocket.json", + "left_tab_patterns": "ui/loom_screen_pocket.json", + "left_tab_inventory": "ui/loom_screen_pocket.json", + "left_navigation_tabs": "ui/loom_screen_pocket.json", + "left_navigation_tabs/left_tab_patterns": "ui/loom_screen_pocket.json", + "left_navigation_tabs/padding": "ui/loom_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/loom_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/loom_screen_pocket.json", + "loom_panel": "ui/loom_screen_pocket.json", + "loom_panel/pocket_hotbar_and_content_panels": "ui/loom_screen_pocket.json", + "loom_panel/container_gamepad_helpers": "ui/loom_screen_pocket.json", + "loom_panel/selected_item_details_factory": "ui/loom_screen_pocket.json", + "loom_panel/item_lock_notification_factory": "ui/loom_screen_pocket.json", + "loom_panel/inventory_selected_icon_button": "ui/loom_screen_pocket.json", + "loom_panel/inventory_take_progress_icon_button": "ui/loom_screen_pocket.json", + "loom_panel/flying_item_renderer": "ui/loom_screen_pocket.json", + }, + "manage_feed": { + "manage_feed_item_scrolling_panel": "ui/manage_feed_screen.json", + "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": "ui/manage_feed_screen.json", + "manage_feed_item_scrolling_panel_content": "ui/manage_feed_screen.json", + "grid_panel": "ui/manage_feed_screen.json", + "grid_panel/top_spacing_gap": "ui/manage_feed_screen.json", + "grid_panel/manage_feed_loading_grid_item": "ui/manage_feed_screen.json", + "grid_panel/manage_feed_grid": "ui/manage_feed_screen.json", + "grid_panel/spacing_gap2": "ui/manage_feed_screen.json", + "grid_panel/pagination_panel": "ui/manage_feed_screen.json", + "pagination_panel": "ui/manage_feed_screen.json", + "manage_feed_grid": "ui/manage_feed_screen.json", + "manage_feed_grid_item": "ui/manage_feed_screen.json", + "manage_feed_grid_item/image_panel_instance": "ui/manage_feed_screen.json", + "manage_feed_grid_item/manage_feed_buttons_panel": "ui/manage_feed_screen.json", + "manage_feed_grid_item/manage_feed_text_instance": "ui/manage_feed_screen.json", + "manage_feed_grid_item/feed_timesince_instance": "ui/manage_feed_screen.json", + "manage_feed_grid_item/nr_of_reports": "ui/manage_feed_screen.json", + "manage_feed_grid_item/manage_player_pic_panel": "ui/manage_feed_screen.json", + "manage_feed_grid_item/manage_feed_gamertag_instance": "ui/manage_feed_screen.json", + "manage_feed_buttons_panel": "ui/manage_feed_screen.json", + "manage_feed_buttons_panel/ignore_button": "ui/manage_feed_screen.json", + "manage_feed_buttons_panel/delete_button": "ui/manage_feed_screen.json", + "manage_feed_loading_grid_item": "ui/manage_feed_screen.json", + "manage_feed_loading_grid_item/loading_image_panel": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/like_button_loading": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/spacing_gap1": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/comment_button_loading": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/spacing_gap2": "ui/manage_feed_screen.json", + "feed_buttons_panel_loading/options_button_loading": "ui/manage_feed_screen.json", + "like_button_loading": "ui/manage_feed_screen.json", + "comment_button_loading": "ui/manage_feed_screen.json", + "options_button_loading": "ui/manage_feed_screen.json", + "player_pic_panel_loading": "ui/manage_feed_screen.json", + "player_pic_panel_loading/player_gamer_pic_loading": "ui/manage_feed_screen.json", + "player_gamer_pic_loading": "ui/manage_feed_screen.json", + "loading_image_panel": "ui/manage_feed_screen.json", + "loading_image_panel/progress_loading_bars": "ui/manage_feed_screen.json", + "loading_image_panel/manage_feed_image_loading": "ui/manage_feed_screen.json", + "loading_image_panel/no_feed_item_content": "ui/manage_feed_screen.json", + "manage_feed_image_loading": "ui/manage_feed_screen.json", + "ignore_button": "ui/manage_feed_screen.json", + "ignore_content_panel": "ui/manage_feed_screen.json", + "ignore_content_panel/ignore_label": "ui/manage_feed_screen.json", + "delete_button": "ui/manage_feed_screen.json", + "delete_content_panel": "ui/manage_feed_screen.json", + "delete_content_panel/delete_label": "ui/manage_feed_screen.json", + "manage_feed_image": "ui/manage_feed_screen.json", + "manage_feed_image_content_panel": "ui/manage_feed_screen.json", + "manage_feed_image_content_panel/manage_feed_image": "ui/manage_feed_screen.json", + "manage_feed_image_content_panel/textpost_content": "ui/manage_feed_screen.json", + "textpost_content": "ui/manage_feed_screen.json", + "image_panel": "ui/manage_feed_screen.json", + "image_panel/manage_feed_image_content_panel": "ui/manage_feed_screen.json", + "manage_player_pic_panel": "ui/manage_feed_screen.json", + "manage_player_pic_panel/manage_player_gamer_pic": "ui/manage_feed_screen.json", + "manage_player_gamer_pic": "ui/manage_feed_screen.json", + "content": "ui/manage_feed_screen.json", + "content/top_bar_gradient": "ui/manage_feed_screen.json", + "content/gamepad_helpers": "ui/manage_feed_screen.json", + "content/return_button": "ui/manage_feed_screen.json", + "content/reported_items_label": "ui/manage_feed_screen.json", + "content/manage_feed_item_scrolling_panel_instance": "ui/manage_feed_screen.json", + "manage_feed_screen": "ui/manage_feed_screen.json", + "manage_feed_screen_content": "ui/manage_feed_screen.json", + "manage_feed_screen_content/transparent_background": "ui/manage_feed_screen.json", + "manage_feed_screen_content/container": "ui/manage_feed_screen.json", + "manage_feed_screen_content/container/content": "ui/manage_feed_screen.json", + }, + "manifest_validation": { + "clipboard_icon": "ui/manifest_validation_screen.json", + "clipboard_icon_wrapper": "ui/manifest_validation_screen.json", + "clipboard_icon_wrapper/icon": "ui/manifest_validation_screen.json", + "trash_icon": "ui/manifest_validation_screen.json", + "trash_icon_wrapper": "ui/manifest_validation_screen.json", + "trash_icon_wrapper/icon": "ui/manifest_validation_screen.json", + "trash_icon_wrapper/progress_loading_bars": "ui/manifest_validation_screen.json", + "refresh_icon": "ui/manifest_validation_screen.json", + "refresh_icon_wrapper": "ui/manifest_validation_screen.json", + "refresh_icon_wrapper/icon": "ui/manifest_validation_screen.json", + "refresh_icon_wrapper/progress_loading_bars": "ui/manifest_validation_screen.json", + "section_divider": "ui/manifest_validation_screen.json", + "section_divider/divider_image": "ui/manifest_validation_screen.json", + "text_label": "ui/manifest_validation_screen.json", + "icon_image": "ui/manifest_validation_screen.json", + "progress_loading_bars": "ui/manifest_validation_screen.json", + "background": "ui/manifest_validation_screen.json", + "black_background_fill": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": "ui/manifest_validation_screen.json", + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": "ui/manifest_validation_screen.json", + "error_pack_content_layout": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_header_panel": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_header_panel/button": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/padding_0": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel/error_text": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel/space": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel/offset": "ui/manifest_validation_screen.json", + "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": "ui/manifest_validation_screen.json", + "delete_button": "ui/manifest_validation_screen.json", + "delete_text_button": "ui/manifest_validation_screen.json", + "clipboard_button": "ui/manifest_validation_screen.json", + "refresh_button": "ui/manifest_validation_screen.json", + "refresh_text_button": "ui/manifest_validation_screen.json", + "pack_secondary_info": "ui/manifest_validation_screen.json", + "pack_secondary_info/layout": "ui/manifest_validation_screen.json", + "error_content_grid": "ui/manifest_validation_screen.json", + "pack_error_item": "ui/manifest_validation_screen.json", + "pack_error_item/secondary": "ui/manifest_validation_screen.json", + "pack_error_item/error_header": "ui/manifest_validation_screen.json", + "pack_error_item/error_header/error_text": "ui/manifest_validation_screen.json", + "pack_error_item/error": "ui/manifest_validation_screen.json", + "pack_error_group": "ui/manifest_validation_screen.json", + "pack_error_group/top_padding": "ui/manifest_validation_screen.json", + "pack_error_group/errors": "ui/manifest_validation_screen.json", + "pack_error_group/padding": "ui/manifest_validation_screen.json", + "common_scrolling_panel": "ui/manifest_validation_screen.json", + "common_content": "ui/manifest_validation_screen.json", + "scrolling_offsets": "ui/manifest_validation_screen.json", + "manifest_validation_scroll_content": "ui/manifest_validation_screen.json", + "manifest_validation_scroll_content/scrolling_panel": "ui/manifest_validation_screen.json", + "common_scroll_panel": "ui/manifest_validation_screen.json", + "manifest_validation_scroll_panel": "ui/manifest_validation_screen.json", + "manifest_validation_scroll_panel/pack_error_group": "ui/manifest_validation_screen.json", + "manifest_validation_screen": "ui/manifest_validation_screen.json", + "manifest_validation_screen_content": "ui/manifest_validation_screen.json", + "manifest_validation_screen_content/background": "ui/manifest_validation_screen.json", + }, + "sdl_label": { + "sdl_label_factory": "ui/marketplace_sdl/sdl_label.json", + "sdl_label": "ui/marketplace_sdl/sdl_label.json", + "sdl_mc_ten_label": "ui/marketplace_sdl/sdl_label.json", + }, + "sdl_dropdowns": { + "sdl_dropdown_rows": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_dropdown_rows/container_panel": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_dropdown_rows/container_panel/toggle": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_dropdown_rows/container_panel/pad": "ui/marketplace_sdl/sdl_dropdowns.json", + "sdl_rows_toggle": "ui/marketplace_sdl/sdl_dropdowns.json", + }, + "sdl_image_row": { + "image_row_factory": "ui/marketplace_sdl/sdl_image_row.json", + "buffer_panel": "ui/marketplace_sdl/sdl_image_row.json", + "single_image": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_with_border": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_with_border/screenshot_image": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_with_border/dark_border": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_with_border/progress_loading": "ui/marketplace_sdl/sdl_image_row.json", + "single_image/image_selector": "ui/marketplace_sdl/sdl_image_row.json", + "double_image": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/buffer_panel_in_1": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/buffer_panel_in_2": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/triple_image": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/buffer_panel_out_1": "ui/marketplace_sdl/sdl_image_row.json", + "triple_image_with_buffer/buffer_panel_out_2": "ui/marketplace_sdl/sdl_image_row.json", + }, + "sdl_text_row": { + "sdl_text_row_factory": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_factory": "ui/marketplace_sdl/sdl_text_row.json", + "label_button": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel/header_background": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel/header_internals": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel/header_highlight": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_header_component_panel/text_row_header_text": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel/text_background": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel/text_row_selector": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel/text_row_background": "ui/marketplace_sdl/sdl_text_row.json", + "sdl_text_row_component_panel/text_row_component_text": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/buffer_panel_front": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/headercomp_and_textcomp_panel": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": "ui/marketplace_sdl/sdl_text_row.json", + "solo_text_row/buffer_panel_back": "ui/marketplace_sdl/sdl_text_row.json", + }, + "mob_effect": { + "effect_background": "ui/mob_effect_screen.json", + "main_background": "ui/mob_effect_screen.json", + "button_background": "ui/mob_effect_screen.json", + "effect_name": "ui/mob_effect_screen.json", + "effect_timer": "ui/mob_effect_screen.json", + "effect_icon": "ui/mob_effect_screen.json", + "mob_effect_grid_panel": "ui/mob_effect_screen.json", + "mob_effect_grid_panel/mob_effect_grid": "ui/mob_effect_screen.json", + "mob_effect_grid": "ui/mob_effect_screen.json", + "mob_effect_grid_item": "ui/mob_effect_screen.json", + "mob_effect_grid_item/bg": "ui/mob_effect_screen.json", + "mob_effect_grid_item/name": "ui/mob_effect_screen.json", + "mob_effect_grid_item/timer": "ui/mob_effect_screen.json", + "mob_effect_grid_item/icon": "ui/mob_effect_screen.json", + "mob_effect_list_content_panel": "ui/mob_effect_screen.json", + "mob_effect_list_content_panel/scrolling_panel": "ui/mob_effect_screen.json", + "mob_effect_screen_close_button": "ui/mob_effect_screen.json", + "close_button_panel": "ui/mob_effect_screen.json", + "close_button_panel/bg": "ui/mob_effect_screen.json", + "close_button_panel/close_button": "ui/mob_effect_screen.json", + "mob_effect_content": "ui/mob_effect_screen.json", + "mob_effect_content/bg": "ui/mob_effect_screen.json", + "mob_effect_content/close_panel": "ui/mob_effect_screen.json", + "mob_effect_content/content_panel": "ui/mob_effect_screen.json", + "main_screen": "ui/mob_effect_screen.json", + "main_screen/main_screen": "ui/mob_effect_screen.json", + "mob_effect_screen": "ui/mob_effect_screen.json", + }, + "non_xbl_user_management": { + "black_tint_image": "ui/non_xbl_user_management_screen.json", + "modal_title_text": "ui/non_xbl_user_management_screen.json", + "modal_label_text": "ui/non_xbl_user_management_screen.json", + "modal_label_text/padding": "ui/non_xbl_user_management_screen.json", + "modal_label_text/text": "ui/non_xbl_user_management_screen.json", + "modal_label_panel": "ui/non_xbl_user_management_screen.json", + "modal_left_button": "ui/non_xbl_user_management_screen.json", + "modal_middle_button": "ui/non_xbl_user_management_screen.json", + "modal_rightcancel_button": "ui/non_xbl_user_management_screen.json", + "three_buttons_panel": "ui/non_xbl_user_management_screen.json", + "three_buttons_panel/left": "ui/non_xbl_user_management_screen.json", + "three_buttons_panel/middle": "ui/non_xbl_user_management_screen.json", + "three_buttons_panel/right": "ui/non_xbl_user_management_screen.json", + "two_buttons_panel": "ui/non_xbl_user_management_screen.json", + "two_buttons_panel/left": "ui/non_xbl_user_management_screen.json", + "two_buttons_panel/right": "ui/non_xbl_user_management_screen.json", + "single_button_panel": "ui/non_xbl_user_management_screen.json", + "single_button_panel/left": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons/background_with_buttons": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons/title": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons/text_with_buttons": "ui/non_xbl_user_management_screen.json", + "modal_dialog_with_buttons/button_panel": "ui/non_xbl_user_management_screen.json", + "modal_input_panel": "ui/non_xbl_user_management_screen.json", + "modal_input_panel/black_tint_image": "ui/non_xbl_user_management_screen.json", + "user_confirm_dialog_screen_content": "ui/non_xbl_user_management_screen.json", + "user_confirm_dialog_screen_content/modal_input": "ui/non_xbl_user_management_screen.json", + "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": "ui/non_xbl_user_management_screen.json", + "user_confirm_dialog_screen": "ui/non_xbl_user_management_screen.json", + }, + "npc_interact": { + "multiline_text_edit_control": "ui/npc_interact_screen.json", + "text_edit_control": "ui/npc_interact_screen.json", + "label_padding": "ui/npc_interact_screen.json", + "main_stack_panel": "ui/npc_interact_screen.json", + "skin_button": "ui/npc_interact_screen.json", + "skin_model": "ui/npc_interact_screen.json", + "skin_model_clipper": "ui/npc_interact_screen.json", + "skins_grid_item": "ui/npc_interact_screen.json", + "skins_grid_item/clip": "ui/npc_interact_screen.json", + "skins_grid_item/clip/model": "ui/npc_interact_screen.json", + "skins_grid_item/button": "ui/npc_interact_screen.json", + "skins_grid_item/selectFrame": "ui/npc_interact_screen.json", + "skins_grid": "ui/npc_interact_screen.json", + "cycle_pack_button": "ui/npc_interact_screen.json", + "cycle_pack_left_button": "ui/npc_interact_screen.json", + "cycle_pack_right_button": "ui/npc_interact_screen.json", + "banner_fill": "ui/npc_interact_screen.json", + "skin_picker": "ui/npc_interact_screen.json", + "skin_picker/left": "ui/npc_interact_screen.json", + "skin_picker/sg": "ui/npc_interact_screen.json", + "skin_picker/right": "ui/npc_interact_screen.json", + "name_edit": "ui/npc_interact_screen.json", + "advanced_button": "ui/npc_interact_screen.json", + "advanced_button/button": "ui/npc_interact_screen.json", + "dialog_button": "ui/npc_interact_screen.json", + "dialog_button/button": "ui/npc_interact_screen.json", + "basic_stack_panel": "ui/npc_interact_screen.json", + "basic_stack_panel/top_pad": "ui/npc_interact_screen.json", + "basic_stack_panel/name_label": "ui/npc_interact_screen.json", + "basic_stack_panel/name_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/name_edit": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog_pre_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog_label": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog_post_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog__padding": "ui/npc_interact_screen.json", + "basic_stack_panel/dialog_button": "ui/npc_interact_screen.json", + "basic_stack_panel/appearance_pre_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/appearance_label": "ui/npc_interact_screen.json", + "basic_stack_panel/appearance_post_padding": "ui/npc_interact_screen.json", + "basic_stack_panel/skins": "ui/npc_interact_screen.json", + "basic_stack_panel/advanced_button": "ui/npc_interact_screen.json", + "basic_content": "ui/npc_interact_screen.json", + "basic_content/basic": "ui/npc_interact_screen.json", + "advanced_stack_panel": "ui/npc_interact_screen.json", + "advanced_stack_panel/top_pad": "ui/npc_interact_screen.json", + "advanced_stack_panel/add_help_text": "ui/npc_interact_screen.json", + "advanced_stack_panel/middle_pad": "ui/npc_interact_screen.json", + "advanced_stack_panel/actions": "ui/npc_interact_screen.json", + "advanced_stack_panel/add_buttons": "ui/npc_interact_screen.json", + "advanced_stack_panel/bottom_pad": "ui/npc_interact_screen.json", + "action_title": "ui/npc_interact_screen.json", + "plus_icon": "ui/npc_interact_screen.json", + "plus_button": "ui/npc_interact_screen.json", + "action_text_edit": "ui/npc_interact_screen.json", + "maximized_action_edit": "ui/npc_interact_screen.json", + "action_edit": "ui/npc_interact_screen.json", + "action_edit/text_edit": "ui/npc_interact_screen.json", + "action_edit/expand": "ui/npc_interact_screen.json", + "button_name_edit": "ui/npc_interact_screen.json", + "command_toggle": "ui/npc_interact_screen.json", + "command_toggle_panel": "ui/npc_interact_screen.json", + "command_toggle_panel/command_toggle": "ui/npc_interact_screen.json", + "command_toggle_panel/toggle_label": "ui/npc_interact_screen.json", + "action_mode": "ui/npc_interact_screen.json", + "action_mode/button_mode_toggle_panel": "ui/npc_interact_screen.json", + "action_mode/on_enter_toggle_panel": "ui/npc_interact_screen.json", + "action_mode/on_exit_toggle_panel": "ui/npc_interact_screen.json", + "button_name_label": "ui/npc_interact_screen.json", + "url_notifications": "ui/npc_interact_screen.json", + "url_notifications/empty_uri_warning": "ui/npc_interact_screen.json", + "url_notifications/invalid_uri_warning": "ui/npc_interact_screen.json", + "action_template": "ui/npc_interact_screen.json", + "action_template/title": "ui/npc_interact_screen.json", + "action_template/label_pad": "ui/npc_interact_screen.json", + "action_template/edit": "ui/npc_interact_screen.json", + "action_template/edit_pad": "ui/npc_interact_screen.json", + "action_template/url_warning": "ui/npc_interact_screen.json", + "action_template/url_pad": "ui/npc_interact_screen.json", + "action_template/action_mode": "ui/npc_interact_screen.json", + "action_template/mode_pad": "ui/npc_interact_screen.json", + "action_template/button_name_label": "ui/npc_interact_screen.json", + "action_template/button_name": "ui/npc_interact_screen.json", + "action_command": "ui/npc_interact_screen.json", + "action_url": "ui/npc_interact_screen.json", + "padded_action": "ui/npc_interact_screen.json", + "padded_action/action": "ui/npc_interact_screen.json", + "padded_action/padding": "ui/npc_interact_screen.json", + "action": "ui/npc_interact_screen.json", + "action/trash": "ui/npc_interact_screen.json", + "action/command": "ui/npc_interact_screen.json", + "action/url": "ui/npc_interact_screen.json", + "action_panel": "ui/npc_interact_screen.json", + "add_button": "ui/npc_interact_screen.json", + "help_label": "ui/npc_interact_screen.json", + "add_help_section": "ui/npc_interact_screen.json", + "add_help_section/text_url": "ui/npc_interact_screen.json", + "add_help_section/text_url/tts_border": "ui/npc_interact_screen.json", + "add_help_section/text_url/wrapper_panel_url": "ui/npc_interact_screen.json", + "add_help_section/text_url/wrapper_panel_url/text_url_a": "ui/npc_interact_screen.json", + "add_help_section/text_url/wrapper_panel_url/padding": "ui/npc_interact_screen.json", + "add_help_section/text_url/wrapper_panel_url/text_url_b": "ui/npc_interact_screen.json", + "add_help_section/padding": "ui/npc_interact_screen.json", + "add_help_section/text_command": "ui/npc_interact_screen.json", + "add_help_section/text_command/tts_border": "ui/npc_interact_screen.json", + "add_help_section/text_command/wrapper_panel_command": "ui/npc_interact_screen.json", + "add_help_section/text_command/wrapper_panel_command/text_command_a": "ui/npc_interact_screen.json", + "add_help_section/text_command/wrapper_panel_command/padding": "ui/npc_interact_screen.json", + "add_help_section/text_command/wrapper_panel_command/text_command_b": "ui/npc_interact_screen.json", + "add_help_text": "ui/npc_interact_screen.json", + "add_buttons": "ui/npc_interact_screen.json", + "add_buttons/add_url": "ui/npc_interact_screen.json", + "add_buttons/padding": "ui/npc_interact_screen.json", + "add_buttons/add_command": "ui/npc_interact_screen.json", + "advanced_scrolling_panel": "ui/npc_interact_screen.json", + "advanced_scrolling_content": "ui/npc_interact_screen.json", + "advanced_scrolling_content/advanced": "ui/npc_interact_screen.json", + "message_model": "ui/npc_interact_screen.json", + "message_model/model": "ui/npc_interact_screen.json", + "clipped_message_model": "ui/npc_interact_screen.json", + "clipped_message_model/model": "ui/npc_interact_screen.json", + "message_model_window": "ui/npc_interact_screen.json", + "message_model_window/model": "ui/npc_interact_screen.json", + "message_model_window/immersive_reader_button": "ui/npc_interact_screen.json", + "edit_box_background": "ui/npc_interact_screen.json", + "npc_message": "ui/npc_interact_screen.json", + "npc_message/label": "ui/npc_interact_screen.json", + "npc_message/visibility_panel": "ui/npc_interact_screen.json", + "npc_message/visibility_panel/place_holder": "ui/npc_interact_screen.json", + "npc_message/background": "ui/npc_interact_screen.json", + "text_scroll": "ui/npc_interact_screen.json", + "student_message_bubble": "ui/npc_interact_screen.json", + "student_message_bubble/dialog_panel": "ui/npc_interact_screen.json", + "student_message_bubble/dialog_panel/text_scroll": "ui/npc_interact_screen.json", + "bubble_point": "ui/npc_interact_screen.json", + "student_message_section": "ui/npc_interact_screen.json", + "student_message_section/model": "ui/npc_interact_screen.json", + "student_message_section/point": "ui/npc_interact_screen.json", + "student_message_section/message": "ui/npc_interact_screen.json", + "student_button_label": "ui/npc_interact_screen.json", + "student_button_label_panel": "ui/npc_interact_screen.json", + "student_button_label_panel/url": "ui/npc_interact_screen.json", + "student_button_label_panel/command": "ui/npc_interact_screen.json", + "student_button": "ui/npc_interact_screen.json", + "student_button/button": "ui/npc_interact_screen.json", + "student_buttons": "ui/npc_interact_screen.json", + "student_buttons/buttons": "ui/npc_interact_screen.json", + "student_buttons/buttons/actions": "ui/npc_interact_screen.json", + "student_stack_panel": "ui/npc_interact_screen.json", + "student_stack_panel/top_pad": "ui/npc_interact_screen.json", + "student_stack_panel/message": "ui/npc_interact_screen.json", + "student_stack_panel/message_pad": "ui/npc_interact_screen.json", + "student_stack_panel/buttons": "ui/npc_interact_screen.json", + "student_view_content": "ui/npc_interact_screen.json", + "student_view_content/student": "ui/npc_interact_screen.json", + "student_view_content/close": "ui/npc_interact_screen.json", + "close_button_base": "ui/npc_interact_screen.json", + "close_button_base/default": "ui/npc_interact_screen.json", + "close_button_base/hover": "ui/npc_interact_screen.json", + "close_button_base/pressed": "ui/npc_interact_screen.json", + "x_close_button": "ui/npc_interact_screen.json", + "ignorable_x_close_button": "ui/npc_interact_screen.json", + "ignorable_x_close_button/button": "ui/npc_interact_screen.json", + "close_button_holder": "ui/npc_interact_screen.json", + "close_button_holder/close_basic": "ui/npc_interact_screen.json", + "close_button_holder/close_student_edit": "ui/npc_interact_screen.json", + "close_button_holder/close_student": "ui/npc_interact_screen.json", + "close_button_holder/close_maximized_action_edit": "ui/npc_interact_screen.json", + "close_button_holder/close_advanced": "ui/npc_interact_screen.json", + "main_content": "ui/npc_interact_screen.json", + "main_content/basic": "ui/npc_interact_screen.json", + "main_content/advanced": "ui/npc_interact_screen.json", + "main_content/maximized_action_edit": "ui/npc_interact_screen.json", + "main_content/close": "ui/npc_interact_screen.json", + "root_panel": "ui/npc_interact_screen.json", + "gamepad_helper_exit_text": "ui/npc_interact_screen.json", + "close_text": "ui/npc_interact_screen.json", + "npc_screen_contents": "ui/npc_interact_screen.json", + "npc_screen_contents/teacher": "ui/npc_interact_screen.json", + "npc_screen_contents/student": "ui/npc_interact_screen.json", + "npc_screen_contents/npc_screen_close": "ui/npc_interact_screen.json", + "npc_screen": "ui/npc_interact_screen.json", + }, + "online_safety": { + "online_safety_proceed_button": "ui/online_safety_screen.json", + "online_safety_back_button": "ui/online_safety_screen.json", + "online_safety_description": "ui/online_safety_screen.json", + "ip_safety_description": "ui/online_safety_screen.json", + "online_safety_label_panel": "ui/online_safety_screen.json", + "ip_safety_label_panel": "ui/online_safety_screen.json", + "do_not_show_checkbox": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel/buffer_panel": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": "ui/online_safety_screen.json", + "do_not_show_checkbox/header_description_stack_panel/another_panel": "ui/online_safety_screen.json", + "online_safety_dialog": "ui/online_safety_screen.json", + "ip_safety_dialog": "ui/online_safety_screen.json", + "gamepad_helpers": "ui/online_safety_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/online_safety_screen.json", + "online_safety_screen": "ui/online_safety_screen.json", + "online_safety_screen_content": "ui/online_safety_screen.json", + "online_safety_screen_content/online_safety_dialog": "ui/online_safety_screen.json", + "online_safety_screen_content/gamepad_helpers": "ui/online_safety_screen.json", + "ip_safety_screen": "ui/online_safety_screen.json", + "ip_safety_screen_content": "ui/online_safety_screen.json", + "ip_safety_screen_content/ip_safety_dialog": "ui/online_safety_screen.json", + "ip_safety_screen_content/gamepad_helpers": "ui/online_safety_screen.json", + }, + "pack_settings": { + "background": "ui/pack_settings_screen.json", + "screen": "ui/pack_settings_screen.json", + "main_screen_content": "ui/pack_settings_screen.json", + "pack_scroll_panel": "ui/pack_settings_screen.json", + "scrolling_content": "ui/pack_settings_screen.json", + "scrolling_content/content_tiering_panel": "ui/pack_settings_screen.json", + "scrolling_content/generated_form": "ui/pack_settings_screen.json", + "content_tiering_panel": "ui/pack_settings_screen.json", + "content_tiering_panel/label_panel": "ui/pack_settings_screen.json", + "content_tiering_panel/label_panel/content_tier_label": "ui/pack_settings_screen.json", + "content_tiering_panel/label_panel/unsupported_content_tier_label": "ui/pack_settings_screen.json", + "content_tiering_panel/slider_panel": "ui/pack_settings_screen.json", + "content_tiering_panel/slider_panel/content_tier_slider": "ui/pack_settings_screen.json", + "content_tiering_panel/incompatible_label_panel": "ui/pack_settings_screen.json", + "content_tiering_panel/incompatible_label_panel/label": "ui/pack_settings_screen.json", + }, + "panorama": { + "panorama_view": "ui/panorama_screen.json", + "panorama_view/pan_left": "ui/panorama_screen.json", + "panorama_view/screenshot": "ui/panorama_screen.json", + "panorama_view/pan_right": "ui/panorama_screen.json", + "panorama_input_panel": "ui/panorama_screen.json", + "panorama_input_panel/image_border": "ui/panorama_screen.json", + "panorama_input_panel/image_border/panorama_key_art": "ui/panorama_screen.json", + "panorama_input_panel/image_border/progress_loading": "ui/panorama_screen.json", + "pan_left_button": "ui/panorama_screen.json", + "pan_right_button": "ui/panorama_screen.json", + }, + "patch_notes": { + "solid_texture": "ui/patch_notes_screen.json", + "image_with_background": "ui/patch_notes_screen.json", + "image_with_background/image": "ui/patch_notes_screen.json", + "image_with_background/image/loading_animation": "ui/patch_notes_screen.json", + "white_image": "ui/patch_notes_screen.json", + "patch_main_image": "ui/patch_notes_screen.json", + "store_image": "ui/patch_notes_screen.json", + "patch_notes_header_background": "ui/patch_notes_screen.json", + "patch_notes_header_background/black_background": "ui/patch_notes_screen.json", + "patch_notes_header_background/black_background/content": "ui/patch_notes_screen.json", + "button_label_panel": "ui/patch_notes_screen.json", + "button_label_panel/text_label": "ui/patch_notes_screen.json", + "button_content": "ui/patch_notes_screen.json", + "button_content/button_label2": "ui/patch_notes_screen.json", + "patch_image": "ui/patch_notes_screen.json", + "patch_notes_header_content_without_offer": "ui/patch_notes_screen.json", + "patch_notes_header_content_without_offer/patch_image": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/patch_image": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/padding": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/store_item_section": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/store_item_section/store_image": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/store_item_section/padding": "ui/patch_notes_screen.json", + "patch_notes_header_content_with_offer/store_item_section/store_button": "ui/patch_notes_screen.json", + "store_button": "ui/patch_notes_screen.json", + "store_button/store_button": "ui/patch_notes_screen.json", + "store_button/loading_animation": "ui/patch_notes_screen.json", + "patch_notes_header": "ui/patch_notes_screen.json", + "patch_notes_header/patch_notes_background": "ui/patch_notes_screen.json", + "scroll_content": "ui/patch_notes_screen.json", + "scroll_content/padding_0": "ui/patch_notes_screen.json", + "scroll_content/patch_notes_header": "ui/patch_notes_screen.json", + "scroll_content/padding_1": "ui/patch_notes_screen.json", + "scroll_content/tts_label_wrapper": "ui/patch_notes_screen.json", + "patch_notes_panel": "ui/patch_notes_screen.json", + "patch_notes_panel/patch_notes_text": "ui/patch_notes_screen.json", + "patch_notes_panel/patch_notes_text/loading_animation": "ui/patch_notes_screen.json", + "patch_notes_content": "ui/patch_notes_screen.json", + "patch_notes_content/scrolling_panel": "ui/patch_notes_screen.json", + "continue_button": "ui/patch_notes_screen.json", + "patch_notes_dialog": "ui/patch_notes_screen.json", + "patch_notes_screen": "ui/patch_notes_screen.json", + "sunsetting_button_panel": "ui/patch_notes_screen.json", + "sunsetting_button_panel/padding_0": "ui/patch_notes_screen.json", + "sunsetting_button_panel/more_info_button": "ui/patch_notes_screen.json", + "sunsetting_button_panel/padding_1": "ui/patch_notes_screen.json", + "sunsetting_button_panel/continue_button": "ui/patch_notes_screen.json", + "sunsetting_button_panel/padding_2": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": "ui/patch_notes_screen.json", + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": "ui/patch_notes_screen.json", + "sunsetting_content": "ui/patch_notes_screen.json", + "sunsetting_content/scrolling_panel": "ui/patch_notes_screen.json", + "sunsetting_dialog": "ui/patch_notes_screen.json", + "sunsetting_screen": "ui/patch_notes_screen.json", + }, + "pause": { + "pause_icon": "ui/pause_screen.json", + "feedback_icon": "ui/pause_screen.json", + "change_skin_icon": "ui/pause_screen.json", + "take_screenshot_icon": "ui/pause_screen.json", + "settings_icon": "ui/pause_screen.json", + "achievements_icon": "ui/pause_screen.json", + "alex_icon": "ui/pause_screen.json", + "profile_gamerpic": "ui/pause_screen.json", + "button_x": "ui/pause_screen.json", + "dressing_room_controller_button_content": "ui/pause_screen.json", + "dressing_room_controller_button_content/button_x": "ui/pause_screen.json", + "dressing_room_controller_button_content/button_label_panel": "ui/pause_screen.json", + "dressing_room_controller_button_content/button_label_panel/button_label_text_left": "ui/pause_screen.json", + "controller_button_label": "ui/pause_screen.json", + "column_frame": "ui/pause_screen.json", + "dressing_room_button_gamepad": "ui/pause_screen.json", + "dressing_room_button": "ui/pause_screen.json", + "profile_button_content": "ui/pause_screen.json", + "profile_button_content/button_offset_wrapper": "ui/pause_screen.json", + "profile_button_content/button_offset_wrapper/button_x": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": "ui/pause_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": "ui/pause_screen.json", + "profile_button_content/padding_middle": "ui/pause_screen.json", + "profile_button_content/vertically_central_text": "ui/pause_screen.json", + "profile_button_content/vertically_central_text/top_padding": "ui/pause_screen.json", + "profile_button_content/vertically_central_text/profile_button_label": "ui/pause_screen.json", + "profile_button_content/padding_right": "ui/pause_screen.json", + "profile_button": "ui/pause_screen.json", + "skin_viewer_panel": "ui/pause_screen.json", + "skin_viewer_panel/paper_doll_panel": "ui/pause_screen.json", + "skin_viewer_panel/paper_doll_panel/paper_doll": "ui/pause_screen.json", + "skin_viewer_panel/paper_doll_name_tag": "ui/pause_screen.json", + "skin_panel": "ui/pause_screen.json", + "skin_panel/interior": "ui/pause_screen.json", + "skin_panel_interior": "ui/pause_screen.json", + "skin_panel_interior/offset_panel": "ui/pause_screen.json", + "skin_panel_interior/offset_panel/viewer_panel": "ui/pause_screen.json", + "skin_panel_interior/fill_1": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_1": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_2": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_3": "ui/pause_screen.json", + "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": "ui/pause_screen.json", + "pause_button_template": "ui/pause_screen.json", + "grid_button_template": "ui/pause_screen.json", + "return_to_game_button": "ui/pause_screen.json", + "realms_stories_button_panel": "ui/pause_screen.json", + "realms_stories_button_panel/realms_stories_button": "ui/pause_screen.json", + "realms_stories_button_panel/unread_story_count_panel": "ui/pause_screen.json", + "realms_stories_button": "ui/pause_screen.json", + "unread_story_count_panel": "ui/pause_screen.json", + "unread_story_count_panel/text": "ui/pause_screen.json", + "unread_story_count_panel/text/background": "ui/pause_screen.json", + "store_button_panel": "ui/pause_screen.json", + "store_button_panel/store_button": "ui/pause_screen.json", + "store_button_panel/store_error_button": "ui/pause_screen.json", + "store_button": "ui/pause_screen.json", + "store_error_button": "ui/pause_screen.json", + "store_error_button_content": "ui/pause_screen.json", + "store_error_button_content/marketplace_button_label": "ui/pause_screen.json", + "settings_button": "ui/pause_screen.json", + "how_to_play_button": "ui/pause_screen.json", + "invite_players_button": "ui/pause_screen.json", + "buy_button": "ui/pause_screen.json", + "quit_button": "ui/pause_screen.json", + "feedback_button": "ui/pause_screen.json", + "feedback_icon_button": "ui/pause_screen.json", + "feedback_icon_button/feedback_button": "ui/pause_screen.json", + "take_screenshot_gamepad_button_content": "ui/pause_screen.json", + "take_screenshot_gamepad_button_content/button_y": "ui/pause_screen.json", + "take_screenshot_gamepad_button_content/take_screenshot_icon": "ui/pause_screen.json", + "take_screenshot_gamepad_button": "ui/pause_screen.json", + "achievements_button_small": "ui/pause_screen.json", + "settings_button_small": "ui/pause_screen.json", + "take_screenshot_button": "ui/pause_screen.json", + "pause_screen": "ui/pause_screen.json", + "pause_screen_content": "ui/pause_screen.json", + "pause_screen_content/pause_screen_main_panels": "ui/pause_screen.json", + "pause_screen_content/skin_panel": "ui/pause_screen.json", + "pause_screen_content/friendsdrawer_button_panel": "ui/pause_screen.json", + "pause_screen_content/gamepad_helpers": "ui/pause_screen.json", + "pause_screen_content/keyboard_helpers": "ui/pause_screen.json", + "friendsdrawer_button_panel": "ui/pause_screen.json", + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": "ui/pause_screen.json", + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": "ui/pause_screen.json", + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": "ui/pause_screen.json", + "pause_screen_main_panels": "ui/pause_screen.json", + "pause_screen_main_panels/menu": "ui/pause_screen.json", + "left_buttons_panel": "ui/pause_screen.json", + "left_buttons_panel/filler": "ui/pause_screen.json", + "left_buttons_panel/trialTime": "ui/pause_screen.json", + "left_buttons_panel/the_rest_panel": "ui/pause_screen.json", + "smaller_buttons_panel": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/fill_1": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/side_padding": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_settings_button": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_settings_padding": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_achievements_button": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/small_achievements_padding": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/take_screenshot_btn": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/screenshot_padding": "ui/pause_screen.json", + "smaller_buttons_panel/stacked_column/fill_3": "ui/pause_screen.json", + "smaller_buttons_panel/padding_bottom": "ui/pause_screen.json", + "social_buttons_panel": "ui/pause_screen.json", + "social_buttons_panel/friendsbutton_panel": "ui/pause_screen.json", + "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": "ui/pause_screen.json", + "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": "ui/pause_screen.json", + "social_buttons_panel/invitebutton_panel": "ui/pause_screen.json", + "social_buttons_panel/invitebutton_panel/invite_button": "ui/pause_screen.json", + "social_buttons_panel/invitebutton_panel/vertical_padding_2": "ui/pause_screen.json", + "the_rest_panel": "ui/pause_screen.json", + "the_rest_panel/fill_1": "ui/pause_screen.json", + "the_rest_panel/pause_menu": "ui/pause_screen.json", + "the_rest_panel/fill_3": "ui/pause_screen.json", + "paused_text": "ui/pause_screen.json", + "green_tag": "ui/pause_screen.json", + "paused_text_panel": "ui/pause_screen.json", + "paused_text_panel/pause": "ui/pause_screen.json", + "paused_text_panel/horizontal_stack": "ui/pause_screen.json", + "paused_text_panel/horizontal_stack/pause_icon": "ui/pause_screen.json", + "paused_text_panel/horizontal_stack/fill_1": "ui/pause_screen.json", + "paused_text_panel/horizontal_stack/pause": "ui/pause_screen.json", + "transparent_background": "ui/pause_screen.json", + "non_transparent_background": "ui/pause_screen.json", + "menu_the_rest_panel": "ui/pause_screen.json", + "menu_the_rest_panel/menu_button_control": "ui/pause_screen.json", + "menu_button_control": "ui/pause_screen.json", + "menu_button_control/menu_background": "ui/pause_screen.json", + "pause_announcement_panel_type": "ui/pause_screen.json", + "pause_announcement_panel_type/horizontal_stack": "ui/pause_screen.json", + "pause_announcement_panel_type/horizontal_stack/fill_1": "ui/pause_screen.json", + "pause_announcement_panel_type/horizontal_stack/pause_text": "ui/pause_screen.json", + "pause_announcement_panel_type/horizontal_stack/fill_2": "ui/pause_screen.json", + "menu_background": "ui/pause_screen.json", + "menu_background/button_panel": "ui/pause_screen.json", + "menu_background/button_panel/title_image": "ui/pause_screen.json", + "menu_background/button_panel/title_image/image": "ui/pause_screen.json", + "menu_background/button_panel/fill_1": "ui/pause_screen.json", + "menu_background/button_panel/return_to_game_button": "ui/pause_screen.json", + "menu_background/button_panel/return": "ui/pause_screen.json", + "menu_background/button_panel/realms_stories_button_panel": "ui/pause_screen.json", + "menu_background/button_panel/realms_stories": "ui/pause_screen.json", + "menu_background/button_panel/buy_button": "ui/pause_screen.json", + "menu_background/button_panel/buy": "ui/pause_screen.json", + "menu_background/button_panel/store_button_panel": "ui/pause_screen.json", + "menu_background/button_panel/store_button_panel_padding": "ui/pause_screen.json", + "menu_background/button_panel/quit_button": "ui/pause_screen.json", + "menu_background/button_panel/smaller_buttons": "ui/pause_screen.json", + "menu_background/button_panel/pause_panel": "ui/pause_screen.json", + "info_panel_content_list": "ui/pause_screen.json", + "info_panel_content_list/player_list_scrolling_panel": "ui/pause_screen.json", + "info_panel_content_list/vertical_padding": "ui/pause_screen.json", + "info_panel_background": "ui/pause_screen.json", + "info_panel": "ui/pause_screen.json", + "info_panel/info_panel_background": "ui/pause_screen.json", + "info_panel/info_panel_list": "ui/pause_screen.json", + "player_panel_background": "ui/pause_screen.json", + "player_panel_background/player_list_scrolling_panel": "ui/pause_screen.json", + "player_list": "ui/pause_screen.json", + "player_list/vertical_padding_0": "ui/pause_screen.json", + "player_list/social_buttons_panel": "ui/pause_screen.json", + "player_list/players_label": "ui/pause_screen.json", + "player_list/vertical_padding_4": "ui/pause_screen.json", + "player_list/players_grid_panel": "ui/pause_screen.json", + "player_list/vertical_padding_5": "ui/pause_screen.json", + "player_list/invite_players_button_panel": "ui/pause_screen.json", + "player_list/vertical_padding_6": "ui/pause_screen.json", + "player_list/disconnected_from_multiplayer_label_panel": "ui/pause_screen.json", + "player_list/vertical_padding_7": "ui/pause_screen.json", + "player_lists": "ui/pause_screen.json", + "player_lists/normal_list": "ui/pause_screen.json", + "player_lists/scoreboard_list": "ui/pause_screen.json", + "player_list_scrolling_panel": "ui/pause_screen.json", + "disconnected_label": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": "ui/pause_screen.json", + "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": "ui/pause_screen.json", + "invite_players_button_panel": "ui/pause_screen.json", + "invite_players_button_panel/invite_players_button": "ui/pause_screen.json", + "ip_label": "ui/pause_screen.json", + "players_label": "ui/pause_screen.json", + "players_grid": "ui/pause_screen.json", + "player_grid_item": "ui/pause_screen.json", + "player_grid_item/player_grid_item_content": "ui/pause_screen.json", + "player_grid_item_content": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel/player_button_banner": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel/player_button_banner/player_button": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel/player_button_banner/player_banner": "ui/pause_screen.json", + "player_grid_item_content/player_button_panel/player_permission_button_padding": "ui/pause_screen.json", + "player_grid_item_content/player_permission_button_panel": "ui/pause_screen.json", + "player_grid_item_content/player_permission_button_panel/player_permission_button": "ui/pause_screen.json", + "player_permission_button": "ui/pause_screen.json", + "player_permission_button_content": "ui/pause_screen.json", + "player_permission_button_content/permission_icon_image": "ui/pause_screen.json", + "vertical_padding": "ui/pause_screen.json", + "horizontal_padding": "ui/pause_screen.json", + "player_button_content": "ui/pause_screen.json", + "player_button_content/player_pic_panel": "ui/pause_screen.json", + "player_button_content/player_gamertag": "ui/pause_screen.json", + "player_button_content/platform_icon": "ui/pause_screen.json", + "player_button": "ui/pause_screen.json", + "player_banner": "ui/pause_screen.json", + "player_pic_panel": "ui/pause_screen.json", + "player_pic_panel/player_gamer_pic": "ui/pause_screen.json", + "player_pic_panel/player_local_icon": "ui/pause_screen.json", + "player_local_icon": "ui/pause_screen.json", + "player_gamer_pic": "ui/pause_screen.json", + "player_gamer_pic/player_panel_black_border": "ui/pause_screen.json", + "gametag_wrapper": "ui/pause_screen.json", + "gametag_wrapper/gamertag": "ui/pause_screen.json", + "platform_icon_panel": "ui/pause_screen.json", + "platform_icon_panel/platform_icon": "ui/pause_screen.json", + "player_gamertag": "ui/pause_screen.json", + "platform_icon": "ui/pause_screen.json", + "player_grid_banner_no_focus": "ui/pause_screen.json", + "player_grid_banner": "ui/pause_screen.json", + "player_grid_banner/player_grid_banner_no_focus": "ui/pause_screen.json", + "player_grid_banner/player_grid_banner_no_focus/player_button_content": "ui/pause_screen.json", + "player_grid_banner/focus_border_button": "ui/pause_screen.json", + "focus_border_button": "ui/pause_screen.json", + "focus_border_button/default": "ui/pause_screen.json", + "focus_border_button/hover": "ui/pause_screen.json", + "focus_border_button/pressed": "ui/pause_screen.json", + "focus_border": "ui/pause_screen.json", + "pause_screen_border": "ui/pause_screen.json", + "filler_panel": "ui/pause_screen.json", + "gamepad_helpers": "ui/pause_screen.json", + "gamepad_helpers/gamepad_helper_y": "ui/pause_screen.json", + "keyboard_helpers": "ui/pause_screen.json", + "keyboard_helpers/keyboard_helper_keys": "ui/pause_screen.json", + }, + "pdp": { + "download_progress": "ui/pdp_screen.json", + "download_progress/stacker": "ui/pdp_screen.json", + "download_progress/stacker/sizer_text": "ui/pdp_screen.json", + "download_progress/stacker/sizer_text/download_progress_text": "ui/pdp_screen.json", + "download_progress/stacker/sizer_bar": "ui/pdp_screen.json", + "download_progress/stacker/sizer_bar/download_progress_bar": "ui/pdp_screen.json", + "summary_box_button_panel": "ui/pdp_screen.json", + "summary_box_button_panel/buttons_panel": "ui/pdp_screen.json", + "summary_box_button_panel/download_buttons_panel": "ui/pdp_screen.json", + "summary_box_button_panel/focus_border": "ui/pdp_screen.json", + "interaction_button_content": "ui/pdp_screen.json", + "interaction_button_content/line1_panel": "ui/pdp_screen.json", + "interaction_button_content/line1_panel/upsell_text": "ui/pdp_screen.json", + "interaction_button_panel": "ui/pdp_screen.json", + "interaction_button_panel/content_action_button": "ui/pdp_screen.json", + "interaction_button_panel/progress_bar": "ui/pdp_screen.json", + "interaction_button_panel/focus_border": "ui/pdp_screen.json", + "download_progress_small": "ui/pdp_screen.json", + "download_progress_small/stacker": "ui/pdp_screen.json", + "download_progress_small/stacker/sizer_text": "ui/pdp_screen.json", + "download_progress_small/stacker/sizer_text/download_progress_text": "ui/pdp_screen.json", + "download_progress_small/stacker/sizer_bar": "ui/pdp_screen.json", + "download_progress_small/stacker/sizer_bar/download_progress_bar": "ui/pdp_screen.json", + "progress_loading_anim": "ui/pdp_screen.json", + "focus_border": "ui/pdp_screen.json", + "focus_border/default": "ui/pdp_screen.json", + "focus_border/default/loading_anim": "ui/pdp_screen.json", + "focus_border/hover": "ui/pdp_screen.json", + "focus_border/hover/loading_anim": "ui/pdp_screen.json", + "focus_border/pressed": "ui/pdp_screen.json", + "focus_border/pressed/loading_anim": "ui/pdp_screen.json", + "purchase_button_base": "ui/pdp_screen.json", + "deactivated_purchase_button_base": "ui/pdp_screen.json", + "download_buttons_panel": "ui/pdp_screen.json", + "download_buttons_panel/progress_panel": "ui/pdp_screen.json", + "download_buttons_panel/progress_panel/progress_bar": "ui/pdp_screen.json", + "smooth_purchase_buttons_panel": "ui/pdp_screen.json", + "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": "ui/pdp_screen.json", + "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": "ui/pdp_screen.json", + "smooth_buttons_panel": "ui/pdp_screen.json", + "smooth_buttons_panel/purchase_buttons_panel": "ui/pdp_screen.json", + "smooth_buttons_panel/interact_filling_button": "ui/pdp_screen.json", + "smooth_buttons_panel/interact_exit_world_filling_button": "ui/pdp_screen.json", + "disabled_interact_label_formfitting": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/info_icon": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/info_icon_pad": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/interact_label_panel": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": "ui/pdp_screen.json", + "disabled_interact_label_formfitting/pad": "ui/pdp_screen.json", + "interact_label_text": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/pad_h1": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": "ui/pdp_screen.json", + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": "ui/pdp_screen.json", + "deactivated_purchase_hover_popup": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/pad_h1": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": "ui/pdp_screen.json", + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": "ui/pdp_screen.json", + "smooth_save_share_button_panel": "ui/pdp_screen.json", + "smooth_save_share_button_panel/pad_0": "ui/pdp_screen.json", + "smooth_save_share_button_panel/share_button": "ui/pdp_screen.json", + "smooth_save_share_button_panel/pad_1": "ui/pdp_screen.json", + "smooth_save_share_button_panel/save_button": "ui/pdp_screen.json", + "currency_purchase_label": "ui/pdp_screen.json", + "currency_purchase_label/currency_purchase_label_text": "ui/pdp_screen.json", + "coin_image": "ui/pdp_screen.json", + "smooth_currency_purchase_label": "ui/pdp_screen.json", + "smooth_currency_purchase_label/currency_purchase_label_text": "ui/pdp_screen.json", + "discount_label": "ui/pdp_screen.json", + "discount_label/label_panel": "ui/pdp_screen.json", + "discount_label/label_panel/label": "ui/pdp_screen.json", + "discount_label/icon_panel": "ui/pdp_screen.json", + "discount_label/icon_panel/icon": "ui/pdp_screen.json", + "coin_purchase_label_text": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/markdown_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/fill_pad_left": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/pad": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "smooth_coin_purchase_label_formfitting/fill_pad_right": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/pad": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": "ui/pdp_screen.json", + "share_icon": "ui/pdp_screen.json", + "share_label": "ui/pdp_screen.json", + "share_label/share_image_offset_panel": "ui/pdp_screen.json", + "share_label/share_image_offset_panel/link_share": "ui/pdp_screen.json", + "save_label_panel": "ui/pdp_screen.json", + "save_label_panel/heart_image": "ui/pdp_screen.json", + "save_label_panel/progress_loading": "ui/pdp_screen.json", + "save_label": "ui/pdp_screen.json", + "save_label/save_image_offset_panel": "ui/pdp_screen.json", + "save_label/save_image_offset_panel/full_heart": "ui/pdp_screen.json", + "save_label/save_image_offset_panel/empty_heart": "ui/pdp_screen.json", + "large_button_coin_purchase_label": "ui/pdp_screen.json", + "large_button_coin_purchase_label/markdown_banner_filler_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/center_markdown_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": "ui/pdp_screen.json", + "large_button_coin_purchase_label/sales_padding_0": "ui/pdp_screen.json", + "large_button_coin_purchase_label/price_markdown_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": "ui/pdp_screen.json", + "large_button_coin_purchase_label/sales_padding_1": "ui/pdp_screen.json", + "large_button_coin_purchase_label/left_coin_image_offset_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "large_button_coin_purchase_label/coin_purchase_label_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": "ui/pdp_screen.json", + "large_button_coin_purchase_label/right_coin_image_offset_panel": "ui/pdp_screen.json", + "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": "ui/pdp_screen.json", + "large_button_coin_purchase_label/fill_padding_1": "ui/pdp_screen.json", + "price_markdown_panel": "ui/pdp_screen.json", + "price_markdown_panel/offer_price": "ui/pdp_screen.json", + "price_markdown_panel/offer_price/text_strike_through": "ui/pdp_screen.json", + "vertical_padding_2px": "ui/pdp_screen.json", + "vertical_padding_4px": "ui/pdp_screen.json", + "vertical_padding_fill": "ui/pdp_screen.json", + "horizontal_padding_2px": "ui/pdp_screen.json", + "horizontal_padding_4px": "ui/pdp_screen.json", + "horizontal_padding_8px": "ui/pdp_screen.json", + "horizontal_padding_fill": "ui/pdp_screen.json", + "empty_content_panel": "ui/pdp_screen.json", + "section_header": "ui/pdp_screen.json", + "section_header/header_label": "ui/pdp_screen.json", + "content_section_bg": "ui/pdp_screen.json", + "content_section_bg/pad": "ui/pdp_screen.json", + "content_section_bg/section_header": "ui/pdp_screen.json", + "content_section_bg/bg_and_content": "ui/pdp_screen.json", + "content_section_bg/bg_and_content/bg": "ui/pdp_screen.json", + "content_section_boarder_bg": "ui/pdp_screen.json", + "content_section_boarder_bg/pad": "ui/pdp_screen.json", + "content_section_boarder_bg/bg_and_content": "ui/pdp_screen.json", + "content_section_boarder_bg/bg_and_content/bg": "ui/pdp_screen.json", + "content_section_boarder_bg/bg_and_content/bg/inner": "ui/pdp_screen.json", + "content_section_boarder_bg/pad_3": "ui/pdp_screen.json", + "content_section_boarder_bg/divider_3": "ui/pdp_screen.json", + "summary_factory_object": "ui/pdp_screen.json", + "summary_factory_object/summary": "ui/pdp_screen.json", + "summary_factory_object/navigation_tab_section": "ui/pdp_screen.json", + "summary_factory_object/update_notification_section": "ui/pdp_screen.json", + "screenshot_carousel_factory_object": "ui/pdp_screen.json", + "screenshot_carousel_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", + "screenshot_carousel_factory_object/pad_3": "ui/pdp_screen.json", + "screenshot_carousel_factory_object/divider_3": "ui/pdp_screen.json", + "image_gallery_factory_object": "ui/pdp_screen.json", + "image_gallery_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", + "left_text_right_image_factory_object": "ui/pdp_screen.json", + "left_text_right_image_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", + "right_text_left_image_factory_object": "ui/pdp_screen.json", + "right_text_left_image_factory_object/resource_pack_content_panel": "ui/pdp_screen.json", + "skin_pack_section_factory_object": "ui/pdp_screen.json", + "skin_pack_section_factory_object/skin_pack_section_factory_content": "ui/pdp_screen.json", + "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": "ui/pdp_screen.json", + "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": "ui/pdp_screen.json", + "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": "ui/pdp_screen.json", + "panorama_view_factory_object": "ui/pdp_screen.json", + "panorama_view_factory_object/panorama_view_content_panel": "ui/pdp_screen.json", + "panorama_view_factory_object/pad_3": "ui/pdp_screen.json", + "panorama_view_factory_object/divider_3": "ui/pdp_screen.json", + "ratings_factory_object": "ui/pdp_screen.json", + "ratings_factory_object/rating_factory_object_content": "ui/pdp_screen.json", + "focus_container_button": "ui/pdp_screen.json", + "focus_container_button/default": "ui/pdp_screen.json", + "bundle_summary_factory_object": "ui/pdp_screen.json", + "bundle_summary_factory_object/bundle_summary_factory_object_content": "ui/pdp_screen.json", + "pdp_cycle_offer_row_content": "ui/pdp_screen.json", + "pdp_cycle_offer_row_content/store_row_panel": "ui/pdp_screen.json", + "pdp_cycle_offer_row_content/pad_3": "ui/pdp_screen.json", + "pdp_cycle_offer_row_content/divider_3": "ui/pdp_screen.json", + "pdp_cycle_offer_row_section": "ui/pdp_screen.json", + "recently_viewed_viewed_factory_object": "ui/pdp_screen.json", + "scrolling_content_stack": "ui/pdp_screen.json", + "warning_image": "ui/pdp_screen.json", + "scaling_rating": "ui/pdp_screen.json", + "scaling_rating/empty_rating": "ui/pdp_screen.json", + "scaling_rating/empty_rating/full_rating": "ui/pdp_screen.json", + "scaling_rating_new": "ui/pdp_screen.json", + "scaling_rating_new/empty_rating": "ui/pdp_screen.json", + "scaling_rating_new/empty_rating/full_rating": "ui/pdp_screen.json", + "chart_section": "ui/pdp_screen.json", + "chart_section/stack": "ui/pdp_screen.json", + "chart_section/stack/star_number_panel": "ui/pdp_screen.json", + "chart_section/stack/star_number_panel/star_number": "ui/pdp_screen.json", + "chart_section/stack/star_panel": "ui/pdp_screen.json", + "chart_section/stack/star_panel/star_img": "ui/pdp_screen.json", + "chart_section/stack/pad_0": "ui/pdp_screen.json", + "chart_section/stack/bar_panel": "ui/pdp_screen.json", + "chart_section/stack/bar_panel/bar": "ui/pdp_screen.json", + "chart_section/stack/bar_panel/bar/full_bar": "ui/pdp_screen.json", + "chart_section/stack/pad_1": "ui/pdp_screen.json", + "chart_section/stack/percent": "ui/pdp_screen.json", + "ratings_chart": "ui/pdp_screen.json", + "ratings_chart/5_star": "ui/pdp_screen.json", + "ratings_chart/4_star": "ui/pdp_screen.json", + "ratings_chart/3_star": "ui/pdp_screen.json", + "ratings_chart/2_star": "ui/pdp_screen.json", + "ratings_chart/1_star": "ui/pdp_screen.json", + "ratings_chart_panel": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/pad_0": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/title": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/title/title_text": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/pad_1": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_panel": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_panel/rating": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_text_panel": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/count_panel": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/count_panel/count": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/pad_2": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/chart": "ui/pdp_screen.json", + "ratings_chart_panel/ratings_chart_content/pad_3": "ui/pdp_screen.json", + "ratings_box": "ui/pdp_screen.json", + "ratings_box/ratings_panel_focus_point": "ui/pdp_screen.json", + "ratings_box/ratings_full_panel": "ui/pdp_screen.json", + "ratings_box/ratings_full_panel/ratings_chart_and_button": "ui/pdp_screen.json", + "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": "ui/pdp_screen.json", + "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": "ui/pdp_screen.json", + "ratings_box/divider": "ui/pdp_screen.json", + "user_rating_star_button": "ui/pdp_screen.json", + "user_rating_star_button/default": "ui/pdp_screen.json", + "user_rating_star_button/default/default_user_rating_star": "ui/pdp_screen.json", + "user_rating_star_button/hover": "ui/pdp_screen.json", + "user_rating_star_button/hover/hover_user_rating_star": "ui/pdp_screen.json", + "user_rating_star_list_grid": "ui/pdp_screen.json", + "ratings_interact_panel": "ui/pdp_screen.json", + "ratings_interact_panel/title_text": "ui/pdp_screen.json", + "ratings_interact_panel/pad_vertical_4px": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": "ui/pdp_screen.json", + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": "ui/pdp_screen.json", + "ratings_interact_panel/pad_vertical_8px": "ui/pdp_screen.json", + "ratings_interact_panel/fill_pad": "ui/pdp_screen.json", + "ratings_interact_panel/fill_pad/text": "ui/pdp_screen.json", + "ratings_interact_panel/send_feedback_button": "ui/pdp_screen.json", + "ratings_interact_panel/pad_1": "ui/pdp_screen.json", + "ratings_info_panel": "ui/pdp_screen.json", + "ratings_info_panel/ratings": "ui/pdp_screen.json", + "ratings_info_panel/ratings_right": "ui/pdp_screen.json", + "ratings_info_panel/ratings_right/ratings_interact_panel": "ui/pdp_screen.json", + "ratings_content_panel": "ui/pdp_screen.json", + "panorama_view_content": "ui/pdp_screen.json", + "panorama_view_content/panorama_panel": "ui/pdp_screen.json", + "panorama_view_content/panorama_panel/panorama_content": "ui/pdp_screen.json", + "skins": "ui/pdp_screen.json", + "skin_pack_content_panel": "ui/pdp_screen.json", + "resource_pack_content": "ui/pdp_screen.json", + "resource_pack_content/screenshots": "ui/pdp_screen.json", + "image_row_left_text_content": "ui/pdp_screen.json", + "image_row_left_text_content/buffer_panel_front": "ui/pdp_screen.json", + "image_row_left_text_content/text_section": "ui/pdp_screen.json", + "image_row_left_text_content/text_section/left_header": "ui/pdp_screen.json", + "image_row_left_text_content/text_section/left_text": "ui/pdp_screen.json", + "image_row_left_text_content/text_section/buffer_panel_bottom": "ui/pdp_screen.json", + "image_row_left_text_content/buffer_panel_mid": "ui/pdp_screen.json", + "image_row_left_text_content/screenshots_single": "ui/pdp_screen.json", + "image_row_left_text_content/buffer_panel_back": "ui/pdp_screen.json", + "image_row_right_text_content": "ui/pdp_screen.json", + "image_row_right_text_content/buffer_panel_front": "ui/pdp_screen.json", + "image_row_right_text_content/screenshots_single": "ui/pdp_screen.json", + "image_row_right_text_content/buffer_panel_mid": "ui/pdp_screen.json", + "image_row_right_text_content/text_section": "ui/pdp_screen.json", + "image_row_right_text_content/text_section/right_header": "ui/pdp_screen.json", + "image_row_right_text_content/text_section/right_text": "ui/pdp_screen.json", + "image_row_right_text_content/text_section/buffer_panel_bottom": "ui/pdp_screen.json", + "image_row_right_text_content/buffer_panel_back": "ui/pdp_screen.json", + "image_row_content": "ui/pdp_screen.json", + "image_row_content/screenshots_triple": "ui/pdp_screen.json", + "play_button": "ui/pdp_screen.json", + "csb_expiration": "ui/pdp_screen.json", + "csb_expiration/background": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel/icon_wrapper": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel/icon_wrapper/icon": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel/text_wrapper": "ui/pdp_screen.json", + "csb_expiration/background/content_stack_panel/text_wrapper/text": "ui/pdp_screen.json", + "summary_content_left_side": "ui/pdp_screen.json", + "summary_content_left_side/pad_left": "ui/pdp_screen.json", + "summary_content_left_side/full_content": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/border": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/image/key_image/rtx_label": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/divider": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/pad_fill": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/glyph_section": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json", + "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": "ui/pdp_screen.json", + "summary_content_left_side/full_content/bottom": "ui/pdp_screen.json", + "offer_title_label": "ui/pdp_screen.json", + "title_and_author_panel": "ui/pdp_screen.json", + "title_and_author_panel/title_panel": "ui/pdp_screen.json", + "title_and_author_panel/author_button_panel": "ui/pdp_screen.json", + "title_and_author_panel/author_button_panel/summary_author_button": "ui/pdp_screen.json", + "description_label": "ui/pdp_screen.json", + "warning_stack_panel": "ui/pdp_screen.json", + "warning_stack_panel/warning_icon": "ui/pdp_screen.json", + "warning_stack_panel/pad_0": "ui/pdp_screen.json", + "warning_stack_panel/warning_text_panel": "ui/pdp_screen.json", + "warning_stack_panel/warning_text_panel/warning_text": "ui/pdp_screen.json", + "warning_panel": "ui/pdp_screen.json", + "warning_panel/background": "ui/pdp_screen.json", + "warning_panel/content_stack_panel": "ui/pdp_screen.json", + "description_toggle_show_button_panel": "ui/pdp_screen.json", + "description_toggle_show_button_panel/description_bottom_right_button_border": "ui/pdp_screen.json", + "description_toggle_show_button_panel/description_toggle_show_button": "ui/pdp_screen.json", + "description_toggle_show_button_panel/warning_icon": "ui/pdp_screen.json", + "vibrant_visuals_underline_button": "ui/pdp_screen.json", + "vibrant_visuals_hover_popup": "ui/pdp_screen.json", + "vibrant_visuals_badge_display": "ui/pdp_screen.json", + "vibrant_visuals_badge_display/vibrant_visuals_underline_button": "ui/pdp_screen.json", + "vibrant_visuals_badge_and_hover": "ui/pdp_screen.json", + "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": "ui/pdp_screen.json", + "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": "ui/pdp_screen.json", + "glyph_icon": "ui/pdp_screen.json", + "glyph_count_label": "ui/pdp_screen.json", + "glyph_count_underline_button": "ui/pdp_screen.json", + "glyph_count_hover_underline_button_panel": "ui/pdp_screen.json", + "glyph_count_hover_underline_button_panel/glyph_hover_popup": "ui/pdp_screen.json", + "glyph_count_hover_underline_button_panel/glyph_count_underline_button": "ui/pdp_screen.json", + "glyph_icon_with_count": "ui/pdp_screen.json", + "glyph_icon_with_count/glyph_icon": "ui/pdp_screen.json", + "glyph_icon_with_count/horizontal_padding": "ui/pdp_screen.json", + "glyph_icon_with_count/item_glyph_count_panel_label": "ui/pdp_screen.json", + "glyph_panel_hover_popup": "ui/pdp_screen.json", + "glyph_panel_mashup_hover_popup": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/mashup_text_row": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/mashup_text_row/info_icon": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/mashup_line_two": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/offset_panel": "ui/pdp_screen.json", + "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", + "glyph_section_mashup": "ui/pdp_screen.json", + "glyph_section_skin": "ui/pdp_screen.json", + "glyph_section_resource_pack": "ui/pdp_screen.json", + "glyph_section_world": "ui/pdp_screen.json", + "glyph_section_addon": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_skin": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_world": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_resource_pack": "ui/pdp_screen.json", + "basic_vertical_glyph_section_panel/glyph_section_addon": "ui/pdp_screen.json", + "vertical_glyph_section_panel": "ui/pdp_screen.json", + "vertical_glyph_section_panel/glyph_section_mashup": "ui/pdp_screen.json", + "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json", + "summary_text_panel": "ui/pdp_screen.json", + "summary_text_panel/top_interact_button_stack": "ui/pdp_screen.json", + "summary_text_panel/top_interact_button_stack/top_interact": "ui/pdp_screen.json", + "summary_text_panel/apply_to_realm_panel": "ui/pdp_screen.json", + "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": "ui/pdp_screen.json", + "summary_text_panel/in_csb_panel": "ui/pdp_screen.json", + "summary_text_panel/in_csb_panel/in_csb_button": "ui/pdp_screen.json", + "summary_text_panel/progress_loading_anim_panel": "ui/pdp_screen.json", + "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": "ui/pdp_screen.json", + "summary_text_panel/pad_0": "ui/pdp_screen.json", + "summary_text_panel/disclaimer_panel": "ui/pdp_screen.json", + "summary_text_panel/pad_1": "ui/pdp_screen.json", + "summary_text_panel/save_share_button_panel": "ui/pdp_screen.json", + "summary_text_panel/pad_2": "ui/pdp_screen.json", + "info_bulb_image": "ui/pdp_screen.json", + "info_bulb_image_small": "ui/pdp_screen.json", + "info_bulb_image_small_centered": "ui/pdp_screen.json", + "info_bulb_image_small_centered/top_filler": "ui/pdp_screen.json", + "info_bulb_image_small_centered/middle_panel": "ui/pdp_screen.json", + "info_bulb_image_small_centered/middle_panel/front_filler": "ui/pdp_screen.json", + "info_bulb_image_small_centered/middle_panel/info_bulb": "ui/pdp_screen.json", + "info_bulb_image_small_centered/middle_panel/bottom_filler": "ui/pdp_screen.json", + "info_bulb_image_small_centered/bottom_filler": "ui/pdp_screen.json", + "realms_incompatable_content": "ui/pdp_screen.json", + "realms_incompatable_content/realms_content_stack_panel": "ui/pdp_screen.json", + "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": "ui/pdp_screen.json", + "realms_incompatable_content/realms_content_stack_panel/padding": "ui/pdp_screen.json", + "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": "ui/pdp_screen.json", + "apply_to_realm_button": "ui/pdp_screen.json", + "in_csb_button": "ui/pdp_screen.json", + "read_more_button": "ui/pdp_screen.json", + "read_more_button/default": "ui/pdp_screen.json", + "read_more_button/hover": "ui/pdp_screen.json", + "read_more_button/pressed": "ui/pdp_screen.json", + "summary_content_right_side": "ui/pdp_screen.json", + "summary_content_right_side/pad_middle": "ui/pdp_screen.json", + "summary_content_right_side/text": "ui/pdp_screen.json", + "summary_content_right_side/entitlements_progress_panel": "ui/pdp_screen.json", + "summary_content_right_side/entitlements_progress_panel/progress_loading": "ui/pdp_screen.json", + "summary_content_right_side/pad_right": "ui/pdp_screen.json", + "summary_content_whole_stack_panel": "ui/pdp_screen.json", + "summary_content_whole_stack_panel/left_side": "ui/pdp_screen.json", + "summary_content_whole_stack_panel/divider_panel": "ui/pdp_screen.json", + "summary_content_whole_stack_panel/right_side": "ui/pdp_screen.json", + "summary_content_panel": "ui/pdp_screen.json", + "summary_content_panel/pad_top": "ui/pdp_screen.json", + "summary_content_panel/summary_content_whole_stack": "ui/pdp_screen.json", + "summary_content_panel/pad_3": "ui/pdp_screen.json", + "summary_content_panel/divider_3": "ui/pdp_screen.json", + "appearance_status_image_panel": "ui/pdp_screen.json", + "appearance_status_image_panel/limited_status_image": "ui/pdp_screen.json", + "appearance_status_image_panel/no_restrictions_status_image": "ui/pdp_screen.json", + "appearance_status_content": "ui/pdp_screen.json", + "appearance_status_content/appearance_status_image_panel": "ui/pdp_screen.json", + "appearance_status_content/last_update_panel": "ui/pdp_screen.json", + "appearance_status_content/last_update_panel/last_update_label": "ui/pdp_screen.json", + "dynamic_tooltip_notification_panel": "ui/pdp_screen.json", + "dynamic_tooltip_notification_panel/default": "ui/pdp_screen.json", + "dynamic_tooltip_notification_panel/hover": "ui/pdp_screen.json", + "dynamic_tooltip_notification_panel/pressed": "ui/pdp_screen.json", + "update_notification_content": "ui/pdp_screen.json", + "update_notification_content/dynamic_tooltip_notification_panel": "ui/pdp_screen.json", + "update_notification_content/status": "ui/pdp_screen.json", + "update_notification_stack_panel": "ui/pdp_screen.json", + "update_notification_stack_panel/pad_0": "ui/pdp_screen.json", + "update_notification_stack_panel/content": "ui/pdp_screen.json", + "update_notification_stack_panel/pad_1": "ui/pdp_screen.json", + "tag_base": "ui/pdp_screen.json", + "tag_button_panel": "ui/pdp_screen.json", + "tag_button_panel/button": "ui/pdp_screen.json", + "tag_button_panel/button/default": "ui/pdp_screen.json", + "tag_button_panel/button/hover": "ui/pdp_screen.json", + "tag_button_panel/button/pressed": "ui/pdp_screen.json", + "tag_button_panel/button/label": "ui/pdp_screen.json", + "tag_row_factory": "ui/pdp_screen.json", + "player_count_button_panel": "ui/pdp_screen.json", + "player_count_button_panel/player_count_button": "ui/pdp_screen.json", + "player_count_button_panel/comma": "ui/pdp_screen.json", + "player_count_factory": "ui/pdp_screen.json", + "language_button_panel": "ui/pdp_screen.json", + "language_button_panel/language_button": "ui/pdp_screen.json", + "language_button_panel/comma": "ui/pdp_screen.json", + "language_row_factory": "ui/pdp_screen.json", + "description_inner_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_collapsed": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/pad_1": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/divider_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/divider_panel/divider": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/pad_2": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/label_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/label_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel/player_count_range_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel/pad": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/languages_panel/languages_factory": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/pad_3": "ui/pdp_screen.json", + "description_inner_panel/description_stack_panel/show_less_button_panel": "ui/pdp_screen.json", + "description_section": "ui/pdp_screen.json", + "changelog_section": "ui/pdp_screen.json", + "bundle_thumbnail": "ui/pdp_screen.json", + "bundle_thumbnail_section_content": "ui/pdp_screen.json", + "bundle_thumbnail_section_content/bundle_thumbnail_grid": "ui/pdp_screen.json", + "bundle_thumbnail_section": "ui/pdp_screen.json", + "price_panel": "ui/pdp_screen.json", + "price_panel/coin_non_sale_price_label": "ui/pdp_screen.json", + "price_panel/price_padding": "ui/pdp_screen.json", + "price_panel/offer_prompt_panel": "ui/pdp_screen.json", + "price_panel/offer_prompt_panel/offer_status_text": "ui/pdp_screen.json", + "price_panel/padding_3": "ui/pdp_screen.json", + "price_panel/coin_panel": "ui/pdp_screen.json", + "price_panel/coin_panel/offer_coin_icon": "ui/pdp_screen.json", + "rating_and_coins_panel": "ui/pdp_screen.json", + "rating_and_coins_panel/rating_panel": "ui/pdp_screen.json", + "rating_and_coins_panel/rating_padding_coin": "ui/pdp_screen.json", + "rating_and_coins_panel/price_panel": "ui/pdp_screen.json", + "bundle_offer_texture": "ui/pdp_screen.json", + "bundle_offer_texture/texture": "ui/pdp_screen.json", + "bundle_offer_texture/texture/border": "ui/pdp_screen.json", + "bundle_offer_info": "ui/pdp_screen.json", + "bundle_offer_info/top_padding": "ui/pdp_screen.json", + "bundle_offer_info/offer_title_and_author_panel": "ui/pdp_screen.json", + "bundle_offer_info/glyph_section": "ui/pdp_screen.json", + "bundle_offer_info/glyph_description_padding": "ui/pdp_screen.json", + "bundle_offer_info/description_panel": "ui/pdp_screen.json", + "bundle_offer_info/description_padding": "ui/pdp_screen.json", + "bundle_offer_info/description_padding_bottom": "ui/pdp_screen.json", + "bundle_offer_info/rating_and_price_panel": "ui/pdp_screen.json", + "bundle_offer_info/bottom_padding": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item": "ui/pdp_screen.json", + "bundle_offer_summary_grid_item/bundle_offer_summary_button": "ui/pdp_screen.json", + "bundle_offer_content_section": "ui/pdp_screen.json", + "bundle_offer_content_section/bundle_grid": "ui/pdp_screen.json", + "bundle_summary_section_panel": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/mid_padding": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/interact_panel": "ui/pdp_screen.json", + "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": "ui/pdp_screen.json", + "bundle_summary_section_panel/divider_3": "ui/pdp_screen.json", + "pdp_screen": "ui/pdp_screen.json", + "mashup_screen_content": "ui/pdp_screen.json", + "mashup_screen_content/header": "ui/pdp_screen.json", + "mashup_screen_content/popup_dialog_factory": "ui/pdp_screen.json", + "mashup_screen_main": "ui/pdp_screen.json", + "mashup_screen_main/pack_content": "ui/pdp_screen.json", + "mashup_screen_main/progress_loading": "ui/pdp_screen.json", + }, + "pdp_screenshots": { + "banner_empty": "ui/pdp_screenshots_section.json", + "screenshot_carousel": "ui/pdp_screenshots_section.json", + "screenshot_carousel/screenshot_carousel_content": "ui/pdp_screenshots_section.json", + "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": "ui/pdp_screenshots_section.json", + "screenshot_carousel/screenshot_carousel_content/screenshots_grid": "ui/pdp_screenshots_section.json", + "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": "ui/pdp_screenshots_section.json", + "screenshots_grid": "ui/pdp_screenshots_section.json", + "screenshots_grid/left_image_panel": "ui/pdp_screenshots_section.json", + "screenshots_grid/middle_image_panel": "ui/pdp_screenshots_section.json", + "screenshots_grid/right_image_panel": "ui/pdp_screenshots_section.json", + "screenshots_grid_item": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/frame": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/frame/screenshot_button": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/frame/screenshot_button/hover": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/frame/screenshot_button/pressed": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/screenshot_image": "ui/pdp_screenshots_section.json", + "screenshots_grid_item/progress_loading": "ui/pdp_screenshots_section.json", + }, + "permissions": { + "permissions_screen": "ui/permissions_screen.json", + "permissions_screen_content": "ui/permissions_screen.json", + "permissions_screen_content/top_bar_panel": "ui/permissions_screen.json", + "permissions_screen_content/content_panel": "ui/permissions_screen.json", + "top_bar_panel": "ui/permissions_screen.json", + "top_bar_panel/top_bar": "ui/permissions_screen.json", + "top_bar_panel/back_button": "ui/permissions_screen.json", + "top_bar_panel/gamepad_helper_b": "ui/permissions_screen.json", + "top_bar_panel/title_label": "ui/permissions_screen.json", + "content_panel": "ui/permissions_screen.json", + "content_panel/content_stack_panel": "ui/permissions_screen.json", + "content_panel/content_stack_panel/content_padding_1": "ui/permissions_screen.json", + "content_panel/content_stack_panel/ip_label": "ui/permissions_screen.json", + "content_panel/content_stack_panel/world_label": "ui/permissions_screen.json", + "content_panel/content_stack_panel/content_padding_2": "ui/permissions_screen.json", + "content_panel/content_stack_panel/player_and_permissions_panel": "ui/permissions_screen.json", + "player_and_permissions_panel": "ui/permissions_screen.json", + "player_and_permissions_panel/selector_area": "ui/permissions_screen.json", + "player_and_permissions_panel/content_area": "ui/permissions_screen.json", + "selector_area": "ui/permissions_screen.json", + "selector_area/player_scrolling_panel": "ui/permissions_screen.json", + "content_area": "ui/permissions_screen.json", + "content_area/permissions_options_background": "ui/permissions_screen.json", + "content_area/permissions_options_background/permissions_options_background_image": "ui/permissions_screen.json", + "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": "ui/permissions_screen.json", + "content_area/inactive_modal_pane_fade": "ui/permissions_screen.json", + "kick_button": "ui/permissions_screen.json", + "ban_button": "ui/permissions_screen.json", + "players_grid_panel": "ui/permissions_screen.json", + "players_grid_panel/players_grid": "ui/permissions_screen.json", + "players_grid": "ui/permissions_screen.json", + "player_grid_item": "ui/permissions_screen.json", + "player_grid_item/player_toggle": "ui/permissions_screen.json", + "player_grid_item/inactive_modal_pane_fade": "ui/permissions_screen.json", + "permissions_options_scrolling_panel": "ui/permissions_screen.json", + "permissions_options_panel": "ui/permissions_screen.json", + "permissions_options_panel/inner_permissions_options_panel": "ui/permissions_screen.json", + "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_0": "ui/permissions_screen.json", + "permissions_options_stack_panel/world_template_option_lock_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_1": "ui/permissions_screen.json", + "permissions_options_stack_panel/permission_level_dropdown": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_2": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_options_grid": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_3": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_kick_button_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_4": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_ban_button_panel": "ui/permissions_screen.json", + "permissions_options_stack_panel/permissions_padding_5": "ui/permissions_screen.json", + "permissions_options_grid": "ui/permissions_screen.json", + "permissions_options_grid_item": "ui/permissions_screen.json", + "permissions_options_grid_item/option_label_panel": "ui/permissions_screen.json", + "permissions_options_grid_item/option_label_panel/option_label": "ui/permissions_screen.json", + "permissions_options_grid_item/option_state_label_panel": "ui/permissions_screen.json", + "permissions_options_grid_item/option_state_label_panel/option_state_label": "ui/permissions_screen.json", + "permissions_options_grid_item/option_toggle": "ui/permissions_screen.json", + "permissions_kick_button_panel": "ui/permissions_screen.json", + "permissions_kick_button_panel/kick_button": "ui/permissions_screen.json", + "permissions_ban_button_panel": "ui/permissions_screen.json", + "permissions_ban_button_panel/ban_button": "ui/permissions_screen.json", + "title_label": "ui/permissions_screen.json", + "ip_label": "ui/permissions_screen.json", + "world_label": "ui/permissions_screen.json", + "gamertag_label": "ui/permissions_screen.json", + "option_state_label": "ui/permissions_screen.json", + "option_label": "ui/permissions_screen.json", + "top_bar": "ui/permissions_screen.json", + "banner_background": "ui/permissions_screen.json", + "player_local_icon": "ui/permissions_screen.json", + "player_gamer_pic": "ui/permissions_screen.json", + "player_gamer_pic/player_panel_black_border": "ui/permissions_screen.json", + "back_button": "ui/permissions_screen.json", + "back_button_content": "ui/permissions_screen.json", + "back_button_content/chevron_panel": "ui/permissions_screen.json", + "back_button_content/chevron_panel/left_chevron": "ui/permissions_screen.json", + "back_button_content/back_button_padding": "ui/permissions_screen.json", + "back_button_content/label_panel": "ui/permissions_screen.json", + "back_button_content/label_panel/label": "ui/permissions_screen.json", + "player_toggle": "ui/permissions_screen.json", + "player_button_content": "ui/permissions_screen.json", + "player_button_content/player_pic_panel": "ui/permissions_screen.json", + "player_button_content/player_button_padding_1": "ui/permissions_screen.json", + "player_button_content/gamertag_panel": "ui/permissions_screen.json", + "player_button_content/gamertag_panel/gamertag_label": "ui/permissions_screen.json", + "player_button_content/icon_panel": "ui/permissions_screen.json", + "player_button_content/icon_panel/dropdown_icon_image": "ui/permissions_screen.json", + "player_button_content/player_button_padding_2": "ui/permissions_screen.json", + "player_pic_panel": "ui/permissions_screen.json", + "player_pic_panel/player_gamer_pic": "ui/permissions_screen.json", + "player_pic_panel/player_local_icon": "ui/permissions_screen.json", + "option_toggle": "ui/permissions_screen.json", + "permission_level_dropdown": "ui/permissions_screen.json", + "radio_title_and_icon": "ui/permissions_screen.json", + "radio_title_and_icon/radio_icon": "ui/permissions_screen.json", + "radio_title_and_icon/radio_title": "ui/permissions_screen.json", + "radio_content_with_title_bar": "ui/permissions_screen.json", + "radio_content_with_title_bar/title_and_icon": "ui/permissions_screen.json", + "radio_content_with_title_bar/helper_text": "ui/permissions_screen.json", + "radio_content_with_title_bar/bottom_padding": "ui/permissions_screen.json", + "radio_visuals_with_title": "ui/permissions_screen.json", + "radio_visuals_with_title/radio_content": "ui/permissions_screen.json", + "radio_visuals_with_title_hover": "ui/permissions_screen.json", + "radio_visuals_with_title_hover/radio_content": "ui/permissions_screen.json", + "permissions_visitor_visuals_with_title_normal": "ui/permissions_screen.json", + "permissions_visitor_visuals_with_title_hover": "ui/permissions_screen.json", + "permissions_member_visuals_with_title_normal": "ui/permissions_screen.json", + "permissions_member_visuals_with_title_hover": "ui/permissions_screen.json", + "permissions_op_visuals_with_title_normal": "ui/permissions_screen.json", + "permissions_op_visuals_with_title_hover": "ui/permissions_screen.json", + "permissions_visitor_radio_visuals_normal": "ui/permissions_screen.json", + "permissions_visitor_radio_visuals_hover": "ui/permissions_screen.json", + "permissions_member_radio_visuals_normal": "ui/permissions_screen.json", + "permissions_member_radio_visuals_hover": "ui/permissions_screen.json", + "permissions_op_radio_visuals_normal": "ui/permissions_screen.json", + "permissions_op_radio_visuals_hover": "ui/permissions_screen.json", + "permissions_custom_radio_visuals_normal": "ui/permissions_screen.json", + "permissions_custom_radio_visuals_hover": "ui/permissions_screen.json", + "permission_level_radio": "ui/permissions_screen.json", + "permission_level_radio/radio_with_label_core": "ui/permissions_screen.json", + "permission_level_dropdown_content": "ui/permissions_screen.json", + "permission_level_dropdown_state_content": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/icon_panel": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/dropdown_label_padding": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/label_panel": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/label_panel/label": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/arrow_panel": "ui/permissions_screen.json", + "permission_level_dropdown_state_content/arrow_panel/arrow_image": "ui/permissions_screen.json", + }, + "persona_cast_character_screen": { + "cast_modal_bottom_bar": "ui/persona_cast_character_screen.json", + "cast_modal_bottom_bar/0": "ui/persona_cast_character_screen.json", + "cast_common_dialog_background": "ui/persona_cast_character_screen.json", + "cast_common_dialog_background/top_bar": "ui/persona_cast_character_screen.json", + "cast_common_dialog_background/popup_inner_contents": "ui/persona_cast_character_screen.json", + "cast_common_dialog_background/cast_modal_bottom_bar": "ui/persona_cast_character_screen.json", + "cast_modal_panel": "ui/persona_cast_character_screen.json", + "cast_modal_panel/cast_preview_modal_content": "ui/persona_cast_character_screen.json", + "popup_dialog__cast_character_select": "ui/persona_cast_character_screen.json", + "popup_dialog__cast_character_select/background": "ui/persona_cast_character_screen.json", + "popup_dialog__cast_character_select/popup_background": "ui/persona_cast_character_screen.json", + "common_dcast_popup_framework": "ui/persona_cast_character_screen.json", + "common_cast_modal_top_bar": "ui/persona_cast_character_screen.json", + "common_cast_modal_top_bar/title_panel": "ui/persona_cast_character_screen.json", + "common_cast_modal_top_bar/close_button_holder": "ui/persona_cast_character_screen.json", + "cast_character_select_main": "ui/persona_cast_character_screen.json", + "cast_character_select_main/modal_inner_background": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/cast_grid": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": "ui/persona_cast_character_screen.json", + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": "ui/persona_cast_character_screen.json", + "cast_scroll_view_panel": "ui/persona_cast_character_screen.json", + "cast_grid_with_buttons": "ui/persona_cast_character_screen.json", + "cast_grid_with_buttons/top_spacing": "ui/persona_cast_character_screen.json", + "cast_grid_with_buttons/cast_grid": "ui/persona_cast_character_screen.json", + "cast_grid_with_buttons/bottom_spacing": "ui/persona_cast_character_screen.json", + "cast_grid_panel": "ui/persona_cast_character_screen.json", + "cast_grid_panel/cast_grid": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/background_image": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/selected": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/default": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/hover": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/pressed": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/button_outline": "ui/persona_cast_character_screen.json", + "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": "ui/persona_cast_character_screen.json", + "cast_character_button_content_panel": "ui/persona_cast_character_screen.json", + "cast_character_button_content_panel/cast_single_character_content_visible_panel": "ui/persona_cast_character_screen.json", + "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": "ui/persona_cast_character_screen.json", + "in_use_grid_item": "ui/persona_cast_character_screen.json", + "persona_cast_paper_doll_panel": "ui/persona_cast_character_screen.json", + "persona_cast_paper_doll_panel/preset_input_panel": "ui/persona_cast_character_screen.json", + "character_loading_anim": "ui/persona_cast_character_screen.json", + "character_loading_anim_panel": "ui/persona_cast_character_screen.json", + "character_loading_anim_panel/character_loading_anim": "ui/persona_cast_character_screen.json", + "skin_viewer_panel_skin_model": "ui/persona_cast_character_screen.json", + "skin_viewer_panel_skin_model/skin_model": "ui/persona_cast_character_screen.json", + "cast_character_screen_right_side_model": "ui/persona_cast_character_screen.json", + "cast_character_screen_right_side_model/skin_model_panel": "ui/persona_cast_character_screen.json", + "cast_character_screen_right_side_model/skin_model_loading_anim": "ui/persona_cast_character_screen.json", + "cast_character_screen_right_side_model/skin_model_label": "ui/persona_cast_character_screen.json", + "common_background_blocker": "ui/persona_cast_character_screen.json", + "common_background_blocker/modal_background_button": "ui/persona_cast_character_screen.json", + "common_preview_page_framework": "ui/persona_cast_character_screen.json", + "common_preview_page_framework/background": "ui/persona_cast_character_screen.json", + "common_preview_page_framework/cast_preview_modal": "ui/persona_cast_character_screen.json", + "cast_preview_page_one": "ui/persona_cast_character_screen.json", + "cast_preview_page_two": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/modal_inner_background": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": "ui/persona_cast_character_screen.json", + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": "ui/persona_cast_character_screen.json", + "chevron_image_panel": "ui/persona_cast_character_screen.json", + "chevron_image_panel/chevron_image": "ui/persona_cast_character_screen.json", + "chevron_button": "ui/persona_cast_character_screen.json", + "shift_page_panel": "ui/persona_cast_character_screen.json", + "shift_page_panel/centering_panel": "ui/persona_cast_character_screen.json", + "shift_page_panel/centering_panel/0": "ui/persona_cast_character_screen.json", + "shift_page_left_panel": "ui/persona_cast_character_screen.json", + "shift_page_right_panel": "ui/persona_cast_character_screen.json", + "horizontal_8px_padding": "ui/persona_cast_character_screen.json", + "horizontal_20px_padding": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": "ui/persona_cast_character_screen.json", + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_current_page": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_not_current_page": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": "ui/persona_cast_character_screen.json", + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": "ui/persona_cast_character_screen.json", + "how_to_section": "ui/persona_cast_character_screen.json", + "how_to_section/how_to_image": "ui/persona_cast_character_screen.json", + "how_to_section/how_to_label_section": "ui/persona_cast_character_screen.json", + "how_to_section/how_to_label_section/how_to_label": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": "ui/persona_cast_character_screen.json", + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": "ui/persona_cast_character_screen.json", + }, + "persona_common": { + "icon_image": "ui/persona_common.json", + "mashup_world": "ui/persona_common.json", + "mashup_hangar": "ui/persona_common.json", + "mashup_paintbrush": "ui/persona_common.json", + "info_bulb_icon": "ui/persona_common.json", + "green_checkmark_icon": "ui/persona_common.json", + "persona_screen_background_content": "ui/persona_common.json", + "loading_icon": "ui/persona_common.json", + "focus_border": "ui/persona_common.json", + "selected_border": "ui/persona_common.json", + "equipped_border": "ui/persona_common.json", + "progress_loading": "ui/persona_common.json", + "progress_loading/progress_loading": "ui/persona_common.json", + "title_rarity_positionable_title": "ui/persona_common.json", + "generic_title_panel": "ui/persona_common.json", + "generic_title_panel/title_label": "ui/persona_common.json", + "rarity_bar": "ui/persona_common.json", + "item_rarity_color_background": "ui/persona_common.json", + "piece_item_display": "ui/persona_common.json", + "piece_item_display/item_renderer": "ui/persona_common.json", + "piece_item_display/item_renderer/background": "ui/persona_common.json", + "piece_item_display/item_renderer/item_image": "ui/persona_common.json", + "piece_item_display/item_renderer/rarity_bar_panel": "ui/persona_common.json", + "piece_item_display/item_renderer/extra_control": "ui/persona_common.json", + "piece_item_display/item_renderer/extra_control/control_instance": "ui/persona_common.json", + "piece_item_display/loading_progress_spinner": "ui/persona_common.json", + "wheel_state": "ui/persona_common.json", + "emote_label": "ui/persona_common.json", + "touch_name_label": "ui/persona_common.json", + "emote_image": "ui/persona_common.json", + "emote_image/empty": "ui/persona_common.json", + "emote_image/emote_preview": "ui/persona_common.json", + "emote_image/emote_preview/valid": "ui/persona_common.json", + "emote_image/emote_preview/valid_no_image": "ui/persona_common.json", + "emote_image/emote_preview/valid_no_image/valid_text": "ui/persona_common.json", + "keyboard_hotkey_helpers": "ui/persona_common.json", + "keyboard_hotkey_helpers/keyboard_1": "ui/persona_common.json", + "keyboard_hotkey_helpers/keyboard_2": "ui/persona_common.json", + "keyboard_hotkey_helpers/keyboard_3": "ui/persona_common.json", + "keyboard_hotkey_helpers/keyboard_4": "ui/persona_common.json", + "gamepad_hotkey_helpers": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": "ui/persona_common.json", + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": "ui/persona_common.json", + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": "ui/persona_common.json", + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": "ui/persona_common.json", + "emote_wheel_slot_content": "ui/persona_common.json", + "emote_wheel_slot_content/image_0": "ui/persona_common.json", + "emote_wheel_slot_content/touch_label_0": "ui/persona_common.json", + "selection_wheel": "ui/persona_common.json", + "emote_selection_wheel": "ui/persona_common.json", + "emote_selection_wheel/default_state": "ui/persona_common.json", + "emote_selection_wheel/emote_slot_0_content": "ui/persona_common.json", + "emote_selection_wheel/emote_slot_1_content": "ui/persona_common.json", + "emote_selection_wheel/emote_slot_2_content": "ui/persona_common.json", + "emote_selection_wheel/emote_slot_3_content": "ui/persona_common.json", + "emote_wheel_panel": "ui/persona_common.json", + "emote_wheel_panel/emote_name": "ui/persona_common.json", + "emote_wheel_panel/emote_wheel_content_panel": "ui/persona_common.json", + "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": "ui/persona_common.json", + "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": "ui/persona_common.json", + "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": "ui/persona_common.json", + }, + "persona_popups": { + "no_content_panel": "ui/persona_popups.json", + "common_image": "ui/persona_popups.json", + "common_icon": "ui/persona_popups.json", + "create_persona_choice_checked_image": "ui/persona_popups.json", + "create_persona_choice_unchecked_image": "ui/persona_popups.json", + "modal_window_input_blocker": "ui/persona_popups.json", + "modal_popup_background": "ui/persona_popups.json", + "general_text_field": "ui/persona_popups.json", + "title_text": "ui/persona_popups.json", + "popup_title": "ui/persona_popups.json", + "popup_content": "ui/persona_popups.json", + "popup_ok_button": "ui/persona_popups.json", + "popup_frame": "ui/persona_popups.json", + "popup_frame/title_label": "ui/persona_popups.json", + "popup_frame/close_button": "ui/persona_popups.json", + "popup_frame/content": "ui/persona_popups.json", + "popup_frame/ok_button": "ui/persona_popups.json", + "popup_info_panel": "ui/persona_popups.json", + "popup_info_panel/background": "ui/persona_popups.json", + "popup_info_panel/frame": "ui/persona_popups.json", + "common_dialog": "ui/persona_popups.json", + "common_dialog/background": "ui/persona_popups.json", + "common_dialog/panel": "ui/persona_popups.json", + "popup_dialog_bg": "ui/persona_popups.json", + "popup_dialog_bg/background_image": "ui/persona_popups.json", + "popup_dialog_bg/title_panel": "ui/persona_popups.json", + "popup_dialog_bg/title_panel/title": "ui/persona_popups.json", + "popup_dialog_bg/popup_content": "ui/persona_popups.json", + "icon_title_bar": "ui/persona_popups.json", + "icon_title_bar/icon": "ui/persona_popups.json", + "icon_title_bar/padding": "ui/persona_popups.json", + "icon_title_bar/text_title_panel": "ui/persona_popups.json", + "popup_common": "ui/persona_popups.json", + "popup_common/background": "ui/persona_popups.json", + "popup_common/background/text_stack_panel": "ui/persona_popups.json", + "popup_dialog__difference_information": "ui/persona_popups.json", + "differences_left_details": "ui/persona_popups.json", + "differences_left_section": "ui/persona_popups.json", + "differences_left_section/title_bar": "ui/persona_popups.json", + "differences_left_section/padding_1": "ui/persona_popups.json", + "differences_left_section/details": "ui/persona_popups.json", + "differences_detail_image": "ui/persona_popups.json", + "differences_title_card_display": "ui/persona_popups.json", + "differences_title_card_display/left": "ui/persona_popups.json", + "differences_title_card_display/padding_1": "ui/persona_popups.json", + "differences_title_card_display/right": "ui/persona_popups.json", + "differences_persona_detail_section": "ui/persona_popups.json", + "differences_classic_skin_detail_section": "ui/persona_popups.json", + "different_info_panel_contents": "ui/persona_popups.json", + "different_info_panel_contents/character_display": "ui/persona_popups.json", + "different_info_panel_contents/item_1_padding": "ui/persona_popups.json", + "different_info_panel_contents/divider": "ui/persona_popups.json", + "different_info_panel_contents/item_2_padding": "ui/persona_popups.json", + "different_info_panel_contents/classic_skin_display": "ui/persona_popups.json", + "popup_dialog__preview_difference_information": "ui/persona_popups.json", + "popup_dialog__delete_persona": "ui/persona_popups.json", + "popup_dialog__delete_persona/popup_dialog_bg": "ui/persona_popups.json", + "popup_dialog_delete_persona_content": "ui/persona_popups.json", + "popup_dialog_delete_persona_content/image": "ui/persona_popups.json", + "popup_dialog_delete_persona_content/message": "ui/persona_popups.json", + "popup_dialog_delete_persona_content/buttons": "ui/persona_popups.json", + "alex_warning": "ui/persona_popups.json", + "delete_popup_dialog_message": "ui/persona_popups.json", + "delete_persona_button_stack": "ui/persona_popups.json", + "delete_persona_button_stack/left_button": "ui/persona_popups.json", + "delete_persona_button_stack/padding": "ui/persona_popups.json", + "delete_persona_button_stack/right_button": "ui/persona_popups.json", + "delete_persona_left_button": "ui/persona_popups.json", + "delete_persona_right_button": "ui/persona_popups.json", + "popup_dialog__create_persona": "ui/persona_popups.json", + "create_persona_display": "ui/persona_popups.json", + "create_persona_display/vertical_padding_2px": "ui/persona_popups.json", + "create_persona_display/stack_content": "ui/persona_popups.json", + "create_persona_choice_stack": "ui/persona_popups.json", + "create_persona_choice_stack/background1": "ui/persona_popups.json", + "create_persona_choice_stack/background2": "ui/persona_popups.json", + "create_persona_choice_character": "ui/persona_popups.json", + "create_persona_choice_character/create_persona_choice_character": "ui/persona_popups.json", + "select_default_character_button_vertical_panel": "ui/persona_popups.json", + "select_default_character_button_vertical_panel/padding": "ui/persona_popups.json", + "select_default_character_button_vertical_panel/select_default_character_button_panel": "ui/persona_popups.json", + "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": "ui/persona_popups.json", + "select_default_character_button": "ui/persona_popups.json", + "create_persona_choice_classic_skin": "ui/persona_popups.json", + "create_persona_choice_button": "ui/persona_popups.json", + "create_persona_choice_button/choice_toggle": "ui/persona_popups.json", + "create_persona_choice_background": "ui/persona_popups.json", + "create_persona_choice_background/choice_title_bar": "ui/persona_popups.json", + "create_persona_choice_background/choice_details_body": "ui/persona_popups.json", + "create_persona_choice_background/choice_bottom_content": "ui/persona_popups.json", + "create_persona_choice_title_bar": "ui/persona_popups.json", + "create_persona_choice_title_bar/checkbox": "ui/persona_popups.json", + "create_persona_choice_title_bar/spacing": "ui/persona_popups.json", + "create_persona_choice_title_bar/icon_title": "ui/persona_popups.json", + "create_persona_choice_check_positioning": "ui/persona_popups.json", + "create_persona_choice_check_positioning/toggle_image": "ui/persona_popups.json", + "create_persona_choice_icon_title": "ui/persona_popups.json", + "create_persona_choice_detail_panel": "ui/persona_popups.json", + "create_persona_choice_detail_panel/spacing": "ui/persona_popups.json", + "create_persona_choice_detail_panel/choice_details_body": "ui/persona_popups.json", + "create_persona_choice_detail": "ui/persona_popups.json", + "popup_dialog__invalid_custom_skin": "ui/persona_popups.json", + "popup_dialog__invalid_custom_skin/popup_dialog_bg": "ui/persona_popups.json", + "popup_dialog_invalid_custom_skin_content": "ui/persona_popups.json", + "popup_dialog_invalid_custom_skin_content/popup_dialog_message": "ui/persona_popups.json", + "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": "ui/persona_popups.json", + "popup_dialog__upsell_without_store": "ui/persona_popups.json", + "popup_dialog__choose_skin_type": "ui/persona_popups.json", + "popup_dialog__choose_skin_type/popup_dialog_bg": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_content": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_content/popup_dialog_message": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_content/left": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_content/right": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_panel": "ui/persona_popups.json", + "popup_dialog_choose_skin_type_panel/choose_skin_type_button": "ui/persona_popups.json", + "popup_dialog_skin_model": "ui/persona_popups.json", + "popup_dialog_skin_model/paper_doll": "ui/persona_popups.json", + "popup_dialog__custom_skin_info": "ui/persona_popups.json", + "popup_dialog__custom_skin_info/background_image": "ui/persona_popups.json", + "popup_dialog__custom_skin_info/popup_dialog_bg": "ui/persona_popups.json", + "custom_skin_info_panel_text": "ui/persona_popups.json", + "custom_skin_info_panel": "ui/persona_popups.json", + "custom_skin_info_panel/message": "ui/persona_popups.json", + "custom_skin_info_panel/button_group": "ui/persona_popups.json", + "custom_skin_info_button_collection": "ui/persona_popups.json", + "custom_skin_info_button_collection/settings": "ui/persona_popups.json", + "custom_skin_info_button_collection/vertical_4_padding": "ui/persona_popups.json", + "custom_skin_info_button_collection/close": "ui/persona_popups.json", + "popup_dialog_close_button": "ui/persona_popups.json", + "usage_limited_settings_profile_button": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg/background_image": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg/vertical_align_title": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg/vertical_align_title/title": "ui/persona_popups.json", + "custom_skin_popup_dialog_bg/popup_content": "ui/persona_popups.json", + "popup_dialog__emote_equip_slot_editor": "ui/persona_popups.json", + "popup_dialog__emote_equip_slot_editor/background_image": "ui/persona_popups.json", + "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": "ui/persona_popups.json", + "popup_emote_wheel_dialog": "ui/persona_popups.json", + "popup_emote_wheel_dialog/popup_background": "ui/persona_popups.json", + "emote_equip_slot_content": "ui/persona_popups.json", + "emote_equip_slot_content/close": "ui/persona_popups.json", + "emote_equip_slot_content/emote_wheel_content_panel": "ui/persona_popups.json", + "emote_equip_slot_content/emote_wheel_content_panel/cancel": "ui/persona_popups.json", + "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": "ui/persona_popups.json", + "close_emote_popup_controller": "ui/persona_popups.json", + "close_emote_popup_controller/close_ui": "ui/persona_popups.json", + "emote_wheel_content": "ui/persona_popups.json", + "popup_dialog__realms_plus_extra_info": "ui/persona_popups.json", + "popup_dialog__realms_plus_extra_info/background_image": "ui/persona_popups.json", + "popup_dialog__realms_plus_extra_info/dialog_bg": "ui/persona_popups.json", + "realms_plus_extra_info_popup_dialog_bg": "ui/persona_popups.json", + "realms_plus_extra_info_popup_dialog_bg/background_image": "ui/persona_popups.json", + "realms_plus_extra_info_popup_dialog_bg/title": "ui/persona_popups.json", + "realms_plus_extra_info_popup_dialog_bg/popup_content": "ui/persona_popups.json", + "realms_extra_info_panel_text": "ui/persona_popups.json", + "realms_extra_info_panel": "ui/persona_popups.json", + "realms_extra_info_panel/realms_extra": "ui/persona_popups.json", + "realms_extra_info_panel/button_group": "ui/persona_popups.json", + "realms_extra_info_button_collection": "ui/persona_popups.json", + "realms_extra_info_button_collection/close": "ui/persona_popups.json", + "realms_extra_info_content": "ui/persona_popups.json", + "realms_extra_info_content/the_spread": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/pack_image": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/horizontal_6_padding": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/the_info_stack": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/the_info_stack/padding": "ui/persona_popups.json", + "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": "ui/persona_popups.json", + "pack_information_textures_and_usage_tooltip": "ui/persona_popups.json", + "pack_information_textures_and_usage_tooltip/textures": "ui/persona_popups.json", + "pack_information_textures_and_usage_tooltip/mid_padding": "ui/persona_popups.json", + "pack_information_textures_and_usage_tooltip/appearance_status": "ui/persona_popups.json", + "roamable_status_notification_panel": "ui/persona_popups.json", + "roamable_status_notification_panel/appearance_status_notification": "ui/persona_popups.json", + "roamable_status_notification_panel/roamable_status": "ui/persona_popups.json", + "appearance_status_image_panel": "ui/persona_popups.json", + "appearance_status_image_panel/usage_limited": "ui/persona_popups.json", + "appearance_status_image_panel/usage_not_limited": "ui/persona_popups.json", + "pack_information_skins_and_world": "ui/persona_popups.json", + "pack_information_skins_and_world/skins": "ui/persona_popups.json", + "pack_information_skins_and_world/mid_padding": "ui/persona_popups.json", + "pack_information_skins_and_world/worlds": "ui/persona_popups.json", + "skin_info_label_and_image": "ui/persona_popups.json", + "skin_info_label_and_image/content_stack": "ui/persona_popups.json", + "skin_info_image_panel": "ui/persona_popups.json", + "skin_info_image_panel/image": "ui/persona_popups.json", + "skin_info_label_panel_label": "ui/persona_popups.json", + "skin_info_label_panel": "ui/persona_popups.json", + "skin_info_label_panel/label": "ui/persona_popups.json", + "skin_info_content_stack": "ui/persona_popups.json", + "skin_info_content_stack/image_panel": "ui/persona_popups.json", + "skin_info_content_stack/horizontal_2_padding": "ui/persona_popups.json", + "skin_info_content_stack/label_panel": "ui/persona_popups.json", + "realms_extra_info_pack_info": "ui/persona_popups.json", + "popup_toast": "ui/persona_popups.json", + }, + "play": { + "label_background": "ui/play_screen.json", + "dark_label_background": "ui/play_screen.json", + "world_screenshot_base": "ui/play_screen.json", + "collection_world_screenshot": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": "ui/play_screen.json", + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": "ui/play_screen.json", + "world_item_grid_base": "ui/play_screen.json", + "edit_icon": "ui/play_screen.json", + "realms_stories_icon": "ui/play_screen.json", + "realms_stories_icon_animated": "ui/play_screen.json", + "realms_slots_edit_icon": "ui/play_screen.json", + "worlds_icon": "ui/play_screen.json", + "realms_icon": "ui/play_screen.json", + "realms_chevron": "ui/play_screen.json", + "friends_icon_1": "ui/play_screen.json", + "friends_icon_2": "ui/play_screen.json", + "bell_icon": "ui/play_screen.json", + "invite_icon": "ui/play_screen.json", + "delete_icon": "ui/play_screen.json", + "world_download_icon": "ui/play_screen.json", + "third_party_servers_icon": "ui/play_screen.json", + "lan_icon": "ui/play_screen.json", + "friends_server_icon": "ui/play_screen.json", + "cross_platform_friends_server_icon": "ui/play_screen.json", + "realms_remove_icon": "ui/play_screen.json", + "game_online_icon": "ui/play_screen.json", + "game_offline_icon": "ui/play_screen.json", + "game_unavailable_icon": "ui/play_screen.json", + "import_icon": "ui/play_screen.json", + "add_server_icon": "ui/play_screen.json", + "server_tab_icon": "ui/play_screen.json", + "realms_art_icon": "ui/play_screen.json", + "realms_text_background": "ui/play_screen.json", + "connected_storage": "ui/play_screen.json", + "feedback_icon": "ui/play_screen.json", + "local_only_storage": "ui/play_screen.json", + "local_and_cloud_storage": "ui/play_screen.json", + "cloud_only_storage": "ui/play_screen.json", + "left_arrow_icon": "ui/play_screen.json", + "right_arrow_icon": "ui/play_screen.json", + "small_progress_panel": "ui/play_screen.json", + "sign_in_realms_image": "ui/play_screen.json", + "sign_in_realms_image/chevron": "ui/play_screen.json", + "sign_in_realms_image/portal": "ui/play_screen.json", + "realms_sign_in_prompt_label": "ui/play_screen.json", + "realms_sign_in_prompt": "ui/play_screen.json", + "realms_sign_in_prompt/realms_sign_in_prompt_label": "ui/play_screen.json", + "realms_sign_in_prompt_friends": "ui/play_screen.json", + "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": "ui/play_screen.json", + "sign_in_to_view_realms_content_panel": "ui/play_screen.json", + "sign_in_to_view_realms_content_panel/sign_in_realms_image": "ui/play_screen.json", + "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": "ui/play_screen.json", + "sign_in_to_view_realms_content_panel_friends": "ui/play_screen.json", + "sign_in_to_view_realms_button": "ui/play_screen.json", + "sign_in_to_view_realms_button_friends": "ui/play_screen.json", + "realms_list_text": "ui/play_screen.json", + "realms_world_header": "ui/play_screen.json", + "realms_world_details": "ui/play_screen.json", + "realms_world_type": "ui/play_screen.json", + "realms_world_player_count": "ui/play_screen.json", + "realms_world_game_status_icon": "ui/play_screen.json", + "realms_world_game_status_icon/game_online_icon": "ui/play_screen.json", + "realms_world_game_status_icon/game_unavailable_icon": "ui/play_screen.json", + "realms_world_game_status_icon/game_offline_icon": "ui/play_screen.json", + "realms_world_text_panel": "ui/play_screen.json", + "realms_world_text_panel/realms_world_header": "ui/play_screen.json", + "realms_world_text_panel/realms_world_details": "ui/play_screen.json", + "realms_world_trial_text_panel": "ui/play_screen.json", + "realms_world_trial_text_panel/realms_world_header_text": "ui/play_screen.json", + "realms_world_trial_text_panel/realms_world_details": "ui/play_screen.json", + "realms_world_content_text_area_panel": "ui/play_screen.json", + "realms_world_content_text_area_panel/realms_world_text_panel": "ui/play_screen.json", + "realms_trial_content_text_area_panel": "ui/play_screen.json", + "realms_trial_content_text_area_panel/realms_world_trial_text_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel/world_player_count_text_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": "ui/play_screen.json", + "realms_world_content_status_area_panel/padding": "ui/play_screen.json", + "realms_world_content_status_area_panel/realms_world_game_status_icon": "ui/play_screen.json", + "realms_world_content_status_area_panel_container": "ui/play_screen.json", + "realms_world_content_status_area_panel_container/realms_world_status_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": "ui/play_screen.json", + "realms_world_content_status_area_panel_container/realms_world_type": "ui/play_screen.json", + "realms_world_content_panel": "ui/play_screen.json", + "realms_world_content_panel/realm_screenshot": "ui/play_screen.json", + "realms_world_content_panel/padding": "ui/play_screen.json", + "realms_world_content_panel/realms_world_content_text_area_panel": "ui/play_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel": "ui/play_screen.json", + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": "ui/play_screen.json", + "realms_trial_content_panel": "ui/play_screen.json", + "realms_trial_content_panel/realm_screenshot": "ui/play_screen.json", + "realms_trial_content_panel/padding": "ui/play_screen.json", + "realms_trial_content_panel/realms_trial_content_text_area_panel": "ui/play_screen.json", + "realms_world_item_button": "ui/play_screen.json", + "realms_world_edit_button": "ui/play_screen.json", + "realms_feed_button_content": "ui/play_screen.json", + "realms_feed_button_content/default_icon": "ui/play_screen.json", + "realms_feed_button_content/unread_icon_active": "ui/play_screen.json", + "persistent_realms_feed_button_control": "ui/play_screen.json", + "realms_feed_button": "ui/play_screen.json", + "leave_friends_realm_button": "ui/play_screen.json", + "unread_story_count_text": "ui/play_screen.json", + "unread_story_count_text_background": "ui/play_screen.json", + "unread_story_count_panel": "ui/play_screen.json", + "unread_story_count_panel/text": "ui/play_screen.json", + "unread_story_count_panel/text/background": "ui/play_screen.json", + "realms_world_item": "ui/play_screen.json", + "realms_world_item/realms_button_panel": "ui/play_screen.json", + "realms_world_item/realms_button_panel/realms_world_item_button": "ui/play_screen.json", + "realms_world_item/realms_button_panel/tts_border": "ui/play_screen.json", + "realms_world_item/edit_panel": "ui/play_screen.json", + "realms_world_item/edit_panel/realms_world_edit_button": "ui/play_screen.json", + "realms_world_item/edit_panel/realms_world_expiry_notification_image": "ui/play_screen.json", + "realms_world_item/feed_panel_with_unread_count": "ui/play_screen.json", + "realms_world_item/feed_panel_with_unread_count/feed_panel": "ui/play_screen.json", + "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": "ui/play_screen.json", + "realms_world_item/feed_panel_with_unread_count/unread_story_count": "ui/play_screen.json", + "realms_world_item/leave_realm_panel": "ui/play_screen.json", + "realms_world_item/leave_realm_panel/leave_friends_realm_button": "ui/play_screen.json", + "realms_world_item_grid": "ui/play_screen.json", + "network_world_header": "ui/play_screen.json", + "network_world_header/network_world_header_icon": "ui/play_screen.json", + "network_world_header/spacer": "ui/play_screen.json", + "network_world_header/header_panel": "ui/play_screen.json", + "network_world_header/header_panel/network_world_header_text": "ui/play_screen.json", + "network_world_details": "ui/play_screen.json", + "network_world_player_count": "ui/play_screen.json", + "network_world_player_count/count": "ui/play_screen.json", + "network_world_game_status_icon": "ui/play_screen.json", + "network_world_game_status_icon/game_online_icon": "ui/play_screen.json", + "network_world_game_status_icon/game_unavailable_icon": "ui/play_screen.json", + "network_world_game_status_icon/game_offline_icon": "ui/play_screen.json", + "network_world_text_panel": "ui/play_screen.json", + "network_world_text_panel/network_world_header": "ui/play_screen.json", + "network_world_text_panel/network_world_details": "ui/play_screen.json", + "network_world_content_text_area_panel": "ui/play_screen.json", + "network_world_content_text_area_panel/network_world_text_panel": "ui/play_screen.json", + "network_world_content_status_area_panel": "ui/play_screen.json", + "network_world_content_status_area_panel/network_player_count_text_panel": "ui/play_screen.json", + "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": "ui/play_screen.json", + "network_world_content_status_area_panel/padding": "ui/play_screen.json", + "network_world_content_status_area_panel/network_world_game_status_icon": "ui/play_screen.json", + "network_world_content_status_area_panel_container": "ui/play_screen.json", + "network_world_content_status_area_panel_container/network_world_status_panel": "ui/play_screen.json", + "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": "ui/play_screen.json", + "network_world_content_status_area_panel_container/network_world_type": "ui/play_screen.json", + "network_world_type": "ui/play_screen.json", + "network_world_type/type": "ui/play_screen.json", + "network_world_item_button_content": "ui/play_screen.json", + "network_world_item_button_content/network_world_content_text_area_panel": "ui/play_screen.json", + "network_world_item_button_content/network_status_area_panel": "ui/play_screen.json", + "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": "ui/play_screen.json", + "network_world_item_button_content/network_world_type_icon": "ui/play_screen.json", + "network_world_item_button_content/network_world_type_icon/padding": "ui/play_screen.json", + "network_world_item_button": "ui/play_screen.json", + "network_server_world_edit_button": "ui/play_screen.json", + "network_world_item": "ui/play_screen.json", + "network_world_item/network_world_item_button": "ui/play_screen.json", + "network_world_item/tts_border": "ui/play_screen.json", + "network_world_item_grid": "ui/play_screen.json", + "network_world_item_ignore_crossplay": "ui/play_screen.json", + "network_world_item_ignore_crossplay/network_world_item_button": "ui/play_screen.json", + "label_content_template": "ui/play_screen.json", + "label_content_template/label_panel": "ui/play_screen.json", + "label_content_template/label_panel/label_panel_layout": "ui/play_screen.json", + "label_content_template/label_panel/label_panel_layout/label": "ui/play_screen.json", + "label_content_template/content": "ui/play_screen.json", + "information_panel": "ui/play_screen.json", + "information_panel/background": "ui/play_screen.json", + "information_panel/background/label_panel_layout": "ui/play_screen.json", + "information_panel/background/label_panel_layout/label": "ui/play_screen.json", + "information_panel/focus_button": "ui/play_screen.json", + "blocked_multiplayer_privileges_panel": "ui/play_screen.json", + "blocked_multiplayer_privileges_panel/background": "ui/play_screen.json", + "blocked_multiplayer_privileges_panel/background/label_panel_layout": "ui/play_screen.json", + "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": "ui/play_screen.json", + "more_servers_grid": "ui/play_screen.json", + "additional_server_toggle_content": "ui/play_screen.json", + "additional_server_toggle_content/network_world_content_text_area_panel": "ui/play_screen.json", + "more_servers_label_panel": "ui/play_screen.json", + "more_servers_label_panel/list_label": "ui/play_screen.json", + "more_servers_world_item": "ui/play_screen.json", + "more_servers_world_item/additional_server_toggle_base": "ui/play_screen.json", + "more_servers_world_item/network_server_world_edit_button": "ui/play_screen.json", + "additional_server_info_panel": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/server_name": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/padding_2": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/player_count": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/padding_3": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/ping": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/padding_4": "ui/play_screen.json", + "additional_server_info_panel/server_info_stack_panel/join_server_button": "ui/play_screen.json", + "ping_rate_icon": "ui/play_screen.json", + "ping_rate_panel": "ui/play_screen.json", + "ping_rate_panel/concurrency_stack": "ui/play_screen.json", + "ping_rate_panel/concurrency_stack/player_count": "ui/play_screen.json", + "ping_rate_panel/concurrency_stack/padding_0": "ui/play_screen.json", + "ping_rate_panel/concurrency_stack/ping_rate_icon": "ui/play_screen.json", + "add_server_info_panel": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel/padding_0": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel/add_server_title": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", + "add_server_info_panel/server_info_stack_panel/add_server_description": "ui/play_screen.json", + "third_party_featured_server_grid": "ui/play_screen.json", + "featured_server_world_item": "ui/play_screen.json", + "featured_server_world_item/server_button": "ui/play_screen.json", + "server_button_content_panel": "ui/play_screen.json", + "server_button_content_panel/top_panel": "ui/play_screen.json", + "server_button_content_panel/top_panel/third_party_server_screenshot": "ui/play_screen.json", + "server_button_content_panel/top_panel/padding_0": "ui/play_screen.json", + "server_button_content_panel/top_panel/title_panel": "ui/play_screen.json", + "server_button_content_panel/top_panel/title_panel/third_party_server_name": "ui/play_screen.json", + "server_button_content_panel/top_panel/title_panel/progress": "ui/play_screen.json", + "server_button_content_panel/padding": "ui/play_screen.json", + "server_button_content_panel/bottom_panel": "ui/play_screen.json", + "server_button_content_panel/bottom_panel/third_party_server_message": "ui/play_screen.json", + "third_party_server_content_panel": "ui/play_screen.json", + "third_party_server_content_panel/ping_rate_panel": "ui/play_screen.json", + "loading_featured_servers_panel": "ui/play_screen.json", + "loading_featured_servers_panel/load_bars": "ui/play_screen.json", + "loading_featured_servers_panel/load_bars/progress_loading_bars": "ui/play_screen.json", + "third_party_server_screenshot": "ui/play_screen.json", + "third_party_server_screenshot/picture": "ui/play_screen.json", + "third_party_server_info_panel": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_0": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/server_screenshot": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_1": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/server_name": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_2": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/player_count": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_3": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/ping": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_4": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/join_server_button": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/view_offers_button": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/padding_5": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/screenshots_section": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/description_section": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/games_section": "ui/play_screen.json", + "third_party_server_info_panel/server_info_stack_panel/news_section": "ui/play_screen.json", + "third_party_server_info_panel/progress": "ui/play_screen.json", + "text_icon_number_panel": "ui/play_screen.json", + "text_icon_number_panel/text": "ui/play_screen.json", + "text_icon_number_panel/padding_0": "ui/play_screen.json", + "text_icon_number_panel/stack_panel": "ui/play_screen.json", + "text_icon_number_panel/stack_panel/icon_panel": "ui/play_screen.json", + "text_icon_number_panel/stack_panel/icon_panel/icon": "ui/play_screen.json", + "text_icon_number_panel/stack_panel/padding_1": "ui/play_screen.json", + "text_icon_number_panel/stack_panel/number": "ui/play_screen.json", + "grey_bar_panel": "ui/play_screen.json", + "grey_bar_panel/grey_bar": "ui/play_screen.json", + "grey_bar_panel/green_bar": "ui/play_screen.json", + "grey_bar_panel/padding": "ui/play_screen.json", + "screenshots_section_panel": "ui/play_screen.json", + "screenshots_section_panel/divider_0": "ui/play_screen.json", + "screenshots_section_panel/padding_0": "ui/play_screen.json", + "screenshots_section_panel/screenshots_label": "ui/play_screen.json", + "screenshots_section_panel/padding_1": "ui/play_screen.json", + "screenshots_section_panel/screenshots": "ui/play_screen.json", + "screenshots_section_panel/padding_2": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/left_arrow_button": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/padding_0": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/navigation_bar": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/padding_1": "ui/play_screen.json", + "screenshots_section_panel/navigation_panel/right_arrow_button": "ui/play_screen.json", + "screenshots_section_panel/padding_3": "ui/play_screen.json", + "description_text_panel": "ui/play_screen.json", + "description_text_panel/contents_description": "ui/play_screen.json", + "description_section_panel": "ui/play_screen.json", + "description_section_panel/divider_0": "ui/play_screen.json", + "description_section_panel/padding_0": "ui/play_screen.json", + "description_section_panel/description_label": "ui/play_screen.json", + "description_section_panel/padding_1": "ui/play_screen.json", + "description_section_panel/read_more_panel": "ui/play_screen.json", + "description_section_panel/read_more_panel/description_text_small": "ui/play_screen.json", + "description_section_panel/read_more_panel/description_text_full": "ui/play_screen.json", + "description_section_panel/read_more_panel/description_read_more_button_panel": "ui/play_screen.json", + "description_section_panel/read_more_panel/description_read_less_button_panel": "ui/play_screen.json", + "description_section_panel/padding_3": "ui/play_screen.json", + "games_factory_object": "ui/play_screen.json", + "games_factory_object/games_factory_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_image_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/padding": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_title_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": "ui/play_screen.json", + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": "ui/play_screen.json", + "games_factory_object/games_factory_panel/bottom_panel": "ui/play_screen.json", + "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": "ui/play_screen.json", + "games_factory_object/padding": "ui/play_screen.json", + "games_section_panel": "ui/play_screen.json", + "games_section_panel/divider_0": "ui/play_screen.json", + "games_section_panel/padding_0": "ui/play_screen.json", + "games_section_panel/description_label": "ui/play_screen.json", + "games_section_panel/padding_1": "ui/play_screen.json", + "games_section_panel/games_factory_panel": "ui/play_screen.json", + "games_section_panel/padding_3": "ui/play_screen.json", + "news_text_panel": "ui/play_screen.json", + "news_text_panel/contents_news": "ui/play_screen.json", + "news_section_panel": "ui/play_screen.json", + "news_section_panel/divider_0": "ui/play_screen.json", + "news_section_panel/padding_0": "ui/play_screen.json", + "news_section_panel/news_label": "ui/play_screen.json", + "news_section_panel/padding_1": "ui/play_screen.json", + "news_section_panel/read_more_panel": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/news_title_text": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/divider_panel": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/news_text_small": "ui/play_screen.json", + "news_section_panel/read_more_panel/text_stack_panel/news_text_full": "ui/play_screen.json", + "news_section_panel/read_more_panel/news_read_more_button_panel": "ui/play_screen.json", + "news_section_panel/read_more_panel/news_read_less_button_panel": "ui/play_screen.json", + "news_section_panel/padding_3": "ui/play_screen.json", + "divider": "ui/play_screen.json", + "blue_diskspace_bar": "ui/play_screen.json", + "green_diskspace_bar": "ui/play_screen.json", + "empty_diskspace_bar": "ui/play_screen.json", + "legacy_world_content_status_area_panel": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": "ui/play_screen.json", + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": "ui/play_screen.json", + "world_list_text": "ui/play_screen.json", + "realm_screenshot": "ui/play_screen.json", + "realm_screenshot/picture": "ui/play_screen.json", + "local_world_name": "ui/play_screen.json", + "legacy_world_name": "ui/play_screen.json", + "world_lock": "ui/play_screen.json", + "local_world_game_mode": "ui/play_screen.json", + "legacy_world_game_mode": "ui/play_screen.json", + "local_world_date": "ui/play_screen.json", + "legacy_world_date": "ui/play_screen.json", + "local_world_filesize": "ui/play_screen.json", + "legacy_world_filesize": "ui/play_screen.json", + "local_world_connected_storage": "ui/play_screen.json", + "local_world_connected_storage/local_and_cloud": "ui/play_screen.json", + "local_world_connected_storage/local_only": "ui/play_screen.json", + "local_world_connected_storage/cloud_only": "ui/play_screen.json", + "local_world_lock_panel": "ui/play_screen.json", + "local_world_lock_panel/lock": "ui/play_screen.json", + "realms_plus_banner": "ui/play_screen.json", + "realms_plus_banner/realms_banner": "ui/play_screen.json", + "local_world_text_panel": "ui/play_screen.json", + "local_world_text_panel/text_indent": "ui/play_screen.json", + "local_world_text_panel/text_indent/top_side": "ui/play_screen.json", + "local_world_text_panel/text_indent/top_side/local_world_name": "ui/play_screen.json", + "local_world_text_panel/text_indent/top_side/lock_1": "ui/play_screen.json", + "local_world_text_panel/text_indent/top_side/local_world_date": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/pad": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": "ui/play_screen.json", + "local_world_text_panel/text_indent/bottom_side/local_world_filesize": "ui/play_screen.json", + "legacy_world_text_panel": "ui/play_screen.json", + "legacy_world_text_panel/text_indent": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/top_side": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/top_side/legacy_world_name": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/top_side/legacy_world_date": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": "ui/play_screen.json", + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": "ui/play_screen.json", + "beta_retail_world_text_panel": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/top_side": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/bottom_side": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": "ui/play_screen.json", + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": "ui/play_screen.json", + "world_content_panel": "ui/play_screen.json", + "world_content_panel/world_screenshot": "ui/play_screen.json", + "world_content_panel/world_text_panel": "ui/play_screen.json", + "ownership_verification_in_progress_content": "ui/play_screen.json", + "ownership_verification_in_progress_content/top_padding": "ui/play_screen.json", + "ownership_verification_in_progress_content/loading_bar_panel": "ui/play_screen.json", + "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": "ui/play_screen.json", + "ownership_verification_in_progress_content/mid_padding": "ui/play_screen.json", + "ownership_verification_in_progress_content/loading_label": "ui/play_screen.json", + "ownership_verification_in_progress_content/bottom_padding": "ui/play_screen.json", + "ownership_verification_in_progress_panel": "ui/play_screen.json", + "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": "ui/play_screen.json", + "local_world_item_button": "ui/play_screen.json", + "legacy_world_item_button": "ui/play_screen.json", + "beta_retail_world_item_button": "ui/play_screen.json", + "local_world_edit_button": "ui/play_screen.json", + "legacy_world_delete_button": "ui/play_screen.json", + "legacy_world_migrate_button": "ui/play_screen.json", + "local_world_item": "ui/play_screen.json", + "local_world_item/header_button_panel": "ui/play_screen.json", + "local_world_item/signin_in_progress_panel": "ui/play_screen.json", + "legacy_world_item": "ui/play_screen.json", + "legacy_world_item/header_button_panel_with_delete": "ui/play_screen.json", + "legacy_world_item/header_button_panel_with_migrate": "ui/play_screen.json", + "legacy_world_item/header_button_panel_no_delete": "ui/play_screen.json", + "beta_retail_world_item": "ui/play_screen.json", + "local_world_item_grid": "ui/play_screen.json", + "legacy_world_item_grid": "ui/play_screen.json", + "beta_retail_local_world_item_grid": "ui/play_screen.json", + "beta_retail_legacy_world_item_grid": "ui/play_screen.json", + "common_button_template": "ui/play_screen.json", + "common_button_text": "ui/play_screen.json", + "add_friend_and_invite_panel": "ui/play_screen.json", + "add_friend_and_invite_panel/add_friend_button": "ui/play_screen.json", + "add_friend_and_invite_panel/padding_1": "ui/play_screen.json", + "add_friend_and_invite_panel/join_by_code_button": "ui/play_screen.json", + "add_friend_and_invite_panel/padding_2": "ui/play_screen.json", + "add_friend_and_invite_panel/notification_button_panel": "ui/play_screen.json", + "add_friend_and_invite_panel/notification_button_panel/notification_button": "ui/play_screen.json", + "add_friend_button": "ui/play_screen.json", + "join_by_code_button": "ui/play_screen.json", + "add_server_toggle_button": "ui/play_screen.json", + "server_toggle_base": "ui/play_screen.json", + "quick_play_button": "ui/play_screen.json", + "create_new_world_button": "ui/play_screen.json", + "create_on_realms_button_panel": "ui/play_screen.json", + "create_on_realms_button_panel/create_on_realms_button": "ui/play_screen.json", + "import_world_button": "ui/play_screen.json", + "sync_legacy_worlds_button": "ui/play_screen.json", + "notification_button_text_layout": "ui/play_screen.json", + "notification_button_text_layout/image1": "ui/play_screen.json", + "notification_button_text_layout/image2": "ui/play_screen.json", + "notification_button_text_layout/count": "ui/play_screen.json", + "notification_button_label_panel": "ui/play_screen.json", + "notification_button_label_panel/notification_button_label": "ui/play_screen.json", + "notification_content": "ui/play_screen.json", + "notification_button": "ui/play_screen.json", + "header_button_panel": "ui/play_screen.json", + "header_button_panel/buttons": "ui/play_screen.json", + "header_button_panel/buttons/primary_panel": "ui/play_screen.json", + "header_button_panel/buttons/primary_panel/primary": "ui/play_screen.json", + "header_button_panel/buttons/secondary": "ui/play_screen.json", + "header_button_panel_opt_in": "ui/play_screen.json", + "header_button_panel_opt_in/buttons": "ui/play_screen.json", + "header_button_panel_opt_in/buttons/primary_panel": "ui/play_screen.json", + "header_button_panel_opt_in/buttons/primary_panel/primary": "ui/play_screen.json", + "header_button_panel_opt_in/buttons/secondary": "ui/play_screen.json", + "header_button_panel_opt_in/buttons/ternary": "ui/play_screen.json", + "header_single_button_panel": "ui/play_screen.json", + "header_single_button_panel/buttons": "ui/play_screen.json", + "header_single_button_panel/buttons/primary": "ui/play_screen.json", + "open_account_setting_button_gamecore": "ui/play_screen.json", + "common_scroll_pane": "ui/play_screen.json", + "worlds_scroll_panel": "ui/play_screen.json", + "worlds_scroll_panel/worlds_list_stack_panel": "ui/play_screen.json", + "game_tip_item_panel": "ui/play_screen.json", + "game_tip_item_panel/info_bulb": "ui/play_screen.json", + "game_tip_item_panel/padding_1": "ui/play_screen.json", + "game_tip_item_panel/label_panel": "ui/play_screen.json", + "game_tip_item_panel/label_panel/padding_vertical": "ui/play_screen.json", + "game_tip_item_panel/label_panel/realms_warning_text": "ui/play_screen.json", + "game_tip_item_panel/label_panel/padding_vertical_1": "ui/play_screen.json", + "game_tip_item_panel/more_info_button": "ui/play_screen.json", + "realm_warning_tip": "ui/play_screen.json", + "realm_warning_tip/padding_vertical": "ui/play_screen.json", + "realm_warning_tip/info_panel": "ui/play_screen.json", + "new_ui_switch_button_options_panel": "ui/play_screen.json", + "new_ui_switch_button_options_panel/unlock_template_options_button": "ui/play_screen.json", + "new_ui_servers_switch_button_options_panel": "ui/play_screen.json", + "new_ui_servers_switch_button_options_panel/unlock_template_options_button": "ui/play_screen.json", + "new_ui_servers_switch_button_options_panel/padding_0": "ui/play_screen.json", + "worlds_stack_panel": "ui/play_screen.json", + "worlds_stack_panel/padding_0": "ui/play_screen.json", + "worlds_stack_panel/play_screen_warning": "ui/play_screen.json", + "worlds_stack_panel/header_button": "ui/play_screen.json", + "worlds_stack_panel/header_button/quick_play": "ui/play_screen.json", + "worlds_stack_panel/header_button/buttons": "ui/play_screen.json", + "worlds_stack_panel/worlds_crossplatform_disabled_panel": "ui/play_screen.json", + "worlds_stack_panel/worlds_crossplatform_disable_spacer": "ui/play_screen.json", + "worlds_stack_panel/realms_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_label": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_previews_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/create_on_realms_button_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/personal_realms": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_trial_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": "ui/play_screen.json", + "worlds_stack_panel/realms_panel/padding_1": "ui/play_screen.json", + "worlds_stack_panel/realms_multiplayer_blocked_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": "ui/play_screen.json", + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": "ui/play_screen.json", + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": "ui/play_screen.json", + "worlds_stack_panel/worlds_label": "ui/play_screen.json", + "worlds_stack_panel/grid": "ui/play_screen.json", + "worlds_stack_panel/no_local_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/no_local_worlds_switch_setting": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_local_padding": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_local_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_local_grid": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel_padding": "ui/play_screen.json", + "worlds_stack_panel/legacy_worlds_button": "ui/play_screen.json", + "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": "ui/play_screen.json", + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel/padding": "ui/play_screen.json", + "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": "ui/play_screen.json", + "worlds_stack_panel/padding_2": "ui/play_screen.json", + "worlds_stack_panel/upgrade_legacy_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/legacy_world_item_grid": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_legacy_padding": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_legacy_worlds_label": "ui/play_screen.json", + "worlds_stack_panel/beta_retail_legacy_grid": "ui/play_screen.json", + "worlds_stack_panel/pad_hack_panel": "ui/play_screen.json", + "no_local_worlds_switch_setting": "ui/play_screen.json", + "no_local_worlds_switch_setting/bg": "ui/play_screen.json", + "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": "ui/play_screen.json", + "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": "ui/play_screen.json", + "no_local_worlds_launch_help": "ui/play_screen.json", + "storage_location_dropdown_panel": "ui/play_screen.json", + "storage_location_dropdown_panel/padding1": "ui/play_screen.json", + "storage_location_dropdown_panel/storage_location_dropdown": "ui/play_screen.json", + "storage_location_dropdown": "ui/play_screen.json", + "switch_storage_type_content": "ui/play_screen.json", + "light_centered_loading_label": "ui/play_screen.json", + "light_loading_label": "ui/play_screen.json", + "loading_label": "ui/play_screen.json", + "progress_loading_bars": "ui/play_screen.json", + "world_list_label_panel": "ui/play_screen.json", + "world_list_label_panel/list_label": "ui/play_screen.json", + "world_list_label_with_color_panel": "ui/play_screen.json", + "world_list_label_with_color_panel/colored_square_sizer": "ui/play_screen.json", + "world_list_label_with_color_panel/colored_square_sizer/colored_square": "ui/play_screen.json", + "world_list_label_with_color_panel/padding": "ui/play_screen.json", + "world_list_label_with_color_panel/list_label": "ui/play_screen.json", + "empty_panel": "ui/play_screen.json", + "empty_grid": "ui/play_screen.json", + "lan_servers_scroll_content": "ui/play_screen.json", + "friends_scroll_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/padding_0": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/friends_screen_warning": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/header_button": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/friends_grid": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/pad_hack_panel": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/no_friends_grid_message": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/add_friend_button_padding": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/cross_platform_friends_grid": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/lan_grid": "ui/play_screen.json", + "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": "ui/play_screen.json", + "manually_added_servers_scrolling_content": "ui/play_screen.json", + "manually_added_servers_scrolling_content/padding_0": "ui/play_screen.json", + "manually_added_servers_scrolling_content/more_servers_label": "ui/play_screen.json", + "manually_added_servers_scrolling_content/padding_1": "ui/play_screen.json", + "manually_added_servers_scrolling_content/more_servers_grid": "ui/play_screen.json", + "manually_added_servers_scrolling_content/padding_3": "ui/play_screen.json", + "servers_content_panel": "ui/play_screen.json", + "servers_content_panel/new_ui_servers_switch_button_options_panel": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/loading_featured_panel": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/padding_1": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/featured_servers_label": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/padding_2": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/third_party_featured_grid": "ui/play_screen.json", + "servers_content_panel/featured_servers_panel/padding_3": "ui/play_screen.json", + "servers_content_panel/more_servers_divider": "ui/play_screen.json", + "servers_content_panel/more_servers_panel": "ui/play_screen.json", + "server_scroll_panel": "ui/play_screen.json", + "server_scroll_panel/stack_panel": "ui/play_screen.json", + "server_scroll_panel/stack_panel/padding_0": "ui/play_screen.json", + "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": "ui/play_screen.json", + "server_scroll_panel/stack_panel/no_featured_server_connection": "ui/play_screen.json", + "server_scroll_panel/stack_panel/more_servers_blocked_panel": "ui/play_screen.json", + "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": "ui/play_screen.json", + "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": "ui/play_screen.json", + "server_scroll_panel/stack_panel/padding_1": "ui/play_screen.json", + "server_scroll_panel/stack_panel/server_content": "ui/play_screen.json", + "server_scroll_panel/stack_panel/add_server_button": "ui/play_screen.json", + "crossplatform_disabled_panel": "ui/play_screen.json", + "crossplatform_disable_spacer": "ui/play_screen.json", + "common_scrolling_panel": "ui/play_screen.json", + "common_content": "ui/play_screen.json", + "scrolling_offsets": "ui/play_screen.json", + "worlds_scroll_content": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": "ui/play_screen.json", + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": "ui/play_screen.json", + "friends_scroll_content": "ui/play_screen.json", + "friends_scroll_content/scrolling_panel": "ui/play_screen.json", + "show_servers_panel": "ui/play_screen.json", + "show_servers_panel/left_panel": "ui/play_screen.json", + "show_servers_panel/left_panel/scrolling_panel": "ui/play_screen.json", + "show_servers_panel/divider_panel": "ui/play_screen.json", + "show_servers_panel/divider_panel/main_divider": "ui/play_screen.json", + "show_servers_panel/right_panel": "ui/play_screen.json", + "server_scroll_content": "ui/play_screen.json", + "server_scroll_content/severs_panel": "ui/play_screen.json", + "server_scroll_content/severs_panel/offset_panel": "ui/play_screen.json", + "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": "ui/play_screen.json", + "server_scroll_content/severs_panel/show_servers_panel": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/featured_servers_label": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/pad": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/feature_server_message_panel": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": "ui/play_screen.json", + "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": "ui/play_screen.json", + "server_content_area": "ui/play_screen.json", + "server_content_area/third_party_scrolling_panel": "ui/play_screen.json", + "server_content_area/additional_server_scrolling_panel": "ui/play_screen.json", + "server_content_area/add_server_pane": "ui/play_screen.json", + "tab_front": "ui/play_screen.json", + "tab_front_middle": "ui/play_screen.json", + "tab_back": "ui/play_screen.json", + "X_tab_back": "ui/play_screen.json", + "tab_text_stack_panel": "ui/play_screen.json", + "tab_text_stack_panel/padding": "ui/play_screen.json", + "tab_text_stack_panel/text_section": "ui/play_screen.json", + "tab_text_stack_panel/text_section/text": "ui/play_screen.json", + "tab_text_stack_panel/count_section": "ui/play_screen.json", + "tab_text_stack_panel/count_section/count_background_image": "ui/play_screen.json", + "tab_text_stack_panel/count_section/count_background_image/count": "ui/play_screen.json", + "common_navigation_tab_content": "ui/play_screen.json", + "common_navigation_tab_content/padding_0": "ui/play_screen.json", + "common_navigation_tab_content/icon_section": "ui/play_screen.json", + "common_navigation_tab_content/icon_section/icon": "ui/play_screen.json", + "common_navigation_tab_content/padding_1": "ui/play_screen.json", + "common_navigation_tab_content/count_text": "ui/play_screen.json", + "friends_navigation_tab_content": "ui/play_screen.json", + "friends_navigation_tab_content/padding": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section/icon": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_2": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_2/icon": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_nobounce": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_nobounce/icon": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_nobounce_2": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_nobounce_2/icon": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_notification": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_notification/icon1": "ui/play_screen.json", + "friends_navigation_tab_content/icon_section_notification/icon2": "ui/play_screen.json", + "friends_navigation_tab_content/count_text": "ui/play_screen.json", + "top_tab": "ui/play_screen.json", + "world_navigation_tab": "ui/play_screen.json", + "friends_navigation_tab": "ui/play_screen.json", + "server_navigation_tab": "ui/play_screen.json", + "close_navigation_tab": "ui/play_screen.json", + "close_navigation_tab/background": "ui/play_screen.json", + "close_navigation_tab/x_image": "ui/play_screen.json", + "common_tab_content_panel": "ui/play_screen.json", + "common_tab_content_panel/background": "ui/play_screen.json", + "common_tab_content_panel/content": "ui/play_screen.json", + "worlds_tab_content_panel": "ui/play_screen.json", + "friends_tab_content_panel": "ui/play_screen.json", + "server_tab_content_panel": "ui/play_screen.json", + "common_tab_content_panel_type": "ui/play_screen.json", + "edu_tab_content_panel_layout": "ui/play_screen.json", + "edu_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", + "edu_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", + "edu_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", + "trial_tab_content_panel_layout": "ui/play_screen.json", + "trial_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", + "default_tab_content_panel_layout": "ui/play_screen.json", + "default_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", + "default_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", + "default_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", + "tab_navigation_panel_layout": "ui/play_screen.json", + "tab_navigation_panel_layout/navigation_tabs": "ui/play_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content": "ui/play_screen.json", + "tab_navigation_panel_layout/close_navigation_tab": "ui/play_screen.json", + "tab_navigation_panel_layout/close_navigation_tab/close_button": "ui/play_screen.json", + "common_tab_navigation_panel_layout": "ui/play_screen.json", + "edu_tab_navigation_panel_layout": "ui/play_screen.json", + "edu_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", + "edu_tab_navigation_panel_layout/friends_navigation_tab": "ui/play_screen.json", + "edu_tab_navigation_panel_layout/server_navigation_tab": "ui/play_screen.json", + "trial_tab_navigation_panel_layout": "ui/play_screen.json", + "trial_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", + "default_tab_navigation_panel_layout": "ui/play_screen.json", + "default_tab_navigation_panel_layout/world_navigation_tab": "ui/play_screen.json", + "default_tab_navigation_panel_layout/friends_navigation_tab": "ui/play_screen.json", + "default_tab_navigation_panel_layout/server_navigation_tab": "ui/play_screen.json", + "common_play_screen_panel": "ui/play_screen.json", + "play_screen_panel": "ui/play_screen.json", + "play_screen_panel/tab_navigation_panel": "ui/play_screen.json", + "play_screen_panel/tab_content_panel": "ui/play_screen.json", + "play_screen_panel/gamepad_helper_left_bumper": "ui/play_screen.json", + "play_screen_panel/gamepad_helper_right_bumper": "ui/play_screen.json", + "play_screen_panel/keyboard_helper_left_bracket": "ui/play_screen.json", + "play_screen_panel/keyboard_helper_right_bracket": "ui/play_screen.json", + "default_play_screen_panel": "ui/play_screen.json", + "trial_play_screen_panel": "ui/play_screen.json", + "edu_play_screen_panel": "ui/play_screen.json", + "play_screen": "ui/play_screen.json", + "play_screen_content": "ui/play_screen.json", + "play_screen_content/main_control": "ui/play_screen.json", + "play_screen_content/editor_text_panel": "ui/play_screen.json", + "play_screen_content/popup_dialog_factory": "ui/play_screen.json", + "popup_dialog_join_by_code": "ui/play_screen.json", + "popup_dialog_join_by_code/join_by_code_popup_background": "ui/play_screen.json", + "popup_dialog_join_by_code/join_by_code_popup_content": "ui/play_screen.json", + "popup_dialog_join_by_code/gamepad_helpers": "ui/play_screen.json", + "join_by_code_popup_background": "ui/play_screen.json", + "join_by_code_popup_content": "ui/play_screen.json", + "join_by_code_popup_content/popup_dialog_bg": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/spacing_1": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/spacing_2": "ui/play_screen.json", + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": "ui/play_screen.json", + "join_by_code_popup_dialog_header": "ui/play_screen.json", + "join_by_code_popup_dialog_header/join_by_code_popup_header_text": "ui/play_screen.json", + "join_by_code_popup_dialog_header/close_button": "ui/play_screen.json", + "join_by_code_popup_header_text": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/margin1": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/spacing": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": "ui/play_screen.json", + "join_by_code_popup_dialog_upper_body/margin2": "ui/play_screen.json", + "join_by_code_popup_code_text_field": "ui/play_screen.json", + "join_by_code_popup_join_button": "ui/play_screen.json", + "join_by_code_popup_help_text": "ui/play_screen.json", + "lower_body_default_content": "ui/play_screen.json", + "lower_body_default_content/info_text": "ui/play_screen.json", + "join_by_code_popup_dialog_lower_body": "ui/play_screen.json", + "join_by_code_popup_dialog_lower_body/default": "ui/play_screen.json", + "open_account_setting_button": "ui/play_screen.json", + "popup_dialog_high_ping": "ui/play_screen.json", + "popup_dialog_high_ping/high_ping_popup_background": "ui/play_screen.json", + "popup_dialog_high_ping/high_ping_popup_content": "ui/play_screen.json", + "popup_dialog_high_ping/gamepad_helpers": "ui/play_screen.json", + "popup_two_buttons": "ui/play_screen.json", + "popup_two_buttons/common_panel": "ui/play_screen.json", + "popup_two_buttons/title_label": "ui/play_screen.json", + "popup_two_buttons/panel_indent": "ui/play_screen.json", + "popup_two_buttons/panel_indent/inside_header_panel": "ui/play_screen.json", + "popup_two_buttons/button_panel": "ui/play_screen.json", + "popup_two_buttons/button_panel/left_button_panel": "ui/play_screen.json", + "popup_two_buttons/button_panel/pad": "ui/play_screen.json", + "popup_two_buttons/button_panel/right_button_panel": "ui/play_screen.json", + "high_ping_popup_content_stack_panel": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/pad_0": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/pad_1": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/text_line_1": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/pad_2": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/text_line_2": "ui/play_screen.json", + "high_ping_popup_content_stack_panel/pad_3": "ui/play_screen.json", + "high_ping_popup_join_button": "ui/play_screen.json", + "high_ping_popup_cancel_button": "ui/play_screen.json", + "copyright": "ui/play_screen.json", + "development_version": "ui/play_screen.json", + "version": "ui/play_screen.json", + "editor_text_panel": "ui/play_screen.json", + "editor_text_panel/copyright": "ui/play_screen.json", + "editor_text_panel/development_version": "ui/play_screen.json", + "editor_text_panel/version": "ui/play_screen.json", + "editor_settings_image_content": "ui/play_screen.json", + "editor_settings_menu_button": "ui/play_screen.json", + "editor_server_content_panel": "ui/play_screen.json", + "editor_server_content_panel/more_servers_panel": "ui/play_screen.json", + "editor_tab_content_panel_layout": "ui/play_screen.json", + "editor_tab_content_panel_layout/worlds_tab_content": "ui/play_screen.json", + "editor_tab_content_panel_layout/friends_tab_content": "ui/play_screen.json", + "editor_tab_content_panel_layout/server_tab_content_panel": "ui/play_screen.json", + "editor_play_screen_panel": "ui/play_screen.json", + }, + "perf_turtle": { + "perf_turtle_panel": "ui/perf_turtle.json", + "perf_turtle_panel/perf_turtle_background": "ui/perf_turtle.json", + "perf_turtle_panel/stack_panel": "ui/perf_turtle.json", + "perf_turtle_panel/stack_panel/turtle": "ui/perf_turtle.json", + "perf_turtle_panel/stack_panel/turtle_text": "ui/perf_turtle.json", + }, + "pocket_containers": { + "generic_label": "ui/pocket_containers.json", + "header_panel": "ui/pocket_containers.json", + "header_panel/header_background": "ui/pocket_containers.json", + "header_panel/title_label": "ui/pocket_containers.json", + "header_area": "ui/pocket_containers.json", + "header_area/x": "ui/pocket_containers.json", + "header_area/inventory_header": "ui/pocket_containers.json", + "header_area/container_header": "ui/pocket_containers.json", + "dark_bg": "ui/pocket_containers.json", + "panel_outline": "ui/pocket_containers.json", + "background_panel": "ui/pocket_containers.json", + "inventory_grid": "ui/pocket_containers.json", + "inventory_panel": "ui/pocket_containers.json", + "inventory_panel/scrolling_panel": "ui/pocket_containers.json", + "half_screen": "ui/pocket_containers.json", + "half_screen/inventory_panel": "ui/pocket_containers.json", + "panel": "ui/pocket_containers.json", + "panel/container_gamepad_helpers": "ui/pocket_containers.json", + "panel/header": "ui/pocket_containers.json", + "panel/bg": "ui/pocket_containers.json", + "panel/inventory": "ui/pocket_containers.json", + "panel/container": "ui/pocket_containers.json", + "panel/selected_item_details_factory": "ui/pocket_containers.json", + "panel/item_lock_notification_factory": "ui/pocket_containers.json", + "panel/gamepad_cursor": "ui/pocket_containers.json", + "panel/inventory_selected_icon_button": "ui/pocket_containers.json", + "panel/hold_icon": "ui/pocket_containers.json", + "panel/flying_item_renderer": "ui/pocket_containers.json", + "small_chest_panel": "ui/pocket_containers.json", + "large_chest_panel": "ui/pocket_containers.json", + "hopper_panel": "ui/pocket_containers.json", + "dispenser_panel": "ui/pocket_containers.json", + "dropper_panel": "ui/pocket_containers.json", + "ender_chest_panel": "ui/pocket_containers.json", + "shulker_box_panel": "ui/pocket_containers.json", + "barrel_panel": "ui/pocket_containers.json", + }, + "popup_dialog": { + "popup_dialog_bg": "ui/popup_dialog.json", + "popup_dialog_message": "ui/popup_dialog.json", + "popup_dialog_button": "ui/popup_dialog.json", + "popup_dialog_button_with_binding": "ui/popup_dialog.json", + "popup_dialog_left_button": "ui/popup_dialog.json", + "popup_dialog_middle_button": "ui/popup_dialog.json", + "popup_dialog_right_button": "ui/popup_dialog.json", + "popup_dialog": "ui/popup_dialog.json", + "modal_background_image": "ui/popup_dialog.json", + "black_tint_image": "ui/popup_dialog.json", + "modal_title_text": "ui/popup_dialog.json", + "modal_label_text": "ui/popup_dialog.json", + "modal_label_text/padding": "ui/popup_dialog.json", + "modal_label_text/text": "ui/popup_dialog.json", + "modal_checkbox_button": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel/buffer_panel": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": "ui/popup_dialog.json", + "modal_checkbox_button/header_description_stack_panel/padding_panel": "ui/popup_dialog.json", + "dialog_text_wrapper": "ui/popup_dialog.json", + "modal_label_panel": "ui/popup_dialog.json", + "modal_left_button": "ui/popup_dialog.json", + "modal_middle_button": "ui/popup_dialog.json", + "modal_rightcancel_button": "ui/popup_dialog.json", + "three_buttons_panel": "ui/popup_dialog.json", + "three_buttons_panel/left": "ui/popup_dialog.json", + "three_buttons_panel/middle": "ui/popup_dialog.json", + "three_buttons_panel/right": "ui/popup_dialog.json", + "two_buttons_checkbox_panel": "ui/popup_dialog.json", + "two_buttons_checkbox_panel/left": "ui/popup_dialog.json", + "two_buttons_checkbox_panel/middle": "ui/popup_dialog.json", + "two_buttons_checkbox_panel/checkbox": "ui/popup_dialog.json", + "destructive_three_buttons_panel": "ui/popup_dialog.json", + "destructive_three_buttons_panel/left": "ui/popup_dialog.json", + "destructive_three_buttons_panel/middle": "ui/popup_dialog.json", + "destructive_three_buttons_panel/right": "ui/popup_dialog.json", + "two_buttons_panel": "ui/popup_dialog.json", + "two_buttons_panel/left": "ui/popup_dialog.json", + "two_buttons_panel/right": "ui/popup_dialog.json", + "destructive_two_buttons_panel": "ui/popup_dialog.json", + "destructive_two_buttons_panel/left": "ui/popup_dialog.json", + "destructive_two_buttons_panel/right": "ui/popup_dialog.json", + "single_button_panel": "ui/popup_dialog.json", + "single_button_panel/left": "ui/popup_dialog.json", + "single_button_checkbox_panel": "ui/popup_dialog.json", + "single_button_checkbox_panel/left": "ui/popup_dialog.json", + "single_button_checkbox_panel/checkbox": "ui/popup_dialog.json", + "modal_dialog_base": "ui/popup_dialog.json", + "modal_dialog_with_buttons": "ui/popup_dialog.json", + "modal_dialog_with_buttons/background_with_buttons": "ui/popup_dialog.json", + "modal_dialog_with_buttons/title": "ui/popup_dialog.json", + "modal_dialog_with_buttons/text": "ui/popup_dialog.json", + "modal_dialog_with_buttons/button_panel": "ui/popup_dialog.json", + "modal_input_panel": "ui/popup_dialog.json", + "modal_input_panel/black_tint_image": "ui/popup_dialog.json", + "modal_dialog_popup": "ui/popup_dialog.json", + "modal_dialog_popup/modal_input": "ui/popup_dialog.json", + "modal_dialog_popup/modal_input/modal_bg_buttons": "ui/popup_dialog.json", + "modal_dialog_popup/modal_input/black_background": "ui/popup_dialog.json", + "hollow_2_bottom_button_panel": "ui/popup_dialog.json", + "hollow_2_bottom_button_panel/lower_button_controls": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close_and_bottom_buttons": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_background": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/header": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/header/header_content": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/close_button_panel": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/contents": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/contents/contents": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/lower_contents": "ui/popup_dialog.json", + "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": "ui/popup_dialog.json", + "form_fit_modal_dialog_popup": "ui/popup_dialog.json", + "form_fit_modal_dialog_popup/background": "ui/popup_dialog.json", + "form_fit_modal_dialog_popup/content": "ui/popup_dialog.json", + "progress_dialog_popup": "ui/popup_dialog.json", + "progress_dialog_popup/background": "ui/popup_dialog.json", + "progress_dialog_popup/title": "ui/popup_dialog.json", + "progress_dialog_popup/progress_content": "ui/popup_dialog.json", + "progress_dialog_popup/button": "ui/popup_dialog.json", + "progress_content": "ui/popup_dialog.json", + "progress_content/progress_titles": "ui/popup_dialog.json", + "progress_content/progress_titles/current_progress_label": "ui/popup_dialog.json", + "progress_content/progress_titles/total_progress_label": "ui/popup_dialog.json", + "progress_content/progress_bar": "ui/popup_dialog.json", + "progress_label": "ui/popup_dialog.json", + "current_progress_label": "ui/popup_dialog.json", + "total_progress_label": "ui/popup_dialog.json", + "progress_bar_icon": "ui/popup_dialog.json", + "progress_bar_icon/full_progress_bar_icon": "ui/popup_dialog.json", + "progress_bar_icon/empty_progress_bar_icon": "ui/popup_dialog.json", + "progress_bar_icon/progress_bar_nub": "ui/popup_dialog.json", + "empty_progress_bar_icon": "ui/popup_dialog.json", + "full_progress_bar_icon": "ui/popup_dialog.json", + "progress_bar_nub": "ui/popup_dialog.json", + }, + "portfolio": { + "screenshot": "ui/portfolio_screen.json", + "screenshot_frame": "ui/portfolio_screen.json", + "trash_default": "ui/portfolio_screen.json", + "trash_hover": "ui/portfolio_screen.json", + "trash_pressed": "ui/portfolio_screen.json", + "photo_trash_button_left": "ui/portfolio_screen.json", + "photo_trash_button_left/default": "ui/portfolio_screen.json", + "photo_trash_button_left/hover": "ui/portfolio_screen.json", + "photo_trash_button_left/pressed": "ui/portfolio_screen.json", + "photo_trash_button_right": "ui/portfolio_screen.json", + "photo_trash_button_right/default": "ui/portfolio_screen.json", + "photo_trash_button_right/hover": "ui/portfolio_screen.json", + "photo_trash_button_right/pressed": "ui/portfolio_screen.json", + "photo_number": "ui/portfolio_screen.json", + "photo_number_left": "ui/portfolio_screen.json", + "photo_number_right": "ui/portfolio_screen.json", + "photo_corner_bl": "ui/portfolio_screen.json", + "photo_corner_br": "ui/portfolio_screen.json", + "photo_corner_tr": "ui/portfolio_screen.json", + "photo_corner_tl": "ui/portfolio_screen.json", + "page_photo": "ui/portfolio_screen.json", + "page_photo/screenshot": "ui/portfolio_screen.json", + "page_photo/screenshot_frame": "ui/portfolio_screen.json", + "page_photo/photo_corner_bl": "ui/portfolio_screen.json", + "page_photo/photo_corner_br": "ui/portfolio_screen.json", + "page_photo/photo_corner_tl": "ui/portfolio_screen.json", + "page_photo/photo_corner_tr": "ui/portfolio_screen.json", + "pick_item": "ui/portfolio_screen.json", + "pick_item/photo": "ui/portfolio_screen.json", + "pick_item/button": "ui/portfolio_screen.json", + "header": "ui/portfolio_screen.json", + "screenshot_grid": "ui/portfolio_screen.json", + "text_centering_panel": "ui/portfolio_screen.json", + "text_centering_panel/header": "ui/portfolio_screen.json", + "pick_scrolling_content": "ui/portfolio_screen.json", + "pick_scrolling_content/header": "ui/portfolio_screen.json", + "pick_scrolling_content/portfolio_grid": "ui/portfolio_screen.json", + "no_pick_photos_alert_label": "ui/portfolio_screen.json", + "pick_panel": "ui/portfolio_screen.json", + "pick_panel/scroll": "ui/portfolio_screen.json", + "pick_panel/close_button": "ui/portfolio_screen.json", + "pick_panel/no_pick_photos_alert_label": "ui/portfolio_screen.json", + "text_edit_box_default_indent": "ui/portfolio_screen.json", + "text_edit_box_hover_indent": "ui/portfolio_screen.json", + "text_edit_box_hover_indent/focus_border_white": "ui/portfolio_screen.json", + "text_edit_control": "ui/portfolio_screen.json", + "text_edit_control/clipper_panel": "ui/portfolio_screen.json", + "text_edit_control/clipper_panel/display_text": "ui/portfolio_screen.json", + "text_edit_control/clipper_panel/place_holder_control": "ui/portfolio_screen.json", + "text_edit_control/locked": "ui/portfolio_screen.json", + "text_edit_control/locked/edit_box_indent": "ui/portfolio_screen.json", + "text_edit_control/default": "ui/portfolio_screen.json", + "text_edit_control/hover": "ui/portfolio_screen.json", + "text_edit_control/pressed": "ui/portfolio_screen.json", + "photo_item": "ui/portfolio_screen.json", + "photo_item/screenshot": "ui/portfolio_screen.json", + "photo_item/screenshot_frame": "ui/portfolio_screen.json", + "photo_item/text_edit_control": "ui/portfolio_screen.json", + "photo_item/photo_corner_bl": "ui/portfolio_screen.json", + "photo_item/photo_corner_br": "ui/portfolio_screen.json", + "photo_item/photo_corner_tl": "ui/portfolio_screen.json", + "photo_item/photo_corner_tr": "ui/portfolio_screen.json", + "photo_grid_item": "ui/portfolio_screen.json", + "photo_grid_item/photo_item": "ui/portfolio_screen.json", + "photo_list_grid": "ui/portfolio_screen.json", + "prev_button_default": "ui/portfolio_screen.json", + "prev_button_hover": "ui/portfolio_screen.json", + "prev_button_pressed": "ui/portfolio_screen.json", + "photo_page_prev_button": "ui/portfolio_screen.json", + "photo_page_prev_button/default": "ui/portfolio_screen.json", + "photo_page_prev_button/hover": "ui/portfolio_screen.json", + "photo_page_prev_button/pressed": "ui/portfolio_screen.json", + "next_button_default": "ui/portfolio_screen.json", + "next_button_hover": "ui/portfolio_screen.json", + "next_button_pressed": "ui/portfolio_screen.json", + "photo_page_next_button": "ui/portfolio_screen.json", + "photo_page_next_button/default": "ui/portfolio_screen.json", + "photo_page_next_button/hover": "ui/portfolio_screen.json", + "photo_page_next_button/pressed": "ui/portfolio_screen.json", + "convert_button_default": "ui/portfolio_screen.json", + "convert_button_hover": "ui/portfolio_screen.json", + "convert_button_pressed": "ui/portfolio_screen.json", + "photo_convert_left_button": "ui/portfolio_screen.json", + "photo_convert_left_button/default": "ui/portfolio_screen.json", + "photo_convert_left_button/hover": "ui/portfolio_screen.json", + "photo_convert_left_button/pressed": "ui/portfolio_screen.json", + "photo_convert_right_button": "ui/portfolio_screen.json", + "photo_convert_right_button/default": "ui/portfolio_screen.json", + "photo_convert_right_button/hover": "ui/portfolio_screen.json", + "photo_convert_right_button/pressed": "ui/portfolio_screen.json", + "bottom_button_panel": "ui/portfolio_screen.json", + "bottom_button_panel/export_button": "ui/portfolio_screen.json", + "bottom_button_panel/im_content_button": "ui/portfolio_screen.json", + "bottom_button_panel/add_photo_button": "ui/portfolio_screen.json", + "im_content_button": "ui/portfolio_screen.json", + "export_button": "ui/portfolio_screen.json", + "add_photo_button": "ui/portfolio_screen.json", + "book_binding": "ui/portfolio_screen.json", + "book_spine": "ui/portfolio_screen.json", + "book_background": "ui/portfolio_screen.json", + "book_background/book_binding": "ui/portfolio_screen.json", + "book_background/top_spine": "ui/portfolio_screen.json", + "book_background/bottom_spine": "ui/portfolio_screen.json", + "header_panel": "ui/portfolio_screen.json", + "header_panel/header_background": "ui/portfolio_screen.json", + "close_button_default": "ui/portfolio_screen.json", + "close_button_hover": "ui/portfolio_screen.json", + "close_button_pressed": "ui/portfolio_screen.json", + "close_button": "ui/portfolio_screen.json", + "close_button/default": "ui/portfolio_screen.json", + "close_button/hover": "ui/portfolio_screen.json", + "close_button/pressed": "ui/portfolio_screen.json", + "no_photos_alert_label": "ui/portfolio_screen.json", + "book_and_buttons_panel": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/book_background": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/close_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_list_grid": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_number_left": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_number_right": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_trash_button_left": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_trash_button_right": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_page_prev_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_page_next_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_convert_left_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/photo_convert_right_button": "ui/portfolio_screen.json", + "book_and_buttons_panel/book_panel/no_photos_alert_label": "ui/portfolio_screen.json", + "book_and_buttons_panel/bottom_button_panel": "ui/portfolio_screen.json", + "root_panel": "ui/portfolio_screen.json", + "portfolio_screen": "ui/portfolio_screen.json", + "portfolio_screen_content": "ui/portfolio_screen.json", + "portfolio_screen_content/root_panel": "ui/portfolio_screen.json", + "portfolio_screen_content/root_panel/book_and_buttons_panel": "ui/portfolio_screen.json", + "portfolio_screen_content/root_panel/pick_panel": "ui/portfolio_screen.json", + }, + "progress": { + "popup_dialog_base": "ui/progress_screen.json", + "popup_dialog_base/background": "ui/progress_screen.json", + "popup_dialog_base/scrolling_panel": "ui/progress_screen.json", + "popup_dialog_base/totalSelected": "ui/progress_screen.json", + "popup_dialog_base/totalSelectedSize": "ui/progress_screen.json", + "popup_dialog_base/left": "ui/progress_screen.json", + "popup_dialog_base/right": "ui/progress_screen.json", + "checkbox_visual": "ui/progress_screen.json", + "checkbox_visual/control": "ui/progress_screen.json", + "checkbox_visuals_unchecked": "ui/progress_screen.json", + "checkbox_visuals_checked": "ui/progress_screen.json", + "checkbox_visuals_unchecked_locked": "ui/progress_screen.json", + "checkbox_visuals_checked_locked": "ui/progress_screen.json", + "checkbox_visuals_unchecked_hover": "ui/progress_screen.json", + "checkbox_visuals_checked_hover": "ui/progress_screen.json", + "checkbox_with_label_core": "ui/progress_screen.json", + "checkbox_with_label": "ui/progress_screen.json", + "checkbox_with_label/checkbox_with_label_core": "ui/progress_screen.json", + "resource_pack_grid_item": "ui/progress_screen.json", + "resource_pack_section": "ui/progress_screen.json", + "resource_pack_section/required_resource_pack_list_grid": "ui/progress_screen.json", + "resource_pack_section/optional_resource_pack_list_grid": "ui/progress_screen.json", + "simple_popup_dialog_base": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": "ui/progress_screen.json", + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": "ui/progress_screen.json", + "resource_pack_download_popup_base": "ui/progress_screen.json", + "resource_pack_download_server_required": "ui/progress_screen.json", + "resource_pack_download_optional_and_required": "ui/progress_screen.json", + "resource_pack_download_optional": "ui/progress_screen.json", + "resource_pack_download_required": "ui/progress_screen.json", + "normal_stroke_button": "ui/progress_screen.json", + "progress_screen_text": "ui/progress_screen.json", + "progress_title_text": "ui/progress_screen.json", + "progress_bar_text": "ui/progress_screen.json", + "code_text": "ui/progress_screen.json", + "code_number": "ui/progress_screen.json", + "progress_loading_bars": "ui/progress_screen.json", + "progress_loading_spinner": "ui/progress_screen.json", + "fancy_progress_loading_bars": "ui/progress_screen.json", + "fancy_progress_loading_bars/full_progress_bar_icon": "ui/progress_screen.json", + "fancy_progress_loading_bars/empty_progress_bar_icon": "ui/progress_screen.json", + "fancy_progress_loading_bars/progress_bar_nub": "ui/progress_screen.json", + "progress_bar": "ui/progress_screen.json", + "progress_bar_nub": "ui/progress_screen.json", + "thick_progress_bar_icon_base": "ui/progress_screen.json", + "thick_progress_bar_icon_empty": "ui/progress_screen.json", + "thick_progress_bar": "ui/progress_screen.json", + "thick_progress_bar/full_progress_bar_icon": "ui/progress_screen.json", + "thick_progress_bar/empty_progress_bar_icon": "ui/progress_screen.json", + "edu_cloud_upload_progress_bar": "ui/progress_screen.json", + "edu_cloud_upload_progress_bar/waveform_loading_bar": "ui/progress_screen.json", + "edu_cloud_upload_progress_bar/determinate_loading_bar": "ui/progress_screen.json", + "cancel_button": "ui/progress_screen.json", + "retry_button": "ui/progress_screen.json", + "abort_button": "ui/progress_screen.json", + "ok_button": "ui/progress_screen.json", + "title_panel": "ui/progress_screen.json", + "title_panel/progress_title_text": "ui/progress_screen.json", + "title_panel/progress_bar_text": "ui/progress_screen.json", + "title_panel/progress_bar": "ui/progress_screen.json", + "button_panel": "ui/progress_screen.json", + "button_panel/cancel_button": "ui/progress_screen.json", + "modal_button_panel": "ui/progress_screen.json", + "modal_button_panel/cancel_button": "ui/progress_screen.json", + "modal_button_panel_with_retry": "ui/progress_screen.json", + "modal_button_panel_with_retry/abort_button": "ui/progress_screen.json", + "modal_button_panel_with_retry/cancel_button": "ui/progress_screen.json", + "modal_button_panel_with_retry/retry_button": "ui/progress_screen.json", + "modal_ok_button_panel": "ui/progress_screen.json", + "modal_ok_button_panel/ok_button": "ui/progress_screen.json", + "gamepad_helpers": "ui/progress_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/progress_screen.json", + "world_image": "ui/progress_screen.json", + "cloud_image": "ui/progress_screen.json", + "server_image": "ui/progress_screen.json", + "edu_cloud_upload_image": "ui/progress_screen.json", + "edu_cloud_upload_image/world_image_wrapper": "ui/progress_screen.json", + "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": "ui/progress_screen.json", + "edu_cloud_upload_image/arrow_image_wrapper": "ui/progress_screen.json", + "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": "ui/progress_screen.json", + "edu_cloud_upload_image/cloud_image_wrapper": "ui/progress_screen.json", + "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": "ui/progress_screen.json", + "edu_cloud_fetch_image": "ui/progress_screen.json", + "edu_cloud_fetch_image/cloud_image_wrapper": "ui/progress_screen.json", + "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": "ui/progress_screen.json", + "edu_cloud_fetch_image/spyglass_image_wrapper": "ui/progress_screen.json", + "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": "ui/progress_screen.json", + "edu_cloud_fetch_image/world_image_wrapper": "ui/progress_screen.json", + "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": "ui/progress_screen.json", + "edu_cloud_download_image": "ui/progress_screen.json", + "edu_cloud_download_image/cloud_image_wrapper": "ui/progress_screen.json", + "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": "ui/progress_screen.json", + "edu_cloud_download_image/arrow_image_wrapper": "ui/progress_screen.json", + "edu_cloud_download_image/arrow_image_wrapper/arrow_image": "ui/progress_screen.json", + "edu_cloud_download_image/world_image_wrapper": "ui/progress_screen.json", + "edu_cloud_download_image/world_image_wrapper/download_world_image": "ui/progress_screen.json", + "edu_server_fetch_image": "ui/progress_screen.json", + "edu_server_fetch_image/server_image_wrapper_left": "ui/progress_screen.json", + "edu_server_fetch_image/server_image_wrapper_left/server_image": "ui/progress_screen.json", + "edu_server_fetch_image/spyglass_image_wrapper": "ui/progress_screen.json", + "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": "ui/progress_screen.json", + "edu_server_fetch_image/server_image_wrapper_right": "ui/progress_screen.json", + "edu_server_fetch_image/server_image_wrapper_right/server_image": "ui/progress_screen.json", + "modal_progress_panel_no_cancel": "ui/progress_screen.json", + "modal_progress_panel_no_cancel/common_panel": "ui/progress_screen.json", + "modal_progress_panel_no_cancel/content": "ui/progress_screen.json", + "modal_progress_panel_no_cancel/content/title_panel": "ui/progress_screen.json", + "modal_progress_panel_no_cancel/content/progress_loading_bars": "ui/progress_screen.json", + "modal_progress_panel_with_cancel": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/common_panel": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/content": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/content/title_panel": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/content/progress_loading_bars": "ui/progress_screen.json", + "modal_progress_panel_with_cancel/modal_button_panel": "ui/progress_screen.json", + "progress_panel": "ui/progress_screen.json", + "progress_panel/progress_loading_bars": "ui/progress_screen.json", + "progress_panel/title_panel": "ui/progress_screen.json", + "progress_panel/button_panel": "ui/progress_screen.json", + "modal_progress_screen": "ui/progress_screen.json", + "delete_progress_screen": "ui/progress_screen.json", + "realms_loading_background": "ui/progress_screen.json", + "realms_loading_background/solid_blue": "ui/progress_screen.json", + "realms_loading_background/solid_blue/gradient": "ui/progress_screen.json", + "realms_stories_loading_progress_screen": "ui/progress_screen.json", + "world_loading_progress_screen": "ui/progress_screen.json", + "world_loading_screen_background": "ui/progress_screen.json", + "overworld_loading_background": "ui/progress_screen.json", + "overworld_loading_background/background_gradient": "ui/progress_screen.json", + "overworld_loading_progress_screen": "ui/progress_screen.json", + "nether_loading_background": "ui/progress_screen.json", + "nether_loading_background/background_gradient": "ui/progress_screen.json", + "nether_loading_progress_screen": "ui/progress_screen.json", + "theend_loading_background": "ui/progress_screen.json", + "theend_loading_background/background_gradient": "ui/progress_screen.json", + "theend_loading_progress_screen": "ui/progress_screen.json", + "world_saving_progress_screen": "ui/progress_screen.json", + "fetching_edu_cloud_worlds": "ui/progress_screen.json", + "edu_cloud_download_progress_screen": "ui/progress_screen.json", + "fetching_edu_servers": "ui/progress_screen.json", + "world_convert_modal_progress_screen": "ui/progress_screen.json", + "progress_screen": "ui/progress_screen.json", + "popup_dialog_factory": "ui/progress_screen.json", + "progress_screen_content": "ui/progress_screen.json", + "progress_screen_content/progress_content_panel": "ui/progress_screen.json", + "progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "progress_content_panel": "ui/progress_screen.json", + "progress_content_panel/progress_panel": "ui/progress_screen.json", + "progress_content_panel/gamepad_helpers": "ui/progress_screen.json", + "modal_screen_content": "ui/progress_screen.json", + "modal_screen_content/modal_progress_panel": "ui/progress_screen.json", + "world_modal_progress_panel": "ui/progress_screen.json", + "world_modal_progress_panel/common_panel": "ui/progress_screen.json", + "world_modal_progress_panel/base_content": "ui/progress_screen.json", + "world_modal_progress_panel/base_content/progress_title_text": "ui/progress_screen.json", + "world_modal_progress_panel/base_content/progress_bar_text": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/vertical_padding": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/modal_button_panel": "ui/progress_screen.json", + "world_modal_progress_panel/inside_content/vertical_padding_2": "ui/progress_screen.json", + "cloud_upload_panel": "ui/progress_screen.json", + "cloud_upload_panel/common_panel": "ui/progress_screen.json", + "cloud_upload_panel/base_content": "ui/progress_screen.json", + "cloud_upload_panel/base_content/progress_title_text": "ui/progress_screen.json", + "cloud_upload_panel/base_content/progress_text": "ui/progress_screen.json", + "cloud_upload_panel/base_content/edu_cloud_upload_image": "ui/progress_screen.json", + "cloud_upload_panel/base_content/loading_bar_panel": "ui/progress_screen.json", + "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "cloud_error_panel": "ui/progress_screen.json", + "cloud_error_panel/common_panel": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/title_wrapper": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/button_content": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/button_content/modal_button_panel": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_button_content": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": "ui/progress_screen.json", + "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": "ui/progress_screen.json", + "cloud_fetch_panel": "ui/progress_screen.json", + "cloud_fetch_panel/common_panel": "ui/progress_screen.json", + "cloud_fetch_panel/base_content": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/progress_title_text": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/progress_text": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/edu_cloud_fetch_image": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/loading_bar_panel": "ui/progress_screen.json", + "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "server_fetch_panel": "ui/progress_screen.json", + "server_fetch_panel/common_panel": "ui/progress_screen.json", + "server_fetch_panel/base_content": "ui/progress_screen.json", + "server_fetch_panel/base_content/progress_title_text": "ui/progress_screen.json", + "server_fetch_panel/base_content/progress_text": "ui/progress_screen.json", + "server_fetch_panel/base_content/edu_server_fetch_image": "ui/progress_screen.json", + "server_fetch_panel/base_content/loading_bar_panel": "ui/progress_screen.json", + "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "cloud_download_panel": "ui/progress_screen.json", + "cloud_download_panel/common_panel": "ui/progress_screen.json", + "cloud_download_panel/base_content": "ui/progress_screen.json", + "cloud_download_panel/base_content/progress_title_text": "ui/progress_screen.json", + "cloud_download_panel/base_content/progress_bar_text": "ui/progress_screen.json", + "cloud_download_panel/base_content/edu_cloud_download_image": "ui/progress_screen.json", + "cloud_download_panel/loading_bar_panel": "ui/progress_screen.json", + "cloud_download_panel/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", + "world_convert_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/realms_title_image": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": "ui/progress_screen.json", + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": "ui/progress_screen.json", + "world_save_modal_progress_screen_content": "ui/progress_screen.json", + "world_save_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json", + "world_save_modal_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json", + "world_save_modal_progress_screen_content/save_icon": "ui/progress_screen.json", + "world_save_modal_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "cloud_upload_screen_content": "ui/progress_screen.json", + "cloud_upload_screen_content/title_panel_content": "ui/progress_screen.json", + "cloud_upload_screen_content/cloud_upload_panel": "ui/progress_screen.json", + "cloud_upload_screen_content/cloud_upload_error_panel": "ui/progress_screen.json", + "cloud_upload_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": "ui/progress_screen.json", + "edu_cloud_fetch_screen_content": "ui/progress_screen.json", + "edu_cloud_fetch_screen_content/cloud_fetch_panel": "ui/progress_screen.json", + "edu_cloud_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "edu_server_fetch_screen_content": "ui/progress_screen.json", + "edu_server_fetch_screen_content/server_fetch_panel": "ui/progress_screen.json", + "edu_server_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "cloud_download_screen_content": "ui/progress_screen.json", + "cloud_download_screen_content/background": "ui/progress_screen.json", + "cloud_download_screen_content/cloud_download_panel": "ui/progress_screen.json", + "cloud_download_screen_content/cloud_download_error_panel": "ui/progress_screen.json", + "cloud_download_screen_content/popup_dialog_factory": "ui/progress_screen.json", + "auto_save": "ui/progress_screen.json", + "mobile_data_ios_icon": "ui/progress_screen.json", + "mobile_data_android_icon": "ui/progress_screen.json", + "mobile_data_icon_text": "ui/progress_screen.json", + "mobile_data_icon": "ui/progress_screen.json", + "mobile_data_icon/icon_android": "ui/progress_screen.json", + "mobile_data_icon/icon_ios": "ui/progress_screen.json", + "mobile_data_icon/text": "ui/progress_screen.json", + }, + "rating_prompt": { + "padding_horizontal": "ui/rating_prompt.json", + "padding_vertical": "ui/rating_prompt.json", + "rating_prompt_yes_label": "ui/rating_prompt.json", + "rating_prompt_yes_label/button_label": "ui/rating_prompt.json", + "rating_prompt_no_label": "ui/rating_prompt.json", + "rating_prompt_no_label/button_label": "ui/rating_prompt.json", + "rating_prompt_yes_button": "ui/rating_prompt.json", + "rating_prompt_no_button": "ui/rating_prompt.json", + "dialog_image": "ui/rating_prompt.json", + "dialog_image_with_border": "ui/rating_prompt.json", + "dialog_image_with_border/dialog_image": "ui/rating_prompt.json", + "button_panel": "ui/rating_prompt.json", + "button_panel/padding_3": "ui/rating_prompt.json", + "button_panel/yes_button": "ui/rating_prompt.json", + "button_panel/no_button": "ui/rating_prompt.json", + "image_panel": "ui/rating_prompt.json", + "image_panel/padding_2": "ui/rating_prompt.json", + "image_panel/dialog_image_with_border": "ui/rating_prompt.json", + "main_panel": "ui/rating_prompt.json", + "main_panel/padding_0": "ui/rating_prompt.json", + "main_panel/image_panel": "ui/rating_prompt.json", + "main_panel/padding_1": "ui/rating_prompt.json", + "main_panel/button_panel": "ui/rating_prompt.json", + "rating_prompt_screen": "ui/rating_prompt.json", + "rating_prompt_screen_content": "ui/rating_prompt.json", + }, + "realms_common": { + "pending_invites_icon": "ui/realms_common.json", + "dark_banner": "ui/realms_common.json", + "dark_banner_hover": "ui/realms_common.json", + "legacy_banner": "ui/realms_common.json", + "main_banner": "ui/realms_common.json", + "hollow_banner": "ui/realms_common.json", + "popup_dialog_bg": "ui/realms_common.json", + "popup_dialog__play_on_realm": "ui/realms_common.json", + "popup_dialog__play_on_realm/play_on_realm_popup_background": "ui/realms_common.json", + "popup_dialog__play_on_realm/gamepad_helpers": "ui/realms_common.json", + "popup_dialog__play_on_realm/play_on_realm_popup_content": "ui/realms_common.json", + "play_on_realm_popup_background": "ui/realms_common.json", + "play_on_realm_popup_content": "ui/realms_common.json", + "play_on_realm_popup_content/popup_dialog_bg": "ui/realms_common.json", + "play_on_realm_popup_content/play_on_realm_popup_dialog_header": "ui/realms_common.json", + "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": "ui/realms_common.json", + "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": "ui/realms_common.json", + "play_on_realm_popup_dialog_header": "ui/realms_common.json", + "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": "ui/realms_common.json", + "play_on_realm_popup_dialog_header/close_button": "ui/realms_common.json", + "play_on_realm_popup_dialog_header_text": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body/background_panel": "ui/realms_common.json", + "play_on_realm_popup_dialog_upper_body/background_panel/black_background": "ui/realms_common.json", + "play_on_realm_panel": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": "ui/realms_common.json", + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": "ui/realms_common.json", + "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": "ui/realms_common.json", + }, + "realms_create": { + "title_label": "ui/realms_create.json", + "label": "ui/realms_create.json", + "enter_name_panel": "ui/realms_create.json", + "enter_name_panel/name_label_0": "ui/realms_create.json", + "enter_name_panel/name_edit": "ui/realms_create.json", + "selected_option_checkbox": "ui/realms_create.json", + "selected_option_checkbox_empty": "ui/realms_create.json", + "selected_option_checkbox_filled": "ui/realms_create.json", + "checkbox_panel": "ui/realms_create.json", + "checkbox_panel/selected_option_checkbox_empty": "ui/realms_create.json", + "checkbox_panel/selected_option_checkbox_filled": "ui/realms_create.json", + "checkbox_panel/button_label": "ui/realms_create.json", + "realms_option_button": "ui/realms_create.json", + "choose_duration_panel": "ui/realms_create.json", + "choose_duration_panel/name_label": "ui/realms_create.json", + "choose_duration_panel/choose_duration_stack_panel": "ui/realms_create.json", + "choose_duration_panel/choose_duration_stack_panel/short": "ui/realms_create.json", + "choose_duration_panel/choose_duration_stack_panel/long": "ui/realms_create.json", + "choose_tier_panel": "ui/realms_create.json", + "choose_tier_panel/name_label": "ui/realms_create.json", + "choose_tier_panel/choose_tier_stack_panel": "ui/realms_create.json", + "choose_tier_panel/choose_tier_stack_panel/player_count_2": "ui/realms_create.json", + "view_terms_button": "ui/realms_create.json", + "privacy_policy_button": "ui/realms_create.json", + "terms_and_conditions_panel": "ui/realms_create.json", + "terms_and_conditions_panel/name_label": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/realms_create.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/realms_create.json", + "confirmation_panel": "ui/realms_create.json", + "confirmation_panel/create_realms_button": "ui/realms_create.json", + "create_realms_stack_panel": "ui/realms_create.json", + "create_realms_stack_panel/padding_0": "ui/realms_create.json", + "create_realms_stack_panel/create_realms_text_panel": "ui/realms_create.json", + "create_realms_text_panel": "ui/realms_create.json", + "create_realms_text_panel/create": "ui/realms_create.json", + "stack_item": "ui/realms_create.json", + "scroll_stack_panel": "ui/realms_create.json", + "scroll_stack_panel/name": "ui/realms_create.json", + "scroll_stack_panel/name/enter_name_panel": "ui/realms_create.json", + "scroll_stack_panel/padding_0": "ui/realms_create.json", + "scroll_stack_panel/duration": "ui/realms_create.json", + "scroll_stack_panel/duration/choose_duration_panel": "ui/realms_create.json", + "scroll_stack_panel/tier": "ui/realms_create.json", + "scroll_stack_panel/tier/choose_tier_panel": "ui/realms_create.json", + "scroll_stack_panel/toc": "ui/realms_create.json", + "scroll_stack_panel/toc/terms_and_conditions_panel": "ui/realms_create.json", + "scroll_stack_panel/padding_1": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel/padding_1": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": "ui/realms_create.json", + "scroll_stack_panel/realms_terms_info/label_panel/padding_2": "ui/realms_create.json", + "scroll_stack_panel/realms_switch_nso_info": "ui/realms_create.json", + "terms_section": "ui/realms_create.json", + "terms_section/terms_section_label": "ui/realms_create.json", + "terms_section_extra": "ui/realms_create.json", + "terms_section_extra/terms_section_label": "ui/realms_create.json", + "main_panel": "ui/realms_create.json", + "main_panel/scrolling_panel": "ui/realms_create.json", + "main_panel/padding_0": "ui/realms_create.json", + "main_panel/confirmation_panel": "ui/realms_create.json", + "main_panel/padding_1": "ui/realms_create.json", + "content": "ui/realms_create.json", + "content/main_panel": "ui/realms_create.json", + "realms_create_screen": "ui/realms_create.json", + "realms_create_content_and_factory": "ui/realms_create.json", + "realms_create_content_and_factory/realms_create_content": "ui/realms_create.json", + "realms_create_content_and_factory/popup_dialog_factory": "ui/realms_create.json", + }, + "realms_pending_invitations": { + "panel_text": "ui/realms_pending_invitations.json", + "banner_panel_base": "ui/realms_pending_invitations.json", + "banner_panel_base/background": "ui/realms_pending_invitations.json", + "banner_panel_base/indent_panel": "ui/realms_pending_invitations.json", + "banner_panel_base/indent_panel/content": "ui/realms_pending_invitations.json", + "banner_panel": "ui/realms_pending_invitations.json", + "banner_panel_hover": "ui/realms_pending_invitations.json", + "realm_invite_button": "ui/realms_pending_invitations.json", + "realm_name_label": "ui/realms_pending_invitations.json", + "realm_owner_label": "ui/realms_pending_invitations.json", + "tts_gamertag_item_info_wrapper": "ui/realms_pending_invitations.json", + "gamertag_item_info": "ui/realms_pending_invitations.json", + "gamertag_item_info/rnl": "ui/realms_pending_invitations.json", + "gamertag_item_info/rol": "ui/realms_pending_invitations.json", + "accept_button_content": "ui/realms_pending_invitations.json", + "decline_button_content": "ui/realms_pending_invitations.json", + "realm_accept_button": "ui/realms_pending_invitations.json", + "realm_decline_button": "ui/realms_pending_invitations.json", + "realm_accepted_panel": "ui/realms_pending_invitations.json", + "gamertag_item_content": "ui/realms_pending_invitations.json", + "gamertag_item_content/lb": "ui/realms_pending_invitations.json", + "gamertag_item_content/a": "ui/realms_pending_invitations.json", + "gamertag_item_content/d": "ui/realms_pending_invitations.json", + "gamertag_item_content/ap": "ui/realms_pending_invitations.json", + "gamertag_item": "ui/realms_pending_invitations.json", + "gamertag_item_grid": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content/checkbox_holding_panel": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content/hide_invites_text_panel": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_hover_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_hover_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_hover_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_hover_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_locked_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_on_locked_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_locked_state_content": "ui/realms_pending_invitations.json", + "show_friends_only_toggle_off_locked_state": "ui/realms_pending_invitations.json", + "show_friends_only_toggle": "ui/realms_pending_invitations.json", + "gamepad_helpers": "ui/realms_pending_invitations.json", + "gamepad_helpers/a": "ui/realms_pending_invitations.json", + "gamepad_helpers/b": "ui/realms_pending_invitations.json", + "no_invites_label_wrapper": "ui/realms_pending_invitations.json", + "no_invites_label": "ui/realms_pending_invitations.json", + "no_invites_label/label": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/upper_padding": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/sfop": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/gig": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/lower_padding": "ui/realms_pending_invitations.json", + "realms_pending_invitation_list/nil": "ui/realms_pending_invitations.json", + "content_panel": "ui/realms_pending_invitations.json", + "realms_pending_invitations_screen": "ui/realms_pending_invitations.json", + "realms_invitation_screen_content": "ui/realms_pending_invitations.json", + "realms_invitation_screen_content/root_panel": "ui/realms_pending_invitations.json", + "realms_invitation_screen_content/root_panel/main_panel": "ui/realms_pending_invitations.json", + "realms_invitation_screen_content/root_panel/sgh": "ui/realms_pending_invitations.json", + }, + "realms_slots": { + "vertical_padding": "ui/realms_slots_screen.json", + "horizontal_padding": "ui/realms_slots_screen.json", + "horizontal_padding_sibling_height": "ui/realms_slots_screen.json", + "realms_background": "ui/realms_slots_screen.json", + "realms_background/gradient": "ui/realms_slots_screen.json", + "realms_background/particle_1": "ui/realms_slots_screen.json", + "realms_background/particle_2": "ui/realms_slots_screen.json", + "plus": "ui/realms_slots_screen.json", + "check": "ui/realms_slots_screen.json", + "world_thumbnail": "ui/realms_slots_screen.json", + "realms_stories_icon_glyph": "ui/realms_slots_screen.json", + "realms_stories_icon_glyph/realms_stories_icon": "ui/realms_slots_screen.json", + "play_button": "ui/realms_slots_screen.json", + "edit_realm_button": "ui/realms_slots_screen.json", + "realms_feed_button": "ui/realms_slots_screen.json", + "unread_story_count_text": "ui/realms_slots_screen.json", + "unread_story_count_text_background": "ui/realms_slots_screen.json", + "unread_story_count_panel": "ui/realms_slots_screen.json", + "unread_story_count_panel/text": "ui/realms_slots_screen.json", + "unread_story_count_panel/text/background": "ui/realms_slots_screen.json", + "edit_world_button_panel": "ui/realms_slots_screen.json", + "edit_world_button_panel/edit_world_button": "ui/realms_slots_screen.json", + "edit_world_button_panel/padding": "ui/realms_slots_screen.json", + "edit_world_button_panel/activate_world_button": "ui/realms_slots_screen.json", + "world_slot_button": "ui/realms_slots_screen.json", + "world_slot_button_content": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/background": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/add_world_image_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/edit_world_button_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/foreground": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_top/check_image": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/divider_line_black": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/divider_line_white": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/add_world_text_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/world_info_panel": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/world_info_panel/background": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": "ui/realms_slots_screen.json", + "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": "ui/realms_slots_screen.json", + "world_info_stack_panel": "ui/realms_slots_screen.json", + "world_info_stack_panel/world_name_panel": "ui/realms_slots_screen.json", + "world_info_stack_panel/world_name_panel/world_name": "ui/realms_slots_screen.json", + "world_info_stack_panel/world_type_panel": "ui/realms_slots_screen.json", + "world_info_stack_panel/world_type_panel/world_type": "ui/realms_slots_screen.json", + "world_info_stack_panel/bottom_padding": "ui/realms_slots_screen.json", + "main_stack_panel": "ui/realms_slots_screen.json", + "main_stack_panel/padding_0": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/play_button": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/left_padding": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/edit_realm_button": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/right_padding": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/feed_panel_with_unread_count": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": "ui/realms_slots_screen.json", + "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": "ui/realms_slots_screen.json", + "main_stack_panel/padding_1": "ui/realms_slots_screen.json", + "main_stack_panel/text_panel_0": "ui/realms_slots_screen.json", + "main_stack_panel/text_panel_0/text": "ui/realms_slots_screen.json", + "main_stack_panel/padding_2": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/world_slot_1": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/padding_0": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/world_slot_2": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/padding_1": "ui/realms_slots_screen.json", + "main_stack_panel/worlds_panel/world_slot_3": "ui/realms_slots_screen.json", + "main_stack_panel/padding_3": "ui/realms_slots_screen.json", + "main_stack_panel/text_panel_1": "ui/realms_slots_screen.json", + "main_stack_panel/text_panel_1/text": "ui/realms_slots_screen.json", + "realms_slots_screen": "ui/realms_slots_screen.json", + "realms_slots_screen_content": "ui/realms_slots_screen.json", + "realms_slots_screen_content/background": "ui/realms_slots_screen.json", + "realms_slots_screen_content_panel": "ui/realms_slots_screen.json", + "realms_slots_screen_content_panel/main_scroll_panel": "ui/realms_slots_screen.json", + }, + "realms_settings": { + "settings_screen": "ui/realms_settings_screen.json", + "generic_section": "ui/realms_settings_screen.json", + "generic_section_wrapper": "ui/realms_settings_screen.json", + "generic_section_wrapper/generic_section": "ui/realms_settings_screen.json", + "checkbox_image": "ui/realms_settings_screen.json", + "checkbox_unchecked_state": "ui/realms_settings_screen.json", + "checkbox_checked_state": "ui/realms_settings_screen.json", + "checkbox_unchecked_hover_state": "ui/realms_settings_screen.json", + "checkbox_checked_hover_state": "ui/realms_settings_screen.json", + "checkbox_unchecked_locked_state": "ui/realms_settings_screen.json", + "checkbox_checked_locked_state": "ui/realms_settings_screen.json", + "player_count_label": "ui/realms_settings_screen.json", + "realm_duration_label": "ui/realms_settings_screen.json", + "realm_subscription_origin_label": "ui/realms_settings_screen.json", + "realm_consumable_to_subscription_info_label": "ui/realms_settings_screen.json", + "manage_subscriptions_button": "ui/realms_settings_screen.json", + "delete_realm_button": "ui/realms_settings_screen.json", + "open_realm_button": "ui/realms_settings_screen.json", + "close_realm_button": "ui/realms_settings_screen.json", + "subscriptions_section": "ui/realms_settings_screen.json", + "subscriptions_section/loading_view": "ui/realms_settings_screen.json", + "subscriptions_section/loading_failed_view": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/player_count_label": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/realm_duration_label": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/possible_store_mismatch": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/realm_subscription_origin_label": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/_0": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/delete_realm_button": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/open_realm_button": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/close_realm_button": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/_1": "ui/realms_settings_screen.json", + "subscriptions_section/loaded_view/manage_subscriptions_button": "ui/realms_settings_screen.json", + "invite_link_item_content": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_name_and_expiry_text": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_state_text": "ui/realms_settings_screen.json", + "invite_link_item_content/invite_link_item_state_text/state_text": "ui/realms_settings_screen.json", + "invite_link_item_content/spacing_gap": "ui/realms_settings_screen.json", + "invite_link_item_template": "ui/realms_settings_screen.json", + "invite_link_item_template/invite_link_item_button": "ui/realms_settings_screen.json", + "invite_links_section": "ui/realms_settings_screen.json", + "invite_links_section/loading_view": "ui/realms_settings_screen.json", + "invite_links_section/loading_failed_view": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/spacing_gap_0": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/invite_links_info": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/invite_links_grid": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/spacing_gap_1": "ui/realms_settings_screen.json", + "invite_links_section/loaded_view/add_invite_link_button": "ui/realms_settings_screen.json", + "advanced_section": "ui/realms_settings_screen.json", + "advanced_section/loading_view": "ui/realms_settings_screen.json", + "advanced_section/loading_failed_view": "ui/realms_settings_screen.json", + "advanced_section/loaded_view": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/spacing_gap_0": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/server_preference": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/set_region_content": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/changes_not_applied_panel": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/spacing_gap_1": "ui/realms_settings_screen.json", + "advanced_section/loaded_view/region_help_button": "ui/realms_settings_screen.json", + "set_region_dropdown": "ui/realms_settings_screen.json", + "region_dropdown_content": "ui/realms_settings_screen.json", + "region_dropdown_radio": "ui/realms_settings_screen.json", + "region_help_button_content": "ui/realms_settings_screen.json", + "region_help_button_content/external_link_icon": "ui/realms_settings_screen.json", + "region_help_button_content/spacing_gap_1": "ui/realms_settings_screen.json", + "region_help_button_content/help_text": "ui/realms_settings_screen.json", + "tts_focus_border": "ui/realms_settings_screen.json", + "saves_section": "ui/realms_settings_screen.json", + "saves_section/padding_saves_section_top": "ui/realms_settings_screen.json", + "saves_section/loaded_view": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_bar_header_panel": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_bar_header_panel/focus_border": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding3": "ui/realms_settings_screen.json", + "saves_section/loaded_view/save_active_world_button": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding4": "ui/realms_settings_screen.json", + "saves_section/loaded_view/active_world_info": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding5": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_warning": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_warning/warning_text_panel": "ui/realms_settings_screen.json", + "saves_section/loaded_view/storage_warning/focus_border": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding6": "ui/realms_settings_screen.json", + "saves_section/loaded_view/save_list_container": "ui/realms_settings_screen.json", + "saves_section/loaded_view/save_list_container/tab_buttons": "ui/realms_settings_screen.json", + "saves_section/loaded_view/save_list_container/tab_content_panel": "ui/realms_settings_screen.json", + "saves_section/loaded_view/padding_loaded_view_bottom": "ui/realms_settings_screen.json", + "saves_section/loaded_view/restore_info": "ui/realms_settings_screen.json", + "saves_section/loaded_view/saves_help_panel": "ui/realms_settings_screen.json", + "saves_section/loading_indicator": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/restore_info": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_text_panel": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_text_panel/loading_text": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_text_panel/loading_text_padding": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_bars": "ui/realms_settings_screen.json", + "saves_section/loading_indicator/loading_bars/progress_loading_bars": "ui/realms_settings_screen.json", + "saves_section/loading_failed_panel": "ui/realms_settings_screen.json", + "saves_section/loading_failed_panel/restore_info": "ui/realms_settings_screen.json", + "saves_section/loading_failed_panel/saves_help_panel": "ui/realms_settings_screen.json", + "saves_section/loading_failed_panel/loading_failed_message": "ui/realms_settings_screen.json", + "saves_help_panel": "ui/realms_settings_screen.json", + "saves_help_panel/padding_help_button_top": "ui/realms_settings_screen.json", + "saves_help_panel/saves_help_button": "ui/realms_settings_screen.json", + "saves_help_panel/padding_help_button_bottom": "ui/realms_settings_screen.json", + "saves_help_button_content": "ui/realms_settings_screen.json", + "saves_help_button_content/external_link_icon": "ui/realms_settings_screen.json", + "saves_help_button_content/spacing_gap_1": "ui/realms_settings_screen.json", + "saves_help_button_content/help_text": "ui/realms_settings_screen.json", + "storage_bar_label_stack_panel": "ui/realms_settings_screen.json", + "storage_bar_label_stack_panel/text_left": "ui/realms_settings_screen.json", + "storage_bar_label_stack_panel/padding": "ui/realms_settings_screen.json", + "storage_bar_label_stack_panel/text_right": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header/label_panel": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header/label_panel/heading_label": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header/padding2": "ui/realms_settings_screen.json", + "storage_bar_panel_with_header/storage_bar_panel": "ui/realms_settings_screen.json", + "realm_storage_heading_label": "ui/realms_settings_screen.json", + "storage_bar_panel": "ui/realms_settings_screen.json", + "storage_bar_panel/storage_bar_label": "ui/realms_settings_screen.json", + "storage_bar_panel/padding": "ui/realms_settings_screen.json", + "storage_bar_panel/storage_bar": "ui/realms_settings_screen.json", + "storage_bar_panel_with_tts_focus_border": "ui/realms_settings_screen.json", + "storage_bar_panel_with_tts_focus_border/storage_bar_panel": "ui/realms_settings_screen.json", + "storage_bar_panel_with_tts_focus_border/focus_border": "ui/realms_settings_screen.json", + "storage_bar": "ui/realms_settings_screen.json", + "storage_bar/empty_progress_bar_beveled": "ui/realms_settings_screen.json", + "storage_bar/storage_fill": "ui/realms_settings_screen.json", + "storage_bar/storage_bar_beveled_overlay": "ui/realms_settings_screen.json", + "active_world_info_panel": "ui/realms_settings_screen.json", + "active_world_info_panel/active_world_info_label_stack_panel": "ui/realms_settings_screen.json", + "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": "ui/realms_settings_screen.json", + "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": "ui/realms_settings_screen.json", + "active_world_info_panel/focus_border": "ui/realms_settings_screen.json", + "warning_text_panel": "ui/realms_settings_screen.json", + "warning_text_panel/warning_panel": "ui/realms_settings_screen.json", + "warning_text_panel/warning_panel/padding1": "ui/realms_settings_screen.json", + "warning_text_panel/warning_panel/warning_image": "ui/realms_settings_screen.json", + "warning_text_panel/warning_panel/padding2": "ui/realms_settings_screen.json", + "warning_text_panel/padding1": "ui/realms_settings_screen.json", + "warning_text_panel/text_label": "ui/realms_settings_screen.json", + "popup_dialog_background": "ui/realms_settings_screen.json", + "popup_dialog_label": "ui/realms_settings_screen.json", + "delete_selected_saves_button": "ui/realms_settings_screen.json", + "cancel_popup_button": "ui/realms_settings_screen.json", + "free_up_space_popup_content": "ui/realms_settings_screen.json", + "free_up_space_popup_content/common_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content/title_label": "ui/realms_settings_screen.json", + "free_up_space_popup_content/panel_indent": "ui/realms_settings_screen.json", + "free_up_space_popup_content/panel_indent/inside_header_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content/button_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content/button_panel/left_button_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content/button_panel/pad": "ui/realms_settings_screen.json", + "free_up_space_popup_content/button_panel/right_button_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_scrolling_panel": "ui/realms_settings_screen.json", + "free_up_space_text_description": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/padding_1": "ui/realms_settings_screen.json", + "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": "ui/realms_settings_screen.json", + "popup_dialog__free_up_space": "ui/realms_settings_screen.json", + "popup_dialog__free_up_space/free_up_space_popup_background": "ui/realms_settings_screen.json", + "popup_dialog__free_up_space/free_up_space_popup_content": "ui/realms_settings_screen.json", + "top_tab": "ui/realms_settings_screen.json", + "tab_content": "ui/realms_settings_screen.json", + "tab_content/text": "ui/realms_settings_screen.json", + "manual_navigation_tab": "ui/realms_settings_screen.json", + "automatic_navigation_tab": "ui/realms_settings_screen.json", + "tab_navigation_panel_layout": "ui/realms_settings_screen.json", + "tab_navigation_panel_layout/content": "ui/realms_settings_screen.json", + "button_tabs_container": "ui/realms_settings_screen.json", + "button_tabs_container/manual_navigation_tab": "ui/realms_settings_screen.json", + "button_tabs_container/automatic_navigation_tab": "ui/realms_settings_screen.json", + "tab_content_panel": "ui/realms_settings_screen.json", + "tab_content_panel/background": "ui/realms_settings_screen.json", + "tab_content_panel/background/manual_save_list": "ui/realms_settings_screen.json", + "tab_content_panel/background/automatic_save_list": "ui/realms_settings_screen.json", + "save_list_panel": "ui/realms_settings_screen.json", + "save_list_panel/save_list": "ui/realms_settings_screen.json", + "manual_save_list_panel": "ui/realms_settings_screen.json", + "manual_tab_info_panel": "ui/realms_settings_screen.json", + "manual_tab_info_panel/info_label": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/padding1": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/save_tab_info_label": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/padding2": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/stack_panel": "ui/realms_settings_screen.json", + "manual_save_list_stack_panel/padding3": "ui/realms_settings_screen.json", + "automatic_save_list_panel": "ui/realms_settings_screen.json", + "automatic_tab_info_panel": "ui/realms_settings_screen.json", + "automatic_tab_info_panel/info_label": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/padding1": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/save_tab_info_label": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/padding2": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/stack_panel": "ui/realms_settings_screen.json", + "automatic_save_list_stack_panel/padding3": "ui/realms_settings_screen.json", + "options_icon": "ui/realms_settings_screen.json", + "saves_info_accordian": "ui/realms_settings_screen.json", + "saves_info_accordian/main_content_panel": "ui/realms_settings_screen.json", + "saves_info_accordian/main_content_panel/checkbox_button": "ui/realms_settings_screen.json", + "saves_info_accordian/main_content_panel/main_item_toggle": "ui/realms_settings_screen.json", + "saves_info_accordian/main_content_panel/options_button": "ui/realms_settings_screen.json", + "saves_info_accordian/sub_content_panel": "ui/realms_settings_screen.json", + "saves_info_accordian/sub_content_panel/saves_content": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox/unchecked_control": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox/checked_control": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox/unchecked_hover_control": "ui/realms_settings_screen.json", + "saves_info_accordion_checkbox/checked__hover_control": "ui/realms_settings_screen.json", + "main_item_content": "ui/realms_settings_screen.json", + "main_item_content/date_and_name": "ui/realms_settings_screen.json", + "main_item_content/date_and_name/date_saved_label": "ui/realms_settings_screen.json", + "main_item_content/date_and_name/world_name_label": "ui/realms_settings_screen.json", + "main_item_content/time_and_size": "ui/realms_settings_screen.json", + "main_item_content/time_and_size/save_data_time_label": "ui/realms_settings_screen.json", + "main_item_content/time_and_size/save_data_size_label": "ui/realms_settings_screen.json", + "main_item_content/padding_left_down_icon": "ui/realms_settings_screen.json", + "main_item_content/down_icon": "ui/realms_settings_screen.json", + "main_item_content/down_icon/options_icon": "ui/realms_settings_screen.json", + "main_item_content/padding_right_down_icon": "ui/realms_settings_screen.json", + "option_saves_info_label": "ui/realms_settings_screen.json", + "saves_info_container": "ui/realms_settings_screen.json", + "saves_info_container/saves_info_content": "ui/realms_settings_screen.json", + "saves_info_content": "ui/realms_settings_screen.json", + "saves_info_content/version_panel": "ui/realms_settings_screen.json", + "saves_info_content/pack_header_panel": "ui/realms_settings_screen.json", + "saves_info_content/world_packs_label": "ui/realms_settings_screen.json", + "version_panel": "ui/realms_settings_screen.json", + "version_panel/left_content": "ui/realms_settings_screen.json", + "version_panel/left_content/save_version_label": "ui/realms_settings_screen.json", + "pack_header_panel": "ui/realms_settings_screen.json", + "pack_header_panel/left_content": "ui/realms_settings_screen.json", + "pack_header_panel/left_content/packs_label": "ui/realms_settings_screen.json", + "label_text": "ui/realms_settings_screen.json", + "branch_grid_item_content": "ui/realms_settings_screen.json", + "branch_grid_item_content/branch_text": "ui/realms_settings_screen.json", + "branch_grid_item_content/commit_text": "ui/realms_settings_screen.json", + "matching_item_button_content": "ui/realms_settings_screen.json", + "matching_item_button_content/branch_text": "ui/realms_settings_screen.json", + "matching_item_button_content/commit_text": "ui/realms_settings_screen.json", + "branch_item_template": "ui/realms_settings_screen.json", + "branch_item_template/branch_item_button": "ui/realms_settings_screen.json", + "branches_grid": "ui/realms_settings_screen.json", + "branch_set_panel": "ui/realms_settings_screen.json", + "branch_set_panel/set_branch_id_label": "ui/realms_settings_screen.json", + "version_filter_text_box": "ui/realms_settings_screen.json", + "branch_page_panel": "ui/realms_settings_screen.json", + "branch_page_panel/prev_button": "ui/realms_settings_screen.json", + "branch_page_panel/page_text": "ui/realms_settings_screen.json", + "branch_page_panel/next_button": "ui/realms_settings_screen.json", + "branches_panel": "ui/realms_settings_screen.json", + "branches_panel/branch_label": "ui/realms_settings_screen.json", + "branches_panel/spacing_gap_1": "ui/realms_settings_screen.json", + "branches_panel/set_branch_version_label": "ui/realms_settings_screen.json", + "branches_panel/branch_set_panel": "ui/realms_settings_screen.json", + "branches_panel/spacing_gap_2": "ui/realms_settings_screen.json", + "branches_panel/matching_version_label": "ui/realms_settings_screen.json", + "branches_panel/matching_item_button": "ui/realms_settings_screen.json", + "branches_panel/spacing_gap_3": "ui/realms_settings_screen.json", + "branches_panel/all_commits_label": "ui/realms_settings_screen.json", + "branches_panel/version_filter_text_box": "ui/realms_settings_screen.json", + "branches_panel/branches_grid": "ui/realms_settings_screen.json", + "branches_panel/spacing_gap": "ui/realms_settings_screen.json", + "branches_panel/branch_page_panel": "ui/realms_settings_screen.json", + "branch_section": "ui/realms_settings_screen.json", + "branch_section/branches_panel": "ui/realms_settings_screen.json", + "popup_dialog__backups": "ui/realms_settings_screen.json", + "popup_dialog__backups/transparent_close_button": "ui/realms_settings_screen.json", + "popup_dialog__backups/backup_restore_popup_content": "ui/realms_settings_screen.json", + "backup_restore_popup_content": "ui/realms_settings_screen.json", + "backup_restore_popup_content/popup_dialog_bg": "ui/realms_settings_screen.json", + "backup_restore_popup_content/backup_restore_popup_dialog_header": "ui/realms_settings_screen.json", + "backup_restore_popup_content/backup_restore_popup_dialog_body": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_header": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_header_text": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_body": "ui/realms_settings_screen.json", + "backup_restore_popup_dialog_body/backup_restore_loading_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_panel/backup_restore_loading_stack_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel/padding": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel/backup_restore_text_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_stack_panel/padding2": "ui/realms_settings_screen.json", + "backup_restore_text_panel": "ui/realms_settings_screen.json", + "backup_restore_text_panel/loading_text": "ui/realms_settings_screen.json", + "backup_restore_loading_bar_panel": "ui/realms_settings_screen.json", + "backup_restore_loading_bar_panel/progress_loading_bars": "ui/realms_settings_screen.json", + "backup_replace_icon": "ui/realms_settings_screen.json", + "backup_download_icon": "ui/realms_settings_screen.json", + "backup_grid_item_content": "ui/realms_settings_screen.json", + "backup_grid_item_content/backup_grid_item_icon_panel": "ui/realms_settings_screen.json", + "backup_grid_item_content/backup_grid_item_name_and_time_since": "ui/realms_settings_screen.json", + "backup_grid_item_content/backup_grid_item_date_and_time": "ui/realms_settings_screen.json", + "backup_grid_item_content/spacing_gap": "ui/realms_settings_screen.json", + "backup_grid_item_name_and_time_since": "ui/realms_settings_screen.json", + "backup_grid_item_name_and_time_since/date_text": "ui/realms_settings_screen.json", + "backup_grid_item_name_and_time_since/spacing_gap": "ui/realms_settings_screen.json", + "backup_grid_item_name_and_time_since/version_text": "ui/realms_settings_screen.json", + "backup_grid_item_date_and_time": "ui/realms_settings_screen.json", + "backup_grid_item_date_and_time/time_text": "ui/realms_settings_screen.json", + "backup_grid_item_date_and_time/spacing_gap": "ui/realms_settings_screen.json", + "backup_grid_item_date_and_time/size_text": "ui/realms_settings_screen.json", + "backup_grid_item_icon_panel": "ui/realms_settings_screen.json", + "backup_grid_item_icon_panel/backup_replace_icon": "ui/realms_settings_screen.json", + "backup_item_template": "ui/realms_settings_screen.json", + "backup_item_template/backup_item_button": "ui/realms_settings_screen.json", + "backup_item_template/download_backup_panel": "ui/realms_settings_screen.json", + "backup_item_template/download_backup_panel/download_backup_button": "ui/realms_settings_screen.json", + "download_backup_button": "ui/realms_settings_screen.json", + "backup_grid": "ui/realms_settings_screen.json", + "backup_section": "ui/realms_settings_screen.json", + "backup_section/backup_panel": "ui/realms_settings_screen.json", + "backup_info_label": "ui/realms_settings_screen.json", + "backup_network_error_label": "ui/realms_settings_screen.json", + "backup_panel": "ui/realms_settings_screen.json", + "backup_panel/spacing_gap": "ui/realms_settings_screen.json", + "backup_panel/backup_info_label": "ui/realms_settings_screen.json", + "backup_panel/spacing_gap2": "ui/realms_settings_screen.json", + "backup_panel/progress_panel": "ui/realms_settings_screen.json", + "backup_panel/progress_panel/progress_loading_bars": "ui/realms_settings_screen.json", + "backup_panel/backup_grid": "ui/realms_settings_screen.json", + "backup_panel/backup_network_error_label": "ui/realms_settings_screen.json", + "test_content": "ui/realms_settings_screen.json", + "test_content/realms_allowlist_content_panel": "ui/realms_settings_screen.json", + "test_content/gamepad_helpers": "ui/realms_settings_screen.json", + "selector_panel": "ui/realms_settings_screen.json", + "selector_panel/play_button": "ui/realms_settings_screen.json", + "selector_panel/disabled_play_button": "ui/realms_settings_screen.json", + "selector_panel/expired_play_button": "ui/realms_settings_screen.json", + "selector_panel/padding": "ui/realms_settings_screen.json", + "selector_panel/selector_group_label": "ui/realms_settings_screen.json", + "selector_panel/world_button": "ui/realms_settings_screen.json", + "selector_panel/members_button": "ui/realms_settings_screen.json", + "selector_panel/saves_button": "ui/realms_settings_screen.json", + "selector_panel/subscription_button": "ui/realms_settings_screen.json", + "selector_panel/backup_button": "ui/realms_settings_screen.json", + "selector_panel/dev_options_button": "ui/realms_settings_screen.json", + "selector_panel/invite_links_button": "ui/realms_settings_screen.json", + "selector_panel/advanced_button": "ui/realms_settings_screen.json", + "section_content_panels": "ui/realms_settings_screen.json", + "section_content_panels/world_section": "ui/realms_settings_screen.json", + "section_content_panels/players_section": "ui/realms_settings_screen.json", + "section_content_panels/subscription_section": "ui/realms_settings_screen.json", + "section_content_panels/invite_links_section": "ui/realms_settings_screen.json", + "section_content_panels/advanced_section": "ui/realms_settings_screen.json", + "section_content_panels/dev_options_section": "ui/realms_settings_screen.json", + "section_content_panels/backup_section": "ui/realms_settings_screen.json", + "section_content_panels/saves_section": "ui/realms_settings_screen.json", + "popup_dialog__save_options": "ui/realms_settings_screen.json", + "save_options_popup_content": "ui/realms_settings_screen.json", + "save_options_popup_content/restore_button": "ui/realms_settings_screen.json", + "save_options_popup_content/spacing_1": "ui/realms_settings_screen.json", + "save_options_popup_content/download_button": "ui/realms_settings_screen.json", + "save_options_popup_content/spacing_2": "ui/realms_settings_screen.json", + "save_options_popup_content/save_button_container": "ui/realms_settings_screen.json", + "save_options_popup_content/save_button_container/save_button": "ui/realms_settings_screen.json", + "save_options_popup_content/save_button_container/spacing_3": "ui/realms_settings_screen.json", + "save_options_popup_content/delete_button_container": "ui/realms_settings_screen.json", + "save_options_popup_content/delete_button_container/delete_button": "ui/realms_settings_screen.json", + "standalone_dialog_title": "ui/realms_settings_screen.json", + "standalone_dialog_title/left_padding": "ui/realms_settings_screen.json", + "standalone_dialog_title/dialog_title_label": "ui/realms_settings_screen.json", + "standalone_dialog_title/right_padding": "ui/realms_settings_screen.json", + "standalone_dialog_content": "ui/realms_settings_screen.json", + "standalone_dialog_content/dialog_title": "ui/realms_settings_screen.json", + "standalone_dialog_content/content_area": "ui/realms_settings_screen.json", + "standalone_content_area": "ui/realms_settings_screen.json", + "standalone_content_area/control": "ui/realms_settings_screen.json", + "standalone_content_area/control/scrolling_panel": "ui/realms_settings_screen.json", + "realms_settings_screen_base_no_selector_area": "ui/realms_settings_screen.json", + "screen_realm_hub_manage_members": "ui/realms_settings_screen.json", + "screen_realm_hub_invite_links": "ui/realms_settings_screen.json", + }, + "realms_allowlist": { + "spacing_gap": "ui/realms_allowlist.json", + "friends_containing_panel": "ui/realms_allowlist.json", + "friends_containing_panel/friends_panel": "ui/realms_allowlist.json", + "friends_panel": "ui/realms_allowlist.json", + "friends_panel/add_friends_and_invite_link_panel": "ui/realms_allowlist.json", + "friends_panel/option_dropdown_permissions": "ui/realms_allowlist.json", + "friends_panel/player_filter_label": "ui/realms_allowlist.json", + "friends_panel/player_filter_text_box": "ui/realms_allowlist.json", + "friends_panel/spacing_gap_members_top": "ui/realms_allowlist.json", + "friends_panel/lists": "ui/realms_allowlist.json", + "friends_panel/lists/members_label": "ui/realms_allowlist.json", + "friends_panel/lists/members_stack": "ui/realms_allowlist.json", + "friends_panel/lists/spacing_gap_members_bottom": "ui/realms_allowlist.json", + "friends_panel/lists/members_page_panel": "ui/realms_allowlist.json", + "friends_panel/lists/invited_friends_label": "ui/realms_allowlist.json", + "friends_panel/lists/invited_stack": "ui/realms_allowlist.json", + "friends_panel/lists/spacing_gap_invited_friends": "ui/realms_allowlist.json", + "friends_panel/lists/invited_friends_page_panel": "ui/realms_allowlist.json", + "friends_panel/lists/uninvited_friends_label": "ui/realms_allowlist.json", + "friends_panel/lists/uninvited_stack": "ui/realms_allowlist.json", + "friends_panel/lists/spacing_gap_uninvited_friends": "ui/realms_allowlist.json", + "friends_panel/lists/uninvited_friends_page_panel": "ui/realms_allowlist.json", + "friends_panel/lists/blocked_players_label": "ui/realms_allowlist.json", + "friends_panel/lists/blocked_players_stack": "ui/realms_allowlist.json", + "friends_panel/lists/spacing_gap_blocked_players": "ui/realms_allowlist.json", + "friends_panel/lists/blocked_players_page_panel": "ui/realms_allowlist.json", + "friends_panel/lists/no_invites_label": "ui/realms_allowlist.json", + "friends_panel/loading_friends": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": "ui/realms_allowlist.json", + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": "ui/realms_allowlist.json", + "options_icon": "ui/realms_allowlist.json", + "account_link_image": "ui/realms_allowlist.json", + "account_link_icon": "ui/realms_allowlist.json", + "account_link_icon/space_01": "ui/realms_allowlist.json", + "account_link_icon/account_link_image": "ui/realms_allowlist.json", + "account_link_icon/space_03": "ui/realms_allowlist.json", + "find_friends_button_panel": "ui/realms_allowlist.json", + "find_friends_button_panel/find_friends_button": "ui/realms_allowlist.json", + "invited_friends_label": "ui/realms_allowlist.json", + "invited_friends_label/friend_title": "ui/realms_allowlist.json", + "player_filter_label": "ui/realms_allowlist.json", + "player_filter_label/player_filter_title": "ui/realms_allowlist.json", + "members_label": "ui/realms_allowlist.json", + "members_label/friend_title": "ui/realms_allowlist.json", + "members_label/padding_panel": "ui/realms_allowlist.json", + "members_label/loading_text": "ui/realms_allowlist.json", + "blocked_players_label": "ui/realms_allowlist.json", + "blocked_players_label/friend_title": "ui/realms_allowlist.json", + "uninvited_friends_label": "ui/realms_allowlist.json", + "uninvited_friends_label/friend_title": "ui/realms_allowlist.json", + "no_invites_label": "ui/realms_allowlist.json", + "loading_friends": "ui/realms_allowlist.json", + "blocked_grid_item": "ui/realms_allowlist.json", + "blocked_grid_item/blocked_panel": "ui/realms_allowlist.json", + "factory_stack": "ui/realms_allowlist.json", + "member_factory_xbl_profile": "ui/realms_allowlist.json", + "member_factory_linked_account": "ui/realms_allowlist.json", + "invited_factory_xbl_profile": "ui/realms_allowlist.json", + "invited_factory_linked_account": "ui/realms_allowlist.json", + "uninvited_factory_xbl_profile": "ui/realms_allowlist.json", + "uninvited_factory_linked_account": "ui/realms_allowlist.json", + "blocked_factory_xbl_profile": "ui/realms_allowlist.json", + "blocked_factory_linked_account": "ui/realms_allowlist.json", + "xbl_profile_panel_factory": "ui/realms_allowlist.json", + "xbl_profile_blocked_panel_factory": "ui/realms_allowlist.json", + "linked_account_panel_factory": "ui/realms_allowlist.json", + "linked_account_blocked_panel_factory": "ui/realms_allowlist.json", + "xbl_profile_panel": "ui/realms_allowlist.json", + "xbl_profile_panel/player_status_panel": "ui/realms_allowlist.json", + "xbl_profile_panel/xbl_user_panel": "ui/realms_allowlist.json", + "xbl_profile_panel/right_controls_panel": "ui/realms_allowlist.json", + "xbl_profile_panel/progress": "ui/realms_allowlist.json", + "factory_gap_template": "ui/realms_allowlist.json", + "factory_gap_template/gapped_control": "ui/realms_allowlist.json", + "factory_gap_template/spacing1": "ui/realms_allowlist.json", + "gapped_xbl_profile_panel": "ui/realms_allowlist.json", + "gapped_linked_account_panel": "ui/realms_allowlist.json", + "gapped_blocked_xbl_profile_panel": "ui/realms_allowlist.json", + "gapped_blocked_linked_account_panel": "ui/realms_allowlist.json", + "blocked_panel": "ui/realms_allowlist.json", + "blocked_panel/xbl_user_panel": "ui/realms_allowlist.json", + "blocked_panel/unblock_button": "ui/realms_allowlist.json", + "linked_account_panel": "ui/realms_allowlist.json", + "linked_account_panel/linked_account_positioning_panel": "ui/realms_allowlist.json", + "linked_account_panel/right_controls_panel": "ui/realms_allowlist.json", + "linked_account_panel/progress": "ui/realms_allowlist.json", + "linked_account_blocked_panel": "ui/realms_allowlist.json", + "linked_account_blocked_panel/linked_account_positioning_panel": "ui/realms_allowlist.json", + "linked_account_blocked_panel/unblock_button": "ui/realms_allowlist.json", + "linked_account_blocked_panel/progress": "ui/realms_allowlist.json", + "xbl_user_panel": "ui/realms_allowlist.json", + "xbl_user_panel/spacing1": "ui/realms_allowlist.json", + "xbl_user_panel/platform_icon_positioner": "ui/realms_allowlist.json", + "xbl_user_panel/gamerpic_panel": "ui/realms_allowlist.json", + "xbl_user_panel/spacing2": "ui/realms_allowlist.json", + "xbl_user_panel/gamertag_label_panel": "ui/realms_allowlist.json", + "third_party_user_panel": "ui/realms_allowlist.json", + "third_party_user_panel/spacing1": "ui/realms_allowlist.json", + "third_party_user_panel/profile_picture": "ui/realms_allowlist.json", + "third_party_user_panel/spacing2": "ui/realms_allowlist.json", + "third_party_user_panel/third_party_profile_label": "ui/realms_allowlist.json", + "linked_profile_pictures_panel": "ui/realms_allowlist.json", + "linked_profile_pictures_panel/pp2": "ui/realms_allowlist.json", + "linked_profile_pictures_panel/account_link": "ui/realms_allowlist.json", + "linked_profile_pictures_panel/pp1": "ui/realms_allowlist.json", + "platform_profile_names": "ui/realms_allowlist.json", + "platform_profile_names/friend_grid_third_party_tag": "ui/realms_allowlist.json", + "platform_profile_names/spacer_02": "ui/realms_allowlist.json", + "platform_profile_names/friend_grid_xbl_gamertag": "ui/realms_allowlist.json", + "platform_profile_names/spacer_03": "ui/realms_allowlist.json", + "linked_user_stack_panel": "ui/realms_allowlist.json", + "linked_user_stack_panel/allow_offset_control": "ui/realms_allowlist.json", + "linked_user_stack_panel/allow_offset_control/player_status_panel": "ui/realms_allowlist.json", + "linked_user_stack_panel/platform_icon_positioner": "ui/realms_allowlist.json", + "linked_user_stack_panel/platform_icon_positioner/platform_icon": "ui/realms_allowlist.json", + "linked_user_stack_panel/spacing1": "ui/realms_allowlist.json", + "linked_user_stack_panel/profile_picture": "ui/realms_allowlist.json", + "linked_user_stack_panel/spacing2": "ui/realms_allowlist.json", + "linked_user_stack_panel/platform_names_label": "ui/realms_allowlist.json", + "linked_user_stack_panel/spacing3": "ui/realms_allowlist.json", + "horizontal_indent": "ui/realms_allowlist.json", + "vertical_indent": "ui/realms_allowlist.json", + "gamerpic_panel": "ui/realms_allowlist.json", + "gamerpic_panel/black_border": "ui/realms_allowlist.json", + "gamerpic_panel/gamer_pic": "ui/realms_allowlist.json", + "third_party_profile_pic_panel": "ui/realms_allowlist.json", + "third_party_profile_pic_panel/black_border": "ui/realms_allowlist.json", + "third_party_profile_pic_panel/third_party_profile_picture": "ui/realms_allowlist.json", + "gamertag_label_panel": "ui/realms_allowlist.json", + "gamertag_label_panel/gamertag_label": "ui/realms_allowlist.json", + "gamertag_label_panel/real_name_label": "ui/realms_allowlist.json", + "third_party_profile_label": "ui/realms_allowlist.json", + "third_party_profile_label/profile_name_label": "ui/realms_allowlist.json", + "panel_text": "ui/realms_allowlist.json", + "gamertag_label": "ui/realms_allowlist.json", + "third_party_profile_name_label": "ui/realms_allowlist.json", + "real_name_label": "ui/realms_allowlist.json", + "right_settings_panel": "ui/realms_allowlist.json", + "right_settings_panel/member_settings": "ui/realms_allowlist.json", + "member_settings": "ui/realms_allowlist.json", + "member_settings/minus_button": "ui/realms_allowlist.json", + "member_settings/horizontal_space": "ui/realms_allowlist.json", + "member_settings/member_permissions": "ui/realms_allowlist.json", + "member_settings/op_deop_button": "ui/realms_allowlist.json", + "right_controls_panel": "ui/realms_allowlist.json", + "right_controls_panel/right_settings_panel": "ui/realms_allowlist.json", + "right_controls_panel/uninvited_friends_invite_button": "ui/realms_allowlist.json", + "player_status_panel": "ui/realms_allowlist.json", + "player_status_panel/player_online_icon": "ui/realms_allowlist.json", + "player_status_panel/player_offline_icon": "ui/realms_allowlist.json", + "permissions_dropdown": "ui/realms_allowlist.json", + "permissions_dropdown/vertical_space": "ui/realms_allowlist.json", + "permissions_dropdown/option_dropdown_permissions": "ui/realms_allowlist.json", + "invite_button": "ui/realms_allowlist.json", + "minus_button": "ui/realms_allowlist.json", + "unblock_label": "ui/realms_allowlist.json", + "unblock_button": "ui/realms_allowlist.json", + "op_deop_button": "ui/realms_allowlist.json", + "find_friends_button": "ui/realms_allowlist.json", + "black_border": "ui/realms_allowlist.json", + "gamer_pic": "ui/realms_allowlist.json", + "third_party_profile_picture": "ui/realms_allowlist.json", + "player_online_icon": "ui/realms_allowlist.json", + "player_offline_icon": "ui/realms_allowlist.json", + "plus_icon": "ui/realms_allowlist.json", + "more_icon": "ui/realms_allowlist.json", + "share_icon": "ui/realms_allowlist.json", + "minus_icon": "ui/realms_allowlist.json", + "op_icon": "ui/realms_allowlist.json", + "deop_icon": "ui/realms_allowlist.json", + "player_filter_text_box": "ui/realms_allowlist.json", + "page_panel": "ui/realms_allowlist.json", + "page_panel/prev_button": "ui/realms_allowlist.json", + "page_panel/page_text": "ui/realms_allowlist.json", + "page_panel/next_button": "ui/realms_allowlist.json", + "realms_allowlist_panel_content": "ui/realms_allowlist.json", + "realms_allowlist_content_panel": "ui/realms_allowlist.json", + "realms_allowlist_content_panel_children": "ui/realms_allowlist.json", + "realms_allowlist_content_panel_children/realms_allowlist_panel_content": "ui/realms_allowlist.json", + "realms_allowlist_content_panel_children/done_button": "ui/realms_allowlist.json", + "realms_allowlist_screen": "ui/realms_allowlist.json", + "realms_allowlist_content": "ui/realms_allowlist.json", + "realms_allowlist_content/root_panel": "ui/realms_allowlist.json", + "realms_allowlist_content/root_panel/realms_allowlist_content_panel": "ui/realms_allowlist.json", + "transparent_close_button": "ui/realms_allowlist.json", + }, + "realms_invite_link_settings": { + "generic_section_wrapper": "ui/realms_invite_link_settings_screen.json", + "generic_section_wrapper/generic_section": "ui/realms_invite_link_settings_screen.json", + "link_banner": "ui/realms_invite_link_settings_screen.json", + "clipboard_icon": "ui/realms_invite_link_settings_screen.json", + "description_wrap": "ui/realms_invite_link_settings_screen.json", + "description_wrap/description": "ui/realms_invite_link_settings_screen.json", + "invite_link_url": "ui/realms_invite_link_settings_screen.json", + "link_panel": "ui/realms_invite_link_settings_screen.json", + "link_panel/invite_link_url_wrapper": "ui/realms_invite_link_settings_screen.json", + "link_panel/link_copy_container": "ui/realms_invite_link_settings_screen.json", + "link_panel/link_copy_container/link_copy": "ui/realms_invite_link_settings_screen.json", + "general_content": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", + "general_content/invite_link_title": "ui/realms_invite_link_settings_screen.json", + "general_content/invite_link_description": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_1": "ui/realms_invite_link_settings_screen.json", + "general_content/link_panel": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_2": "ui/realms_invite_link_settings_screen.json", + "general_content/activate_link_toggle": "ui/realms_invite_link_settings_screen.json", + "general_content/activate_link_description": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_3": "ui/realms_invite_link_settings_screen.json", + "general_content/infinite_link_toggle": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_4": "ui/realms_invite_link_settings_screen.json", + "general_content/share_link_title": "ui/realms_invite_link_settings_screen.json", + "general_content/share_link_description": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_5": "ui/realms_invite_link_settings_screen.json", + "general_content/share_link_button": "ui/realms_invite_link_settings_screen.json", + "general_content/spacing_gap_6": "ui/realms_invite_link_settings_screen.json", + "general_content/remove_link_title": "ui/realms_invite_link_settings_screen.json", + "general_content/remove_invite_link_button": "ui/realms_invite_link_settings_screen.json", + "invite_link_expiration": "ui/realms_invite_link_settings_screen.json", + "advanced_content": "ui/realms_invite_link_settings_screen.json", + "advanced_content/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiry_title": "ui/realms_invite_link_settings_screen.json", + "advanced_content/spacing_gap_1": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiration_description": "ui/realms_invite_link_settings_screen.json", + "advanced_content/spacing_gap_2": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiration_panel": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiration_panel/invite_link_expiration_wrapper": "ui/realms_invite_link_settings_screen.json", + "advanced_content/expiration_dropdown": "ui/realms_invite_link_settings_screen.json", + "expiration_dropdown_content": "ui/realms_invite_link_settings_screen.json", + "selector_panel": "ui/realms_invite_link_settings_screen.json", + "selector_panel/spacing_gap_0": "ui/realms_invite_link_settings_screen.json", + "selector_panel/general_button": "ui/realms_invite_link_settings_screen.json", + "selector_panel/advanced_button": "ui/realms_invite_link_settings_screen.json", + "section_content_panels": "ui/realms_invite_link_settings_screen.json", + "section_content_panels/general_section": "ui/realms_invite_link_settings_screen.json", + "section_content_panels/advanced_section": "ui/realms_invite_link_settings_screen.json", + }, + "realms_plus_ended": { + "subscription_ended_screen": "ui/realms_plus_ended_screen.json", + "subscription_ended_screen_content": "ui/realms_plus_ended_screen.json", + "subscription_ended_screen_content/root_panel": "ui/realms_plus_ended_screen.json", + "subscription_ended_screen_content/root_panel/gamepad_helpers": "ui/realms_plus_ended_screen.json", + "subscription_ended_screen_content/root_panel/main_panel": "ui/realms_plus_ended_screen.json", + "main_panel": "ui/realms_plus_ended_screen.json", + "main_panel/dialog": "ui/realms_plus_ended_screen.json", + "gamepad_helpers": "ui/realms_plus_ended_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/realms_plus_ended_screen.json", + "content_stack_panel": "ui/realms_plus_ended_screen.json", + "content_stack_panel/pad_0": "ui/realms_plus_ended_screen.json", + "content_stack_panel/main_content": "ui/realms_plus_ended_screen.json", + "content_stack_panel/pad_1": "ui/realms_plus_ended_screen.json", + "content_stack_panel/button_center_panel": "ui/realms_plus_ended_screen.json", + "content_stack_panel/button_center_panel/buttons": "ui/realms_plus_ended_screen.json", + "content_stack_panel/pad_2": "ui/realms_plus_ended_screen.json", + "main_content_panel": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel/image_panel": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel/pad": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel/text_panel": "ui/realms_plus_ended_screen.json", + "main_content_panel/main_content_stack_panel/text_panel/text": "ui/realms_plus_ended_screen.json", + "buttons_panel": "ui/realms_plus_ended_screen.json", + "buttons_panel/more_info_button": "ui/realms_plus_ended_screen.json", + "buttons_panel/pad": "ui/realms_plus_ended_screen.json", + "buttons_panel/renew_subscription_button": "ui/realms_plus_ended_screen.json", + }, + "realmsPlus": { + "realms_plus_pdp_screen": "ui/realmsPlus_screen.json", + "realms_plus_upgrade_notice_screen": "ui/realmsPlus_screen.json", + "purple_background": "ui/realmsPlus_screen.json", + "purple_background/bottom_left_particles": "ui/realmsPlus_screen.json", + "purple_background/top_right_particles": "ui/realmsPlus_screen.json", + "main_background": "ui/realmsPlus_screen.json", + "main_background/dark_blue": "ui/realmsPlus_screen.json", + "main_background/grey_gradient": "ui/realmsPlus_screen.json", + "dark_blue_background": "ui/realmsPlus_screen.json", + "gradient_image_stack": "ui/realmsPlus_screen.json", + "gradient_image_stack/solid_pink": "ui/realmsPlus_screen.json", + "gradient_image_stack/gradient": "ui/realmsPlus_screen.json", + "gradient_content_panel": "ui/realmsPlus_screen.json", + "gradient_content_panel/gradient": "ui/realmsPlus_screen.json", + "gradient_content_panel/content_panel": "ui/realmsPlus_screen.json", + "realmsPlus_screen_main_panel": "ui/realmsPlus_screen.json", + "realmsPlus_main_panel": "ui/realmsPlus_screen.json", + "realmsPlus_main_panel/root_panel": "ui/realmsPlus_screen.json", + "realmsPlus_main_panel/root_panel/main_panel": "ui/realmsPlus_screen.json", + "realmsPlus_main_panel/popup_dialog_factory": "ui/realmsPlus_screen.json", + "dialog_content": "ui/realmsPlus_screen.json", + "dialog_content/selector_area": "ui/realmsPlus_screen.json", + "dialog_content/content_area": "ui/realmsPlus_screen.json", + "dialog_content/left_right_pane_divider": "ui/realmsPlus_screen.json", + "selector_area": "ui/realmsPlus_screen.json", + "selector_area/scrolling_panel": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/realmsPlus_toggle": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/content_toggle": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/faq_toggle": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/toggle_section_divider": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/buy_now_toggle": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/xbl_btn_panel": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": "ui/realmsPlus_screen.json", + "scrollable_selector_area_content/focus_reset_input_panel": "ui/realmsPlus_screen.json", + "section_toggle_base": "ui/realmsPlus_screen.json", + "tab_button_text": "ui/realmsPlus_screen.json", + "toggle_base": "ui/realmsPlus_screen.json", + "toggle_base/toggle": "ui/realmsPlus_screen.json", + "toggle_base/padding": "ui/realmsPlus_screen.json", + "realmsPlus_toggle": "ui/realmsPlus_screen.json", + "content_toggle": "ui/realmsPlus_screen.json", + "faq_toggle": "ui/realmsPlus_screen.json", + "buy_now_toggle": "ui/realmsPlus_screen.json", + "left_right_pane_divider": "ui/realmsPlus_screen.json", + "content_area": "ui/realmsPlus_screen.json", + "content_area/control": "ui/realmsPlus_screen.json", + "content_area/control/scrolling_panel": "ui/realmsPlus_screen.json", + "section_content_panels": "ui/realmsPlus_screen.json", + "content_section_top_padding": "ui/realmsPlus_screen.json", + "section_base": "ui/realmsPlus_screen.json", + "buy_now_content_section": "ui/realmsPlus_screen.json", + "buy_now_content_section/content_section_top_padding": "ui/realmsPlus_screen.json", + "buy_now_content_section/content": "ui/realmsPlus_screen.json", + "markdown_background_animated": "ui/realmsPlus_screen.json", + "markdown_background_animated/realms_banner": "ui/realmsPlus_screen.json", + "markdown_background_animated/realms_plus_normal": "ui/realmsPlus_screen.json", + "markdown_background_animated/realms_plus_hover": "ui/realmsPlus_screen.json", + "markdown_background": "ui/realmsPlus_screen.json", + "markdown_background/banner_panel": "ui/realmsPlus_screen.json", + "markdown_background/banner_panel/banner": "ui/realmsPlus_screen.json", + "markdown_background/banner_panel/banner/banner_stack_panel": "ui/realmsPlus_screen.json", + "markdown_background/banner_panel/banner/banner_stack_panel/0": "ui/realmsPlus_screen.json", + "markdown_background/triangle_panel": "ui/realmsPlus_screen.json", + "markdown_background/triangle_panel/triangle": "ui/realmsPlus_screen.json", + "empty_label": "ui/realmsPlus_screen.json", + "full_width_section_divider": "ui/realmsPlus_screen.json", + }, + "realmsPlus_content": { + "realmsPlus_content_section": "ui/realmsPlus_sections/content_section.json", + "realmsPlus_content_section/content_section_top_padding": "ui/realmsPlus_sections/content_section.json", + "realmsPlus_content_section/content_sections": "ui/realmsPlus_sections/content_section.json", + "realmsPlus_content_section/content_section_bottom_padding": "ui/realmsPlus_sections/content_section.json", + "content_pack_types_section": "ui/realmsPlus_sections/content_section.json", + "content_pack_types_section/includes_marketplace_pass_wrapper": "ui/realmsPlus_sections/content_section.json", + "content_pack_types_section/padding_contentSub": "ui/realmsPlus_sections/content_section.json", + "content_pack_types_section/pack_types_wrapper": "ui/realmsPlus_sections/content_section.json", + "content_packs_included_section": "ui/realmsPlus_sections/content_section.json", + "content_packs_included_section/popular_packs": "ui/realmsPlus_sections/content_section.json", + "content_packs_included_section/section_divider": "ui/realmsPlus_sections/content_section.json", + "persona_row": "ui/realmsPlus_sections/content_section.json", + "persona_row/persona": "ui/realmsPlus_sections/content_section.json", + "worlds_row": "ui/realmsPlus_sections/content_section.json", + "pack_types": "ui/realmsPlus_sections/content_section.json", + "pack_types/middle_row": "ui/realmsPlus_sections/content_section.json", + "pack_types/middle_row/worlds_contentSub": "ui/realmsPlus_sections/content_section.json", + "pack_types/middle_row/textures": "ui/realmsPlus_sections/content_section.json", + "pack_types/bottom_row": "ui/realmsPlus_sections/content_section.json", + "pack_types/bottom_row/skins_persona_contentSub": "ui/realmsPlus_sections/content_section.json", + "pack_types/bottom_row/mashups": "ui/realmsPlus_sections/content_section.json", + "pack_types/bottom_contentSub": "ui/realmsPlus_sections/content_section.json", + "skins": "ui/realmsPlus_sections/content_section.json", + "friends_get_access": "ui/realmsPlus_sections/content_section.json", + "pack_type_row_panel": "ui/realmsPlus_sections/content_section.json", + "pack_type_description": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/image_nesting_panel": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/image_nesting_panel/texture": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/padding_0": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/description_nesting_panel": "ui/realmsPlus_sections/content_section.json", + "pack_type_description/description_nesting_panel/description_label": "ui/realmsPlus_sections/content_section.json", + "popular_packs": "ui/realmsPlus_sections/content_section.json", + "popular_packs/padding_0": "ui/realmsPlus_sections/content_section.json", + "popular_packs/pack_grid": "ui/realmsPlus_sections/content_section.json", + "popular_packs/view_all_packs_panel": "ui/realmsPlus_sections/content_section.json", + "popular_packs/view_all_packs_panel/view_all_packs_button": "ui/realmsPlus_sections/content_section.json", + "popular_packs/padding_1": "ui/realmsPlus_sections/content_section.json", + "popular_packs/view_character_creator_items_button": "ui/realmsPlus_sections/content_section.json", + "popular_packs/padding_2": "ui/realmsPlus_sections/content_section.json", + "popular_packs_label": "ui/realmsPlus_sections/content_section.json", + "includes_marketplace_pass": "ui/realmsPlus_sections/content_section.json", + "includes_marketplace_pass_label": "ui/realmsPlus_sections/content_section.json", + "packs_collection": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_1": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_1/pack_image_grid_item_0": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_1/padding": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_1/pack_image_grid_item_1": "ui/realmsPlus_sections/content_section.json", + "packs_collection/padding_1": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_2": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_2/pack_image_grid_item_0": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_2/padding": "ui/realmsPlus_sections/content_section.json", + "packs_collection/row_2/pack_image_grid_item_1": "ui/realmsPlus_sections/content_section.json", + "packs_collection/padding_2": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/bg": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/bg/featured_key_art": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/bg/progress_loading": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/offer_button": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/offer_button/default": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/offer_button/hover": "ui/realmsPlus_sections/content_section.json", + "pack_image_grid_item/offer_button/pressed": "ui/realmsPlus_sections/content_section.json", + }, + "realmsPlus_faq": { + "faq_image_section": "ui/realmsPlus_sections/faq_section.json", + "faq_image_local": "ui/realmsPlus_sections/faq_section.json", + "faq_image_type": "ui/realmsPlus_sections/faq_section.json", + "faq_image_type/0": "ui/realmsPlus_sections/faq_section.json", + "faq_text_section_body": "ui/realmsPlus_sections/faq_section.json", + "faq_text_question": "ui/realmsPlus_sections/faq_section.json", + "faq_text_section": "ui/realmsPlus_sections/faq_section.json", + "faq_text_section/faq_text_question": "ui/realmsPlus_sections/faq_section.json", + "faq_text_section/faq_text_answer": "ui/realmsPlus_sections/faq_section.json", + "faq_price_bound_text_section": "ui/realmsPlus_sections/faq_section.json", + "faq_price_bound_text_section/faq_text_question": "ui/realmsPlus_sections/faq_section.json", + "faq_price_bound_text_section/faq_text_answer": "ui/realmsPlus_sections/faq_section.json", + "faq_question_body": "ui/realmsPlus_sections/faq_section.json", + "faq_question_body/0": "ui/realmsPlus_sections/faq_section.json", + "faq_question_body_stack": "ui/realmsPlus_sections/faq_section.json", + "faq_question_body_horz_padding": "ui/realmsPlus_sections/faq_section.json", + "image_left_faq_question_body": "ui/realmsPlus_sections/faq_section.json", + "image_right_faq_question_body": "ui/realmsPlus_sections/faq_section.json", + "image_left_faq_question_body_flip": "ui/realmsPlus_sections/faq_section.json", + "image_left_faq_question_body_flip/faq_question_left": "ui/realmsPlus_sections/faq_section.json", + "image_right_faq_question_body_flip": "ui/realmsPlus_sections/faq_section.json", + "image_right_faq_question_body_flip/faq_question_right": "ui/realmsPlus_sections/faq_section.json", + "image_left_faq_price_bound": "ui/realmsPlus_sections/faq_section.json", + "faq_section_header_space": "ui/realmsPlus_sections/faq_section.json", + "faq_section_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/content_section_top_padding_1": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_header": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/content_section_top_padding_2": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_1": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_1_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_2": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_2_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_3": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_3_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_4": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_4_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_5": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_5_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_6": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_6_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_7": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_7_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_8": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_8_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_9": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_9_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_10": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_10_divider": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/faq_question_11": "ui/realmsPlus_sections/faq_section.json", + "faq_content_section/content_section_top_padding_3": "ui/realmsPlus_sections/faq_section.json", + }, + "realmsPlus_landing": { + "landing_content_section": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/title_stack": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/divider_panel": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/divider_panel/section_divider": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/info_stack": "ui/realmsPlus_sections/landing_section.json", + "landing_content_section/landing_content/vertical_small_spacer_2": "ui/realmsPlus_sections/landing_section.json", + "horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "vertical_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "vertical_med_spacer": "ui/realmsPlus_sections/landing_section.json", + "vertical_large_spacer": "ui/realmsPlus_sections/landing_section.json", + "title_stack": "ui/realmsPlus_sections/landing_section.json", + "title_stack/title_image_panel": "ui/realmsPlus_sections/landing_section.json", + "title_stack/gradient_panel": "ui/realmsPlus_sections/landing_section.json", + "title_stack/gradient_panel/label_with_gradient_wrapper": "ui/realmsPlus_sections/landing_section.json", + "title_stack/vertical_space": "ui/realmsPlus_sections/landing_section.json", + "title_stack/action_button": "ui/realmsPlus_sections/landing_section.json", + "title_stack/sign_in_button": "ui/realmsPlus_sections/landing_section.json", + "title_stack/vertical_space2": "ui/realmsPlus_sections/landing_section.json", + "label_with_gradient": "ui/realmsPlus_sections/landing_section.json", + "free_trial_text": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_container": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_container/title_image": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_container/title_art_image": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_pre_release_container": "ui/realmsPlus_sections/landing_section.json", + "title_image_panel/title_image_pre_release_container/title_image_pre_release": "ui/realmsPlus_sections/landing_section.json", + "info_stack": "ui/realmsPlus_sections/landing_section.json", + "info_stack/info_stack": "ui/realmsPlus_sections/landing_section.json", + "info_stack/info_stack/info_description_stack_retail": "ui/realmsPlus_sections/landing_section.json", + "info_stack/info_stack/info_description_stack_preview": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/vertical_med_spacer0": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/divider_centering_panel": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/divider_centering_panel/divider": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/vertical_med_spacer1": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_recently_added": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/vertical_med_spacer2": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/divider_centering_panel2": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/divider_centering_panel2/divider2": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/vertical_med_spacer3": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_2": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_prerelease": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_prerelease/info_section_stack": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": "ui/realmsPlus_sections/landing_section.json", + "info_section_stack": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/info_text_bullet_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_1/info_text_bullet_3": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/recently_added_header": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_contentSub": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/vertical_small_spacer_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_recently_added/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_3": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/vertical_small_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_4": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_notFreeTrial": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/info_text_unbulletted_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/vertical_large_spacer_0": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/info_text_unbulletted_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/vertical_large_spacer_1": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/info_text_unbulletted_3": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/vertical_large_spacer_2": "ui/realmsPlus_sections/landing_section.json", + "info_section_text_3/info_text_unbulletted_4": "ui/realmsPlus_sections/landing_section.json", + "info_section_text": "ui/realmsPlus_sections/landing_section.json", + "info_text_bullet": "ui/realmsPlus_sections/landing_section.json", + "info_text_bullet/info_text_bullet_bullet": "ui/realmsPlus_sections/landing_section.json", + "info_text_bullet/info_text_bullet_body": "ui/realmsPlus_sections/landing_section.json", + "info_text_unbulletted": "ui/realmsPlus_sections/landing_section.json", + "info_text_unbulletted/info_text_bullet_body": "ui/realmsPlus_sections/landing_section.json", + }, + "realmsPlus_buy": { + "buy_now_content": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/description_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/realm_name": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/terms_and_conditions": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/padding_2": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/buy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/padding_3": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_now_content/platform_terms_factory": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_text_section": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_text_section/text_description_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_text_section/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "content_description/content_description_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "trial_image_and_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "trial_image_and_description/realms_image": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "trial_image_and_description/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "trial_image_and_description/description_text_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "title_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "title_with_gradient": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_stack/title_with_gradient_wrapper": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_stack/padding": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "description_stack/image_and_description": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realm_name_stack": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realm_name_stack/realm_name_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realm_name_stack/padding_0": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "realm_name_stack/realm_name_text_box": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions/terms_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/name_label": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/banner_fill": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "button_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "view_terms_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "privacy_policy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_panel/buy_button": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_content": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_content/button_chevron_panel": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_content/button_chevron_panel/buy_button_chevron": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + "buy_button_content/button_text": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", + }, + "realmsPlus_packs": { + "view_all_packs_screen": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "view_packs_screen_content": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "view_packs_screen_content/main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "realmsPlus_view_packs_screen_main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "main_panel": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "main_panel/offers": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "main_panel/progress_loading": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "scrolling_content_stack": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "scrolling_content_stack/padding_0": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + "scrolling_content_stack/store_factory": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", + }, + "realmsPlus_purchase_warning": { + "realmsPlus_purchase_warning_screen": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "purchase_warning_screen_content": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "purchase_warning_screen_content/main_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/art_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/art_panel/art": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/description_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/description_panel/description_text": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_button_panel": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_button_panel/back_button": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_button_panel/padding": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + "warning_modal_button_panel/continue_button": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", + }, + "realms_stories_transition": { + "realms_stories_transition_screen": "ui/realms_stories_transition_screen.json", + }, + "redstone": { + "item_dropper_label": "ui/redstone_screen.json", + "dispenser_label": "ui/redstone_screen.json", + "crafter_label": "ui/redstone_screen.json", + "dropper_label": "ui/redstone_screen.json", + "hopper_label": "ui/redstone_screen.json", + "redstone_input_grid": "ui/redstone_screen.json", + "redstone_panel_top_half": "ui/redstone_screen.json", + "redstone_panel_top_half/redstone_input_grid": "ui/redstone_screen.json", + "panel": "ui/redstone_screen.json", + "panel/container_gamepad_helpers": "ui/redstone_screen.json", + "panel/selected_item_details_factory": "ui/redstone_screen.json", + "panel/item_lock_notification_factory": "ui/redstone_screen.json", + "panel/root_panel": "ui/redstone_screen.json", + "panel/root_panel/common_panel": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory/red_panel": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory/red_bottom_half": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory/hotbar_grid": "ui/redstone_screen.json", + "panel/root_panel/redstone_screen_inventory/red_hold_icon": "ui/redstone_screen.json", + "panel/root_panel/red_icon": "ui/redstone_screen.json", + "panel/root_panel/gamepad_cursor": "ui/redstone_screen.json", + "panel/flying_item_renderer": "ui/redstone_screen.json", + "crafter_input_grid": "ui/redstone_screen.json", + "cell_image": "ui/redstone_screen.json", + "crafter_highlight_slot": "ui/redstone_screen.json", + "crafter_container_slot_button_prototype": "ui/redstone_screen.json", + "crafter_highlight_slot_panel": "ui/redstone_screen.json", + "crafter_highlight_slot_panel/highlight": "ui/redstone_screen.json", + "crafter_highlight_slot_panel/highlight/hover_text": "ui/redstone_screen.json", + "crafter_highlight_slot_panel/white_border": "ui/redstone_screen.json", + "crafter_enabled_slot_template": "ui/redstone_screen.json", + "crafter_disabled_slot": "ui/redstone_screen.json", + "crafter_disabled_slot/default": "ui/redstone_screen.json", + "crafter_disabled_slot/hover": "ui/redstone_screen.json", + "crafter_disabled_slot/pressed": "ui/redstone_screen.json", + "output_slot_hover_info": "ui/redstone_screen.json", + "output_slot_hover_info/hover": "ui/redstone_screen.json", + "output_slot_hover_info/output_slot": "ui/redstone_screen.json", + "output_slot_hover_info/output_slot_border": "ui/redstone_screen.json", + "output_slot_hover_info/output_count": "ui/redstone_screen.json", + "panel_crafter": "ui/redstone_screen.json", + "panel_crafter/container_gamepad_helpers": "ui/redstone_screen.json", + "panel_crafter/selected_item_details_factory": "ui/redstone_screen.json", + "panel_crafter/item_lock_notification_factory": "ui/redstone_screen.json", + "panel_crafter/root_panel": "ui/redstone_screen.json", + "panel_crafter/root_panel/common_panel": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_0_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_1_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_2_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_3_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_4_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_5_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_6_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_7_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/disabled_slot_8_button": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": "ui/redstone_screen.json", + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": "ui/redstone_screen.json", + "panel_crafter/root_panel/red_icon": "ui/redstone_screen.json", + "panel_crafter/root_panel/gamepad_cursor": "ui/redstone_screen.json", + "panel_crafter/flying_item_renderer": "ui/redstone_screen.json", + "hopper_screen": "ui/redstone_screen.json", + "dispenser_screen": "ui/redstone_screen.json", + "crafter_screen": "ui/redstone_screen.json", + "dropper_screen": "ui/redstone_screen.json", + }, + "resource_packs": { + "black_image": "ui/resource_packs_screen.json", + "gray_image": "ui/resource_packs_screen.json", + "yellow_image": "ui/resource_packs_screen.json", + "white_image": "ui/resource_packs_screen.json", + "white_image/border": "ui/resource_packs_screen.json", + "icon_image": "ui/resource_packs_screen.json", + "resource_packs_toggle_button_control": "ui/resource_packs_screen.json", + "resource_packs_toggle_button_control/icon_border": "ui/resource_packs_screen.json", + "resource_packs_toggle_button_control/cycling_icon": "ui/resource_packs_screen.json", + "resource_packs_toggle_button_control/tab_button_text": "ui/resource_packs_screen.json", + "resource_packs_section_toggle_base": "ui/resource_packs_screen.json", + "selected_icon_image": "ui/resource_packs_screen.json", + "available_icon_image": "ui/resource_packs_screen.json", + "realms_icon_image": "ui/resource_packs_screen.json", + "unowned_icon_image": "ui/resource_packs_screen.json", + "invalid_icon_image": "ui/resource_packs_screen.json", + "minus_image": "ui/resource_packs_screen.json", + "plus_image": "ui/resource_packs_screen.json", + "minus_text": "ui/resource_packs_screen.json", + "plus_text": "ui/resource_packs_screen.json", + "store_text": "ui/resource_packs_screen.json", + "error_image": "ui/resource_packs_screen.json", + "error_image_hover": "ui/resource_packs_screen.json", + "error_image_panel": "ui/resource_packs_screen.json", + "error_image_panel/default": "ui/resource_packs_screen.json", + "error_image_panel/hover": "ui/resource_packs_screen.json", + "warning_image": "ui/resource_packs_screen.json", + "warning_image_hover": "ui/resource_packs_screen.json", + "warning_panel": "ui/resource_packs_screen.json", + "warning_panel/default": "ui/resource_packs_screen.json", + "warning_panel/hover": "ui/resource_packs_screen.json", + "no_error_image": "ui/resource_packs_screen.json", + "no_error_image_hover": "ui/resource_packs_screen.json", + "no_error_panel": "ui/resource_packs_screen.json", + "no_error_panel/default": "ui/resource_packs_screen.json", + "no_error_panel/hover": "ui/resource_packs_screen.json", + "up_arrow_image": "ui/resource_packs_screen.json", + "down_arrow_image": "ui/resource_packs_screen.json", + "up_arrow_image_hover": "ui/resource_packs_screen.json", + "down_arrow_image_hover": "ui/resource_packs_screen.json", + "up_arrow_panel": "ui/resource_packs_screen.json", + "up_arrow_panel/default": "ui/resource_packs_screen.json", + "up_arrow_panel/hover": "ui/resource_packs_screen.json", + "up_arrow_wrapper": "ui/resource_packs_screen.json", + "up_arrow_wrapper/down_arrow": "ui/resource_packs_screen.json", + "up_arrow_wrapper/divider_right": "ui/resource_packs_screen.json", + "down_arrow_panel": "ui/resource_packs_screen.json", + "down_arrow_panel/default": "ui/resource_packs_screen.json", + "down_arrow_panel/hover": "ui/resource_packs_screen.json", + "down_arrow_wrapper": "ui/resource_packs_screen.json", + "down_arrow_wrapper/down_arrow": "ui/resource_packs_screen.json", + "down_arrow_wrapper/divider_right": "ui/resource_packs_screen.json", + "progress_loading_bars": "ui/resource_packs_screen.json", + "warning_image_wrapper": "ui/resource_packs_screen.json", + "warning_image_wrapper/error_image": "ui/resource_packs_screen.json", + "warning_image_wrapper/warning_image": "ui/resource_packs_screen.json", + "warning_image_wrapper/no_error_panel": "ui/resource_packs_screen.json", + "warning_image_wrapper/progress_loading_bars": "ui/resource_packs_screen.json", + "tooltip_image_wrapper": "ui/resource_packs_screen.json", + "tooltip_image_wrapper/error_image": "ui/resource_packs_screen.json", + "tooltip_image_wrapper/warning_image": "ui/resource_packs_screen.json", + "options_image": "ui/resource_packs_screen.json", + "options_image_hover": "ui/resource_packs_screen.json", + "options_image_panel": "ui/resource_packs_screen.json", + "options_image_panel/default": "ui/resource_packs_screen.json", + "options_image_panel/hover": "ui/resource_packs_screen.json", + "options_image_panel/hover/image": "ui/resource_packs_screen.json", + "options_image_panel/hover/border": "ui/resource_packs_screen.json", + "options_wrapper": "ui/resource_packs_screen.json", + "options_wrapper/options": "ui/resource_packs_screen.json", + "options_wrapper/divider_right": "ui/resource_packs_screen.json", + "common_pack_button": "ui/resource_packs_screen.json", + "available_text_panel": "ui/resource_packs_screen.json", + "available_text_panel/name_panel": "ui/resource_packs_screen.json", + "available_text_panel/name_panel/available_pack_name_label": "ui/resource_packs_screen.json", + "available_text_panel/name_panel/available_file_size_label": "ui/resource_packs_screen.json", + "available_text_panel/full_panel": "ui/resource_packs_screen.json", + "available_text_panel/full_panel/description_panel": "ui/resource_packs_screen.json", + "available_text_panel/full_panel/description_panel/available_pack_description_label": "ui/resource_packs_screen.json", + "realms_text_panel": "ui/resource_packs_screen.json", + "realms_text_panel/name_panel": "ui/resource_packs_screen.json", + "realms_text_panel/name_panel/realms_pack_name_label": "ui/resource_packs_screen.json", + "realms_text_panel/name_panel/realms_file_size_label": "ui/resource_packs_screen.json", + "realms_text_panel/description_panel": "ui/resource_packs_screen.json", + "realms_text_panel/description_panel/realms_pack_description_label": "ui/resource_packs_screen.json", + "unowned_text_panel": "ui/resource_packs_screen.json", + "unowned_text_panel/name_panel": "ui/resource_packs_screen.json", + "unowned_text_panel/name_panel/unowned_pack_name_label": "ui/resource_packs_screen.json", + "unowned_text_panel/name_panel/unowned_file_size_label": "ui/resource_packs_screen.json", + "unowned_text_panel/description_panel": "ui/resource_packs_screen.json", + "unowned_text_panel/description_panel/unowned_pack_description_label": "ui/resource_packs_screen.json", + "selected_text_panel": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel/selected_pack_name_label": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel/selected_file_size_label": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel/active_dot_panel": "ui/resource_packs_screen.json", + "selected_text_panel/name_panel/active_dot_panel/active_dot": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/warning_line": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/warning_line/warning_text": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/warning_line/warning_number": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/error_line": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/error_line/error_text": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/error_line/error_number": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/expired_line": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/expired_line/expired_text": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/description_panel": "ui/resource_packs_screen.json", + "selected_text_panel/full_panel/description_panel/selected_pack_description_label": "ui/resource_packs_screen.json", + "invalid_text_panel": "ui/resource_packs_screen.json", + "invalid_text_panel/full_panel": "ui/resource_packs_screen.json", + "invalid_text_panel/full_panel/error_line": "ui/resource_packs_screen.json", + "invalid_text_panel/full_panel/error_line/error_text": "ui/resource_packs_screen.json", + "invalid_text_panel/full_panel/error_line/error_number": "ui/resource_packs_screen.json", + "available_pack_button_layout": "ui/resource_packs_screen.json", + "available_pack_button_layout/available_icon_image": "ui/resource_packs_screen.json", + "available_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", + "available_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", + "available_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", + "available_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/available_icon_image": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", + "available_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", + "available_pack_button": "ui/resource_packs_screen.json", + "available_pack_button/default": "ui/resource_packs_screen.json", + "available_pack_button/pressed": "ui/resource_packs_screen.json", + "available_pack_button/hover": "ui/resource_packs_screen.json", + "realms_pack_button_layout": "ui/resource_packs_screen.json", + "realms_pack_button_layout/realms_icon_image": "ui/resource_packs_screen.json", + "realms_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", + "realms_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", + "realms_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", + "realms_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/realms_icon_image": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", + "realms_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", + "realms_pack_button": "ui/resource_packs_screen.json", + "realms_pack_button/default": "ui/resource_packs_screen.json", + "realms_pack_button/pressed": "ui/resource_packs_screen.json", + "realms_pack_button/hover": "ui/resource_packs_screen.json", + "unowned_pack_button_layout": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/unowned_icon_image": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", + "unowned_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/unowned_icon_image": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", + "unowned_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", + "unowned_pack_button": "ui/resource_packs_screen.json", + "unowned_pack_button/default": "ui/resource_packs_screen.json", + "unowned_pack_button/pressed": "ui/resource_packs_screen.json", + "unowned_pack_button/hover": "ui/resource_packs_screen.json", + "invalid_pack_button_layout": "ui/resource_packs_screen.json", + "invalid_pack_button_layout/invalid_icon_image": "ui/resource_packs_screen.json", + "invalid_pack_button_layout/text_panel": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover/invalid_icon_image": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": "ui/resource_packs_screen.json", + "invalid_pack_button": "ui/resource_packs_screen.json", + "invalid_pack_button/default": "ui/resource_packs_screen.json", + "invalid_pack_button/pressed": "ui/resource_packs_screen.json", + "invalid_pack_button/hover": "ui/resource_packs_screen.json", + "empty_resource_pack_button": "ui/resource_packs_screen.json", + "resource_pack_button_padding": "ui/resource_packs_screen.json", + "input_button_panel": "ui/resource_packs_screen.json", + "input_button_panel/border_image": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_0": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_1": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_2": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_3": "ui/resource_packs_screen.json", + "input_button_panel/border_image/button_panel/padding_4": "ui/resource_packs_screen.json", + "input_button_panel/background": "ui/resource_packs_screen.json", + "selected_pack_button_layout": "ui/resource_packs_screen.json", + "selected_pack_button_layout/selected_icon_image": "ui/resource_packs_screen.json", + "selected_pack_button_layout/text_panel_small": "ui/resource_packs_screen.json", + "selected_pack_button_layout/text_panel_full": "ui/resource_packs_screen.json", + "selected_pack_button_layout/read_more_button_panel": "ui/resource_packs_screen.json", + "selected_pack_button_layout/read_less_button_panel": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/hover_small": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/selected_icon_image": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/text_panel_small": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/text_panel_full_hover": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/read_more_button_panel": "ui/resource_packs_screen.json", + "selected_pack_button_layout_hover/read_less_button_panel": "ui/resource_packs_screen.json", + "selected_pack_button": "ui/resource_packs_screen.json", + "selected_pack_button/default": "ui/resource_packs_screen.json", + "selected_pack_button/pressed": "ui/resource_packs_screen.json", + "selected_pack_button/hover": "ui/resource_packs_screen.json", + "selected_pack_movement_button": "ui/resource_packs_screen.json", + "selected_pack_transparent_movement_button": "ui/resource_packs_screen.json", + "selected_pack_minus_button": "ui/resource_packs_screen.json", + "selected_pack_plus_button": "ui/resource_packs_screen.json", + "selected_pack_store_button": "ui/resource_packs_screen.json", + "selected_pack_store_button_fill": "ui/resource_packs_screen.json", + "selected_pack_up_button": "ui/resource_packs_screen.json", + "selected_pack_down_button": "ui/resource_packs_screen.json", + "selected_pack_warning_button": "ui/resource_packs_screen.json", + "selected_pack_options_button": "ui/resource_packs_screen.json", + "white_label": "ui/resource_packs_screen.json", + "gray_label": "ui/resource_packs_screen.json", + "suggested_content_offers_title_label": "ui/resource_packs_screen.json", + "available_packs_title_content": "ui/resource_packs_screen.json", + "realms_packs_title_content": "ui/resource_packs_screen.json", + "unowned_packs_title_content": "ui/resource_packs_screen.json", + "selected_packs_title_content": "ui/resource_packs_screen.json", + "selected_packs_title_content/selected_packs_title_label": "ui/resource_packs_screen.json", + "selected_packs_title_content/fill_pad": "ui/resource_packs_screen.json", + "selected_packs_title_content/icon_panel": "ui/resource_packs_screen.json", + "selected_packs_title_content/icon_panel/block_icon": "ui/resource_packs_screen.json", + "selected_packs_title_content/pad_0": "ui/resource_packs_screen.json", + "selected_packs_title_content/count": "ui/resource_packs_screen.json", + "selected_packs_title_content/pad_1": "ui/resource_packs_screen.json", + "selected_packs_title_content/plus_panel": "ui/resource_packs_screen.json", + "selected_packs_title_content/plus_panel/plus": "ui/resource_packs_screen.json", + "selected_packs_title_content/minus_panel": "ui/resource_packs_screen.json", + "selected_packs_title_content/minus_panel/minus": "ui/resource_packs_screen.json", + "available_packs_title_button": "ui/resource_packs_screen.json", + "realms_packs_title_button": "ui/resource_packs_screen.json", + "unowned_packs_title_button": "ui/resource_packs_screen.json", + "selected_packs_title_button": "ui/resource_packs_screen.json", + "name_label": "ui/resource_packs_screen.json", + "size_label": "ui/resource_packs_screen.json", + "description_label": "ui/resource_packs_screen.json", + "pack_label": "ui/resource_packs_screen.json", + "selected_pack_description_label": "ui/resource_packs_screen.json", + "available_pack_description_label": "ui/resource_packs_screen.json", + "realms_pack_description_label": "ui/resource_packs_screen.json", + "unowned_pack_description_label": "ui/resource_packs_screen.json", + "selected_pack_name_label": "ui/resource_packs_screen.json", + "selected_file_size_label": "ui/resource_packs_screen.json", + "available_pack_name_label": "ui/resource_packs_screen.json", + "available_file_size_label": "ui/resource_packs_screen.json", + "realms_pack_name_label": "ui/resource_packs_screen.json", + "realms_file_size_label": "ui/resource_packs_screen.json", + "unowned_pack_name_label": "ui/resource_packs_screen.json", + "unowned_file_size_label": "ui/resource_packs_screen.json", + "invalid_pack_name_label": "ui/resource_packs_screen.json", + "invalid_pack_description_label": "ui/resource_packs_screen.json", + "available_panel": "ui/resource_packs_screen.json", + "available_panel/selected_packs": "ui/resource_packs_screen.json", + "checkbox_visuals": "ui/resource_packs_screen.json", + "header_control": "ui/resource_packs_screen.json", + "header_control/header_description_stack_panel": "ui/resource_packs_screen.json", + "header_control/header_description_stack_panel/checkbox_visuals": "ui/resource_packs_screen.json", + "header_control/header_description_stack_panel/buffer_panel": "ui/resource_packs_screen.json", + "header_control/header_description_stack_panel/buffer_panel/label": "ui/resource_packs_screen.json", + "addon_header_control": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/padding_0": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/description_center_panel": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/description_center_panel/label": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/padding_1": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/link_center_panel": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": "ui/resource_packs_screen.json", + "addon_header_control/header_description_stack_panel/padding_2": "ui/resource_packs_screen.json", + "panel_bg": "ui/resource_packs_screen.json", + "panel_bg/black_background": "ui/resource_packs_screen.json", + "panel_bg/gray": "ui/resource_packs_screen.json", + "addon_panel_bg": "ui/resource_packs_screen.json", + "addon_panel_bg/black_background": "ui/resource_packs_screen.json", + "addon_panel_bg/yellow": "ui/resource_packs_screen.json", + "error_panel": "ui/resource_packs_screen.json", + "error_panel/black_background": "ui/resource_packs_screen.json", + "error_panel/black_background/gray": "ui/resource_packs_screen.json", + "error_panel/black_background/gray/panel": "ui/resource_packs_screen.json", + "error_panel/black_background/gray/panel/error_label": "ui/resource_packs_screen.json", + "selected_stack_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/world_template_option_lock_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/world_template_option_lock_panel/option_info_label": "ui/resource_packs_screen.json", + "selected_stack_panel/top_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/top_panel/panel_bg": "ui/resource_packs_screen.json", + "selected_stack_panel/top_panel/header_control": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_0": "ui/resource_packs_screen.json", + "selected_stack_panel/addon_stacking_warning_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": "ui/resource_packs_screen.json", + "selected_stack_panel/addon_stacking_warning_panel/header_control": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_1": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_packs_title_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_packs_title_panel/tooltip": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_packs_title_panel/tooltip/button": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/offset": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/selected_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/icon_image": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/name_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/description_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/filler_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/selected_pack_section/filler_panel/description_label": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_2": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_title_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_title_panel/available_packs_title_button": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_title_panel/tooltip": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_title_panel/tooltip/button": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/offset": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/empty_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/empty_panel/to_store_button": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/available_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/available_packs_section/invalid_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_3": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_title_button": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_section": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_section/offset": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_section/realms_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/realms_packs_section/offset_4": "ui/resource_packs_screen.json", + "selected_stack_panel/offset_4": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_title_button": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section/offset": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section/unowned_pack_grid": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section/to_store_button": "ui/resource_packs_screen.json", + "selected_stack_panel/unowned_packs_section/offset_4": "ui/resource_packs_screen.json", + "available_stack_panel": "ui/resource_packs_screen.json", + "available_stack_panel/available_packs_title_button": "ui/resource_packs_screen.json", + "available_stack_panel/available_pack_grid": "ui/resource_packs_screen.json", + "pack_background": "ui/resource_packs_screen.json", + "pack_background/white_image": "ui/resource_packs_screen.json", + "pack_background/gray_image": "ui/resource_packs_screen.json", + "selected_pack_panel": "ui/resource_packs_screen.json", + "selected_pack_panel/selected_pack_button": "ui/resource_packs_screen.json", + "selected_pack_panel/pad_0": "ui/resource_packs_screen.json", + "selected_pack_panel/center_panel": "ui/resource_packs_screen.json", + "selected_pack_panel/center_panel/visibility_panel": "ui/resource_packs_screen.json", + "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": "ui/resource_packs_screen.json", + "selected_pack_panel/divider": "ui/resource_packs_screen.json", + "selected_pack_panel/pad_1": "ui/resource_packs_screen.json", + "available_pack_panel": "ui/resource_packs_screen.json", + "available_pack_panel/available_pack_button": "ui/resource_packs_screen.json", + "available_pack_panel/pad_0": "ui/resource_packs_screen.json", + "available_pack_panel/center_panel": "ui/resource_packs_screen.json", + "available_pack_panel/center_panel/available_pack_direction_buttons": "ui/resource_packs_screen.json", + "available_pack_panel/divider": "ui/resource_packs_screen.json", + "available_pack_panel/pad_1": "ui/resource_packs_screen.json", + "realms_pack_panel": "ui/resource_packs_screen.json", + "realms_pack_panel/realms_pack_button": "ui/resource_packs_screen.json", + "realms_pack_panel/pad_0": "ui/resource_packs_screen.json", + "realms_pack_panel/center_panel": "ui/resource_packs_screen.json", + "realms_pack_panel/center_panel/realms_pack_direction_buttons": "ui/resource_packs_screen.json", + "realms_pack_panel/divider": "ui/resource_packs_screen.json", + "realms_pack_panel/pad_1": "ui/resource_packs_screen.json", + "unowned_pack_panel": "ui/resource_packs_screen.json", + "unowned_pack_panel/unowned_pack_button": "ui/resource_packs_screen.json", + "unowned_pack_panel/pad_0": "ui/resource_packs_screen.json", + "unowned_pack_panel/center_panel": "ui/resource_packs_screen.json", + "unowned_pack_panel/center_panel/realms_pack_direction_buttons": "ui/resource_packs_screen.json", + "unowned_pack_panel/divider": "ui/resource_packs_screen.json", + "unowned_pack_panel/pad_1": "ui/resource_packs_screen.json", + "invalid_pack_panel": "ui/resource_packs_screen.json", + "invalid_pack_panel/invalid_pack_button": "ui/resource_packs_screen.json", + "invalid_pack_panel/pad_0": "ui/resource_packs_screen.json", + "invalid_pack_panel/divider": "ui/resource_packs_screen.json", + "invalid_pack_panel/pad_1": "ui/resource_packs_screen.json", + "selected_pack_grid": "ui/resource_packs_screen.json", + "available_pack_grid": "ui/resource_packs_screen.json", + "realms_pack_grid": "ui/resource_packs_screen.json", + "unowned_pack_grid": "ui/resource_packs_screen.json", + "invalid_pack_grid": "ui/resource_packs_screen.json", + }, + "safe_zone": { + "corner_image_common": "ui/safe_zone_screen.json", + "corner_bl": "ui/safe_zone_screen.json", + "corner_br": "ui/safe_zone_screen.json", + "corner_tr": "ui/safe_zone_screen.json", + "corner_tl": "ui/safe_zone_screen.json", + "confirm_button": "ui/safe_zone_screen.json", + "title_text": "ui/safe_zone_screen.json", + "instructions_text": "ui/safe_zone_screen.json", + "instructions_text/inner_label": "ui/safe_zone_screen.json", + "label_button": "ui/safe_zone_screen.json", + "label_button_hover": "ui/safe_zone_screen.json", + "label_button_hover/hover": "ui/safe_zone_screen.json", + "label_button_hover/hover/button_hover_text": "ui/safe_zone_screen.json", + "content_panel": "ui/safe_zone_screen.json", + "content_panel/safe_zone_slider_all": "ui/safe_zone_screen.json", + "content_panel/safe_zone_slider_x": "ui/safe_zone_screen.json", + "content_panel/safe_zone_slider_y": "ui/safe_zone_screen.json", + "content_panel/screen_position_slider_x": "ui/safe_zone_screen.json", + "content_panel/screen_position_slider_y": "ui/safe_zone_screen.json", + "content_panel/instruction_text_button": "ui/safe_zone_screen.json", + "content_panel/instruction_text_button/default": "ui/safe_zone_screen.json", + "content_panel/instruction_text_button/pressed": "ui/safe_zone_screen.json", + "content_panel/instruction_text_button/hover": "ui/safe_zone_screen.json", + "safe_zone_screen": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": "ui/safe_zone_screen.json", + "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel/common_panel": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel/title_text": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel/scrolling_panel": "ui/safe_zone_screen.json", + "safe_zone_screen/main_content_panel/confirm_button": "ui/safe_zone_screen.json", + }, + "storage_migration_common": { + "progress_panel": "ui/storage_migration_common.json", + "progress_panel/common_panel": "ui/storage_migration_common.json", + "progress_panel/base_content": "ui/storage_migration_common.json", + "progress_panel/base_content/progress_title_text": "ui/storage_migration_common.json", + "progress_panel/base_content/progress_bar_text": "ui/storage_migration_common.json", + "progress_panel/inside_content": "ui/storage_migration_common.json", + "progress_panel/inside_content/size_label": "ui/storage_migration_common.json", + "progress_panel/inside_content/padding_1": "ui/storage_migration_common.json", + "progress_panel/inside_content/loading_bar_panel": "ui/storage_migration_common.json", + "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/storage_migration_common.json", + "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/storage_migration_common.json", + "progress_panel/inside_content/padding_3": "ui/storage_migration_common.json", + "label": "ui/storage_migration_common.json", + "base_button": "ui/storage_migration_common.json", + "retry_button": "ui/storage_migration_common.json", + "go_to_faq_button": "ui/storage_migration_common.json", + "next_button": "ui/storage_migration_common.json", + "get_started_button": "ui/storage_migration_common.json", + "start_transfer_button": "ui/storage_migration_common.json", + "finished_main_menu_button": "ui/storage_migration_common.json", + "start_transfer_out_of_space_button": "ui/storage_migration_common.json", + "continue_out_of_space_button": "ui/storage_migration_common.json", + "resume_transfer_button": "ui/storage_migration_common.json", + "exit_button": "ui/storage_migration_common.json", + "retry_help_button_panel": "ui/storage_migration_common.json", + "retry_help_button_panel/retry": "ui/storage_migration_common.json", + "retry_help_button_panel/padding": "ui/storage_migration_common.json", + "retry_help_button_panel/help": "ui/storage_migration_common.json", + "modal_no_buttons": "ui/storage_migration_common.json", + "modal_one_button": "ui/storage_migration_common.json", + "modal_two_buttons": "ui/storage_migration_common.json", + "base_child_control": "ui/storage_migration_common.json", + "base_child_control/scrolling_panel": "ui/storage_migration_common.json", + "file_size_description": "ui/storage_migration_common.json", + "file_size_description/description": "ui/storage_migration_common.json", + "file_size_description/padding": "ui/storage_migration_common.json", + "file_size_description/size_stack": "ui/storage_migration_common.json", + "file_size_description/size_stack/file_text": "ui/storage_migration_common.json", + "file_size_description/size_stack/padding_1": "ui/storage_migration_common.json", + "file_size_description/size_stack/file_size_total": "ui/storage_migration_common.json", + "file_size_description/size_stack/padding_2": "ui/storage_migration_common.json", + "file_size_description/size_stack/file_size_available": "ui/storage_migration_common.json", + "file_size_description/file_location": "ui/storage_migration_common.json", + "error_icon_and_description": "ui/storage_migration_common.json", + "error_icon_and_description/error_image": "ui/storage_migration_common.json", + "error_icon_and_description/description": "ui/storage_migration_common.json", + "file_size_description_with_error": "ui/storage_migration_common.json", + "file_size_description_with_error/file_size": "ui/storage_migration_common.json", + "file_size_description_with_error/padding": "ui/storage_migration_common.json", + "file_size_description_with_error/error_icon_and_description": "ui/storage_migration_common.json", + "start_transfer": "ui/storage_migration_common.json", + "start_transfer_content": "ui/storage_migration_common.json", + "resume_transfer": "ui/storage_migration_common.json", + "resume_transfer_content": "ui/storage_migration_common.json", + "resume_transfer_content/file_size": "ui/storage_migration_common.json", + "transfer_error_out_of_space": "ui/storage_migration_common.json", + "transfer_error_out_of_space_content": "ui/storage_migration_common.json", + }, + "storage_migration_generic": { + "storage_migration_generic_screen": "ui/storage_migration_generic_screen.json", + "modal_screen_content": "ui/storage_migration_generic_screen.json", + "modal_screen_content/modal_progress_panel_no_cancel": "ui/storage_migration_generic_screen.json", + "modal_screen_content/popup_dialog_factory": "ui/storage_migration_generic_screen.json", + "start_transfer": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space_content": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space_content/base_start_content": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space_content/padding": "ui/storage_migration_generic_screen.json", + "start_transfer_out_of_space_content/error_icon_and_description": "ui/storage_migration_generic_screen.json", + "finished": "ui/storage_migration_generic_screen.json", + "finished_content": "ui/storage_migration_generic_screen.json", + "finished_content/description": "ui/storage_migration_generic_screen.json", + "resume_transfer_out_of_space": "ui/storage_migration_generic_screen.json", + "resume_transfer_out_of_space_content": "ui/storage_migration_generic_screen.json", + "transfer_error": "ui/storage_migration_generic_screen.json", + "transfer_error_content": "ui/storage_migration_generic_screen.json", + "transfer_error_content/description": "ui/storage_migration_generic_screen.json", + "transfer_error_out_of_space": "ui/storage_migration_generic_screen.json", + }, + "scoreboard": { + "scoreboard_sidebar_score": "ui/scoreboards.json", + "scoreboard_sidebar_player": "ui/scoreboards.json", + "scoreboard_sidebar": "ui/scoreboards.json", + "scoreboard_sidebar/main": "ui/scoreboards.json", + "scoreboard_sidebar/main/displayed_objective": "ui/scoreboards.json", + "scoreboard_sidebar/main/lists": "ui/scoreboards.json", + "scoreboard_sidebar/main/lists/players": "ui/scoreboards.json", + "scoreboard_sidebar/main/lists/horizontal_padding": "ui/scoreboards.json", + "scoreboard_sidebar/main/lists/scores": "ui/scoreboards.json", + "scoreboard_sidebar/displayed_objective_background": "ui/scoreboards.json", + "scoreboard_player_list": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_0": "ui/scoreboards.json", + "scoreboard_player_list/social_buttons_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_1": "ui/scoreboards.json", + "scoreboard_player_list/permissions_button": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_2": "ui/scoreboards.json", + "scoreboard_player_list/players_label": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_3": "ui/scoreboards.json", + "scoreboard_player_list/scored_players_grid_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_4": "ui/scoreboards.json", + "scoreboard_player_list/unscored_players_grid_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_5": "ui/scoreboards.json", + "scoreboard_player_list/invite_players_button_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_6": "ui/scoreboards.json", + "scoreboard_player_list/disconnected_from_multiplayer_label_panel": "ui/scoreboards.json", + "scoreboard_player_list/vertical_padding_7": "ui/scoreboards.json", + "list_objective_label": "ui/scoreboards.json", + "player_rank_panel": "ui/scoreboards.json", + "player_rank_panel/player_rank_bg": "ui/scoreboards.json", + "player_rank_panel/player_rank_bg/player_rank": "ui/scoreboards.json", + "player_icon_panel": "ui/scoreboards.json", + "player_icon_panel/player_icon": "ui/scoreboards.json", + "player_icon_panel/player_icon/player_panel_black_border": "ui/scoreboards.json", + "player_icon_panel/permission_icon": "ui/scoreboards.json", + "player_name": "ui/scoreboards.json", + "player_score": "ui/scoreboards.json", + "player_details": "ui/scoreboards.json", + "player_details/name_panel": "ui/scoreboards.json", + "player_details/name_panel/name": "ui/scoreboards.json", + "player_details/score_panel": "ui/scoreboards.json", + "player_details/score_panel/score": "ui/scoreboards.json", + "player_content": "ui/scoreboards.json", + "player_content/icon": "ui/scoreboards.json", + "player_content/padding": "ui/scoreboards.json", + "player_content/details": "ui/scoreboards.json", + "base_player_button": "ui/scoreboards.json", + "player_panel": "ui/scoreboards.json", + "player_panel/rank_base": "ui/scoreboards.json", + "player_panel/rank_base/player_rank": "ui/scoreboards.json", + "player_panel/player_button": "ui/scoreboards.json", + "players_grid_list": "ui/scoreboards.json", + "players_unscored_grid_list": "ui/scoreboards.json", + "players_scored_grid_list": "ui/scoreboards.json", + }, + "screenshot": { + "screenshot_flash_image": "ui/screenshot_screen.json", + "screenshot_screen": "ui/screenshot_screen.json", + "screenshot_screen_content": "ui/screenshot_screen.json", + "screenshot_screen_content/transparent_background": "ui/screenshot_screen.json", + "screenshot_screen_content/screenshot_flash": "ui/screenshot_screen.json", + }, + "select_world": { + "popup_dialog__add_on_common": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons/popup_dialog_message": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons/close_button": "ui/select_world_screen.json", + "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/popup_dialog_message": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/close_button": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/button_copy": "ui/select_world_screen.json", + "popup_dialog__add_on_common_two_buttons/button_continue": "ui/select_world_screen.json", + "add_on_button_copy": "ui/select_world_screen.json", + "add_on_button_continue": "ui/select_world_screen.json", + "add_on_popup_content_panel": "ui/select_world_screen.json", + "add_on_popup_content_panel/popup_content": "ui/select_world_screen.json", + "popup_dialog__activate_add_on": "ui/select_world_screen.json", + "popup_dialog__activate_add_on_select_world": "ui/select_world_screen.json", + "popup_dialog__copy_local_world": "ui/select_world_screen.json", + "popup_dialog__copy_realms_world": "ui/select_world_screen.json", + "copy_local_world_panel": "ui/select_world_screen.json", + "copy_local_world_panel/padding_top": "ui/select_world_screen.json", + "copy_local_world_panel/text_box": "ui/select_world_screen.json", + "copy_local_world_panel/padding_middle": "ui/select_world_screen.json", + "copy_local_world_panel/text_box2": "ui/select_world_screen.json", + "copy_realms_world_panel": "ui/select_world_screen.json", + "copy_realms_world_panel/padding_top": "ui/select_world_screen.json", + "copy_realms_world_panel/text_box": "ui/select_world_screen.json", + "copy_realms_world_panel/padding_middle": "ui/select_world_screen.json", + "copy_realms_world_panel/text_box2": "ui/select_world_screen.json", + "new_or_existing_world_panel": "ui/select_world_screen.json", + "new_or_existing_world_panel/padding_left": "ui/select_world_screen.json", + "new_or_existing_world_panel/world_icon_existing": "ui/select_world_screen.json", + "new_or_existing_world_panel/padding_middle": "ui/select_world_screen.json", + "new_or_existing_world_panel/world_icon_new": "ui/select_world_screen.json", + "new_or_existing_world_panel/padding_right": "ui/select_world_screen.json", + "world_icon_with_button": "ui/select_world_screen.json", + "world_icon_with_button/padding_top": "ui/select_world_screen.json", + "world_icon_with_button/world_icon": "ui/select_world_screen.json", + "world_icon_with_button/button": "ui/select_world_screen.json", + "world_icon_with_button/padding_bottom": "ui/select_world_screen.json", + "world_icon_new": "ui/select_world_screen.json", + "world_icon_new/plus_button": "ui/select_world_screen.json", + "world_icon_existing": "ui/select_world_screen.json", + "select_world_panel": "ui/select_world_screen.json", + "select_world_list": "ui/select_world_screen.json", + "select_world_list/realms_world_label": "ui/select_world_screen.json", + "select_world_list/realms_world_list": "ui/select_world_screen.json", + "select_world_list/padding_middle": "ui/select_world_screen.json", + "select_world_list/local_world_label": "ui/select_world_screen.json", + "select_world_list/local_world_list": "ui/select_world_screen.json", + "select_world_list/padding_end": "ui/select_world_screen.json", + "local_world_item_button": "ui/select_world_screen.json", + "realms_world_item_button": "ui/select_world_screen.json", + "select_world_screen_content": "ui/select_world_screen.json", + "select_world_screen_content/popup_dialog_factory": "ui/select_world_screen.json", + "select_world_popup_screen": "ui/select_world_screen.json", + }, + "server_form": { + "third_party_server_screen": "ui/server_form.json", + "main_screen_content": "ui/server_form.json", + "main_screen_content/server_form_factory": "ui/server_form.json", + "long_form": "ui/server_form.json", + "long_form_panel": "ui/server_form.json", + "long_form_panel/scrolling_panel": "ui/server_form.json", + "long_form_scrolling_content": "ui/server_form.json", + "long_form_scrolling_content/label_offset_panel": "ui/server_form.json", + "long_form_scrolling_content/label_offset_panel/main_label": "ui/server_form.json", + "long_form_scrolling_content/padding": "ui/server_form.json", + "long_form_scrolling_content/wrapping_panel": "ui/server_form.json", + "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": "ui/server_form.json", + "long_form_dynamic_buttons_panel": "ui/server_form.json", + "dynamic_button": "ui/server_form.json", + "dynamic_button/panel_name": "ui/server_form.json", + "dynamic_button/panel_name/image": "ui/server_form.json", + "dynamic_button/panel_name/progress": "ui/server_form.json", + "dynamic_button/form_button": "ui/server_form.json", + "dynamic_label": "ui/server_form.json", + "dynamic_header": "ui/server_form.json", + "custom_form": "ui/server_form.json", + "custom_form_panel": "ui/server_form.json", + "generated_contents": "ui/server_form.json", + "custom_form_scrolling_content": "ui/server_form.json", + "custom_form_scrolling_content/generated_form": "ui/server_form.json", + "custom_form_scrolling_content/submit_button": "ui/server_form.json", + "custom_label": "ui/server_form.json", + "custom_header": "ui/server_form.json", + "custom_toggle": "ui/server_form.json", + "custom_slider": "ui/server_form.json", + "custom_step_slider": "ui/server_form.json", + "custom_dropdown": "ui/server_form.json", + "custom_dropdown/dropdown": "ui/server_form.json", + "custom_dropdown_content": "ui/server_form.json", + "custom_dropdown_radio": "ui/server_form.json", + "custom_input": "ui/server_form.json", + }, + "settings": { + "settings_screen_base": "ui/settings_screen.json", + "screen_world_create": "ui/settings_screen.json", + "screen_template_create": "ui/settings_screen.json", + "screen_world_edit": "ui/settings_screen.json", + "screen_controls_and_settings": "ui/settings_screen.json", + "screen_world_controls_and_settings": "ui/settings_screen.json", + "screen_realm_controls_and_settings": "ui/settings_screen.json", + "screen_realm_member_controls_and_settings": "ui/settings_screen.json", + "screen_realm_settings": "ui/settings_screen.json", + "screen_world_slot_edit": "ui/settings_screen.json", + "screen_realm_manage": "ui/settings_screen.json", + "screen_realm_invite_link_settings": "ui/settings_screen.json", + "selector_stack_panel": "ui/settings_screen.json", + "selector_stack_panel/spacer_0": "ui/settings_screen.json", + "selector_stack_panel/accessibility_button": "ui/settings_screen.json", + "selector_stack_panel/spacer_1": "ui/settings_screen.json", + "selector_stack_panel/how_to_play_button": "ui/settings_screen.json", + "selector_stack_panel/spacer_01": "ui/settings_screen.json", + "selector_stack_panel/world_selector_pane": "ui/settings_screen.json", + "selector_stack_panel/realm_selector_pane": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/controller_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/touch_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/party_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/general_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/video_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/sound_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/account_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/language_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/creator_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/preview_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": "ui/settings_screen.json", + "selector_stack_panel/controls_and_settings_selector_pane/automation_button": "ui/settings_screen.json", + "selector_stack_panel/spacer_24": "ui/settings_screen.json", + "selector_stack_panel/addons_selector_panel": "ui/settings_screen.json", + "selector_stack_panel/realms_invite_link_settings_pane": "ui/settings_screen.json", + "section_content_panels": "ui/settings_screen.json", + "section_content_panels/realm_invite_link_settings_content_panels": "ui/settings_screen.json", + "section_content_panels/world_sections": "ui/settings_screen.json", + "section_content_panels/world_sections/game_section": "ui/settings_screen.json", + "section_content_panels/world_sections/classroom_section_panel": "ui/settings_screen.json", + "section_content_panels/world_sections/classroom_section_panel/classroom_section": "ui/settings_screen.json", + "section_content_panels/world_sections/server_section": "ui/settings_screen.json", + "section_content_panels/world_sections/multiplayer_section": "ui/settings_screen.json", + "section_content_panels/world_sections/edu_cloud_section": "ui/settings_screen.json", + "section_content_panels/world_sections/debug_section": "ui/settings_screen.json", + "section_content_panels/packs_sections": "ui/settings_screen.json", + "section_content_panels/packs_sections/level_texture_pack_section": "ui/settings_screen.json", + "section_content_panels/packs_sections/addon_section": "ui/settings_screen.json", + "section_content_panels/section_content_panels": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/accessibility_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/controller_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/touch_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/party_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/general_tab_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/account_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/account_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/global_texture_pack_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/storage_management_header": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/storage_management_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/creator_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/video_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/video_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/view_subscriptions_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/sound_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/sound_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/language_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/language_section_ore_ui": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/preview_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/ui_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/edu_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/marketplace_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/gatherings_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/flighting_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/realms_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/automation_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/discovery_debug_section": "ui/settings_screen.json", + "section_content_panels/general_and_controls_sections/how_to_play_section": "ui/settings_screen.json", + "section_header_panels": "ui/settings_screen.json", + "section_header_panels/world_sections": "ui/settings_screen.json", + "section_header_panels/general_and_controls_sections": "ui/settings_screen.json", + "section_footer_panels": "ui/settings_screen.json", + "section_footer_panels/world_sections": "ui/settings_screen.json", + "section_footer_panels/general_and_controls_sections": "ui/settings_screen.json", + "section_footer_panels/general_and_controls_sections/storage_management_footer": "ui/settings_screen.json", + }, + "controls_section": { + "binding_button": "ui/settings_sections/controls_section.json", + "binding_button_content": "ui/settings_sections/controls_section.json", + "binding_button_content/default_label": "ui/settings_sections/controls_section.json", + "image_binding_button": "ui/settings_sections/controls_section.json", + "image_binding_button_content": "ui/settings_sections/controls_section.json", + "image_binding_button_content/base_icon_image": "ui/settings_sections/controls_section.json", + "image_binding_button_content/default_label": "ui/settings_sections/controls_section.json", + "arrow_reset": "ui/settings_sections/controls_section.json", + "reset_binding_button": "ui/settings_sections/controls_section.json", + "keymapping_item_parent": "ui/settings_sections/controls_section.json", + "keymapping_item_parent/keymapping_row": "ui/settings_sections/controls_section.json", + "keymapping_item": "ui/settings_sections/controls_section.json", + "keymapping_item/option_info_label_control": "ui/settings_sections/controls_section.json", + "keymapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json", + "keymapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json", + "keymapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json", + "keymapping_grid": "ui/settings_sections/controls_section.json", + "full_keymapping_grid": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item/option_info_label_control": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json", + "gamepad_mapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json", + "gamepad_mapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_button": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui/spacer_0": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui/generic_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui/spacer_1": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_slider_0": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_slider_damen": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_0": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_1": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_2": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/option_toggle_show_learning_prompts": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json", + "keyboard_and_mouse_section/reset_button": "ui/settings_sections/controls_section.json", + "controller_button": "ui/settings_sections/controls_section.json", + "controller_section": "ui/settings_sections/controls_section.json", + "controller_section/option_slider_0": "ui/settings_sections/controls_section.json", + "controller_section/option_slider_damen": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_0": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_1": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle9": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle10": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_11": "ui/settings_sections/controls_section.json", + "controller_section/gamepad_swap_ab": "ui/settings_sections/controls_section.json", + "controller_section/gamepad_swap_xy": "ui/settings_sections/controls_section.json", + "controller_section/gamepad_cursor_sensitivity_option_slider": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_3": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_4": "ui/settings_sections/controls_section.json", + "controller_section/option_toggle_5": "ui/settings_sections/controls_section.json", + "controller_section/option_group_label": "ui/settings_sections/controls_section.json", + "controller_section/gamepad_keymapping_grid": "ui/settings_sections/controls_section.json", + "controller_section/reset_button": "ui/settings_sections/controls_section.json", + "touch_button": "ui/settings_sections/controls_section.json", + "touch_section": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/section_label": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/padding_0": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/padding_1": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/select_control_mode": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/control_scheme_section/padding_2": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/modify_control_layout_section": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/modify_control_layout_section/padding": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_slider_0": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_slider_damen": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_show_action_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_show_block_select_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_left_handed": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_auto_jump": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_bool_sprint_on_movement": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/joystick_visibility_dropdown": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/top_button_scale": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/sneak_dropdown": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_destroy_vibration": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_split_vibration": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_creative_delayed_block_breaking": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_invert_y": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_use_touchpad": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": "ui/settings_sections/controls_section.json", + "touch_section/common_touch_settings/hotbar_only_touch_toggle": "ui/settings_sections/controls_section.json", + "touch_section/reset_button": "ui/settings_sections/controls_section.json", + "joystick_visibility_dropdown_content": "ui/settings_sections/controls_section.json", + "top_button_scale_dropdown_content": "ui/settings_sections/controls_section.json", + "sneak_dropdown_content": "ui/settings_sections/controls_section.json", + "customize_tooltip_option_image": "ui/settings_sections/controls_section.json", + "customize_tooltip_option_popup": "ui/settings_sections/controls_section.json", + "customize_tooltip_option": "ui/settings_sections/controls_section.json", + "customize_tooltip_option/customize_tooltip_option_image": "ui/settings_sections/controls_section.json", + "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": "ui/settings_sections/controls_section.json", + "customize_tooltip_option/customize_tooltip_option_popup": "ui/settings_sections/controls_section.json", + }, + "general_section": { + "general_button": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "general_tab_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "general_tab_section": "ui/settings_sections/general_section.json", + "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": "ui/settings_sections/general_section.json", + "general_tab_section/network_label_header": "ui/settings_sections/general_section.json", + "general_tab_section/paddingCrossPlatform": "ui/settings_sections/general_section.json", + "general_tab_section/cross_platform_enabled_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingCellularData": "ui/settings_sections/general_section.json", + "general_tab_section/mobile_data_option_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingWebSockets": "ui/settings_sections/general_section.json", + "general_tab_section/websockets_enabled_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/websocket_encryption_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingAutoUpdate": "ui/settings_sections/general_section.json", + "general_tab_section/auto_update_mode_dropdown": "ui/settings_sections/general_section.json", + "general_tab_section/paddingAutoUpdateToggle": "ui/settings_sections/general_section.json", + "general_tab_section/auto_update_enabled_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingGameTipsFeature": "ui/settings_sections/general_section.json", + "general_tab_section/tutorial_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/tutorial_animation_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/tutorial_restart_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingTrustedSkins": "ui/settings_sections/general_section.json", + "general_tab_section/only_allow_trusted_skins_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingFilterProfanity": "ui/settings_sections/general_section.json", + "general_tab_section/filter_profanity_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/filter_profanity_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "general_tab_section/pause_label_header": "ui/settings_sections/general_section.json", + "general_tab_section/paddingPauseFeature": "ui/settings_sections/general_section.json", + "general_tab_section/pause_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLinkEduSupport": "ui/settings_sections/general_section.json", + "general_tab_section/link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingDividerSustainability": "ui/settings_sections/general_section.json", + "general_tab_section/ecomode_label_header": "ui/settings_sections/general_section.json", + "general_tab_section/paddingEcoMode": "ui/settings_sections/general_section.json", + "general_tab_section/ecomode_enabled_toggle": "ui/settings_sections/general_section.json", + "general_tab_section/paddingDividerTermsCreditsAttribution": "ui/settings_sections/general_section.json", + "general_tab_section/dividerTermsCreditsAttribution": "ui/settings_sections/general_section.json", + "general_tab_section/dividerTermsCreditsAttribution/section_divider": "ui/settings_sections/general_section.json", + "general_tab_section/paddingDividerTermsCreditsAttributionAfter": "ui/settings_sections/general_section.json", + "general_tab_section/paddingTermsNConditions": "ui/settings_sections/general_section.json", + "general_tab_section/terms_and_conditions_link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingCreditsButton": "ui/settings_sections/general_section.json", + "general_tab_section/credits_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingAttribution": "ui/settings_sections/general_section.json", + "general_tab_section/attribution_link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingfeedback": "ui/settings_sections/general_section.json", + "general_tab_section/feedback_link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLicenses": "ui/settings_sections/general_section.json", + "general_tab_section/dividerLicenses": "ui/settings_sections/general_section.json", + "general_tab_section/dividerLicenses/section_divider": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLicensesAfter": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLicensesHeader": "ui/settings_sections/general_section.json", + "general_tab_section/licenses_label_header": "ui/settings_sections/general_section.json", + "general_tab_section/paddingLicensedContent": "ui/settings_sections/general_section.json", + "general_tab_section/licensed_content_link_button": "ui/settings_sections/general_section.json", + "general_tab_section/paddingFontLicense": "ui/settings_sections/general_section.json", + "general_tab_section/font_license_popup_button": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel/spacer_0": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel/copyright_label": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel/spacer_1": "ui/settings_sections/general_section.json", + "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": "ui/settings_sections/general_section.json", + "general_tab_section/paddingSectionDividerContentLog": "ui/settings_sections/general_section.json", + "general_tab_section/build_info_label_panel": "ui/settings_sections/general_section.json", + "general_tab_section/build_info_label_panel/build_info_label": "ui/settings_sections/general_section.json", + "general_tab_section/paddingSectionDividerBuildInfo": "ui/settings_sections/general_section.json", + "general_tab_section/treatment_ids_label": "ui/settings_sections/general_section.json", + "account_section_ore_ui": "ui/settings_sections/general_section.json", + "account_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "account_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "account_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "account_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "account_button": "ui/settings_sections/general_section.json", + "view_account_errors_button_content": "ui/settings_sections/general_section.json", + "switch_accounts_button_content": "ui/settings_sections/general_section.json", + "switch_accounts_button_content/padded_icon": "ui/settings_sections/general_section.json", + "switch_accounts_button_content/padded_icon/icon": "ui/settings_sections/general_section.json", + "switch_accounts_button_content/padded_label": "ui/settings_sections/general_section.json", + "switch_accounts_button_content/padded_label/label": "ui/settings_sections/general_section.json", + "sign_out_button_content": "ui/settings_sections/general_section.json", + "sign_out_button_content/padded_label": "ui/settings_sections/general_section.json", + "sign_out_button_content/padded_label/label": "ui/settings_sections/general_section.json", + "switch_accounts_panel": "ui/settings_sections/general_section.json", + "switch_accounts_panel/name_label": "ui/settings_sections/general_section.json", + "switch_accounts_panel/paddingSwitchAccounts": "ui/settings_sections/general_section.json", + "switch_accounts_panel/switch_accounts": "ui/settings_sections/general_section.json", + "sign_out_panel": "ui/settings_sections/general_section.json", + "sign_out_panel/sign_out": "ui/settings_sections/general_section.json", + "sign_out_fail_popup": "ui/settings_sections/general_section.json", + "sign_out_fail_body_panel": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/body_text_centering_panel1": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/body_text_centering_panel2": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/padding1": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/learn_more_button": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/padding2": "ui/settings_sections/general_section.json", + "sign_out_fail_body_content_stack/close_button": "ui/settings_sections/general_section.json", + "account_section": "ui/settings_sections/general_section.json", + "account_section/use_edu_remember_me": "ui/settings_sections/general_section.json", + "account_section/paddingUseSSO": "ui/settings_sections/general_section.json", + "account_section/switch_accounts": "ui/settings_sections/general_section.json", + "account_section/sign_out": "ui/settings_sections/general_section.json", + "account_section/paddingNameControls": "ui/settings_sections/general_section.json", + "account_section/name_controls": "ui/settings_sections/general_section.json", + "account_section/paddingSignInControls": "ui/settings_sections/general_section.json", + "account_section/signin_controls": "ui/settings_sections/general_section.json", + "account_section/paddingGamerTagControls": "ui/settings_sections/general_section.json", + "account_section/gamertag_controls": "ui/settings_sections/general_section.json", + "account_section/paddingClearMSAToken": "ui/settings_sections/general_section.json", + "account_section/clear_msa_token": "ui/settings_sections/general_section.json", + "account_section/clear_msa_token/clear_msa_token_button": "ui/settings_sections/general_section.json", + "account_section/paddingUnlinkMSAAccount": "ui/settings_sections/general_section.json", + "account_section/unlink_msa_account": "ui/settings_sections/general_section.json", + "account_section/unlink_msa_account_nx": "ui/settings_sections/general_section.json", + "account_section/paddingDeleteAccount": "ui/settings_sections/general_section.json", + "account_section/delete_account": "ui/settings_sections/general_section.json", + "account_section/paddingUseRemoteConnect": "ui/settings_sections/general_section.json", + "account_section/remote_connect_toggle": "ui/settings_sections/general_section.json", + "account_section/paddingInfoLabels": "ui/settings_sections/general_section.json", + "account_section/account_info_buttom": "ui/settings_sections/general_section.json", + "account_section/account_info_buttom/account_info_label": "ui/settings_sections/general_section.json", + "name_controls": "ui/settings_sections/general_section.json", + "name_controls/option_text_edit_control": "ui/settings_sections/general_section.json", + "signin_controls": "ui/settings_sections/general_section.json", + "signin_controls/sign_in": "ui/settings_sections/general_section.json", + "signin_controls/sign_in/action_button": "ui/settings_sections/general_section.json", + "signin_subscription": "ui/settings_sections/general_section.json", + "signin_subscription/sign_in": "ui/settings_sections/general_section.json", + "signin_subscription/sign_in/please_signin_label": "ui/settings_sections/general_section.json", + "gamertag_controls": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/panel_descriptor": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/spacer": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/gamerpic": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/spacer_2": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/panel_gamertag": "ui/settings_sections/general_section.json", + "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": "ui/settings_sections/general_section.json", + "gamertag_controls/paddingXboxAccountButtons": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": "ui/settings_sections/general_section.json", + "gamertag_controls/xboxlive_deep_link_buttons/link_button": "ui/settings_sections/general_section.json", + "gamertag_controls/paddingSignOut": "ui/settings_sections/general_section.json", + "gamertag_controls/realms_invites": "ui/settings_sections/general_section.json", + "gamertag_controls/realms_invites/check_realms_invites_button": "ui/settings_sections/general_section.json", + "gamertag_controls/sign_out": "ui/settings_sections/general_section.json", + "gamertag_controls/sign_out/action_button": "ui/settings_sections/general_section.json", + "gamertag_controls/offline_token_authorization": "ui/settings_sections/general_section.json", + "gamertag_controls/offline_token_authorization/request_psn_authorization_button": "ui/settings_sections/general_section.json", + "auto_update_mode_dropdown_content": "ui/settings_sections/general_section.json", + "global_texture_pack_button": "ui/settings_sections/general_section.json", + "global_texture_pack_section": "ui/settings_sections/general_section.json", + "storage_management_button": "ui/settings_sections/general_section.json", + "storage_management_section": "ui/settings_sections/general_section.json", + "storage_management_header": "ui/settings_sections/general_section.json", + "storage_management_footer": "ui/settings_sections/general_section.json", + "edu_cloud_storage_button": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/spacing1": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_backup_toggle": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/spacing2": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/body_wrapper_panel": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/body_wrapper_panel/tts_border": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/spacing3": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_onedrive_button": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/spacing4": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": "ui/settings_sections/general_section.json", + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content/padded_label": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content/padded_label/label": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content/padded_icon": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_button_content/padded_icon/icon": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_popup": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/body_text_centering_panel2": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/padding2": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/learn_more_button": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/padding3": "ui/settings_sections/general_section.json", + "edu_cloud_onedrive_error_content/ok_button": "ui/settings_sections/general_section.json", + "creator_button": "ui/settings_sections/general_section.json", + "editor_toggle_panel": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_confirmation_panel": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_confirmation_panel/editor_active_label": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_toggle_spacer": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_image_panel": "ui/settings_sections/general_section.json", + "editor_toggle_panel/editor_image_panel/editor_icon": "ui/settings_sections/general_section.json", + "creator_toggles_panel": "ui/settings_sections/general_section.json", + "creator_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "creator_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "creator_toggles_panel/copy_coordinate_section_stack_panel": "ui/settings_sections/general_section.json", + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": "ui/settings_sections/general_section.json", + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", + "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": "ui/settings_sections/general_section.json", + "creator_toggles_panel/creator_setting_button": "ui/settings_sections/general_section.json", + "creator_toggles_panel/creator_setting_button/go_to_keybinds": "ui/settings_sections/general_section.json", + "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": "ui/settings_sections/general_section.json", + "debugger_toggles_panel": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/passcode_required_toggle": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/passcode_input": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/auto_attach_toggle": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": "ui/settings_sections/general_section.json", + "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": "ui/settings_sections/general_section.json", + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/hang_threshold_slider": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/spike_warning_toggle": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/spike_threshold_slider": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/slow_warning_toggle": "ui/settings_sections/general_section.json", + "watchdog_toggles_panel/primary_panel/slow_threshold_slider": "ui/settings_sections/general_section.json", + "device_info_toggles_panel": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/primary_panel": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/primary_panel/heading": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/primary_panel/spacer": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": "ui/settings_sections/general_section.json", + "device_info_toggles_panel/device_info_memory_tier_dropdown": "ui/settings_sections/general_section.json", + "content_memory_tier_dropdown_content": "ui/settings_sections/general_section.json", + "content_log_gui_level_content": "ui/settings_sections/general_section.json", + "content_log_panel": "ui/settings_sections/general_section.json", + "content_log_panel/section_panel_1": "ui/settings_sections/general_section.json", + "content_log_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_section_label": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json", + "content_log_panel/option_content_file_log": "ui/settings_sections/general_section.json", + "content_log_panel/option_content_gui_log": "ui/settings_sections/general_section.json", + "content_log_panel/option_content_gui_log_show_on_errors": "ui/settings_sections/general_section.json", + "content_log_panel/option_content_log_gui_level": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_buttons": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_buttons/open_content_log_history": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_buttons/content_log_section_label_spacer": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_buttons/clear_content_log_files": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_section_label_spacer_2": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_location_label_header": "ui/settings_sections/general_section.json", + "content_log_panel/content_log_location_label": "ui/settings_sections/general_section.json", + "creator_section": "ui/settings_sections/general_section.json", + "creator_section/editor_toggle": "ui/settings_sections/general_section.json", + "creator_section/creator_toggles": "ui/settings_sections/general_section.json", + "creator_section/debugger_toggles_panel": "ui/settings_sections/general_section.json", + "creator_section/diagnostics_toggle_panel": "ui/settings_sections/general_section.json", + "creator_section/watchdog_toggles_panel": "ui/settings_sections/general_section.json", + "creator_section/device_info_toggles_panel": "ui/settings_sections/general_section.json", + "creator_section/content_log_panel": "ui/settings_sections/general_section.json", + "video_button": "ui/settings_sections/general_section.json", + "advanced_video_options_toggle": "ui/settings_sections/general_section.json", + "video_section_ore_ui": "ui/settings_sections/general_section.json", + "video_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "video_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "video_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "video_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "video_menu_slider_step_progress": "ui/settings_sections/general_section.json", + "video_menu_slider_progress": "ui/settings_sections/general_section.json", + "video_menu_slider_bar_default": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control/slider": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control/slider/slider_box": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control/slider/slider_bar_default": "ui/settings_sections/general_section.json", + "video_menu_customization_slider_control/slider/slider_bar_hover": "ui/settings_sections/general_section.json", + "video_menu_customization_option_slider": "ui/settings_sections/general_section.json", + "video_section": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/graphics_mode": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/spacer_0": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": "ui/settings_sections/general_section.json", + "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": "ui/settings_sections/general_section.json", + "video_section/spacer_1": "ui/settings_sections/general_section.json", + "video_section/graphics_api_dropdown": "ui/settings_sections/general_section.json", + "video_section/raytracing_render_distance_slider": "ui/settings_sections/general_section.json", + "video_section/raytracing_render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/deferred_render_distance_slider": "ui/settings_sections/general_section.json", + "video_section/deferred_render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/render_distance_slider": "ui/settings_sections/general_section.json", + "video_section/render_distance_slider/render_distance_warning": "ui/settings_sections/general_section.json", + "video_section/render_distance_slider/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/render_distance_warning_text": "ui/settings_sections/general_section.json", + "video_section/render_distance_warning_text/render_distance_popup": "ui/settings_sections/general_section.json", + "video_section/spacer_2": "ui/settings_sections/general_section.json", + "video_section/brightness_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_3": "ui/settings_sections/general_section.json", + "video_section/perspective_dropdown": "ui/settings_sections/general_section.json", + "video_section/spacer_4": "ui/settings_sections/general_section.json", + "video_section/fullscreen_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_5": "ui/settings_sections/general_section.json", + "video_section/option_toggle_hidehand": "ui/settings_sections/general_section.json", + "video_section/spacer_6": "ui/settings_sections/general_section.json", + "video_section/hide_paperdoll_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_7": "ui/settings_sections/general_section.json", + "video_section/option_toggle_hidehud": "ui/settings_sections/general_section.json", + "video_section/spacer_8": "ui/settings_sections/general_section.json", + "video_section/option_toggle_screen_animations": "ui/settings_sections/general_section.json", + "video_section/spacer_9": "ui/settings_sections/general_section.json", + "video_section/hud_opacity_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_10": "ui/settings_sections/general_section.json", + "video_section/splitscreen_hud_opacity_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_11": "ui/settings_sections/general_section.json", + "video_section/setup_safe_zone": "ui/settings_sections/general_section.json", + "video_section/setup_safe_zone/action_button": "ui/settings_sections/general_section.json", + "video_section/spacer_12": "ui/settings_sections/general_section.json", + "video_section/fov_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_13": "ui/settings_sections/general_section.json", + "video_section/split_screen_dropdown": "ui/settings_sections/general_section.json", + "video_section/spacer_14": "ui/settings_sections/general_section.json", + "video_section/auto_save_icon_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_15": "ui/settings_sections/general_section.json", + "video_section/outline_selection_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_16": "ui/settings_sections/general_section.json", + "video_section/player_names_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_17": "ui/settings_sections/general_section.json", + "video_section/splitscreen_player_names_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_18": "ui/settings_sections/general_section.json", + "video_section/view_bobbing_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_19": "ui/settings_sections/general_section.json", + "video_section/camera_shake_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_20": "ui/settings_sections/general_section.json", + "video_section/fancy_leaves_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_21": "ui/settings_sections/general_section.json", + "video_section/fancy_bubbles_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_22": "ui/settings_sections/general_section.json", + "video_section/render_clouds_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_23": "ui/settings_sections/general_section.json", + "video_section/fancy_clouds_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_24": "ui/settings_sections/general_section.json", + "video_section/smooth_lighting_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_25": "ui/settings_sections/general_section.json", + "video_section/rendering_profile_option_slider": "ui/settings_sections/general_section.json", + "video_section/field_of_view_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_26": "ui/settings_sections/general_section.json", + "video_section/damage_bob_option_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_26.5": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": "ui/settings_sections/general_section.json", + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": "ui/settings_sections/general_section.json", + "video_section/ui_profile_dropdown": "ui/settings_sections/general_section.json", + "video_section/spacer_27": "ui/settings_sections/general_section.json", + "video_section/gui_scale_slider": "ui/settings_sections/general_section.json", + "video_section/gui_scale_slider/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/spacer_28": "ui/settings_sections/general_section.json", + "video_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json", + "video_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/spacer_29": "ui/settings_sections/general_section.json", + "video_section/option_toggle_improved_input_response": "ui/settings_sections/general_section.json", + "video_section/option_toggle_improved_input_response/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/spacer_30": "ui/settings_sections/general_section.json", + "video_section/frame_pacing_toggle": "ui/settings_sections/general_section.json", + "video_section/frame_pacing_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "video_section/spacer_31": "ui/settings_sections/general_section.json", + "video_section/graphics_mode_switch_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_32": "ui/settings_sections/general_section.json", + "video_section/upscaling_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_33": "ui/settings_sections/general_section.json", + "video_section/max_framerate_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_34": "ui/settings_sections/general_section.json", + "video_section/msaa_slider": "ui/settings_sections/general_section.json", + "video_section/spacer_35": "ui/settings_sections/general_section.json", + "video_section/texel_anti_aliasing_toggle": "ui/settings_sections/general_section.json", + "video_section/spacer_36": "ui/settings_sections/general_section.json", + "video_section/reset_button": "ui/settings_sections/general_section.json", + "max_framerate_slider": "ui/settings_sections/general_section.json", + "max_framerate_slider/option_generic_core": "ui/settings_sections/general_section.json", + "msaa_slider": "ui/settings_sections/general_section.json", + "upscaling_toggle": "ui/settings_sections/general_section.json", + "upscaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "render_distance_warning_image": "ui/settings_sections/general_section.json", + "render_distance_warning": "ui/settings_sections/general_section.json", + "render_distance_warning/render_distance_warning_image": "ui/settings_sections/general_section.json", + "ui_profile_dropdown_content": "ui/settings_sections/general_section.json", + "split_screen_dropdown_content": "ui/settings_sections/general_section.json", + "third_person_dropdown_content": "ui/settings_sections/general_section.json", + "toast_notification_duration_dropdown_content": "ui/settings_sections/general_section.json", + "chat_message_duration_dropdown_content": "ui/settings_sections/general_section.json", + "file_storage_location_content": "ui/settings_sections/general_section.json", + "background": "ui/settings_sections/general_section.json", + "background/fill": "ui/settings_sections/general_section.json", + "background/border": "ui/settings_sections/general_section.json", + "left_button_label": "ui/settings_sections/general_section.json", + "right_button_label": "ui/settings_sections/general_section.json", + "realms_button_panel": "ui/settings_sections/general_section.json", + "realms_button_panel/pad_0": "ui/settings_sections/general_section.json", + "realms_button_panel/left_button_panel": "ui/settings_sections/general_section.json", + "realms_button_panel/left_button_panel/left_button": "ui/settings_sections/general_section.json", + "realms_button_panel/left_button_panel/left_button_loading": "ui/settings_sections/general_section.json", + "realms_button_panel/pad_1": "ui/settings_sections/general_section.json", + "realms_button_panel/right_button": "ui/settings_sections/general_section.json", + "realms_button_panel/pad_2": "ui/settings_sections/general_section.json", + "consumable_not_extendable": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/padded_icon_0": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/limited_status_image": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/padded_icon_1": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/label_panel": "ui/settings_sections/general_section.json", + "consumable_not_extendable/panel_content/label_panel/name_label2": "ui/settings_sections/general_section.json", + "possible_store_mismatch": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/padded_icon_0": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/limited_status_image": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/padded_icon_1": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/label_panel": "ui/settings_sections/general_section.json", + "possible_store_mismatch/panel_content/label_panel/name_label2": "ui/settings_sections/general_section.json", + "realms_subscription_stack": "ui/settings_sections/general_section.json", + "realms_subscription_stack/image_panel": "ui/settings_sections/general_section.json", + "realms_subscription_stack/image_panel/0": "ui/settings_sections/general_section.json", + "realms_subscription_stack/pad": "ui/settings_sections/general_section.json", + "realms_subscription_stack/info": "ui/settings_sections/general_section.json", + "realms_subscription_stack/info/realm_name": "ui/settings_sections/general_section.json", + "realms_subscription_stack/info/realms_desc_label": "ui/settings_sections/general_section.json", + "realms_subscription_stack/info/bottom_pad": "ui/settings_sections/general_section.json", + "realms_subscription_main": "ui/settings_sections/general_section.json", + "realms_subscription_main/black_background": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": "ui/settings_sections/general_section.json", + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": "ui/settings_sections/general_section.json", + "realms_subscription_panel": "ui/settings_sections/general_section.json", + "realms_subscription_panel/top_panel": "ui/settings_sections/general_section.json", + "realms_subscription_panel/pad_1": "ui/settings_sections/general_section.json", + "realms_subscription_panel/middle_panel": "ui/settings_sections/general_section.json", + "realms_subscription_panel/middle_panel/black_background": "ui/settings_sections/general_section.json", + "realms_subscription_panel/middle_panel/renews_text": "ui/settings_sections/general_section.json", + "realms_subscription_panel/pad_2": "ui/settings_sections/general_section.json", + "realms_subscription_panel/lower_panel": "ui/settings_sections/general_section.json", + "realms_subscription_panel/lower_panel/black_background": "ui/settings_sections/general_section.json", + "realms_subscription_panel/lower_panel/consumable_not_extendable": "ui/settings_sections/general_section.json", + "realms_subscription_panel/pad_3": "ui/settings_sections/general_section.json", + "realms_subscription_panel/platform_mismatch_container": "ui/settings_sections/general_section.json", + "realms_subscription_panel/platform_mismatch_container/black_background": "ui/settings_sections/general_section.json", + "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": "ui/settings_sections/general_section.json", + "realms_subscription_panel/pad_4": "ui/settings_sections/general_section.json", + "realms_plus_subscription_panel": "ui/settings_sections/general_section.json", + "additional_subscription_panel": "ui/settings_sections/general_section.json", + "view_subscriptions_button": "ui/settings_sections/general_section.json", + "view_subscriptions_prerelease_section": "ui/settings_sections/general_section.json", + "view_subscriptions_prerelease_section/black_background": "ui/settings_sections/general_section.json", + "view_subscriptions_prerelease_section/renews_text": "ui/settings_sections/general_section.json", + "view_subscriptions_section": "ui/settings_sections/general_section.json", + "view_subscriptions_section/sunsetting_label": "ui/settings_sections/general_section.json", + "view_subscriptions_section/failed_loading_subscriptions_label": "ui/settings_sections/general_section.json", + "view_subscriptions_section/loading_subscriptions_label": "ui/settings_sections/general_section.json", + "view_subscriptions_section/no_active_subscriptions_panel": "ui/settings_sections/general_section.json", + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": "ui/settings_sections/general_section.json", + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": "ui/settings_sections/general_section.json", + "view_subscriptions_section/no_active_subscriptions_panel/background_panel": "ui/settings_sections/general_section.json", + "view_subscriptions_section/realms_plus_header_my_subscriptions": "ui/settings_sections/general_section.json", + "view_subscriptions_section/realms_plus_header_my_subscriptions/text": "ui/settings_sections/general_section.json", + "view_subscriptions_section/realms_plus_subscriptions_grid": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_purchased_with_cancel": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_purchased_with_buy": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_purchased_padding": "ui/settings_sections/general_section.json", + "view_subscriptions_section/platform_mismatch_container": "ui/settings_sections/general_section.json", + "view_subscriptions_section/platform_mismatch_container/black_background": "ui/settings_sections/general_section.json", + "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_container/background_panel": "ui/settings_sections/general_section.json", + "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": "ui/settings_sections/general_section.json", + "view_subscriptions_section/additional_realms_subscriptions_grid": "ui/settings_sections/general_section.json", + "view_subscriptions_section/settings_additional_subscription_offers_section": "ui/settings_sections/general_section.json", + "view_subscriptions_section/pad_3": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/active_available_divider": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/realms_plus_header_label": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/pad_0": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/additional_realms_buy_offer": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/pad_8": "ui/settings_sections/general_section.json", + "settings_additional_subscription_offers_section/csb_buy_panel": "ui/settings_sections/general_section.json", + "accessibility_button": "ui/settings_sections/general_section.json", + "toast_notification_duration_label": "ui/settings_sections/general_section.json", + "toast_notification_duration_info_label": "ui/settings_sections/general_section.json", + "toast_notification_duration_info_edu_label": "ui/settings_sections/general_section.json", + "chat_message_duration_label": "ui/settings_sections/general_section.json", + "chat_message_duration_info_label": "ui/settings_sections/general_section.json", + "accessibility_section": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle0": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle1": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle2": "ui/settings_sections/general_section.json", + "accessibility_section/option_slider_0": "ui/settings_sections/general_section.json", + "accessibility_section/option_toggle3": "ui/settings_sections/general_section.json", + "accessibility_section/hud_text_background_opacity_slider": "ui/settings_sections/general_section.json", + "accessibility_section/chat_opacity_slider": "ui/settings_sections/general_section.json", + "accessibility_section/actionbar_text_background_opacity_slider": "ui/settings_sections/general_section.json", + "accessibility_section/camera_shake_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/hide_endflash_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/enable_dithering_blocks_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/enable_dithering_mobs_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/darkness_slider": "ui/settings_sections/general_section.json", + "accessibility_section/glint_strength_slider": "ui/settings_sections/general_section.json", + "accessibility_section/glint_speed_slider": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": "ui/settings_sections/general_section.json", + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": "ui/settings_sections/general_section.json", + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": "ui/settings_sections/general_section.json", + "accessibility_section/gui_scale_slider": "ui/settings_sections/general_section.json", + "accessibility_section/gui_scale_slider/option_generic_core": "ui/settings_sections/general_section.json", + "accessibility_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json", + "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json", + "accessibility_section/reset_button": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "accessibility_section_ore_ui/accessibility_button": "ui/settings_sections/general_section.json", + "sound_button": "ui/settings_sections/general_section.json", + "sound_section_ore_ui": "ui/settings_sections/general_section.json", + "sound_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "sound_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "sound_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "sound_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "sound_section": "ui/settings_sections/general_section.json", + "sound_section/paddingMainVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_0": "ui/settings_sections/general_section.json", + "sound_section/paddingDividerAudioSettings": "ui/settings_sections/general_section.json", + "sound_section/dividerAudioSettings": "ui/settings_sections/general_section.json", + "sound_section/dividerAudioSettings/section_divider": "ui/settings_sections/general_section.json", + "sound_section/paddingMusic": "ui/settings_sections/general_section.json", + "sound_section/option_slider_1": "ui/settings_sections/general_section.json", + "sound_section/paddingSound": "ui/settings_sections/general_section.json", + "sound_section/option_slider_2": "ui/settings_sections/general_section.json", + "sound_section/paddingAmbient": "ui/settings_sections/general_section.json", + "sound_section/option_slider_3": "ui/settings_sections/general_section.json", + "sound_section/paddingBlockVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_4": "ui/settings_sections/general_section.json", + "sound_section/paddingHostile": "ui/settings_sections/general_section.json", + "sound_section/option_slider_5": "ui/settings_sections/general_section.json", + "sound_section/paddingNeutralVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_6": "ui/settings_sections/general_section.json", + "sound_section/paddingPlayervolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_7": "ui/settings_sections/general_section.json", + "sound_section/paddingRecordVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_8": "ui/settings_sections/general_section.json", + "sound_section/paddingWeatherVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_9": "ui/settings_sections/general_section.json", + "sound_section/paddingTTSVolume": "ui/settings_sections/general_section.json", + "sound_section/option_slider_10": "ui/settings_sections/general_section.json", + "sound_section/paddingResetVolumes": "ui/settings_sections/general_section.json", + "sound_section/reset_button": "ui/settings_sections/general_section.json", + "sound_section/paddingEndOfList": "ui/settings_sections/general_section.json", + "language_button": "ui/settings_sections/general_section.json", + "language_grid_item": "ui/settings_sections/general_section.json", + "language_section": "ui/settings_sections/general_section.json", + "language_section/language_list_grid": "ui/settings_sections/general_section.json", + "language_section_ore_ui": "ui/settings_sections/general_section.json", + "language_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json", + "language_section_ore_ui/generic_label": "ui/settings_sections/general_section.json", + "language_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json", + "language_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json", + "preview_button": "ui/settings_sections/general_section.json", + "preview_section": "ui/settings_sections/general_section.json", + "preview_section/spacer_0": "ui/settings_sections/general_section.json", + "preview_section/generic_label": "ui/settings_sections/general_section.json", + "preview_section/preview_store_launch_app1_button": "ui/settings_sections/general_section.json", + "preview_section/preview_store_launch_app2_button": "ui/settings_sections/general_section.json", + "override_date_panel": "ui/settings_sections/general_section.json", + "override_date_panel/year_text_box": "ui/settings_sections/general_section.json", + "override_date_panel/year_month_slash": "ui/settings_sections/general_section.json", + "override_date_panel/month_text_box": "ui/settings_sections/general_section.json", + "override_date_panel/month_day_slash": "ui/settings_sections/general_section.json", + "override_date_panel/day_text_box": "ui/settings_sections/general_section.json", + "override_date_panel/day_hour_slash": "ui/settings_sections/general_section.json", + "override_date_panel/hour_text_box": "ui/settings_sections/general_section.json", + "override_date_panel/hour_minute_slash": "ui/settings_sections/general_section.json", + "override_date_panel/minute_text_box": "ui/settings_sections/general_section.json", + "timezonetype_dropdown_content": "ui/settings_sections/general_section.json", + "date_options_panel": "ui/settings_sections/general_section.json", + "date_options_panel/padding0": "ui/settings_sections/general_section.json", + "date_options_panel/display_override_datetime_option_toggle": "ui/settings_sections/general_section.json", + "date_options_panel/option_toggle_date_override": "ui/settings_sections/general_section.json", + "date_options_panel/override_date_options_panel": "ui/settings_sections/general_section.json", + "override_date_options_panel": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/select_dropdown": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/override_date_panel": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/padding1": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/reset_time_button": "ui/settings_sections/general_section.json", + "override_date_options_panel/override_date_options_background_panel/padding2": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": "ui/settings_sections/general_section.json", + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel/padding0": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": "ui/settings_sections/general_section.json", + "xbox_sandbox_panel/override_xbox_options_panel": "ui/settings_sections/general_section.json", + "override_xbox_options_panel": "ui/settings_sections/general_section.json", + "override_xbox_options_panel/override_xbox_options": "ui/settings_sections/general_section.json", + "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": "ui/settings_sections/general_section.json", + "override_version_options_panel": "ui/settings_sections/general_section.json", + "override_version_options_panel/override_version_panel": "ui/settings_sections/general_section.json", + "override_version_options_panel/override_version_button_panel": "ui/settings_sections/general_section.json", + "override_version_options_panel/override_version_button_panel/update_override_version_button": "ui/settings_sections/general_section.json", + "override_version_options_panel/override_date_panel_bottom_padding": "ui/settings_sections/general_section.json", + "override_version_panel": "ui/settings_sections/general_section.json", + "override_version_panel/major_version_text_box": "ui/settings_sections/general_section.json", + "override_version_panel/first_dot": "ui/settings_sections/general_section.json", + "override_version_panel/minor_version_text_box": "ui/settings_sections/general_section.json", + "override_version_panel/second_dot": "ui/settings_sections/general_section.json", + "override_version_panel/patch_version_text_box": "ui/settings_sections/general_section.json", + "dot_label": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": "ui/settings_sections/general_section.json", + "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": "ui/settings_sections/general_section.json", + "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": "ui/settings_sections/general_section.json", + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": "ui/settings_sections/general_section.json", + "configuration_grid_item": "ui/settings_sections/general_section.json", + "configuration_grid_item/configuration_id_panel": "ui/settings_sections/general_section.json", + "configuration_grid_item/configuration_id_panel/configuration_id": "ui/settings_sections/general_section.json", + "configuration_grid_item/remove_button": "ui/settings_sections/general_section.json", + "remove_configuration_icon": "ui/settings_sections/general_section.json", + "realms_feature_grid_item": "ui/settings_sections/general_section.json", + "realms_feature_grid_item/realms_feature_id_panel": "ui/settings_sections/general_section.json", + "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": "ui/settings_sections/general_section.json", + "realms_feature_grid_item/disable_button": "ui/settings_sections/general_section.json", + "disable_realms_feature_icon": "ui/settings_sections/general_section.json", + "unused_realms_feature_grid_item": "ui/settings_sections/general_section.json", + "unused_realms_feature_grid_item/unused_realms_feature_id_panel": "ui/settings_sections/general_section.json", + "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": "ui/settings_sections/general_section.json", + "unused_realms_feature_grid_item/enable_button": "ui/settings_sections/general_section.json", + "enable_realms_feature_icon": "ui/settings_sections/general_section.json", + "treatment_grid_item": "ui/settings_sections/general_section.json", + "treatment_grid_item/treatment_id_panel": "ui/settings_sections/general_section.json", + "treatment_grid_item/treatment_id_panel/treatment_id": "ui/settings_sections/general_section.json", + "treatment_grid_item/remove_button": "ui/settings_sections/general_section.json", + "remove_treatment_icon": "ui/settings_sections/general_section.json", + "unused_treatment_grid_item": "ui/settings_sections/general_section.json", + "unused_treatment_grid_item/unused_treatment_id_panel": "ui/settings_sections/general_section.json", + "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": "ui/settings_sections/general_section.json", + "unused_treatment_grid_item/add_button": "ui/settings_sections/general_section.json", + "add_treatment_icon": "ui/settings_sections/general_section.json", + "debug_select_windows_store_panel": "ui/settings_sections/general_section.json", + "debug_select_windows_store_panel/select_store_dropdown": "ui/settings_sections/general_section.json", + "debug_select_windows_store_panel/stores_label": "ui/settings_sections/general_section.json", + "debug_select_windows_store_panel/sandbox_label": "ui/settings_sections/general_section.json", + "windows_store_dropdown_content": "ui/settings_sections/general_section.json", + "mock_http_panel": "ui/settings_sections/general_section.json", + "mock_http_panel/display_mock_http_panel_toggle": "ui/settings_sections/general_section.json", + "mock_http_panel/mock_http_panel_content": "ui/settings_sections/general_section.json", + "mock_http_panel_content": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/active_rules_label": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/rule_list": "ui/settings_sections/general_section.json", + "mock_http_panel_content/mock_http_panel_background/divider": "ui/settings_sections/general_section.json", + "mock_http_rule_list": "ui/settings_sections/general_section.json", + "mock_http_rule": "ui/settings_sections/general_section.json", + "mock_http_rule/rule_details_label": "ui/settings_sections/general_section.json", + "mock_http_rule/rule_spacer": "ui/settings_sections/general_section.json", + "automation_button": "ui/settings_sections/general_section.json", + "automation_section": "ui/settings_sections/general_section.json", + "automation_section/automation_tab_label": "ui/settings_sections/general_section.json", + "automation_section/padding": "ui/settings_sections/general_section.json", + "automation_section/automation_test_asset_sas_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_functional_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_server_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_unit_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_broken_functional_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_broken_server_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_broken_unit_test_tags_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_repeat_count_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_soak_test_duration_minutes_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_repeat_failures_only_toggle": "ui/settings_sections/general_section.json", + "automation_section/automation_run_entire_server_test_group": "ui/settings_sections/general_section.json", + "automation_section/automation_testbuild_id_text_box": "ui/settings_sections/general_section.json", + "automation_section/automation_functional_test_block_input_toggle": "ui/settings_sections/general_section.json", + "automation_section/automation_server_test_assert_on_level_diff_toggle": "ui/settings_sections/general_section.json", + "discovery_debug_button": "ui/settings_sections/general_section.json", + "discovery_debug_section": "ui/settings_sections/general_section.json", + "discovery_debug_section/option_discovery_environment": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": "ui/settings_sections/general_section.json", + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": "ui/settings_sections/general_section.json", + "debug_button": "ui/settings_sections/general_section.json", + "feature_toggle": "ui/settings_sections/general_section.json", + "debug_section": "ui/settings_sections/general_section.json", + "debug_section/options_for_qa_convenience": "ui/settings_sections/general_section.json", + "debug_section/options_for_qa_convenience_spacer": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_dev_console_button_0": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_assertions_debug_break": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_assertions_show_dialog": "ui/settings_sections/general_section.json", + "debug_section/option_dev_show_display_logged_error": "ui/settings_sections/general_section.json", + "debug_section/display_logged_error_panel": "ui/settings_sections/general_section.json", + "debug_section/option_dev_force_trial_mode": "ui/settings_sections/general_section.json", + "debug_section/option_dev_force_trial_mode_spacer": "ui/settings_sections/general_section.json", + "debug_section/debug_overlay_pages_label": "ui/settings_sections/general_section.json", + "debug_section/debug_overlay_button_panel": "ui/settings_sections/general_section.json", + "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": "ui/settings_sections/general_section.json", + "debug_section/debug_overlay_button_panel/debug_overlay_next_button": "ui/settings_sections/general_section.json", + "debug_section/pre_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "debug_section/feature_toggles_label": "ui/settings_sections/general_section.json", + "debug_section/feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "debug_section/feature_toggles": "ui/settings_sections/general_section.json", + "debug_section/end_of_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_dev_disable_lan_signaling": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_nethernet_logging_verbosity": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_http_logging_verbosity": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_xsapi_logging_verbosity": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_remote_imgui": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_0": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_extra_debug_hud_info": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_0_1": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_0_2": "ui/settings_sections/general_section.json", + "debug_section/option_slider_0": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_3": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_4": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_5": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_6": "ui/settings_sections/general_section.json", + "debug_section/option_dropdown_server_chunk_map": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_9": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_terrain": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_entities": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_blockentities": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_particles": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_sky": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_weather": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_hud": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_item_in_hand": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_main_menu_cubemap": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": "ui/settings_sections/general_section.json", + "debug_section/leak_memory": "ui/settings_sections/general_section.json", + "debug_section/log_area": "ui/settings_sections/general_section.json", + "debug_section/log_priority": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_build_info": "ui/settings_sections/general_section.json", + "debug_section/option_perf_turtle": "ui/settings_sections/general_section.json", + "debug_section/option_default_profiling_option": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_7": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_8": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_game_tip": "ui/settings_sections/general_section.json", + "debug_section/option_toggle_10": "ui/settings_sections/general_section.json", + "debug_section/dev_disable_client_blob_cache_toggle": "ui/settings_sections/general_section.json", + "debug_section/dev_force_client_blob_cache_toggle": "ui/settings_sections/general_section.json", + "debug_section/devquality_dropdown": "ui/settings_sections/general_section.json", + "debug_section/dev_add_http_delay_seconds": "ui/settings_sections/general_section.json", + "debug_section/dev_show_latency_graph_toggle": "ui/settings_sections/general_section.json", + "debug_section/xbox_sandbox_panel": "ui/settings_sections/general_section.json", + "debug_section/multithreaded_rendering_toggle": "ui/settings_sections/general_section.json", + "debug_section/filewatcher_rendering_toggle": "ui/settings_sections/general_section.json", + "debug_section/enable_texture_hot_reloader_toggle": "ui/settings_sections/general_section.json", + "debug_section/mock_http_panel": "ui/settings_sections/general_section.json", + "debug_section/vsync_dropdown": "ui/settings_sections/general_section.json", + "debug_section/sunsetting_use_overrides_toggle": "ui/settings_sections/general_section.json", + "debug_section/padding_sunsetting": "ui/settings_sections/general_section.json", + "debug_section/sunseting_state_toggle": "ui/settings_sections/general_section.json", + "debug_section/sunsetting_tier_dropdown": "ui/settings_sections/general_section.json", + "debug_section/padding_sunsetting_2": "ui/settings_sections/general_section.json", + "debug_section/padding1": "ui/settings_sections/general_section.json", + "debug_section/copy_internal_settings_folder_to_external": "ui/settings_sections/general_section.json", + "debug_section/padding_reset_day_one": "ui/settings_sections/general_section.json", + "debug_section/reset_new_player_flow": "ui/settings_sections/general_section.json", + "debug_section/reset_day_one_experience": "ui/settings_sections/general_section.json", + "debug_section/option_text_edit_1": "ui/settings_sections/general_section.json", + "debug_section/option_text_edit_2": "ui/settings_sections/general_section.json", + "debug_section/option_text_edit_3": "ui/settings_sections/general_section.json", + "debug_section/reset_report_timer_option": "ui/settings_sections/general_section.json", + "debug_section/reset_online_safety_option": "ui/settings_sections/general_section.json", + "debug_section/reset_ip_safety_option": "ui/settings_sections/general_section.json", + "debug_section/padding_graphics_options": "ui/settings_sections/general_section.json", + "debug_section/option_shadersdk_service_ip": "ui/settings_sections/general_section.json", + "debug_section/option_shadersdk_service_port": "ui/settings_sections/general_section.json", + "debug_section/option_shadersdk_target_port": "ui/settings_sections/general_section.json", + "debug_section/padding_graphics_buttons": "ui/settings_sections/general_section.json", + "debug_section/trigger_graphics_device_loss": "ui/settings_sections/general_section.json", + "debug_section/allocate_texture_handles": "ui/settings_sections/general_section.json", + "debug_section/padding_deferred_debug": "ui/settings_sections/general_section.json", + "debug_section/deferred_platform_override": "ui/settings_sections/general_section.json", + "realms_debug_button": "ui/settings_sections/general_section.json", + "realms_debug_section": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_menu_title": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_title_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/feature_toggles_label": "ui/settings_sections/general_section.json", + "realms_debug_section/feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/feature_toggles": "ui/settings_sections/general_section.json", + "realms_debug_section/end_of_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_dev_toggles_title": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_dev_toggle_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_without_purchase_toggle": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_debug_options_title": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_debug_options_spacer": "ui/settings_sections/general_section.json", + "realms_debug_section/option_dropdown_1": "ui/settings_sections/general_section.json", + "realms_debug_section/option_dropdown_2": "ui/settings_sections/general_section.json", + "realms_debug_section/option_text_edit_0": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_features_override_panel": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_features_override_panel/override_realms_features_panel": "ui/settings_sections/general_section.json", + "realms_debug_section/realms_debug_options_spacer_2": "ui/settings_sections/general_section.json", + "realms_feature_toggle": "ui/settings_sections/general_section.json", + "marketplace_debug_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section": "ui/settings_sections/general_section.json", + "marketplace_debug_section/marketplace_feature_toggles_label": "ui/settings_sections/general_section.json", + "marketplace_debug_section/marketplace_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "marketplace_debug_section/marketplace_feature_toggles": "ui/settings_sections/general_section.json", + "marketplace_debug_section/playfab_token_refresh_threshold": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_dropdown_skin_rotation_speed": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_toggle_all_skins_rotate": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_toggle_display_marketplace_document_id": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_toggle_display_platform_offer_check": "ui/settings_sections/general_section.json", + "marketplace_debug_section/version_options_panel": "ui/settings_sections/general_section.json", + "marketplace_debug_section/version_options_panel/option_version_override": "ui/settings_sections/general_section.json", + "marketplace_debug_section/version_options_panel/override_version_options_panel": "ui/settings_sections/general_section.json", + "marketplace_debug_section/select_windows_store_panel": "ui/settings_sections/general_section.json", + "marketplace_debug_section/date_options_panel": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_clear_store_cache_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_clear_all_cache_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_delete_all_personas_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section/option_delete_legacy_personas_button": "ui/settings_sections/general_section.json", + "marketplace_debug_section/padding2": "ui/settings_sections/general_section.json", + "marketplace_debug_section/enable_coin_debug_switch_toggle": "ui/settings_sections/general_section.json", + "marketplace_debug_section/add_500_coins": "ui/settings_sections/general_section.json", + "marketplace_debug_section/add_100000_coins": "ui/settings_sections/general_section.json", + "marketplace_debug_section/padding3": "ui/settings_sections/general_section.json", + "marketplace_debug_section/reset_entitlements": "ui/settings_sections/general_section.json", + "marketplace_debug_section/reset_wallet": "ui/settings_sections/general_section.json", + "marketplace_feature_toggle": "ui/settings_sections/general_section.json", + "gatherings_debug_button": "ui/settings_sections/general_section.json", + "gatherings_debug_section": "ui/settings_sections/general_section.json", + "gatherings_debug_section/refresh_gatherings_button": "ui/settings_sections/general_section.json", + "gatherings_debug_section/spacer_1": "ui/settings_sections/general_section.json", + "gatherings_debug_section/clear_system_service_pack_cache_button": "ui/settings_sections/general_section.json", + "gatherings_debug_section/spacer_2": "ui/settings_sections/general_section.json", + "gatherings_debug_section/active_gathering_label": "ui/settings_sections/general_section.json", + "gatherings_debug_section/spacer_3": "ui/settings_sections/general_section.json", + "gatherings_debug_section/text_edit_filter_gatherings": "ui/settings_sections/general_section.json", + "gatherings_debug_section/spacer_4": "ui/settings_sections/general_section.json", + "gatherings_debug_section/available_gatherings_section": "ui/settings_sections/general_section.json", + "gathering_grid_item_content": "ui/settings_sections/general_section.json", + "gathering_grid_item_content/gathering_name": "ui/settings_sections/general_section.json", + "gathering_grid_item_content/gathering_uuid": "ui/settings_sections/general_section.json", + "gathering_item_template": "ui/settings_sections/general_section.json", + "gathering_item_template/gathering_item_button": "ui/settings_sections/general_section.json", + "available_gatherings_grid": "ui/settings_sections/general_section.json", + "available_gatherings_panel": "ui/settings_sections/general_section.json", + "available_gatherings_panel/available_label": "ui/settings_sections/general_section.json", + "available_gatherings_panel/gatherings_grid": "ui/settings_sections/general_section.json", + "available_gatherings_panel/spacing_gap": "ui/settings_sections/general_section.json", + "available_gatherings_section": "ui/settings_sections/general_section.json", + "available_gatherings_section/available_gatherings_panel": "ui/settings_sections/general_section.json", + "ui_debug_button": "ui/settings_sections/general_section.json", + "ui_feature_toggle": "ui/settings_sections/general_section.json", + "edu_debug_button": "ui/settings_sections/general_section.json", + "edu_feature_toggle": "ui/settings_sections/general_section.json", + "new_create_world_grid_item": "ui/settings_sections/general_section.json", + "new_edu_create_world_screen_grid_item": "ui/settings_sections/general_section.json", + "new_play_screen_grid_item": "ui/settings_sections/general_section.json", + "new_edit_world_screen_grid_item": "ui/settings_sections/general_section.json", + "new_player_permissions_screen_grid_item": "ui/settings_sections/general_section.json", + "new_send_invites_screen_grid_item": "ui/settings_sections/general_section.json", + "new_death_grid_item": "ui/settings_sections/general_section.json", + "new_bed_grid_item": "ui/settings_sections/general_section.json", + "ore_ui_gameplay_ui_grid_item": "ui/settings_sections/general_section.json", + "new_settings_screen_grid_item": "ui/settings_sections/general_section.json", + "ui_debug_section": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles_label": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles_info_label": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_feature_toggles_label_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_override_label": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_override_info_label": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_override_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edu_create_world_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edu_create_world_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_play_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_play_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_play_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_play_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edit_world_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edit_world_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edit_world_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_edit_world_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_send_invites_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_send_invites_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_send_invites_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_send_invites_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_death_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_death_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_death_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_death_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_bed_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_bed_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_bed_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_bed_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_gameplay_ui_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_gameplay_ui_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_screen_override_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_screen_override_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_sceen_override_divider_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_settings_screen_radio_label": "ui/settings_sections/general_section.json", + "ui_debug_section/new_settings_screen_radio_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/new_settings_screen_radio_button": "ui/settings_sections/general_section.json", + "ui_debug_section/new_settings_screen_radio_button_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_opt_in_options_label": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_opt_in_info_label": "ui/settings_sections/general_section.json", + "ui_debug_section/screen_opt_in_options_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_screen_opt_in_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/other_ui_options_label": "ui/settings_sections/general_section.json", + "ui_debug_section/other_ui_options_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/option_toggle_default_font_override": "ui/settings_sections/general_section.json", + "ui_debug_section/option_toggle_dev_show_tcui_replacement": "ui/settings_sections/general_section.json", + "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": "ui/settings_sections/general_section.json", + "ui_debug_section/ui_feature_toggles_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/option_show_touch_control_selection_screen": "ui/settings_sections/general_section.json", + "ui_debug_section/option_reset_on_start": "ui/settings_sections/general_section.json", + "ui_debug_section/option_slider_drag_dwell": "ui/settings_sections/general_section.json", + "ui_debug_section/option_slider_stack_splitting": "ui/settings_sections/general_section.json", + "ui_debug_section/reset_render_distance_warning_modal_label": "ui/settings_sections/general_section.json", + "ui_debug_section/reset_render_distance_warning_modal_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/reset_render_distance_warning_modal": "ui/settings_sections/general_section.json", + "ui_debug_section/reset_render_distance_warning_modal_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_developer_pages_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_developer_pages_divider/section_divider": "ui/settings_sections/general_section.json", + "ui_debug_section/ore_ui_developer_pages_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_label": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_info_label": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_label_spacer": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_docs": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_tests": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_perf": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_test_modal": "ui/settings_sections/general_section.json", + "ui_debug_section/open_ore_ui_tests_spacer": "ui/settings_sections/general_section.json", + "edu_debug_section": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_feature_toggles_label": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_feature_toggles_label_spacer": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_demo": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_ad_debug_panel": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_ad_token_refresh_threshold": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_ad_max_signin_token_refresh": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_ad_max_graph_token_refresh": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_environment_divider": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_environment_divider/section_divider": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_environment_spacer": "ui/settings_sections/general_section.json", + "edu_debug_section/edu_env_dropdown": "ui/settings_sections/general_section.json", + "flighting_debug_button": "ui/settings_sections/general_section.json", + "flighting_debug_section": "ui/settings_sections/general_section.json", + "flighting_debug_section/treatment_override_panel": "ui/settings_sections/general_section.json", + "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": "ui/settings_sections/general_section.json", + "flighting_debug_section/treatment_override_panel/override_treatments_panel": "ui/settings_sections/general_section.json", + "flighting_debug_section/configuration_override_panel": "ui/settings_sections/general_section.json", + "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": "ui/settings_sections/general_section.json", + "flighting_debug_section/configuration_override_panel/override_configurations_panel": "ui/settings_sections/general_section.json", + "how_to_play_button": "ui/settings_sections/general_section.json", + "how_to_play_section": "ui/settings_sections/general_section.json", + "how_to_play_section/spacer_0": "ui/settings_sections/general_section.json", + "how_to_play_section/generic_label": "ui/settings_sections/general_section.json", + "how_to_play_section/spacer_1": "ui/settings_sections/general_section.json", + "how_to_play_section/gamepad_helper_label": "ui/settings_sections/general_section.json", + "dev_xbox_environment_dropdown_content": "ui/settings_sections/general_section.json", + "dev_discovery_environment_dropdown_content": "ui/settings_sections/general_section.json", + "dev_service_override_type_dropdown_content": "ui/settings_sections/general_section.json", + "dev_realms_environment_dropdown_content": "ui/settings_sections/general_section.json", + "dev_realms_sku_dropdown_content": "ui/settings_sections/general_section.json", + "default_profiling_group_dropdown_content": "ui/settings_sections/general_section.json", + "dev_nethernet_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", + "dev_http_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", + "dev_xsapi_logging_verbosity_dropdown_content": "ui/settings_sections/general_section.json", + "dev_debug_speed_multiplier_options": "ui/settings_sections/general_section.json", + "dev_debug_hud_dropdown_content": "ui/settings_sections/general_section.json", + "dev_chunkMapMode_content": "ui/settings_sections/general_section.json", + "dev_quality_dropdown_content": "ui/settings_sections/general_section.json", + "vysnc_dropdown_content": "ui/settings_sections/general_section.json", + "deferred_platform_override_dropdown_content": "ui/settings_sections/general_section.json", + "dev_education_environment_dropdown_content": "ui/settings_sections/general_section.json", + "dev_sunsetting_tier_dropdown_content": "ui/settings_sections/general_section.json", + "graphics_api_dropdown_content": "ui/settings_sections/general_section.json", + "graphics_mode_dropdown_content": "ui/settings_sections/general_section.json", + "upscaling_mode_dropdown_content": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/advanced_graphics_options_label": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/fill_pad": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/plus_panel": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/plus_panel/plus": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/minus_panel": "ui/settings_sections/general_section.json", + "advanced_graphics_options_button_content/minus_panel/minus": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_0": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/gamma_calibration": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_1": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/max_framerate_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_2": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/msaa_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_3": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/shadow_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_4": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/point_light_shadow_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_5": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/point_light_loding_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_6": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/cloud_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_7": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/volumetric_fog_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_8": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/reflections_quality_slider": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_9": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/bloom_strength": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_10": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/upscaling_toggle": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_11": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/upscaling_mode": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_12": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/upscaling_percentage": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/fancy_clouds_toggle": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/spacer_13": "ui/settings_sections/general_section.json", + "advanced_graphics_options_section/smooth_lighting_toggle": "ui/settings_sections/general_section.json", + }, + "realms_world_section": { + "realm_name_edit": "ui/settings_sections/realms_world_section.json", + "world_name_edit": "ui/settings_sections/realms_world_section.json", + "realm_description_edit": "ui/settings_sections/realms_world_section.json", + "download_world_button": "ui/settings_sections/realms_world_section.json", + "upload_world_button": "ui/settings_sections/realms_world_section.json", + "reset_world_button": "ui/settings_sections/realms_world_section.json", + "manage_feed_button": "ui/settings_sections/realms_world_section.json", + "club_info_label": "ui/settings_sections/realms_world_section.json", + "difficulty_dropdown": "ui/settings_sections/realms_world_section.json", + "game_mode_dropdown": "ui/settings_sections/realms_world_section.json", + "panel_content": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_panel": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_panel/panel_title": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_panel/panel_text": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_panel/opt_in_button": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_divider": "ui/settings_sections/realms_world_section.json", + "panel_content/new_edit_world_opt_in_divider/section_divider": "ui/settings_sections/realms_world_section.json", + "panel_content/option_info_label": "ui/settings_sections/realms_world_section.json", + "panel_content/hardcore_info_label": "ui/settings_sections/realms_world_section.json", + "panel_content/realm_name_edit": "ui/settings_sections/realms_world_section.json", + "panel_content/world_name_edit": "ui/settings_sections/realms_world_section.json", + "panel_content/realm_description_edit": "ui/settings_sections/realms_world_section.json", + "panel_content/difficulty_dropdown": "ui/settings_sections/realms_world_section.json", + "panel_content/game_mode_dropdown": "ui/settings_sections/realms_world_section.json", + "panel_content/is_hardcore_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/world_options_label": "ui/settings_sections/realms_world_section.json", + "panel_content/pvp_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/show_coordinates_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/locator_bar_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/show_days_played_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/fire_spreads_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/recipes_unlock_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/tnt_explodes_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/respawn_blocks_explode_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/mob_loot_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/natural_regeneration_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/tile_drops_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/player_sleep_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/player_sleep_percentage_slider": "ui/settings_sections/realms_world_section.json", + "panel_content/immediate_respawn_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/respawn_radius": "ui/settings_sections/realms_world_section.json", + "panel_content/world_cheats_label": "ui/settings_sections/realms_world_section.json", + "panel_content/allow_cheats_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/daylight_cycle_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/keep_inventory_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/mob_spawn_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/mob_griefing_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/entities_drop_loot_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/weather_cycle_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/command_blocks_enabled_toggle": "ui/settings_sections/realms_world_section.json", + "panel_content/random_tick_speed": "ui/settings_sections/realms_world_section.json", + "panel_content/download_world_button": "ui/settings_sections/realms_world_section.json", + "panel_content/padding_0": "ui/settings_sections/realms_world_section.json", + "panel_content/upload_world_button": "ui/settings_sections/realms_world_section.json", + "panel_content/padding_1": "ui/settings_sections/realms_world_section.json", + "panel_content/reset_world_button": "ui/settings_sections/realms_world_section.json", + "panel_content/padding_2": "ui/settings_sections/realms_world_section.json", + "panel_content/club_info_label": "ui/settings_sections/realms_world_section.json", + "panel_content/manage_feed_button": "ui/settings_sections/realms_world_section.json", + }, + "settings_common": { + "arrow_image": "ui/settings_sections/settings_common.json", + "subsection_title": "ui/settings_sections/settings_common.json", + "subsection_title/spacer_0": "ui/settings_sections/settings_common.json", + "subsection_title/sizer_0": "ui/settings_sections/settings_common.json", + "subsection_title/sizer_0/title": "ui/settings_sections/settings_common.json", + "subsection_title/spacer_1": "ui/settings_sections/settings_common.json", + "subsection_title/sizer_1": "ui/settings_sections/settings_common.json", + "subsection_title/sizer_1/section_divider": "ui/settings_sections/settings_common.json", + "action_button": "ui/settings_sections/settings_common.json", + "action_button_dark_text": "ui/settings_sections/settings_common.json", + "link_button": "ui/settings_sections/settings_common.json", + "option_group_label": "ui/settings_sections/settings_common.json", + "option_group_label/text": "ui/settings_sections/settings_common.json", + "option_group_header": "ui/settings_sections/settings_common.json", + "option_group_header/text": "ui/settings_sections/settings_common.json", + "option_group_spaced_label": "ui/settings_sections/settings_common.json", + "option_group_spaced_label/text": "ui/settings_sections/settings_common.json", + "option_group_spaced_header": "ui/settings_sections/settings_common.json", + "option_group_spaced_header/text": "ui/settings_sections/settings_common.json", + "option_group_section_divider": "ui/settings_sections/settings_common.json", + "option_group_section_divider/background": "ui/settings_sections/settings_common.json", + "option_generic": "ui/settings_sections/settings_common.json", + "option_generic/option_generic_core": "ui/settings_sections/settings_common.json", + "white_label": "ui/settings_sections/settings_common.json", + "option_generic_core": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_label_panel/option_tooltip": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/spacer": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/option_descriptive_text_0": "ui/settings_sections/settings_common.json", + "option_generic_core/two_line_layout/spacer2": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_label_subpanel_01": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_label_subpanel_02": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_descriptive_text": "ui/settings_sections/settings_common.json", + "option_generic_core/one_line_layout/option_tooltip": "ui/settings_sections/settings_common.json", + "option_generic_core/spacer": "ui/settings_sections/settings_common.json", + "option_generic_core_label": "ui/settings_sections/settings_common.json", + "option_generic_tooltip_image": "ui/settings_sections/settings_common.json", + "option_generic_tooltip_top_popup": "ui/settings_sections/settings_common.json", + "option_generic_tooltip_bottom_popup": "ui/settings_sections/settings_common.json", + "option_generic_tooltip": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/focus_detection_input_panel_two_line_layout": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/hover_detection_input_panel": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/option_generic_tooltip_top_popup": "ui/settings_sections/settings_common.json", + "option_generic_tooltip/option_generic_tooltip_bottom_popup": "ui/settings_sections/settings_common.json", + "option_text_edit_control": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_button": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_button/text_box": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_button/button": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_text_button": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_text_button/text_box": "ui/settings_sections/settings_common.json", + "option_text_edit_control_with_text_button/button": "ui/settings_sections/settings_common.json", + "option_toggle_state_template": "ui/settings_sections/settings_common.json", + "option_toggle_on": "ui/settings_sections/settings_common.json", + "option_toggle_off": "ui/settings_sections/settings_common.json", + "option_toggle_on_hover": "ui/settings_sections/settings_common.json", + "option_toggle_off_hover": "ui/settings_sections/settings_common.json", + "option_toggle_on_locked": "ui/settings_sections/settings_common.json", + "option_toggle_off_locked": "ui/settings_sections/settings_common.json", + "option_toggle_control": "ui/settings_sections/settings_common.json", + "checkbox_visuals_unchecked": "ui/settings_sections/settings_common.json", + "checkbox_visuals_checked": "ui/settings_sections/settings_common.json", + "checkbox_visuals_unchecked_locked": "ui/settings_sections/settings_common.json", + "checkbox_visuals_checked_locked": "ui/settings_sections/settings_common.json", + "checkbox_visuals_unchecked_hover": "ui/settings_sections/settings_common.json", + "checkbox_visuals_checked_hover": "ui/settings_sections/settings_common.json", + "checkbox_visuals": "ui/settings_sections/settings_common.json", + "checkbox_visuals/checkbox_image": "ui/settings_sections/settings_common.json", + "checkbox_visuals/checkbox_label": "ui/settings_sections/settings_common.json", + "checkbox_visuals/accessibility_selection_highlight": "ui/settings_sections/settings_common.json", + "checkbox_with_highlight_and_label": "ui/settings_sections/settings_common.json", + "radio_visuals_unchecked": "ui/settings_sections/settings_common.json", + "radio_visuals_checked": "ui/settings_sections/settings_common.json", + "radio_visuals_unchecked_locked": "ui/settings_sections/settings_common.json", + "radio_visuals_checked_locked": "ui/settings_sections/settings_common.json", + "radio_visuals_unchecked_hover": "ui/settings_sections/settings_common.json", + "radio_visuals_checked_hover": "ui/settings_sections/settings_common.json", + "radio_visuals": "ui/settings_sections/settings_common.json", + "radio_visuals/radio_image": "ui/settings_sections/settings_common.json", + "radio_visuals/radio_label": "ui/settings_sections/settings_common.json", + "radio_visuals/accessibility_selection_highlight": "ui/settings_sections/settings_common.json", + "radio_with_label_core": "ui/settings_sections/settings_common.json", + "option_radio_group_control": "ui/settings_sections/settings_common.json", + "option_radio_group_control/0": "ui/settings_sections/settings_common.json", + "radio_with_label": "ui/settings_sections/settings_common.json", + "radio_with_label/radio_with_label_core": "ui/settings_sections/settings_common.json", + "radio_with_label_and_icon": "ui/settings_sections/settings_common.json", + "radio_with_label_and_icon/radio_with_label_core": "ui/settings_sections/settings_common.json", + "radio_with_label_and_icon/radio_with_label_icon": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_unchecked": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_checked": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_unchecked_locked": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_checked_locked": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_unchecked_hover": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_checked_hover": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content_stack_item": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content/radio_background": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content/radio_item_with_description_stack": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": "ui/settings_sections/settings_common.json", + "radio_with_label_and_content/radio_item_with_description_stack/radio_description": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/initial_padding": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_image_panel": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_image_panel/image": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_to_content_padding": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_content_panel": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/content_to_label_padding": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_label_panel": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": "ui/settings_sections/settings_common.json", + "radio_description_panel": "ui/settings_sections/settings_common.json", + "radio_description_panel/description": "ui/settings_sections/settings_common.json", + "radio_description": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content": "ui/settings_sections/settings_common.json", + "radio_item_with_label_and_content/radio_with_label_core": "ui/settings_sections/settings_common.json", + "option_slider_control": "ui/settings_sections/settings_common.json", + "option_slider_control/slider": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/left_padding": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/option_content": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/option_content_padding": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/label_panel": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/label_panel/label": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/arrow_panel": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": "ui/settings_sections/settings_common.json", + "default_options_dropdown_toggle_button_state_content/right_padding": "ui/settings_sections/settings_common.json", + "options_dropdown_toggle_control": "ui/settings_sections/settings_common.json", + "options_dropdown_dark_toggle_control": "ui/settings_sections/settings_common.json", + "option_dropdown_control": "ui/settings_sections/settings_common.json", + "option_dropdown_control/dropdown": "ui/settings_sections/settings_common.json", + "option_dropdown_control_no_scroll": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon/control": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon/icon_panel": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon/icon_panel/icon_image": "ui/settings_sections/settings_common.json", + "option_info_label_with_icon/icon_panel/padding2": "ui/settings_sections/settings_common.json", + "option_info_label_icon": "ui/settings_sections/settings_common.json", + "option_icon_label": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/padding1": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/bulb_panel": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/padding2": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/label_panel": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/label_panel/info_label1": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/label_panel/padding2": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/label_panel/info_label2": "ui/settings_sections/settings_common.json", + "option_info_label_with_bulb/stack_panel/padding3": "ui/settings_sections/settings_common.json", + "option_info_label_with_image": "ui/settings_sections/settings_common.json", + "option_info_label_with_image/control": "ui/settings_sections/settings_common.json", + "option_info_label_image": "ui/settings_sections/settings_common.json", + "option_toggle": "ui/settings_sections/settings_common.json", + "option_radio_group": "ui/settings_sections/settings_common.json", + "option_radio_dropdown_group": "ui/settings_sections/settings_common.json", + "option_radio_dropdown_group/radio_control_group": "ui/settings_sections/settings_common.json", + "option_text_edit": "ui/settings_sections/settings_common.json", + "option_text_edit_with_button": "ui/settings_sections/settings_common.json", + "option_text_edit_with_text_button": "ui/settings_sections/settings_common.json", + "option_slider": "ui/settings_sections/settings_common.json", + "option_dropdown": "ui/settings_sections/settings_common.json", + "option_dropdown_no_scroll": "ui/settings_sections/settings_common.json", + "option_custom_control": "ui/settings_sections/settings_common.json", + "option_info_label": "ui/settings_sections/settings_common.json", + "dynamic_dialog_screen": "ui/settings_sections/settings_common.json", + "settings_content": "ui/settings_sections/settings_common.json", + "settings_content/background": "ui/settings_sections/settings_common.json", + "settings_content/stack_panel": "ui/settings_sections/settings_common.json", + "settings_content/stack_panel/content_panel": "ui/settings_sections/settings_common.json", + "settings_content/stack_panel/content_panel/common_panel": "ui/settings_sections/settings_common.json", + "settings_content/stack_panel/content_panel/container": "ui/settings_sections/settings_common.json", + "settings_content/popup_dialog_factory": "ui/settings_sections/settings_common.json", + "toggle_button_control": "ui/settings_sections/settings_common.json", + "toggle_button_control/glyph": "ui/settings_sections/settings_common.json", + "toggle_button_control/glyph_color": "ui/settings_sections/settings_common.json", + "toggle_button_control/progress_loading_bars": "ui/settings_sections/settings_common.json", + "toggle_button_control/tab_button_text": "ui/settings_sections/settings_common.json", + "section_toggle_base": "ui/settings_sections/settings_common.json", + "section_title_label": "ui/settings_sections/settings_common.json", + "dialog_title_label": "ui/settings_sections/settings_common.json", + "dialog_titles": "ui/settings_sections/settings_common.json", + "dialog_titles/left_padding": "ui/settings_sections/settings_common.json", + "dialog_titles/dialog_title_label": "ui/settings_sections/settings_common.json", + "dialog_titles/center_padding": "ui/settings_sections/settings_common.json", + "dialog_titles/section_title_label": "ui/settings_sections/settings_common.json", + "dialog_titles/right_padding_is_always_right": "ui/settings_sections/settings_common.json", + "dialog_content": "ui/settings_sections/settings_common.json", + "dialog_content/dialog_titles": "ui/settings_sections/settings_common.json", + "dialog_content/selector_area": "ui/settings_sections/settings_common.json", + "dialog_content/content_area": "ui/settings_sections/settings_common.json", + "dialog_content/section_divider": "ui/settings_sections/settings_common.json", + "selector_group_label": "ui/settings_sections/settings_common.json", + "scrollable_selector_area_content": "ui/settings_sections/settings_common.json", + "selector_area": "ui/settings_sections/settings_common.json", + "selector_area/scrolling_panel": "ui/settings_sections/settings_common.json", + "content_area": "ui/settings_sections/settings_common.json", + "content_area/control": "ui/settings_sections/settings_common.json", + "content_area/control/header_panel": "ui/settings_sections/settings_common.json", + "content_area/control/header_panel/content": "ui/settings_sections/settings_common.json", + "content_area/control/scrolling_panel": "ui/settings_sections/settings_common.json", + "content_area/control/footer_panel": "ui/settings_sections/settings_common.json", + "content_area/control/footer_panel/content": "ui/settings_sections/settings_common.json", + "section_divider": "ui/settings_sections/settings_common.json", + "screen_base": "ui/settings_sections/settings_common.json", + }, + "world_section": { + "selector_pane_content": "ui/settings_sections/world_section.json", + "selector_pane_content/world_snapshot_image": "ui/settings_sections/world_section.json", + "selector_pane_content/world_snapshot_image/thumbnail": "ui/settings_sections/world_section.json", + "selector_pane_content/world_snapshot_image/thumbnail/border": "ui/settings_sections/world_section.json", + "selector_pane_content/play_or_create_panel": "ui/settings_sections/world_section.json", + "selector_pane_content/play_or_host_panel": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer": "ui/settings_sections/world_section.json", + "selector_pane_content/server_settings_visibility_panel": "ui/settings_sections/world_section.json", + "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": "ui/settings_sections/world_section.json", + "selector_pane_content/server_settings_visibility_panel/server_settings_button": "ui/settings_sections/world_section.json", + "selector_pane_content/server_settings_visibility_panel/server_spacer": "ui/settings_sections/world_section.json", + "selector_pane_content/selector_group_label_1": "ui/settings_sections/world_section.json", + "selector_pane_content/game_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_01": "ui/settings_sections/world_section.json", + "selector_pane_content/classroom_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_02": "ui/settings_sections/world_section.json", + "selector_pane_content/switch_game_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_03": "ui/settings_sections/world_section.json", + "selector_pane_content/multiplayer_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_04": "ui/settings_sections/world_section.json", + "selector_pane_content/edu_cloud_button": "ui/settings_sections/world_section.json", + "selector_pane_content/spacer_05": "ui/settings_sections/world_section.json", + "selector_pane_content/debug_button": "ui/settings_sections/world_section.json", + "launch_world_button_stack_def": "ui/settings_sections/world_section.json", + "play_or_create_stack_bedrock": "ui/settings_sections/world_section.json", + "play_or_create_stack_bedrock/create_or_play_button": "ui/settings_sections/world_section.json", + "play_or_create_stack_bedrock/play_on_realm_button": "ui/settings_sections/world_section.json", + "edu_play_host_button": "ui/settings_sections/world_section.json", + "play_or_host_stack_edu": "ui/settings_sections/world_section.json", + "play_or_host_stack_edu/edu_play_button": "ui/settings_sections/world_section.json", + "play_or_host_stack_edu/edu_host_button": "ui/settings_sections/world_section.json", + "addons_selector_panel": "ui/settings_sections/world_section.json", + "addons_selector_panel/spacer_01": "ui/settings_sections/world_section.json", + "addons_selector_panel/selector_group_label_2": "ui/settings_sections/world_section.json", + "addons_selector_panel/level_texture_pack_button": "ui/settings_sections/world_section.json", + "addons_selector_panel/spacer_02": "ui/settings_sections/world_section.json", + "addons_selector_panel/addon_button": "ui/settings_sections/world_section.json", + "server_settings_button": "ui/settings_sections/world_section.json", + "server_section": "ui/settings_sections/world_section.json", + "game_button": "ui/settings_sections/world_section.json", + "export_world_button": "ui/settings_sections/world_section.json", + "delete_world_button": "ui/settings_sections/world_section.json", + "export_template_button": "ui/settings_sections/world_section.json", + "copy_world_button": "ui/settings_sections/world_section.json", + "edit_world_manipulation_buttons": "ui/settings_sections/world_section.json", + "edit_world_manipulation_buttons/export": "ui/settings_sections/world_section.json", + "edit_world_manipulation_buttons/padding": "ui/settings_sections/world_section.json", + "edit_world_manipulation_buttons/delete": "ui/settings_sections/world_section.json", + "game_section": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_panel": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_panel/panel_title": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_panel/panel_text": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_panel/opt_in_button": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_divider": "ui/settings_sections/world_section.json", + "game_section/new_edit_world_opt_in_divider/section_divider": "ui/settings_sections/world_section.json", + "game_section/unlock_template_options_panel": "ui/settings_sections/world_section.json", + "game_section/unlock_template_options_panel/option_info_label": "ui/settings_sections/world_section.json", + "game_section/unlock_template_options_panel/unlock_template_options_button": "ui/settings_sections/world_section.json", + "game_section/option_info_label": "ui/settings_sections/world_section.json", + "game_section/hardcore_info_label": "ui/settings_sections/world_section.json", + "game_section/world_settings_label": "ui/settings_sections/world_section.json", + "game_section/option_text_edit_0": "ui/settings_sections/world_section.json", + "game_section/project_section_divider_1": "ui/settings_sections/world_section.json", + "game_section/project_header_label": "ui/settings_sections/world_section.json", + "game_section/project_section_divider_2": "ui/settings_sections/world_section.json", + "game_section/project_spacer": "ui/settings_sections/world_section.json", + "game_section/option_text_edit_1": "ui/settings_sections/world_section.json", + "game_section/export_settings_section_divider_1": "ui/settings_sections/world_section.json", + "game_section/export_settings_header_label": "ui/settings_sections/world_section.json", + "game_section/export_settings_header_description": "ui/settings_sections/world_section.json", + "game_section/export_settings_section_divider_2": "ui/settings_sections/world_section.json", + "game_section/export_settings_spacer": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_0": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_1": "ui/settings_sections/world_section.json", + "game_section/is_hardcore_toggle": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_2": "ui/settings_sections/world_section.json", + "game_section/world_preferences_label": "ui/settings_sections/world_section.json", + "game_section/starting_map_toggle": "ui/settings_sections/world_section.json", + "game_section/bonus_chest_toggle": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_permissions": "ui/settings_sections/world_section.json", + "game_section/option_dropdown_3": "ui/settings_sections/world_section.json", + "game_section/level_seed_selector_edu": "ui/settings_sections/world_section.json", + "game_section/level_seed_selector": "ui/settings_sections/world_section.json", + "game_section/level_seed_selector_trial": "ui/settings_sections/world_section.json", + "game_section/server_sim_distance_slider": "ui/settings_sections/world_section.json", + "game_section/world_options_label": "ui/settings_sections/world_section.json", + "game_section/pvp_toggle": "ui/settings_sections/world_section.json", + "game_section/show_coordinates_toggle": "ui/settings_sections/world_section.json", + "game_section/locator_bar_toggle": "ui/settings_sections/world_section.json", + "game_section/show_days_played_toggle": "ui/settings_sections/world_section.json", + "game_section/fire_spreads_toggle": "ui/settings_sections/world_section.json", + "game_section/recipes_unlock_toggle": "ui/settings_sections/world_section.json", + "game_section/tnt_explodes_toggle": "ui/settings_sections/world_section.json", + "game_section/respawn_blocks_explode_toggle": "ui/settings_sections/world_section.json", + "game_section/mob_loot_toggle": "ui/settings_sections/world_section.json", + "game_section/natural_regeneration_toggle": "ui/settings_sections/world_section.json", + "game_section/tile_drops_toggle": "ui/settings_sections/world_section.json", + "game_section/player_sleep_toggle": "ui/settings_sections/world_section.json", + "game_section/player_sleep_percentage_slider": "ui/settings_sections/world_section.json", + "game_section/immediate_respawn_toggle": "ui/settings_sections/world_section.json", + "game_section/respawn_radius": "ui/settings_sections/world_section.json", + "game_section/experimental_toggles_label": "ui/settings_sections/world_section.json", + "game_section/experimental_toggles_label_info": "ui/settings_sections/world_section.json", + "game_section/experimental_toggles": "ui/settings_sections/world_section.json", + "game_section/world_cheats_label": "ui/settings_sections/world_section.json", + "game_section/allow_cheats_toggle": "ui/settings_sections/world_section.json", + "game_section/education_toggle": "ui/settings_sections/world_section.json", + "game_section/always_day_toggle": "ui/settings_sections/world_section.json", + "game_section/daylight_cycle_toggle": "ui/settings_sections/world_section.json", + "game_section/keep_inventory_toggle": "ui/settings_sections/world_section.json", + "game_section/mob_spawn_toggle": "ui/settings_sections/world_section.json", + "game_section/mob_griefing_toggle": "ui/settings_sections/world_section.json", + "game_section/entities_drop_loot_toggle": "ui/settings_sections/world_section.json", + "game_section/weather_cycle_toggle": "ui/settings_sections/world_section.json", + "game_section/command_blocks_enabled_toggle": "ui/settings_sections/world_section.json", + "game_section/random_tick_speed": "ui/settings_sections/world_section.json", + "game_section/world_management_label": "ui/settings_sections/world_section.json", + "game_section/convert_to_infinite_panel": "ui/settings_sections/world_section.json", + "game_section/convert_to_infinite_panel/convert_to_infinite_button": "ui/settings_sections/world_section.json", + "game_section/delete_button": "ui/settings_sections/world_section.json", + "game_section/button_panel": "ui/settings_sections/world_section.json", + "game_section/button_panel/manipulation_controls": "ui/settings_sections/world_section.json", + "game_section/export_template_panel": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/padding": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_version": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_buttons": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_buttons/template_image_picker_button": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_buttons/padding": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/template_buttons/template_localization_picker_button": "ui/settings_sections/world_section.json", + "game_section/export_template_panel/export_template": "ui/settings_sections/world_section.json", + "game_section/clear_player_data_panel": "ui/settings_sections/world_section.json", + "game_section/clear_player_data_panel/padding": "ui/settings_sections/world_section.json", + "game_section/clear_player_data_panel/clear_player_data_button": "ui/settings_sections/world_section.json", + "game_section/copy_world_panel": "ui/settings_sections/world_section.json", + "game_section/copy_world_panel/copy_world": "ui/settings_sections/world_section.json", + "game_section/upload_download_slot_panel": "ui/settings_sections/world_section.json", + "game_section/upload_download_slot_panel/upload_download_slot_button": "ui/settings_sections/world_section.json", + "game_section/replace_slot_panel": "ui/settings_sections/world_section.json", + "game_section/replace_slot_panel/replace_slot_button": "ui/settings_sections/world_section.json", + "level_texture_pack_button": "ui/settings_sections/world_section.json", + "level_texture_pack_section": "ui/settings_sections/world_section.json", + "addon_button": "ui/settings_sections/world_section.json", + "addon_section": "ui/settings_sections/world_section.json", + "world_game_mode_dropdown_content": "ui/settings_sections/world_section.json", + "xbl_broadcast_dropdown_content": "ui/settings_sections/world_section.json", + "platform_broadcast_dropdown_content": "ui/settings_sections/world_section.json", + "player_game_mode_dropdown_content": "ui/settings_sections/world_section.json", + "world_type_dropdown_content": "ui/settings_sections/world_section.json", + "world_difficulty_dropdown_content": "ui/settings_sections/world_section.json", + "multiplayer_button": "ui/settings_sections/world_section.json", + "cross_platform_warning_label": "ui/settings_sections/world_section.json", + "multiplayer_section": "ui/settings_sections/world_section.json", + "multiplayer_section/multiplayer_game_toggle": "ui/settings_sections/world_section.json", + "multiplayer_section/platform_settings_dropdown": "ui/settings_sections/world_section.json", + "multiplayer_section/xbl_settings_dropdown": "ui/settings_sections/world_section.json", + "multiplayer_section/server_visible_toggle": "ui/settings_sections/world_section.json", + "multiplayer_section/general_multiplayer_warning_label": "ui/settings_sections/world_section.json", + "multiplayer_section/open_uri_button": "ui/settings_sections/world_section.json", + "multiplayer_section/platform_multiplayer_warning_label": "ui/settings_sections/world_section.json", + "multiplayer_section/xbl_multiplayer_warning_label": "ui/settings_sections/world_section.json", + "option_text_edit_mock_with_button": "ui/settings_sections/world_section.json", + "option_text_edit_mock_control_with_button": "ui/settings_sections/world_section.json", + "option_text_edit_mock_control_with_button/trial_text_box_button": "ui/settings_sections/world_section.json", + "option_text_edit_mock_control_with_button/seed_arrow_button": "ui/settings_sections/world_section.json", + "experimental_toggle": "ui/settings_sections/world_section.json", + "open_account_setting_button": "ui/settings_sections/world_section.json", + "edu_cloud_button": "ui/settings_sections/world_section.json", + "edu_cloud_section": "ui/settings_sections/world_section.json", + "edu_cloud_section/edu_cloud_label": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_file_name": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_file_last_changed": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_upload_toggle": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_help_wrapper_panel": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": "ui/settings_sections/world_section.json", + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": "ui/settings_sections/world_section.json", + "debug_button": "ui/settings_sections/world_section.json", + "debug_section": "ui/settings_sections/world_section.json", + "debug_section/flat_nether_toggle": "ui/settings_sections/world_section.json", + "debug_section/game_version_override_toggle": "ui/settings_sections/world_section.json", + "debug_section/game_version_override_textbox": "ui/settings_sections/world_section.json", + "debug_section/spawn_dimension_dropdown": "ui/settings_sections/world_section.json", + "debug_section/spawn_biome_dropdown": "ui/settings_sections/world_section.json", + "debug_section/biome_override_dropdown": "ui/settings_sections/world_section.json", + "debug_section/base_game_version_debug_text": "ui/settings_sections/world_section.json", + "debug_spawn_dimension_dropdown_content": "ui/settings_sections/world_section.json", + "debug_spawn_biome_dropdown_content": "ui/settings_sections/world_section.json", + "debug_biome_override_dropdown_content": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_project": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/padding": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/padding_2": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": "ui/settings_sections/world_section.json", + "editor_edit_world_manipulation_buttons": "ui/settings_sections/world_section.json", + }, + "social_section": { + "party_button": "ui/settings_sections/social_section.json", + "party_section": "ui/settings_sections/social_section.json", + "party_section/party_invite_filter_dropdown": "ui/settings_sections/social_section.json", + "party_section/party_invite_reset_default_padding": "ui/settings_sections/social_section.json", + "party_section/party_invite_send_privileges_dropdown": "ui/settings_sections/social_section.json", + "party_section/party_privacy_default_padding": "ui/settings_sections/social_section.json", + "party_section/party_privacy_dropdown": "ui/settings_sections/social_section.json", + "party_section/party_privacy_label_wrapper": "ui/settings_sections/social_section.json", + "party_section/party_settings_reset_default_button_default_padding": "ui/settings_sections/social_section.json", + "party_section/party_settings_reset_default_button": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_divider": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_divider/section_divider": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_header": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_padding": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_label_wrapper": "ui/settings_sections/social_section.json", + "party_section/privacy_and_online_safety_button_padding": "ui/settings_sections/social_section.json", + "party_section/privacy_and_online_safety_button": "ui/settings_sections/social_section.json", + "party_section/microsoft_account_settings_ending_padding": "ui/settings_sections/social_section.json", + "party_privacy_label": "ui/settings_sections/social_section.json", + "microsoft_account_settings_label": "ui/settings_sections/social_section.json", + "platform_settings_label": "ui/settings_sections/social_section.json", + "party_invite_filter_dropdown_content": "ui/settings_sections/social_section.json", + "party_privacy_dropdown_content": "ui/settings_sections/social_section.json", + "party_invite_send_privileges_dropdown_content": "ui/settings_sections/social_section.json", + }, + "sidebar_navigation": { + "empty_panel": "ui/sidebar_navigation.json", + "empty_fill_x_panel": "ui/sidebar_navigation.json", + "empty_default_panel": "ui/sidebar_navigation.json", + "vertical_padding_panel": "ui/sidebar_navigation.json", + "sidebar_bg": "ui/sidebar_navigation.json", + "sidebar_divider": "ui/sidebar_navigation.json", + "sidebar_divider_panel": "ui/sidebar_navigation.json", + "sidebar_divider_panel/sidebar_divider": "ui/sidebar_navigation.json", + "toggle_content": "ui/sidebar_navigation.json", + "toggle_content/toggle_content": "ui/sidebar_navigation.json", + "sidebar_section_scroll_panel": "ui/sidebar_navigation.json", + "sidebar_bg_content_panel": "ui/sidebar_navigation.json", + "sidebar_bg_content_panel/sidebar_bg_content": "ui/sidebar_navigation.json", + "sidebar_nav_toggle_image": "ui/sidebar_navigation.json", + "sidebar_nav_toggle_image_panel": "ui/sidebar_navigation.json", + "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": "ui/sidebar_navigation.json", + "sidebar_nav_toggle_image_panel/gamepad_helper_icon": "ui/sidebar_navigation.json", + "gamepad_helper_icon_start_toggle": "ui/sidebar_navigation.json", + "verbose_view_toggle_content": "ui/sidebar_navigation.json", + "verbose_view_toggle_content/left_padding": "ui/sidebar_navigation.json", + "verbose_view_toggle_content/sidebar_nav_toggle_image": "ui/sidebar_navigation.json", + "sidebar_toggle_bg": "ui/sidebar_navigation.json", + "sidebar_toggle": "ui/sidebar_navigation.json", + "sidebar_option_toggle": "ui/sidebar_navigation.json", + "simple_sidebar_toggle": "ui/sidebar_navigation.json", + "verbose_toggle": "ui/sidebar_navigation.json", + "verbose_sidebar_option": "ui/sidebar_navigation.json", + "verbose_expand_option": "ui/sidebar_navigation.json", + "verbose_dropdown_option": "ui/sidebar_navigation.json", + "verbose_dropdown_expanded_option": "ui/sidebar_navigation.json", + "verbose_sidebar_expand_section_bg": "ui/sidebar_navigation.json", + "verbose_sidebar_expand_section_panel": "ui/sidebar_navigation.json", + "verbose_expand_section_panel": "ui/sidebar_navigation.json", + "verbose_view_toggle": "ui/sidebar_navigation.json", + "sidebar_option_factory": "ui/sidebar_navigation.json", + "sidebar_option_factory_panel": "ui/sidebar_navigation.json", + "sidebar_option_factory_panel/sidebar_option_factory": "ui/sidebar_navigation.json", + "verbose_button_content": "ui/sidebar_navigation.json", + "verbose_button_content/button_label": "ui/sidebar_navigation.json", + "verbose_button": "ui/sidebar_navigation.json", + "verbose_nav_button_panel": "ui/sidebar_navigation.json", + "verbose_nav_button_panel/verbose_nav_button": "ui/sidebar_navigation.json", + "verbose_screen_nav_button": "ui/sidebar_navigation.json", + "verbose_screen_nav_option_panel": "ui/sidebar_navigation.json", + "verbose_screen_nav_option_panel/verbose_nav_button": "ui/sidebar_navigation.json", + "sidebar_option_factory_scroll_panel": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel/fill_panel": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel/button": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel/padding": "ui/sidebar_navigation.json", + "sidebar_screen_nav_option_factory_panel/platform_icon_padding": "ui/sidebar_navigation.json", + "root_section_content_panel": "ui/sidebar_navigation.json", + "root_section_content_panel/sidebar_option_factory": "ui/sidebar_navigation.json", + "root_section_content_panel/verbose_sidebar_screen_Nav": "ui/sidebar_navigation.json", + "edge_bar": "ui/sidebar_navigation.json", + "verbose_view_stack_panel": "ui/sidebar_navigation.json", + "verbose_view_stack_panel/verbose_view_toggle": "ui/sidebar_navigation.json", + "sidebar_section": "ui/sidebar_navigation.json", + "sidebar_section/left_edge_bar": "ui/sidebar_navigation.json", + "sidebar_section/verbose_view_stack_panel": "ui/sidebar_navigation.json", + "sidebar_section/right_edge_bar": "ui/sidebar_navigation.json", + "root_section": "ui/sidebar_navigation.json", + "verbose_root_section": "ui/sidebar_navigation.json", + "simple_root_section": "ui/sidebar_navigation.json", + "simple_root_section/verbose_view_toggle": "ui/sidebar_navigation.json", + "simple_root_section/root_section": "ui/sidebar_navigation.json", + "sidebar_section_factory_panel": "ui/sidebar_navigation.json", + "sidebar_section_factory_panel/sidebar_section_factory": "ui/sidebar_navigation.json", + "sidebar_view_content_panel": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/sidebar_view": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": "ui/sidebar_navigation.json", + "sidebar_view_content_panel/verbose_view_exit": "ui/sidebar_navigation.json", + "verbose_sidebar_view_modal": "ui/sidebar_navigation.json", + "sidebar_views": "ui/sidebar_navigation.json", + "sidebar_views/sidebar_view_conent": "ui/sidebar_navigation.json", + "sidebar_views/sidebar_view_conent/simple_sidebar_view": "ui/sidebar_navigation.json", + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": "ui/sidebar_navigation.json", + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": "ui/sidebar_navigation.json", + "sidebar_empty_panel": "ui/sidebar_navigation.json", + "content_view": "ui/sidebar_navigation.json", + "content_view/content_view_stack": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": "ui/sidebar_navigation.json", + "content_view/content_view_stack/sidebar_view_stack/divider": "ui/sidebar_navigation.json", + "content_view/content_view_stack/main_view_content": "ui/sidebar_navigation.json", + "content_view/content_view_stack/main_view_content/screen_content": "ui/sidebar_navigation.json", + "sidebar_view": "ui/sidebar_navigation.json", + "sidebar_view/sidebar_content": "ui/sidebar_navigation.json", + "sidebar_view/content_view": "ui/sidebar_navigation.json", + "sidebar_view/progress_loading": "ui/sidebar_navigation.json", + "platform_store_icon_spacing": "ui/sidebar_navigation.json", + }, + "sign": { + "sign_background": "ui/sign_screen.json", + "hanging_sign_background": "ui/sign_screen.json", + "base_sign_text_multiline": "ui/sign_screen.json", + "regular_sign_text_multiline": "ui/sign_screen.json", + "hanging_sign_text_multiline": "ui/sign_screen.json", + "sign_screen_content": "ui/sign_screen.json", + "sign_screen_content/input_eating_panel": "ui/sign_screen.json", + "sign_screen_content/input_eating_panel/text_edit": "ui/sign_screen.json", + "sign_screen_content/invisible_exit_background": "ui/sign_screen.json", + "sign_screen": "ui/sign_screen.json", + }, + "simple_inprogress": { + "title_text": "ui/simple_inprogress_screen.json", + "main_panel": "ui/simple_inprogress_screen.json", + "main_panel/common_panel": "ui/simple_inprogress_screen.json", + "main_panel/title": "ui/simple_inprogress_screen.json", + "main_panel/main_content": "ui/simple_inprogress_screen.json", + "main_panel/progress_loading_bars": "ui/simple_inprogress_screen.json", + "simple_inprogress_screen": "ui/simple_inprogress_screen.json", + "simple_inprogress_screen_content": "ui/simple_inprogress_screen.json", + "simple_inprogress_screen_content/root_panel": "ui/simple_inprogress_screen.json", + "simple_inprogress_screen_content/root_panel/main_panel": "ui/simple_inprogress_screen.json", + }, + "skin_pack_purchase": { + "cycle_pack_left_button": "ui/skin_pack_purchase_screen.json", + "cycle_pack_right_button": "ui/skin_pack_purchase_screen.json", + "skin_model": "ui/skin_pack_purchase_screen.json", + "skin_model/paper_doll": "ui/skin_pack_purchase_screen.json", + "skin_lock": "ui/skin_pack_purchase_screen.json", + "skin_focus_border": "ui/skin_pack_purchase_screen.json", + "skin_focus_border/equip": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_gamepad": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_gamepad/skin_button": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_gamepad/skin_button/hover": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_gamepad/skin_button/pressed": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad/skin_button": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad/skin_button/hover": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad/skin_button/pressed": "ui/skin_pack_purchase_screen.json", + "skin_button_panel_not_gamepad/equip_button": "ui/skin_pack_purchase_screen.json", + "skin_button_panel": "ui/skin_pack_purchase_screen.json", + "skin_button_panel/gamepad": "ui/skin_pack_purchase_screen.json", + "skin_button_panel/not_gamepad": "ui/skin_pack_purchase_screen.json", + "equip_button_state_panel": "ui/skin_pack_purchase_screen.json", + "equip_button_state_panel/button_panel": "ui/skin_pack_purchase_screen.json", + "equip_button_text": "ui/skin_pack_purchase_screen.json", + "equip_button_text/text": "ui/skin_pack_purchase_screen.json", + "skins_grid_item": "ui/skin_pack_purchase_screen.json", + "skins_grid_item/model": "ui/skin_pack_purchase_screen.json", + "skins_grid_item/lock": "ui/skin_pack_purchase_screen.json", + "skins_grid_item/button": "ui/skin_pack_purchase_screen.json", + "skins_grid": "ui/skin_pack_purchase_screen.json", + "skins_panel": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/left": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/sg": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/right": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/progress_loading_panel": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/progress_loading_panel/progress_loading": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/progress_loading_panel/progress_loading_outline": "ui/skin_pack_purchase_screen.json", + "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": "ui/skin_pack_purchase_screen.json", + "screen_root": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_upsell_screen": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_upsell_screen_content": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_upsell_dialog_content": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_upsell_dialog_content/container": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_standard": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_standard_content": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_dialog_content": "ui/skin_pack_purchase_screen.json", + "skin_pack_purchase_dialog_content/container": "ui/skin_pack_purchase_screen.json", + }, + "skin_picker": { + "banner_fill": "ui/skin_picker_screen.json", + "title_label": "ui/skin_picker_screen.json", + "label": "ui/skin_picker_screen.json", + "chevron_image": "ui/skin_picker_screen.json", + "bumper_image": "ui/skin_picker_screen.json", + "undo_image": "ui/skin_picker_screen.json", + "plus_icon": "ui/skin_picker_screen.json", + "direction_button_panel": "ui/skin_picker_screen.json", + "direction_button_panel/chevron_image": "ui/skin_picker_screen.json", + "direction_button_panel/bumper_image": "ui/skin_picker_screen.json", + "cycle_pack_button": "ui/skin_picker_screen.json", + "cycle_pack_left_button": "ui/skin_picker_screen.json", + "cycle_pack_right_button": "ui/skin_picker_screen.json", + "skin_button": "ui/skin_picker_screen.json", + "skin_button/hover": "ui/skin_picker_screen.json", + "skin_button/pressed": "ui/skin_picker_screen.json", + "skin_rotation_arrows": "ui/skin_picker_screen.json", + "skin_viewer_panel": "ui/skin_picker_screen.json", + "skin_viewer_panel/custom_skin_button": "ui/skin_picker_screen.json", + "skin_viewer_panel/skin_model_panel": "ui/skin_picker_screen.json", + "skin_viewer_panel/skin_model_panel/skin_model": "ui/skin_picker_screen.json", + "skin_viewer_panel/lock": "ui/skin_picker_screen.json", + "undo_skin_button": "ui/skin_picker_screen.json", + "accept_skin_button": "ui/skin_picker_screen.json", + "stack_item": "ui/skin_picker_screen.json", + "accept_skin_panel": "ui/skin_picker_screen.json", + "accept_skin_panel/stack_item_0": "ui/skin_picker_screen.json", + "accept_skin_panel/stack_item_0/undo_btn": "ui/skin_picker_screen.json", + "accept_skin_panel/stack_item_1": "ui/skin_picker_screen.json", + "accept_skin_panel/stack_item_1/accept_button": "ui/skin_picker_screen.json", + "appearance_status_image_panel": "ui/skin_picker_screen.json", + "appearance_status_image_panel/limited_status_image": "ui/skin_picker_screen.json", + "appearance_status_image_panel/no_restrictions_status_image": "ui/skin_picker_screen.json", + "appearance_status_content": "ui/skin_picker_screen.json", + "appearance_status_content/appearance_status_image_panel": "ui/skin_picker_screen.json", + "appearance_status_content/padding": "ui/skin_picker_screen.json", + "appearance_status_content/appearance_status_label_panel": "ui/skin_picker_screen.json", + "appearance_status_content/appearance_status_label_panel/appearance_status_label": "ui/skin_picker_screen.json", + "preview_skin_panel": "ui/skin_picker_screen.json", + "preview_skin_panel/preview": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/stack_item_0": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/stack_item_0/rotation": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/padding": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": "ui/skin_picker_screen.json", + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": "ui/skin_picker_screen.json", + "skin_model": "ui/skin_picker_screen.json", + "premium_skin_button": "ui/skin_picker_screen.json", + "skin_lock": "ui/skin_picker_screen.json", + "new_pack_icon": "ui/skin_picker_screen.json", + "new_pack_icon/icon": "ui/skin_picker_screen.json", + "pack_lock": "ui/skin_picker_screen.json", + "pack_lock/locked": "ui/skin_picker_screen.json", + "pack_lock/unlocked": "ui/skin_picker_screen.json", + "skin_input_panel": "ui/skin_picker_screen.json", + "skin_input_panel/sg": "ui/skin_picker_screen.json", + "skins_grid_item": "ui/skin_picker_screen.json", + "skins_grid_item/clip": "ui/skin_picker_screen.json", + "skins_grid_item/clip/model": "ui/skin_picker_screen.json", + "skins_grid_item/lock": "ui/skin_picker_screen.json", + "skins_grid_item/button": "ui/skin_picker_screen.json", + "skins_grid": "ui/skin_picker_screen.json", + "pack_name": "ui/skin_picker_screen.json", + "pack_grid_item": "ui/skin_picker_screen.json", + "pack_grid_item/header": "ui/skin_picker_screen.json", + "pack_grid_item/header/padding": "ui/skin_picker_screen.json", + "pack_grid_item/header/pack_lock": "ui/skin_picker_screen.json", + "pack_grid_item/header/pack_name": "ui/skin_picker_screen.json", + "pack_grid_item/header/padding_2": "ui/skin_picker_screen.json", + "pack_grid_item/header/new_pack_icon": "ui/skin_picker_screen.json", + "pack_grid_item/header/padding_3": "ui/skin_picker_screen.json", + "pack_grid_item/bg": "ui/skin_picker_screen.json", + "pack_grid_item/bg/skin_input_panel": "ui/skin_picker_screen.json", + "pack_grid_item/bg/expand_view_button": "ui/skin_picker_screen.json", + "pack_grid_item/bg/progress_loading_no_connection": "ui/skin_picker_screen.json", + "pack_grid_item/bg/progress_loading": "ui/skin_picker_screen.json", + "premium_packs_grid": "ui/skin_picker_screen.json", + "standard_skin_button": "ui/skin_picker_screen.json", + "default_skins_grid_item": "ui/skin_picker_screen.json", + "default_skins_grid_item/model": "ui/skin_picker_screen.json", + "default_skins_grid_item/button": "ui/skin_picker_screen.json", + "default_skins_grid": "ui/skin_picker_screen.json", + "recent_skins_grid_item": "ui/skin_picker_screen.json", + "recent_skins_grid_item/clip": "ui/skin_picker_screen.json", + "recent_skins_grid_item/clip/model": "ui/skin_picker_screen.json", + "recent_skins_grid_item/button": "ui/skin_picker_screen.json", + "recent_skins_grid": "ui/skin_picker_screen.json", + "standard_frame": "ui/skin_picker_screen.json", + "standard_header": "ui/skin_picker_screen.json", + "standard_fill": "ui/skin_picker_screen.json", + "standard_panel": "ui/skin_picker_screen.json", + "standard_panel/default_skins": "ui/skin_picker_screen.json", + "standard_panel/default_skins/header": "ui/skin_picker_screen.json", + "standard_panel/default_skins/fill": "ui/skin_picker_screen.json", + "standard_panel/default_skins/fill/default_skins_grid": "ui/skin_picker_screen.json", + "standard_panel/recent_skins": "ui/skin_picker_screen.json", + "standard_panel/recent_skins/header": "ui/skin_picker_screen.json", + "standard_panel/recent_skins/fill": "ui/skin_picker_screen.json", + "standard_panel/recent_skins/fill/recent_skins_grid": "ui/skin_picker_screen.json", + "standard_panel/recent_skins/fill/recent_skins_loading_panel": "ui/skin_picker_screen.json", + "scrolling_content_stack": "ui/skin_picker_screen.json", + "scrolling_content_stack/standard_panel": "ui/skin_picker_screen.json", + "scrolling_content_stack/premium_packs_grid": "ui/skin_picker_screen.json", + "all_skins_content": "ui/skin_picker_screen.json", + "all_skins_content/scrolling_frame": "ui/skin_picker_screen.json", + "all_skins_content/scrolling_frame/change_skin_scroll": "ui/skin_picker_screen.json", + "all_skins_content/scrolling_frame/progress_loading": "ui/skin_picker_screen.json", + "all_skins_frame": "ui/skin_picker_screen.json", + "all_skins_frame/all_skins_content": "ui/skin_picker_screen.json", + "title_bar": "ui/skin_picker_screen.json", + "title_bar/padding_0": "ui/skin_picker_screen.json", + "title_bar/fill_panel": "ui/skin_picker_screen.json", + "title_bar/fill_panel/title_holder": "ui/skin_picker_screen.json", + "title_bar/fill_panel/title_holder/change_skin_title": "ui/skin_picker_screen.json", + "title_bar/padding_1": "ui/skin_picker_screen.json", + "title_bar/skin_name_holder": "ui/skin_picker_screen.json", + "title_bar/skin_name_holder/preview_skin_name": "ui/skin_picker_screen.json", + "title_bar/padding_2": "ui/skin_picker_screen.json", + "popup_dialog_skin_model": "ui/skin_picker_screen.json", + "popup_dialog_skin_model/paper_doll": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_button": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_button/hover": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_button/pressed": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_panel": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_panel/model": "ui/skin_picker_screen.json", + "popup_dialog_choose_skin_type_panel/button_highlight": "ui/skin_picker_screen.json", + "popup_dialog__invalid_custom_skin": "ui/skin_picker_screen.json", + "popup_dialog__invalid_custom_skin/popup_dialog_bg": "ui/skin_picker_screen.json", + "popup_dialog__invalid_custom_skin/popup_dialog_message": "ui/skin_picker_screen.json", + "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": "ui/skin_picker_screen.json", + "popup_dialog__upsell_without_store": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type/popup_dialog_bg": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type/popup_dialog_message": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type/left": "ui/skin_picker_screen.json", + "popup_dialog__choose_skin_type/right": "ui/skin_picker_screen.json", + "content": "ui/skin_picker_screen.json", + "content/title": "ui/skin_picker_screen.json", + "content/selector_area": "ui/skin_picker_screen.json", + "content/content_area": "ui/skin_picker_screen.json", + "content/section_divider": "ui/skin_picker_screen.json", + "skin_picker_screen": "ui/skin_picker_screen.json", + "skin_picker_screen_content": "ui/skin_picker_screen.json", + "skin_picker_screen_content/bg": "ui/skin_picker_screen.json", + "skin_picker_screen_content/container": "ui/skin_picker_screen.json", + "skin_picker_screen_content/container/content": "ui/skin_picker_screen.json", + "skin_picker_screen_content/popup_dialog_factory": "ui/skin_picker_screen.json", + "scrollable_selector_area_content": "ui/skin_picker_screen.json", + "selector_area": "ui/skin_picker_screen.json", + "selector_area/all_skins": "ui/skin_picker_screen.json", + "selector_area/inactive_modal_pane_fade": "ui/skin_picker_screen.json", + "content_area": "ui/skin_picker_screen.json", + "content_area/preview_skin": "ui/skin_picker_screen.json", + "content_area/inactive_modal_pane_fade": "ui/skin_picker_screen.json", + "section_divider": "ui/skin_picker_screen.json", + }, + "smithing_table": { + "smithing_image": "ui/smithing_table_screen.json", + "ingot_image": "ui/smithing_table_screen.json", + "smithing_icon": "ui/smithing_table_screen.json", + "upgrade_label": "ui/smithing_table_screen.json", + "icon_and_text_panel": "ui/smithing_table_screen.json", + "icon_and_text_panel/smithing_icon_panel": "ui/smithing_table_screen.json", + "icon_and_text_panel/upgrade_label": "ui/smithing_table_screen.json", + "smithing_icon_panel": "ui/smithing_table_screen.json", + "smithing_icon_panel/smithing_icon": "ui/smithing_table_screen.json", + "plus_sign_icon": "ui/smithing_table_screen.json", + "arrow_icon": "ui/smithing_table_screen.json", + "cross_out_icon": "ui/smithing_table_screen.json", + "smithing_table_output_slot_button": "ui/smithing_table_screen.json", + "smithing_table_item_slot": "ui/smithing_table_screen.json", + "smithing_table_item_slot/container_item": "ui/smithing_table_screen.json", + "recipe_grid": "ui/smithing_table_screen.json", + "recipe_grid/input_item_slot": "ui/smithing_table_screen.json", + "recipe_grid/plus": "ui/smithing_table_screen.json", + "recipe_grid/plus/plus_sign_icon": "ui/smithing_table_screen.json", + "recipe_grid/material_item_slot": "ui/smithing_table_screen.json", + "recipe_grid/yields": "ui/smithing_table_screen.json", + "recipe_grid/yields/arrow_icon": "ui/smithing_table_screen.json", + "recipe_grid/yields/cross_out_icon": "ui/smithing_table_screen.json", + "recipe_grid/result_item_slot": "ui/smithing_table_screen.json", + "recipe_panel": "ui/smithing_table_screen.json", + "recipe_panel/recipe_grid": "ui/smithing_table_screen.json", + "top_half_panel": "ui/smithing_table_screen.json", + "top_half_panel/icon_and_text_panel": "ui/smithing_table_screen.json", + "top_half_panel/recipe_panel": "ui/smithing_table_screen.json", + "smithing_table_panel": "ui/smithing_table_screen.json", + "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_screen.json", + "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_screen.json", + "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/common_panel": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/inventory_selected_icon_button": "ui/smithing_table_screen.json", + "smithing_table_panel/root_panel/gamepad_cursor": "ui/smithing_table_screen.json", + "smithing_table_panel/flying_item_renderer": "ui/smithing_table_screen.json", + "smithing_table_screen": "ui/smithing_table_screen.json", + }, + "smithing_table_2": { + "smithing_icon": "ui/smithing_table_2_screen.json", + "upgrade_label": "ui/smithing_table_2_screen.json", + "icon_and_text_panel": "ui/smithing_table_2_screen.json", + "icon_and_text_panel/smithing_icon_panel": "ui/smithing_table_2_screen.json", + "icon_and_text_panel/upgrade_label": "ui/smithing_table_2_screen.json", + "smithing_icon_panel": "ui/smithing_table_2_screen.json", + "smithing_icon_panel/smithing_icon": "ui/smithing_table_2_screen.json", + "smithing_image": "ui/smithing_table_2_screen.json", + "smithing_material_image_ingot": "ui/smithing_table_2_screen.json", + "arrow_icon": "ui/smithing_table_2_screen.json", + "cross_out_icon_image": "ui/smithing_table_2_screen.json", + "cross_out_icon_button": "ui/smithing_table_2_screen.json", + "cross_out_icon_button/default": "ui/smithing_table_2_screen.json", + "cross_out_icon_button/hover": "ui/smithing_table_2_screen.json", + "smithing_input_image_templates": "ui/smithing_table_2_screen.json", + "smithing_input_image_armors": "ui/smithing_table_2_screen.json", + "smithing_input_image_armors_and_tools": "ui/smithing_table_2_screen.json", + "smithing_material_image_all": "ui/smithing_table_2_screen.json", + "template_overlay_image": "ui/smithing_table_2_screen.json", + "template_overlay_image/templates": "ui/smithing_table_2_screen.json", + "input_overlay_image": "ui/smithing_table_2_screen.json", + "input_overlay_image/armors_and_tools": "ui/smithing_table_2_screen.json", + "input_overlay_image/armors": "ui/smithing_table_2_screen.json", + "material_overlay_image": "ui/smithing_table_2_screen.json", + "material_overlay_image/all_materials": "ui/smithing_table_2_screen.json", + "material_overlay_image/ingot": "ui/smithing_table_2_screen.json", + "smithing_table_output_slot_button": "ui/smithing_table_2_screen.json", + "smithing_table_item_slot": "ui/smithing_table_2_screen.json", + "smithing_table_item_slot/container_item": "ui/smithing_table_2_screen.json", + "recipe_grid": "ui/smithing_table_2_screen.json", + "recipe_grid/template_item_slot": "ui/smithing_table_2_screen.json", + "recipe_grid/input_item_slot": "ui/smithing_table_2_screen.json", + "recipe_grid/material_item_slot": "ui/smithing_table_2_screen.json", + "recipe_grid/yields": "ui/smithing_table_2_screen.json", + "recipe_grid/yields/arrow_icon": "ui/smithing_table_2_screen.json", + "recipe_grid/yields/cross_out_icon": "ui/smithing_table_2_screen.json", + "recipe_grid/result_item_slot": "ui/smithing_table_2_screen.json", + "recipe_grid/result_item_preview": "ui/smithing_table_2_screen.json", + "recipe_panel": "ui/smithing_table_2_screen.json", + "recipe_panel/recipe_grid": "ui/smithing_table_2_screen.json", + "result_item_preview": "ui/smithing_table_2_screen.json", + "result_item_preview/inner": "ui/smithing_table_2_screen.json", + "result_item_preview_inner": "ui/smithing_table_2_screen.json", + "result_item_preview_inner/smithing_preview_renderer": "ui/smithing_table_2_screen.json", + "toolbar_background": "ui/smithing_table_2_screen.json", + "help_button": "ui/smithing_table_2_screen.json", + "toolbar_panel": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/smithing_table_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/smithing_table_2_screen.json", + "toolbar_anchor": "ui/smithing_table_2_screen.json", + "toolbar_anchor/toolbar_panel": "ui/smithing_table_2_screen.json", + "top_half_panel": "ui/smithing_table_2_screen.json", + "top_half_panel/icon_and_text_panel": "ui/smithing_table_2_screen.json", + "top_half_panel/recipe_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_2_screen.json", + "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_2_screen.json", + "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/common_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/inventory_selected_icon_button": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/toolbar_anchor": "ui/smithing_table_2_screen.json", + "smithing_table_panel/root_panel/gamepad_cursor": "ui/smithing_table_2_screen.json", + "smithing_table_panel/flying_item_renderer": "ui/smithing_table_2_screen.json", + }, + "smithing_table_pocket": { + "ingot_image": "ui/smithing_table_screen_pocket.json", + "background_image": "ui/smithing_table_screen_pocket.json", + "arrow_icon": "ui/smithing_table_screen_pocket.json", + "smithing_icon": "ui/smithing_table_screen_pocket.json", + "upgrade_label": "ui/smithing_table_screen_pocket.json", + "smithing_icon_panel": "ui/smithing_table_screen_pocket.json", + "smithing_icon_panel/smithing_icon": "ui/smithing_table_screen_pocket.json", + "smithing_table_title_and_text_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_title_and_text_panel/smithing_icon_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_title_and_text_panel/upgrade_label": "ui/smithing_table_screen_pocket.json", + "slots_panel": "ui/smithing_table_screen_pocket.json", + "slots_panel/input_slot": "ui/smithing_table_screen_pocket.json", + "slots_panel/material_slot": "ui/smithing_table_screen_pocket.json", + "slots_panel/result_slot": "ui/smithing_table_screen_pocket.json", + "slots_panel/plus_sign": "ui/smithing_table_screen_pocket.json", + "slots_panel/arrow": "ui/smithing_table_screen_pocket.json", + "slots_panel/arrow/cross_out": "ui/smithing_table_screen_pocket.json", + "smithing_table_contents_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_contents_panel/smithing_table_title_and_text_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_contents_panel/slots_panel": "ui/smithing_table_screen_pocket.json", + "inventory_grid": "ui/smithing_table_screen_pocket.json", + "inventory_content": "ui/smithing_table_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel/inventory_half_screen": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel/smithing_half_screen": "ui/smithing_table_screen_pocket.json", + "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": "ui/smithing_table_screen_pocket.json", + "header": "ui/smithing_table_screen_pocket.json", + "header/header_background": "ui/smithing_table_screen_pocket.json", + "header/close_button": "ui/smithing_table_screen_pocket.json", + "header/panel": "ui/smithing_table_screen_pocket.json", + "header/panel/title_label": "ui/smithing_table_screen_pocket.json", + "header_and_content_stack_panel": "ui/smithing_table_screen_pocket.json", + "header_and_content_stack_panel/header": "ui/smithing_table_screen_pocket.json", + "header_and_content_stack_panel/inventory_and_smithing_table_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/bg": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/root_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/header_and_content_stack_panel": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/inventory_selected_icon_button": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/hold_icon": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_screen_pocket.json", + "smithing_table_panel/flying_item_renderer": "ui/smithing_table_screen_pocket.json", + }, + "smithing_table_2_pocket": { + "smithing_table_item_renderer": "ui/smithing_table_2_screen_pocket.json", + "smithing_image": "ui/smithing_table_2_screen_pocket.json", + "smithing_material_image_ingot": "ui/smithing_table_2_screen_pocket.json", + "background_image": "ui/smithing_table_2_screen_pocket.json", + "smithing_input_image_templates": "ui/smithing_table_2_screen_pocket.json", + "smithing_material_image_all": "ui/smithing_table_2_screen_pocket.json", + "smithing_input_image_armors": "ui/smithing_table_2_screen_pocket.json", + "smithing_input_image_armors_and_tools": "ui/smithing_table_2_screen_pocket.json", + "template_overlay_image": "ui/smithing_table_2_screen_pocket.json", + "template_overlay_image/templates": "ui/smithing_table_2_screen_pocket.json", + "input_overlay_image": "ui/smithing_table_2_screen_pocket.json", + "input_overlay_image/armors_and_tools": "ui/smithing_table_2_screen_pocket.json", + "input_overlay_image/armors": "ui/smithing_table_2_screen_pocket.json", + "material_overlay_image": "ui/smithing_table_2_screen_pocket.json", + "material_overlay_image/ingot": "ui/smithing_table_2_screen_pocket.json", + "material_overlay_image/all_materials": "ui/smithing_table_2_screen_pocket.json", + "arrow_icon": "ui/smithing_table_2_screen_pocket.json", + "smithing_icon": "ui/smithing_table_2_screen_pocket.json", + "upgrade_label": "ui/smithing_table_2_screen_pocket.json", + "slot_grid_item": "ui/smithing_table_2_screen_pocket.json", + "slot_grid_item/slot": "ui/smithing_table_2_screen_pocket.json", + "template_slot": "ui/smithing_table_2_screen_pocket.json", + "input_slot": "ui/smithing_table_2_screen_pocket.json", + "material_slot": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/template_slot": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/padding1": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/input_slot": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/padding2": "ui/smithing_table_2_screen_pocket.json", + "inputs_stack/material_slot": "ui/smithing_table_2_screen_pocket.json", + "inputs_panel": "ui/smithing_table_2_screen_pocket.json", + "inputs_panel/inputs_stack": "ui/smithing_table_2_screen_pocket.json", + "result_slot": "ui/smithing_table_2_screen_pocket.json", + "cross_out_image": "ui/smithing_table_2_screen_pocket.json", + "cross_out_icon": "ui/smithing_table_2_screen_pocket.json", + "cross_out_icon/default": "ui/smithing_table_2_screen_pocket.json", + "cross_out_icon/hover": "ui/smithing_table_2_screen_pocket.json", + "crafting_arrow": "ui/smithing_table_2_screen_pocket.json", + "crafting_arrow/cross_out": "ui/smithing_table_2_screen_pocket.json", + "crafting_arrow_grid_item": "ui/smithing_table_2_screen_pocket.json", + "crafting_arrow_grid_item/crafting_arrow": "ui/smithing_table_2_screen_pocket.json", + "result_item_preview": "ui/smithing_table_2_screen_pocket.json", + "result_item_preview/smithing_preview_renderer": "ui/smithing_table_2_screen_pocket.json", + "result_item_preview_grid_item": "ui/smithing_table_2_screen_pocket.json", + "result_item_preview_grid_item/result_preview": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/label_holder": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/label_holder/title_label": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/inputs": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/result_slot": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/crafting_arrow": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_contents_panel/result_item_preview": "ui/smithing_table_2_screen_pocket.json", + "chest_item_renderer": "ui/smithing_table_2_screen_pocket.json", + "left_tab_inventory": "ui/smithing_table_2_screen_pocket.json", + "left_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/smithing_table_2_screen_pocket.json", + "inventory_scroll_panel": "ui/smithing_table_2_screen_pocket.json", + "left_panel": "ui/smithing_table_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/smithing_table_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/smithing_table_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", + "left_panel/content": "ui/smithing_table_2_screen_pocket.json", + "left_panel/content/bg": "ui/smithing_table_2_screen_pocket.json", + "left_panel/content/inventory_scroll_panel": "ui/smithing_table_2_screen_pocket.json", + "right_tab_smithing_table": "ui/smithing_table_2_screen_pocket.json", + "right_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", + "right_navigation_tabs/pocket_tab_close_and_help_button": "ui/smithing_table_2_screen_pocket.json", + "right_navigation_tabs/fill": "ui/smithing_table_2_screen_pocket.json", + "right_navigation_tabs/right_tab_smithing_table": "ui/smithing_table_2_screen_pocket.json", + "right_panel": "ui/smithing_table_2_screen_pocket.json", + "right_panel/content": "ui/smithing_table_2_screen_pocket.json", + "right_panel/content/bg": "ui/smithing_table_2_screen_pocket.json", + "right_panel/content/smithing_content_stack_panel": "ui/smithing_table_2_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/smithing_table_2_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/smithing_table_2_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/pocket_hotbar_and_content_panels": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/container_gamepad_helpers": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/selected_item_details_factory": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/item_lock_notification_factory": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/inventory_selected_icon_button": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/inventory_take_progress_icon_button": "ui/smithing_table_2_screen_pocket.json", + "smithing_table_panel/flying_item_renderer": "ui/smithing_table_2_screen_pocket.json", + }, + "smoker": { + "smoker_screen": "ui/smoker_screen.json", + }, + "start": { + "achievements_icon": "ui/start_screen.json", + "inbox_bell_animated_icon": "ui/start_screen.json", + "inbox_icon": "ui/start_screen.json", + "unread_notification_icon": "ui/start_screen.json", + "feedback_icon": "ui/start_screen.json", + "feedback_icon_edu": "ui/start_screen.json", + "Xbox_icon": "ui/start_screen.json", + "change_skin_icon": "ui/start_screen.json", + "manage_accounts_icon": "ui/start_screen.json", + "new_offers_icon": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content/padded_label": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content/padded_label/label": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content/padded_icon": "ui/start_screen.json", + "edu_ai_lesson_crafter_button_content/padded_icon/icon": "ui/start_screen.json", + "preview_tag": "ui/start_screen.json", + "preview_tag/preview_label": "ui/start_screen.json", + "update_prompt_icon": "ui/start_screen.json", + "marketplace_error_icon": "ui/start_screen.json", + "sale_ribbon_icon": "ui/start_screen.json", + "alex_icon": "ui/start_screen.json", + "gamerpic": "ui/start_screen.json", + "copyright": "ui/start_screen.json", + "copyright/label": "ui/start_screen.json", + "copyright/label_background": "ui/start_screen.json", + "development_version": "ui/start_screen.json", + "development_version/label": "ui/start_screen.json", + "development_version/label_background": "ui/start_screen.json", + "version": "ui/start_screen.json", + "version/label": "ui/start_screen.json", + "version/label_background": "ui/start_screen.json", + "trial_info": "ui/start_screen.json", + "trial_info/trial_label": "ui/start_screen.json", + "trial_info/label_background": "ui/start_screen.json", + "text_panel": "ui/start_screen.json", + "text_panel/copyright": "ui/start_screen.json", + "text_panel/development_version": "ui/start_screen.json", + "text_panel/version": "ui/start_screen.json", + "skin_or_profile_panel": "ui/start_screen.json", + "skin_or_profile_panel/change_skin": "ui/start_screen.json", + "skin_or_profile_panel/change_skin_button_demo": "ui/start_screen.json", + "skin_or_profile_panel/dressing_room_button": "ui/start_screen.json", + "skin_or_profile_panel/switch_accounts": "ui/start_screen.json", + "skin_or_profile_panel/profile_button": "ui/start_screen.json", + "change_skin_button": "ui/start_screen.json", + "change_skin_button_demo": "ui/start_screen.json", + "switch_accounts_button": "ui/start_screen.json", + "dressing_room_button": "ui/start_screen.json", + "profile_button_content": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": "ui/start_screen.json", + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": "ui/start_screen.json", + "profile_button_content/padding_middle": "ui/start_screen.json", + "profile_button_content/vertically_central_text": "ui/start_screen.json", + "profile_button_content/vertically_central_text/top_padding": "ui/start_screen.json", + "profile_button_content/vertically_central_text/profile_button_label": "ui/start_screen.json", + "profile_button_content/padding_right": "ui/start_screen.json", + "profile_button": "ui/start_screen.json", + "skin_viewer_panel": "ui/start_screen.json", + "skin_viewer_panel/paper_doll_panel": "ui/start_screen.json", + "skin_viewer_panel/paper_doll_panel/paper_doll": "ui/start_screen.json", + "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": "ui/start_screen.json", + "skin_viewer_panel/paper_doll_name_tag": "ui/start_screen.json", + "skin_panel": "ui/start_screen.json", + "skin_panel/change_profile_or_skin": "ui/start_screen.json", + "skin_panel/viewer_panel": "ui/start_screen.json", + "friendsdrawer_button_panel": "ui/start_screen.json", + "friendsdrawer_button_panel/friendsdrawer_button": "ui/start_screen.json", + "gathering_button": "ui/start_screen.json", + "badge_and_caption_animated": "ui/start_screen.json", + "badge_and_caption_animated/caption_and_padding": "ui/start_screen.json", + "badge_and_caption_animated/caption_and_padding/pad": "ui/start_screen.json", + "badge_and_caption_animated/caption_and_padding/caption": "ui/start_screen.json", + "badge_and_caption_animated/badge_and_padding": "ui/start_screen.json", + "badge_and_caption_animated/badge_and_padding/badge": "ui/start_screen.json", + "badge_and_caption_animated/badge_and_padding/fill": "ui/start_screen.json", + "gathering_badge": "ui/start_screen.json", + "badge_and_caption": "ui/start_screen.json", + "badge_and_caption/caption_and_padding": "ui/start_screen.json", + "badge_and_caption/caption_and_padding/pad": "ui/start_screen.json", + "badge_and_caption/caption_and_padding/caption": "ui/start_screen.json", + "badge_and_caption/badge_and_padding": "ui/start_screen.json", + "badge_and_caption/badge_and_padding/badge": "ui/start_screen.json", + "badge_and_caption/badge_and_padding/fill": "ui/start_screen.json", + "gathering_caption": "ui/start_screen.json", + "gathering_caption/countdown_text": "ui/start_screen.json", + "gathering_panel": "ui/start_screen.json", + "gathering_panel/horizontal_panel": "ui/start_screen.json", + "gathering_panel/horizontal_panel/pad": "ui/start_screen.json", + "gathering_panel/horizontal_panel/inner_panel": "ui/start_screen.json", + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": "ui/start_screen.json", + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": "ui/start_screen.json", + "gathering_panel/horizontal_panel/inner_panel/gathering_button": "ui/start_screen.json", + "gathering_panel/bottom_pad": "ui/start_screen.json", + "edu_feedback_button": "ui/start_screen.json", + "release_feedback_button": "ui/start_screen.json", + "pre_release_feedback_button": "ui/start_screen.json", + "feedback_button": "ui/start_screen.json", + "feedback_button/edu_feedback_button": "ui/start_screen.json", + "feedback_button/release_feedback_button": "ui/start_screen.json", + "feedback_button/pre_release_feedback_button": "ui/start_screen.json", + "achievements_button": "ui/start_screen.json", + "achievements_icon_button": "ui/start_screen.json", + "achievements_icon_button/achievements_button": "ui/start_screen.json", + "inbox_button": "ui/start_screen.json", + "inbox_button_unread_panel": "ui/start_screen.json", + "inbox_button_unread_panel/background": "ui/start_screen.json", + "inbox_icon_button": "ui/start_screen.json", + "inbox_icon_button/inbox_button": "ui/start_screen.json", + "inbox_icon_button/inbox_button_unread_panel": "ui/start_screen.json", + "xbl_signin_button": "ui/start_screen.json", + "platform_signin_button": "ui/start_screen.json", + "column_frame": "ui/start_screen.json", + "educator_resources_button": "ui/start_screen.json", + "upper_online_buttons_panel": "ui/start_screen.json", + "upper_online_buttons_panel/top_pad": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/xbl_btn_padding": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/xbl_btn": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/platform_signin_btn": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": "ui/start_screen.json", + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": "ui/start_screen.json", + "upper_online_buttons_panel/bottom_pad": "ui/start_screen.json", + "lower_online_buttons_panel": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/feedback_padding": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/feedback_btn": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/signingin": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/achievements_padding": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/achievements_btn": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/inbox_padding": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/inbox_btn": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/profile_btn_padding": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/profile_btn": "ui/start_screen.json", + "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": "ui/start_screen.json", + "main_button": "ui/start_screen.json", + "main_button_dark": "ui/start_screen.json", + "main_content_button": "ui/start_screen.json", + "main_button_gif": "ui/start_screen.json", + "main_button_banner": "ui/start_screen.json", + "main_button_banner/banner_label": "ui/start_screen.json", + "play_button": "ui/start_screen.json", + "play_button_art": "ui/start_screen.json", + "play_button_art/default_background": "ui/start_screen.json", + "play_button_art/hover_background": "ui/start_screen.json", + "play_button_art/label": "ui/start_screen.json", + "play_button_art/default_foreground": "ui/start_screen.json", + "play_button_art/hover_foreground": "ui/start_screen.json", + "play_button_stack": "ui/start_screen.json", + "play_button_stack/play_button": "ui/start_screen.json", + "play_button_stack/play_button_art": "ui/start_screen.json", + "play_button_stack/play_button_banner": "ui/start_screen.json", + "get_started_button": "ui/start_screen.json", + "main_menu_button": "ui/start_screen.json", + "featured_world_button": "ui/start_screen.json", + "unlock_full_game_button": "ui/start_screen.json", + "launch_editions_button": "ui/start_screen.json", + "ai_lesson_crafter_button": "ui/start_screen.json", + "settings_button": "ui/start_screen.json", + "realms_button": "ui/start_screen.json", + "servers_button": "ui/start_screen.json", + "store_button": "ui/start_screen.json", + "error_store_button": "ui/start_screen.json", + "store_button_sale_banner": "ui/start_screen.json", + "store_button_sale_banner/banner_label_padding": "ui/start_screen.json", + "store_button_sale_banner/banner_label_padding/banner_label": "ui/start_screen.json", + "store_button_content": "ui/start_screen.json", + "store_button_content/button_label": "ui/start_screen.json", + "store_button_content/sales_banner": "ui/start_screen.json", + "store_error_image": "ui/start_screen.json", + "store_error_content": "ui/start_screen.json", + "store_error_content/marketplace_button_label": "ui/start_screen.json", + "store_sale_label": "ui/start_screen.json", + "store_button_art": "ui/start_screen.json", + "store_button_art/default_background": "ui/start_screen.json", + "store_button_art/hover_background": "ui/start_screen.json", + "store_button_art/label": "ui/start_screen.json", + "store_button_art/default_foreground": "ui/start_screen.json", + "store_button_art/hover_foreground": "ui/start_screen.json", + "store_button_stack": "ui/start_screen.json", + "store_button_stack/store_button": "ui/start_screen.json", + "store_button_stack/store_button_art": "ui/start_screen.json", + "store_button_stack/store_button_banner": "ui/start_screen.json", + "store_button_stack/update_icon": "ui/start_screen.json", + "store_button_stack/new_offers_icon": "ui/start_screen.json", + "buy_game_button": "ui/start_screen.json", + "stacked_row": "ui/start_screen.json", + "main_buttons_stack_panel": "ui/start_screen.json", + "main_buttons_stack_panel/title_offset_padding": "ui/start_screen.json", + "main_buttons_stack_panel/title_panel_content": "ui/start_screen.json", + "main_buttons_stack_panel/padding_fill_1": "ui/start_screen.json", + "main_buttons_stack_panel/main_buttons_panel": "ui/start_screen.json", + "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": "ui/start_screen.json", + "main_buttons_stack_panel/main_buttons_panel_new_player_flow": "ui/start_screen.json", + "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": "ui/start_screen.json", + "main_buttons_stack_panel/padding_fill_2": "ui/start_screen.json", + "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": "ui/start_screen.json", + "main_buttons_stack_panel/padding_3": "ui/start_screen.json", + "main_buttons_panel_new_player_flow": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/spacer": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": "ui/start_screen.json", + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": "ui/start_screen.json", + "main_buttons_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/play": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/featured_world": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/featured_world/featured_world_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/edu_featured_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/settings/settings_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/realms": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/realms/realms_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/unlock_full_game_row": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/store": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/buy_game": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/buy_game/buy_game_button": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/launch_editions": "ui/start_screen.json", + "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": "ui/start_screen.json", + "gamepad_helpers": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_a": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_b_and_padding": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_y_and_padding": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_x_and_padding": "ui/start_screen.json", + "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": "ui/start_screen.json", + "invite_notification_icon": "ui/start_screen.json", + "invite_notification_button": "ui/start_screen.json", + "notification_button_text": "ui/start_screen.json", + "notification_button_text_background": "ui/start_screen.json", + "notification_button_text_panel": "ui/start_screen.json", + "notification_button_text_panel/text": "ui/start_screen.json", + "notification_button_text_panel/text/background": "ui/start_screen.json", + "start_screen": "ui/start_screen.json", + "start_screen_content": "ui/start_screen.json", + "start_screen_content/main_buttons_and_title_panel": "ui/start_screen.json", + "start_screen_content/online_button_stack": "ui/start_screen.json", + "start_screen_content/online_button_stack/gathering_panel": "ui/start_screen.json", + "start_screen_content/online_button_stack/upper_online_buttons_panel": "ui/start_screen.json", + "start_screen_content/online_button_stack/lower_online_buttons_panel": "ui/start_screen.json", + "start_screen_content/skin_panel": "ui/start_screen.json", + "start_screen_content/text_panel": "ui/start_screen.json", + "start_screen_content/friendsdrawer_button_panel": "ui/start_screen.json", + }, + "stonecutter": { + "stonecutter_label": "ui/stonecutter_screen.json", + "arrow_icon": "ui/stonecutter_screen.json", + "stone_cell_image": "ui/stonecutter_screen.json", + "container_cell_image": "ui/stonecutter_screen.json", + "toolbar_background": "ui/stonecutter_screen.json", + "highlight_slot_panel": "ui/stonecutter_screen.json", + "highlight_slot_panel/hover_text": "ui/stonecutter_screen.json", + "highlight_slot_panel/highlight": "ui/stonecutter_screen.json", + "highlight_slot_panel/white_border": "ui/stonecutter_screen.json", + "stone_slot_button": "ui/stonecutter_screen.json", + "stone_slot_button/hover": "ui/stonecutter_screen.json", + "item_panel": "ui/stonecutter_screen.json", + "item_panel/item_renderer": "ui/stonecutter_screen.json", + "item_panel/item_renderer/stack_count_label": "ui/stonecutter_screen.json", + "stone_button": "ui/stonecutter_screen.json", + "stone_button/banner_pattern": "ui/stonecutter_screen.json", + "stone_button/item_button_ref": "ui/stonecutter_screen.json", + "scroll_grid": "ui/stonecutter_screen.json", + "scroll_grid_panel": "ui/stonecutter_screen.json", + "scroll_grid_panel/grid": "ui/stonecutter_screen.json", + "scroll_panel": "ui/stonecutter_screen.json", + "stone_book_panel": "ui/stonecutter_screen.json", + "stone_book_panel/bg": "ui/stonecutter_screen.json", + "stone_book_panel/scroll_panel": "ui/stonecutter_screen.json", + "result_slot_button": "ui/stonecutter_screen.json", + "input_item_slot": "ui/stonecutter_screen.json", + "result_item_slot": "ui/stonecutter_screen.json", + "input_slots_stack_panel": "ui/stonecutter_screen.json", + "input_slots_stack_panel/input_item_slot": "ui/stonecutter_screen.json", + "top_half_stack_panel": "ui/stonecutter_screen.json", + "top_half_stack_panel/input_slots_holder": "ui/stonecutter_screen.json", + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": "ui/stonecutter_screen.json", + "top_half_stack_panel/padding_1": "ui/stonecutter_screen.json", + "top_half_stack_panel/arrow_holder": "ui/stonecutter_screen.json", + "top_half_stack_panel/arrow_holder/arrow_icon": "ui/stonecutter_screen.json", + "top_half_stack_panel/padding_2": "ui/stonecutter_screen.json", + "top_half_stack_panel/result_item_slot_holder": "ui/stonecutter_screen.json", + "top_half_stack_panel/result_item_slot_holder/result_item_slot": "ui/stonecutter_screen.json", + "top_half_panel": "ui/stonecutter_screen.json", + "top_half_panel/top_half_stack_panel": "ui/stonecutter_screen.json", + "right_panel": "ui/stonecutter_screen.json", + "right_panel/common_panel": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory/stonecutter_label": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory/top_half_panel": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": "ui/stonecutter_screen.json", + "right_panel/stonecutter_screen_inventory/hotbar_grid": "ui/stonecutter_screen.json", + "toolbar_panel": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/stonecutter_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/stonecutter_screen.json", + "toolbar_anchor": "ui/stonecutter_screen.json", + "toolbar_anchor/toolbar_panel": "ui/stonecutter_screen.json", + "center_fold": "ui/stonecutter_screen.json", + "center_fold/center_bg": "ui/stonecutter_screen.json", + "screen_stack_panel": "ui/stonecutter_screen.json", + "screen_stack_panel/stone_book_panel": "ui/stonecutter_screen.json", + "screen_stack_panel/center_fold": "ui/stonecutter_screen.json", + "screen_stack_panel/right_panel": "ui/stonecutter_screen.json", + "screen_stack_panel/toolbar_anchor": "ui/stonecutter_screen.json", + "stonecutter_panel": "ui/stonecutter_screen.json", + "stonecutter_panel/screen_stack_panel": "ui/stonecutter_screen.json", + "stonecutter_panel/container_gamepad_helpers": "ui/stonecutter_screen.json", + "stonecutter_panel/selected_item_details_factory": "ui/stonecutter_screen.json", + "stonecutter_panel/item_lock_notification_factory": "ui/stonecutter_screen.json", + "stonecutter_panel/inventory_selected_icon_button": "ui/stonecutter_screen.json", + "stonecutter_panel/inventory_take_progress_icon_button": "ui/stonecutter_screen.json", + "stonecutter_panel/flying_item_renderer": "ui/stonecutter_screen.json", + "stonecutter_screen": "ui/stonecutter_screen.json", + }, + "stonecutter_pocket": { + "vertical_arrow_icon": "ui/stonecutter_screen_pocket.json", + "chest_item_renderer": "ui/stonecutter_screen_pocket.json", + "stonecutter_item_renderer": "ui/stonecutter_screen_pocket.json", + "input_item_slot": "ui/stonecutter_screen_pocket.json", + "result_item_slot": "ui/stonecutter_screen_pocket.json", + "right_panel": "ui/stonecutter_screen_pocket.json", + "right_panel/content": "ui/stonecutter_screen_pocket.json", + "right_panel/content/bg": "ui/stonecutter_screen_pocket.json", + "right_panel/content/stonecutter_content_stack_panel": "ui/stonecutter_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/stonecutter_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/stonecutter_screen_pocket.json", + "right_tab_stonecutter": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/close": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/close/nodrop_zone": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/close/close_button": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/fill": "ui/stonecutter_screen_pocket.json", + "right_navigation_tabs/right_tab_stonecutter": "ui/stonecutter_screen_pocket.json", + "input_slots_stack_panel": "ui/stonecutter_screen_pocket.json", + "input_slots_stack_panel/input_item_slot": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/label_holder": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/label_holder/stonecutter_label": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/padding_1": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/padding_3": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/padding_4": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": "ui/stonecutter_screen_pocket.json", + "stonecutter_content_stack_panel/panel/stack_panel/padding_5": "ui/stonecutter_screen_pocket.json", + "inventory_panel": "ui/stonecutter_screen_pocket.json", + "inventory_panel/inventory_title_label_centerer": "ui/stonecutter_screen_pocket.json", + "inventory_panel/inventory_title_label_centerer/inventory_title_label": "ui/stonecutter_screen_pocket.json", + "inventory_panel/inventory_scroll_panel": "ui/stonecutter_screen_pocket.json", + "inventory_scroll_panel": "ui/stonecutter_screen_pocket.json", + "pattern_button": "ui/stonecutter_screen_pocket.json", + "pattern_scroll_panel": "ui/stonecutter_screen_pocket.json", + "left_panel": "ui/stonecutter_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/stonecutter_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/stonecutter_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/stonecutter_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/stonecutter_screen_pocket.json", + "left_panel/content": "ui/stonecutter_screen_pocket.json", + "left_panel/content/bg": "ui/stonecutter_screen_pocket.json", + "left_panel/content/inventory_panel": "ui/stonecutter_screen_pocket.json", + "left_panel/content/pattern_scroll_panel": "ui/stonecutter_screen_pocket.json", + "left_tab_stones": "ui/stonecutter_screen_pocket.json", + "left_tab_inventory": "ui/stonecutter_screen_pocket.json", + "left_navigation_tabs": "ui/stonecutter_screen_pocket.json", + "left_navigation_tabs/left_tab_stones": "ui/stonecutter_screen_pocket.json", + "left_navigation_tabs/padding": "ui/stonecutter_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/stonecutter_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/pocket_hotbar_and_content_panels": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/container_gamepad_helpers": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/selected_item_details_factory": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/item_lock_notification_factory": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/inventory_selected_icon_button": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/inventory_take_progress_icon_button": "ui/stonecutter_screen_pocket.json", + "stonecutter_panel/flying_item_renderer": "ui/stonecutter_screen_pocket.json", + }, + "storage_management": { + "lock_icon": "ui/storage_management.json", + "storage_header_panel": "ui/storage_management.json", + "storage_header_panel/header_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/file_storage_dropdown": "ui/storage_management.json", + "storage_header_panel/header_panel/file_storage_dropdown_edu": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_cache_button_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_download_cache_button_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": "ui/storage_management.json", + "storage_header_panel/header_panel/delete_local_screenshots_button_panel": "ui/storage_management.json", + "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": "ui/storage_management.json", + "storage_header_panel/header_panel/panel": "ui/storage_management.json", + "storage_header_panel/header_panel/panel/multiselect_button": "ui/storage_management.json", + "x_button_image": "ui/storage_management.json", + "storage_main_panel": "ui/storage_management.json", + "storage_main_panel/scroll_content": "ui/storage_management.json", + "storage_footer_panel": "ui/storage_management.json", + "storage_footer_panel/visibleContent": "ui/storage_management.json", + "storage_footer_panel/visibleContent/delete_button": "ui/storage_management.json", + "storage_footer_panel/visibleContent/share_button": "ui/storage_management.json", + "delete_checkbox": "ui/storage_management.json", + "delete_checkbox/selected_checkbox_image": "ui/storage_management.json", + "generic_button": "ui/storage_management.json", + "generic_button/picture": "ui/storage_management.json", + "generic_button/text": "ui/storage_management.json", + "common_scroll_pane": "ui/storage_management.json", + "common_label": "ui/storage_management.json", + "main_content_panel": "ui/storage_management.json", + "main_content_panel/panel": "ui/storage_management.json", + "main_content_panel/panel/spacing": "ui/storage_management.json", + "main_content_panel/panel/delete_checkbox": "ui/storage_management.json", + "main_content_panel/panel/image_panel": "ui/storage_management.json", + "main_content_panel/panel/image_panel/image_border": "ui/storage_management.json", + "main_content_panel/panel/image_panel/image_border/image": "ui/storage_management.json", + "main_content_panel/panel/text_panel_offset": "ui/storage_management.json", + "main_content_panel/panel/text_panel_offset/text_panel": "ui/storage_management.json", + "main_content_panel/panel/text_panel_offset/text_panel/0": "ui/storage_management.json", + "common_main_button": "ui/storage_management.json", + "common_main_button/background": "ui/storage_management.json", + "common_main_button/border": "ui/storage_management.json", + "common_main_button/main_content_panel": "ui/storage_management.json", + "base_glyph": "ui/storage_management.json", + "base_glyph/image": "ui/storage_management.json", + "base_glyph/padding": "ui/storage_management.json", + "main_item_text": "ui/storage_management.json", + "grey_button": "ui/storage_management.json", + "icon_item_text": "ui/storage_management.json", + "world_item_text": "ui/storage_management.json", + "storage_main_item_toggle": "ui/storage_management.json", + "storage_main_item_toggle/main_item_toggle": "ui/storage_management.json", + "storage_main_item_toggle/contentPanel": "ui/storage_management.json", + "storage_main_item_toggle/padding": "ui/storage_management.json", + "storage_scroll_pane": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/stack_panel": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": "ui/storage_management.json", + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": "ui/storage_management.json", + "storage_scroll_pane/multiselect_padding": "ui/storage_management.json", + "world_controls": "ui/storage_management.json", + "world_template_controls": "ui/storage_management.json", + "resource_controls": "ui/storage_management.json", + "behavior_controls": "ui/storage_management.json", + "skin_controls": "ui/storage_management.json", + "cached_controls": "ui/storage_management.json", + "resource_sub_item": "ui/storage_management.json", + "resource_sub_item/dummy_panel": "ui/storage_management.json", + "resource_sub_item/main_panel": "ui/storage_management.json", + "resource_sub_item/main_panel/content": "ui/storage_management.json", + "resource_toggle": "ui/storage_management.json", + "resource_toggle/content_toggle": "ui/storage_management.json", + "resource_toggle/content_toggle/default": "ui/storage_management.json", + "resource_toggle/content_toggle/hover": "ui/storage_management.json", + "resource_toggle/content_toggle/unchecked": "ui/storage_management.json", + "resource_toggle/content_toggle/unchecked_hover": "ui/storage_management.json", + "resource_toggle/item_button_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": "ui/storage_management.json", + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": "ui/storage_management.json", + "sub_item_tray_button": "ui/storage_management.json", + "glyph_sub_icon": "ui/storage_management.json", + "sub_item_blank_button": "ui/storage_management.json", + "texture_icon_text": "ui/storage_management.json", + "texture_icon_sub_item": "ui/storage_management.json", + "version_sub_item": "ui/storage_management.json", + "pack_description_sub_item": "ui/storage_management.json", + "world_sub_text": "ui/storage_management.json", + "world_template_sub_text": "ui/storage_management.json", + "basic_sub_item": "ui/storage_management.json", + "dropdown_button": "ui/storage_management.json", + "dropdown_button_content": "ui/storage_management.json", + "dropdown_button_content/image_panel": "ui/storage_management.json", + "dropdown_button_content/image_panel/icon": "ui/storage_management.json", + "dropdown_button_content/text_panel": "ui/storage_management.json", + "dropdown_button_content/text_panel/main_label": "ui/storage_management.json", + "filter_options": "ui/storage_management.json", + "filter_options/0": "ui/storage_management.json", + "light_assets": "ui/storage_management.json", + "button_add": "ui/storage_management.json", + "sort_panel": "ui/storage_management.json", + "sort_panel/default": "ui/storage_management.json", + "sort_toggle": "ui/storage_management.json", + "storage_scroll_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/main_item_toggle": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": "ui/storage_management.json", + "storage_main_item_legacy_world_toggle/padding": "ui/storage_management.json", + "legacy_world_main_item_text": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/main_item_toggle": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": "ui/storage_management.json", + "storage_main_item_retailtopreview_world_toggle/padding": "ui/storage_management.json", + "retailtopreview_world_main_item_text": "ui/storage_management.json", + }, + "storage_management_popup": { + "storage_dependency_modal": "ui/storage_management_popup.json", + "storage_dependency_modal/base": "ui/storage_management_popup.json", + "storage_dependency_modal/base/background_with_buttons": "ui/storage_management_popup.json", + "storage_dependency_modal/base/title": "ui/storage_management_popup.json", + "storage_dependency_modal/base/dependencies": "ui/storage_management_popup.json", + "storage_dependency_modal/base/two_buttons": "ui/storage_management_popup.json", + "storage_dependency_modal/base/two_buttons/disabled_left": "ui/storage_management_popup.json", + "storage_dependency_modal/base/two_buttons/left": "ui/storage_management_popup.json", + "storage_dependency_modal/base/two_buttons/right": "ui/storage_management_popup.json", + "storage_dependency_panel": "ui/storage_management_popup.json", + "storage_dependency_panel/scroll": "ui/storage_management_popup.json", + "storage_dependency_scroll_panel": "ui/storage_management_popup.json", + "dependency_item_content": "ui/storage_management_popup.json", + "dependency_item_content/content": "ui/storage_management_popup.json", + "dependency_scroll_pane": "ui/storage_management_popup.json", + "dependency_scroll_pane/main_label": "ui/storage_management_popup.json", + "dependency_scroll_pane/contentPanel": "ui/storage_management_popup.json", + "dependency_item": "ui/storage_management_popup.json", + "dependency_item_small": "ui/storage_management_popup.json", + "dependency_resource_item": "ui/storage_management_popup.json", + "dependency_resource_item_small": "ui/storage_management_popup.json", + "dependency_sub_item": "ui/storage_management_popup.json", + "dependency_sub_item/border": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/padding_0": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/wrapper": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/wrapper/dependency_item": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/panel_0": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/panel_0/main_label": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/contentPanel": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/panel_1": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/panel_1/remove_pack_button": "ui/storage_management_popup.json", + "dependency_sub_item/border/stack/padding_1": "ui/storage_management_popup.json", + "dependency_sub_item/padding": "ui/storage_management_popup.json", + "sharing_popup_content": "ui/storage_management_popup.json", + }, + "common_store": { + "store_base_screen": "ui/store_common.json", + "label": "ui/store_common.json", + "offer_image_panel": "ui/store_common.json", + "banner_fill": "ui/store_common.json", + "store_description_background": "ui/store_common.json", + "store_description_background_dark": "ui/store_common.json", + "text_style_label": "ui/store_common.json", + "text_style_label/text_label": "ui/store_common.json", + "sdl_texture": "ui/store_common.json", + "store_offer_grid_button": "ui/store_common.json", + "store_offer_grid_button/hover": "ui/store_common.json", + "store_offer_grid_button/hover/key_art_size_panel": "ui/store_common.json", + "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": "ui/store_common.json", + "store_offer_grid_button/pressed": "ui/store_common.json", + "store_offer_grid_button/pressed/key_art_size_panel": "ui/store_common.json", + "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": "ui/store_common.json", + "store_offer_grid_button/icon_overlay_panel": "ui/store_common.json", + "ribbon_bar_text_background": "ui/store_common.json", + "ribbon_bar_red_hover_text_background": "ui/store_common.json", + "store_background": "ui/store_common.json", + "coin_icon": "ui/store_common.json", + "tag": "ui/store_common.json", + "tag/new_offer_label": "ui/store_common.json", + "marketplace_error_icon": "ui/store_common.json", + "new_offer_icon": "ui/store_common.json", + "status_new_offer_icon": "ui/store_common.json", + "update_balloon_icon": "ui/store_common.json", + "icon_overlay_panel": "ui/store_common.json", + "icon_overlay_panel/icon_overlay_position_factory": "ui/store_common.json", + "icon_overlay_position_factory": "ui/store_common.json", + "top_left_icon_factory": "ui/store_common.json", + "top_middle_icon_factory": "ui/store_common.json", + "top_right_icon_factory": "ui/store_common.json", + "left_middle_icon_factory": "ui/store_common.json", + "center_icon_factory": "ui/store_common.json", + "right_middle_icon_factory": "ui/store_common.json", + "bottom_left_icon_factory": "ui/store_common.json", + "bottom_middle_icon_factory": "ui/store_common.json", + "bottom_right_icon_factory": "ui/store_common.json", + "icon_factory": "ui/store_common.json", + "new_offer_icon_panel": "ui/store_common.json", + "new_offer_icon_panel/new_icon": "ui/store_common.json", + "update_offer_icon_panel": "ui/store_common.json", + "update_offer_icon_panel/update_icon": "ui/store_common.json", + "icon_overlay_image_panel": "ui/store_common.json", + "icon_overlay_image_panel/image_stack_panel": "ui/store_common.json", + "icon_overlay_image_panel/image_stack_panel/icon": "ui/store_common.json", + "icon_overlay_image_panel/image_stack_panel/padding": "ui/store_common.json", + "icon_overlay_sdl_padding": "ui/store_common.json", + "status_icon_overlay": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/left_padding_1": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/left_padding_2": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/icon_panel": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/right_padding_1": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/right_padding_2": "ui/store_common.json", + "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": "ui/store_common.json", + "status_icon_panel": "ui/store_common.json", + "status_icon_panel/new_offer_icon": "ui/store_common.json", + "status_icon_panel/update_icon": "ui/store_common.json", + "prompt_icon": "ui/store_common.json", + "up_arrow_icon": "ui/store_common.json", + "plus_icon": "ui/store_common.json", + "bang_icon": "ui/store_common.json", + "user_icon_small": "ui/store_common.json", + "user_icon_hover": "ui/store_common.json", + "gamepad_store_helper": "ui/store_common.json", + "purchase_coins_panel": "ui/store_common.json", + "purchase_coins_panel/plus_button": "ui/store_common.json", + "inventory_panel": "ui/store_common.json", + "inventory_panel/inventory_button": "ui/store_common.json", + "progress_loading_bars": "ui/store_common.json", + "progress_loading_spinner": "ui/store_common.json", + "progress_loading": "ui/store_common.json", + "progress_loading/centerer": "ui/store_common.json", + "progress_loading/centerer/progress_loading_spinner": "ui/store_common.json", + "progress_loading/progress_loading_outline": "ui/store_common.json", + "progress_loading/stack_panel": "ui/store_common.json", + "progress_loading/stack_panel/top_panel": "ui/store_common.json", + "progress_loading/stack_panel/top_panel/error_glyph_panel": "ui/store_common.json", + "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": "ui/store_common.json", + "progress_loading/stack_panel/top_panel/padding": "ui/store_common.json", + "progress_loading/stack_panel/top_panel/store_failure_text": "ui/store_common.json", + "progress_loading/stack_panel/padding": "ui/store_common.json", + "progress_loading/stack_panel/image": "ui/store_common.json", + "progress_loading/store_failure_code": "ui/store_common.json", + "store_empty_progress_bar_icon": "ui/store_common.json", + "store_full_progress_bar_icon": "ui/store_common.json", + "store_progress_bar_nub": "ui/store_common.json", + "store_progress_bar_icon": "ui/store_common.json", + "store_progress_bar_icon/empty_progress_bar_icon": "ui/store_common.json", + "store_progress_bar_icon/progress_percent_panel": "ui/store_common.json", + "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": "ui/store_common.json", + "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": "ui/store_common.json", + "screen_contents_with_gamepad_helpers": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/dialog_panel": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/dialog_panel/dialog": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/padding": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": "ui/store_common.json", + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": "ui/store_common.json", + "text_strike_through": "ui/store_common.json", + "markdown_banner": "ui/store_common.json", + "markdown_triangle": "ui/store_common.json", + "timer_panel": "ui/store_common.json", + "timer_panel/timer": "ui/store_common.json", + "store_offer_type_icon": "ui/store_common.json", + "addon_pack_icon": "ui/store_common.json", + "addon_pack_small_icon": "ui/store_common.json", + "realms_plus_icon": "ui/store_common.json", + "resource_pack_icon": "ui/store_common.json", + "resource_pack_small_icon": "ui/store_common.json", + "skinpack_icon": "ui/store_common.json", + "skinpack_small_icon": "ui/store_common.json", + "world_icon": "ui/store_common.json", + "world_small_icon": "ui/store_common.json", + "mashup_icon": "ui/store_common.json", + "mashup_small_icon": "ui/store_common.json", + "persona_icon": "ui/store_common.json", + "persona_small_icon": "ui/store_common.json", + "small_padding_panel": "ui/store_common.json", + "resource_pack_small_icon_with_buffer": "ui/store_common.json", + "resource_pack_small_icon_with_buffer/resource_pack_small_icon": "ui/store_common.json", + "resource_pack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "addon_pack_small_icon_with_buffer": "ui/store_common.json", + "addon_pack_small_icon_with_buffer/addon_pack_small_icon": "ui/store_common.json", + "addon_pack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "skinpack_small_icon_with_buffer": "ui/store_common.json", + "skinpack_small_icon_with_buffer/skinpack_small_icon": "ui/store_common.json", + "skinpack_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "world_small_icon_with_buffer": "ui/store_common.json", + "world_small_icon_with_buffer/world_small_icon": "ui/store_common.json", + "world_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "mashup_small_icon_with_buffer": "ui/store_common.json", + "mashup_small_icon_with_buffer/mashup_small_icon": "ui/store_common.json", + "mashup_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "persona_small_icon_with_buffer": "ui/store_common.json", + "persona_small_icon_with_buffer/persona_small_icon": "ui/store_common.json", + "persona_small_icon_with_buffer/small_padding_panel": "ui/store_common.json", + "realms_icon": "ui/store_common.json", + "realms_banner_icon": "ui/store_common.json", + "csb_banner_icon": "ui/store_common.json", + "csb_expiration": "ui/store_common.json", + "csb_expiration/background": "ui/store_common.json", + "csb_expiration/contents": "ui/store_common.json", + "csb_expiration/contents/csb_icon": "ui/store_common.json", + "csb_expiration/contents/pad_0": "ui/store_common.json", + "csb_expiration/contents/text_panel": "ui/store_common.json", + "csb_expiration/contents/text_panel/text": "ui/store_common.json", + "pack_icon_stack": "ui/store_common.json", + "pack_icon_stack/pack_icon_stack_factory": "ui/store_common.json", + "pack_icon_stack_factory": "ui/store_common.json", + "markdown_background": "ui/store_common.json", + "markdown_background/banner_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": "ui/store_common.json", + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": "ui/store_common.json", + "markdown_background/triangle_panel": "ui/store_common.json", + "markdown_background/triangle_panel/triangle": "ui/store_common.json", + "store_top_bar": "ui/store_common.json", + "store_top_bar_filler": "ui/store_common.json", + "direction_button_panel": "ui/store_common.json", + "direction_button_panel/chevron_image": "ui/store_common.json", + "cycle_pack_button": "ui/store_common.json", + "cycle_pack_left_button": "ui/store_common.json", + "cycle_pack_right_button": "ui/store_common.json", + "restore_purchases": "ui/store_common.json", + "back_content_panel": "ui/store_common.json", + "back_content_panel/back_button": "ui/store_common.json", + "unlock_with_coins_button_stack_panel": "ui/store_common.json", + "unlock_with_coins_button_stack_panel/coin_panel": "ui/store_common.json", + "unlock_with_coins_button_stack_panel/coin_panel/coin": "ui/store_common.json", + "unlock_with_coins_button_stack_panel/padding_1": "ui/store_common.json", + "unlock_with_coins_button_stack_panel/unlock_text": "ui/store_common.json", + "store_dialog_with_coin_header": "ui/store_common.json", + "store_coins_title_label": "ui/store_common.json", + "search_header_stack": "ui/store_common.json", + "search_header_stack/gamepad_helper_y_alignment_hack": "ui/store_common.json", + "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": "ui/store_common.json", + "search_header_stack/search_header_text_box_panel": "ui/store_common.json", + "search_header_stack/search_header_text_box_panel/search_header_text_box": "ui/store_common.json", + "search_header_stack/search_header_text_box_panel/clear_button": "ui/store_common.json", + "search_header_stack/store_layout_search_button": "ui/store_common.json", + "search_header_stack/padding0": "ui/store_common.json", + "sdl_store_header_with_coins": "ui/store_common.json", + "sdl_store_header_with_coins/sdl_store_header_with_coins_content": "ui/store_common.json", + "top_bar_with_coins_panel": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": "ui/store_common.json", + "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": "ui/store_common.json", + "sdl_store_header_with_coins_content": "ui/store_common.json", + "sdl_store_header_with_coins_content/top_bar_coins": "ui/store_common.json", + "store_header_with_coins": "ui/store_common.json", + "store_header_with_coins/top_bar_coins": "ui/store_common.json", + "store_header_with_coins/child_control": "ui/store_common.json", + "status_with_coins": "ui/store_common.json", + "status_with_coins/inventory_panel": "ui/store_common.json", + "status_with_coins/inventory_panel/inventory_button": "ui/store_common.json", + "status_with_coins/padding0": "ui/store_common.json", + "status_with_coins/coin_balance_panel": "ui/store_common.json", + "status_with_coins/coin_balance_panel/coin_balance_panel": "ui/store_common.json", + "status_with_coins/padding1": "ui/store_common.json", + "coins_with_title": "ui/store_common.json", + "coins_with_title/coin_balance_panel": "ui/store_common.json", + "coins_with_title/title_panel": "ui/store_common.json", + "wallet_button_panel": "ui/store_common.json", + "wallet_button_panel/purchase_coin_panel_alignment_hack": "ui/store_common.json", + "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": "ui/store_common.json", + "wallet_button_panel/plus_image": "ui/store_common.json", + "wallet_button_panel/gamepad_helper_x_alignment_hack": "ui/store_common.json", + "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": "ui/store_common.json", + "coin_balance_panel": "ui/store_common.json", + "coin_balance_panel/coin_purchase_in_progress_panel": "ui/store_common.json", + "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/padding": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/coin_icon": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/small_filler": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/coin_text_holder": "ui/store_common.json", + "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": "ui/store_common.json", + "my_account_button_content": "ui/store_common.json", + "my_account_button_content/my_account_content": "ui/store_common.json", + "my_account_button_content/my_account_content/user_icon": "ui/store_common.json", + "my_account_button_content/my_account_content/my_account_label_panel": "ui/store_common.json", + "my_account_button_content/my_account_content/my_account_label_panel/padding": "ui/store_common.json", + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": "ui/store_common.json", + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": "ui/store_common.json", + "inventory_button_panel": "ui/store_common.json", + "inventory_button_panel/inventory_button": "ui/store_common.json", + "inventory_button_panel/inventory_button/status_panel": "ui/store_common.json", + "inventory_button": "ui/store_common.json", + "inventory_button/my_content_button": "ui/store_common.json", + "inventory_button/my_content_button/library_icon": "ui/store_common.json", + "inventory_button/my_content_button/library_icon_bevel": "ui/store_common.json", + "inventory_button/updates_with_bevel": "ui/store_common.json", + "inventory_button/updates_with_bevel/update_glyph": "ui/store_common.json", + "inventory_button/updates_with_bevel/updates_bevel": "ui/store_common.json", + "inventory_button/label_alignment_pannel": "ui/store_common.json", + "inventory_button/label_alignment_pannel/label_panel": "ui/store_common.json", + "inventory_button/label_alignment_pannel/label_panel/inventory_label": "ui/store_common.json", + "xbl_button_content": "ui/store_common.json", + "xbl_button_content/xbl_icon": "ui/store_common.json", + "xbl_button_content/padding_0": "ui/store_common.json", + "xbl_button_content/disconnected_label": "ui/store_common.json", + "xbl_button_content/padding_1": "ui/store_common.json", + "xbl_button_content/error_icon_panel": "ui/store_common.json", + "xbl_button_content/error_icon_panel/error_icon": "ui/store_common.json", + "disclaimer_panel": "ui/store_common.json", + "disclaimer_panel/legal_text_label": "ui/store_common.json", + "grey_bar_panel": "ui/store_common.json", + "grey_bar_panel/color_panel": "ui/store_common.json", + "grey_bar_panel/color_panel/grey_bar": "ui/store_common.json", + "grey_bar_panel/color_panel/green_bar": "ui/store_common.json", + "grey_bar_panel/pad": "ui/store_common.json", + "tab_name_panel": "ui/store_common.json", + "tab_name_panel/bar_panel": "ui/store_common.json", + "tab_name_panel/bar_panel/green_bar": "ui/store_common.json", + "tab_name_panel/button_panel": "ui/store_common.json", + "tab_name_panel/button_panel/tab_name_button_grey": "ui/store_common.json", + "tab_name_panel/button_panel/tab_name_button_white": "ui/store_common.json", + "tab_name_panel/pad_1": "ui/store_common.json", + "store_offer_item_title_panel": "ui/store_common.json", + "store_offer_item_title_panel/offer_title": "ui/store_common.json", + "store_offer_item_creator_panel": "ui/store_common.json", + "store_offer_item_creator_panel/pack_icon_panel": "ui/store_common.json", + "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", + "store_offer_item_creator_panel/creator_label": "ui/store_common.json", + "store_offer_ratings": "ui/store_common.json", + "store_offer_ratings/rating_text_panel": "ui/store_common.json", + "vertical_store_offer_price_info_panel": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": "ui/store_common.json", + "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": "ui/store_common.json", + "store_offer_price_info_panel": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/coin_panel": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/padding_3": "ui/store_common.json", + "store_offer_price_info_panel/sales_banner/offer_prompt_panel": "ui/store_common.json", + "store_offer_sales_markdown_percentage_panel": "ui/store_common.json", + "store_offer_sales_markdown_percentage_panel/markdown_background": "ui/store_common.json", + "store_offer_prompt_panel": "ui/store_common.json", + "store_offer_prompt_panel/offer_status_text": "ui/store_common.json", + "featured_key_art": "ui/store_common.json", + "featured_key_art/bg": "ui/store_common.json", + "featured_key_art/bg/featured_key_art": "ui/store_common.json", + "featured_key_art/bg/progress_loading": "ui/store_common.json", + "featured_key_art/bg/new_offer_icon": "ui/store_common.json", + "featured_key_art/focus_border": "ui/store_common.json", + "price_panel": "ui/store_common.json", + "price_panel/featured_icon_panel": "ui/store_common.json", + "price_panel/featured_icon_panel/featured_offer_coin_icon": "ui/store_common.json", + "price_panel/price_label_panel": "ui/store_common.json", + "price_panel/price_label_panel/price": "ui/store_common.json", + "price_panel/padding": "ui/store_common.json", + "vertical_padding_4": "ui/store_common.json", + "vertical_padding_2": "ui/store_common.json", + "sdl_vertical_padding_fill": "ui/store_common.json", + "footer": "ui/store_common.json", + "footer/restore_purchases": "ui/store_common.json", + "store_section_panel": "ui/store_common.json", + "store_section_panel/store_section_panel_outline": "ui/store_common.json", + "store_section_panel/section_panel": "ui/store_common.json", + "store_section_panel/section_panel/header": "ui/store_common.json", + "store_section_panel/section_panel/section_panel": "ui/store_common.json", + "store_section_panel/section_panel/section_panel/background": "ui/store_common.json", + "store_section_factory": "ui/store_common.json", + "store_static_section_factory": "ui/store_common.json", + "rtx_label": "ui/store_common.json", + "rtx_label/banner": "ui/store_common.json", + "rtx_label/banner/icon": "ui/store_common.json", + "subscription_chevron": "ui/store_common.json", + "subscription_chevron/subscription_chevron_panel": "ui/store_common.json", + "subscription_chevron/subscription_chevron_panel/csb_chevron": "ui/store_common.json", + "subscription_chevron/subscription_chevron_panel/sales_banner_background": "ui/store_common.json", + "csb_banner": "ui/store_common.json", + "csb_banner/banner": "ui/store_common.json", + "pagination_content_panel": "ui/store_common.json", + "pagination_content_panel/padding_left": "ui/store_common.json", + "pagination_content_panel/first_page_button": "ui/store_common.json", + "pagination_content_panel/pagination_middle_buttons_panel": "ui/store_common.json", + "pagination_content_panel/padding_right_fill": "ui/store_common.json", + "pagination_content_panel/go_to_top_button": "ui/store_common.json", + "pagination_panel": "ui/store_common.json", + "pagination_panel/top_padding": "ui/store_common.json", + "pagination_panel/pagination_content": "ui/store_common.json", + "pagination_panel/bottom_padding": "ui/store_common.json", + "store_offer_grid_panel_content": "ui/store_common.json", + "store_offer_grid_panel_content/header_centerer_panel": "ui/store_common.json", + "store_offer_grid_panel_content/store_offer_grid_factory": "ui/store_common.json", + "store_offer_grid_panel_content/pagination_centerer": "ui/store_common.json", + "store_offer_grid_panel_content/divider": "ui/store_common.json", + "store_offer_grid_panel": "ui/store_common.json", + "pagination_top_button_panel": "ui/store_common.json", + "pagination_top_button_panel/top_button_image": "ui/store_common.json", + "pagination_middle_buttons_panel": "ui/store_common.json", + "pagination_middle_buttons_panel/previous_page_button": "ui/store_common.json", + "pagination_middle_buttons_panel/current_page_number_panel": "ui/store_common.json", + "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": "ui/store_common.json", + "pagination_middle_buttons_panel/next_page_button": "ui/store_common.json", + "vertical_store_offer_grid_panel": "ui/store_common.json", + "vertical_store_offer_grid_panel/header": "ui/store_common.json", + "vertical_store_offer_grid_panel/centering_panel": "ui/store_common.json", + "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": "ui/store_common.json", + "vertical_store_offer_grid_panel/padding_0": "ui/store_common.json", + "vertical_store_offer_grid_panel/divider": "ui/store_common.json", + "carousel_row_panel": "ui/store_common.json", + "carousel_row_panel/top_panel": "ui/store_common.json", + "carousel_row_panel/top_panel/pad_0": "ui/store_common.json", + "carousel_row_panel/top_panel/tab_names_factory_panel": "ui/store_common.json", + "carousel_row_panel/top_padding": "ui/store_common.json", + "carousel_row_panel/middle_panel": "ui/store_common.json", + "carousel_row_panel/middle_panel/left_button_panel": "ui/store_common.json", + "carousel_row_panel/middle_panel/left_button_panel/left_button": "ui/store_common.json", + "carousel_row_panel/middle_panel/left_button_panel/left_bumper": "ui/store_common.json", + "carousel_row_panel/middle_panel/main_panel_factory": "ui/store_common.json", + "carousel_row_panel/middle_panel/right_button_panel": "ui/store_common.json", + "carousel_row_panel/middle_panel/right_button_panel/right_button": "ui/store_common.json", + "carousel_row_panel/middle_panel/right_button_panel/right_bumper": "ui/store_common.json", + "carousel_row_panel/bottom_panel": "ui/store_common.json", + "carousel_row_panel/bottom_panel/grey_bar_factory_panel": "ui/store_common.json", + "carousel_row_panel/bottom_padding": "ui/store_common.json", + "carousel_row_panel/divider_panel": "ui/store_common.json", + "carousel_row_panel/divider_panel/divider": "ui/store_common.json", + "carousel_factory": "ui/store_common.json", + "hero_row_l2_panel": "ui/store_common.json", + "hero_row_l2_panel/header": "ui/store_common.json", + "hero_row_l2_panel/centering_panel": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": "ui/store_common.json", + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": "ui/store_common.json", + "hero_row_l2_panel/padding_0": "ui/store_common.json", + "hero_row_l2_panel/divider": "ui/store_common.json", + "blade_row_key_art": "ui/store_common.json", + "blade_row_key_art/blade_row_key_art_image": "ui/store_common.json", + "blade_row_key_art/blade_row_key_art_image/key_art_border": "ui/store_common.json", + "one_key_art_screenshot": "ui/store_common.json", + "one_key_art_screenshot_panel": "ui/store_common.json", + "one_key_art_screenshot_panel/blade_offer_frame": "ui/store_common.json", + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": "ui/store_common.json", + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": "ui/store_common.json", + "screenshots_grid": "ui/store_common.json", + "screenshots_grid/screenshot_1": "ui/store_common.json", + "screenshots_grid/screenshot_2": "ui/store_common.json", + "screenshots_grid/screenshot_3": "ui/store_common.json", + "screenshots_grid/screenshot_4": "ui/store_common.json", + "blade_offer_details_title": "ui/store_common.json", + "blade_offer_sale_markdown": "ui/store_common.json", + "blade_offer_description_details": "ui/store_common.json", + "blade_offer_description_details/blade_title_stack": "ui/store_common.json", + "blade_offer_description_details/blade_title_stack/blade_title": "ui/store_common.json", + "blade_offer_description_details/blade_offer_creator_label": "ui/store_common.json", + "blade_offer_description_details/blade_offer_description_padding_2": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/subscription_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/ratings_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/fill_padding": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/price_panel": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/price_panel/price": "ui/store_common.json", + "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": "ui/store_common.json", + "blade_offer_description_details/blade_offer_description_padding_3": "ui/store_common.json", + "screenshots_and_offer_details_panel": "ui/store_common.json", + "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": "ui/store_common.json", + "screenshots_and_offer_details_panel/blade_offer_description_area": "ui/store_common.json", + "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": "ui/store_common.json", + "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": "ui/store_common.json", + "blade_row_featured_panel": "ui/store_common.json", + "blade_row_featured_panel/blade_row_featured_key_art": "ui/store_common.json", + "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": "ui/store_common.json", + "transparent_content_button": "ui/store_common.json", + "hero_blade_row_panel": "ui/store_common.json", + "hero_blade_row_panel/blade_row_transparent_button": "ui/store_common.json", + "hero_row_panel": "ui/store_common.json", + "hero_row_panel/header": "ui/store_common.json", + "hero_row_panel/centering_panel": "ui/store_common.json", + "hero_row_panel/centering_panel/featured_stack": "ui/store_common.json", + "hero_row_panel/centering_panel/featured_stack/hero_offer": "ui/store_common.json", + "hero_row_panel/centering_panel/featured_stack/padding_0": "ui/store_common.json", + "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": "ui/store_common.json", + "hero_row_panel/padding_0": "ui/store_common.json", + "hero_row_panel/divider": "ui/store_common.json", + "hero_offer": "ui/store_common.json", + "hero_offer/featured_key_art": "ui/store_common.json", + "hero_offer/rtx_label": "ui/store_common.json", + "hero_offer/offer_description_area": "ui/store_common.json", + "hero_offer/offer_description_area/hero_offer_description_details": "ui/store_common.json", + "hero_offer_details_title": "ui/store_common.json", + "hero_offer_description_details": "ui/store_common.json", + "hero_offer_description_details/hero_title_stack": "ui/store_common.json", + "hero_offer_description_details/hero_title_stack/title": "ui/store_common.json", + "hero_offer_description_details/padding_5": "ui/store_common.json", + "hero_offer_description_details/progress": "ui/store_common.json", + "hero_offer_description_details/creator_label": "ui/store_common.json", + "hero_offer_description_details/padding_0": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": "ui/store_common.json", + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": "ui/store_common.json", + "hero_offer_description_details/padding_1": "ui/store_common.json", + "hero_offer_download_progress": "ui/store_common.json", + "hero_offer_download_progress/label": "ui/store_common.json", + "hero_offer_download_progress/bar": "ui/store_common.json", + "rating_text_panel": "ui/store_common.json", + "rating_text_panel/left_padding": "ui/store_common.json", + "rating_text_panel/star_panel": "ui/store_common.json", + "rating_text_panel/star_panel/rating_star": "ui/store_common.json", + "rating_text_panel/middle_padding": "ui/store_common.json", + "rating_text_panel/rating_label": "ui/store_common.json", + "ratings_description": "ui/store_common.json", + "ratings_description/rating_text_panel": "ui/store_common.json", + "store_rating_count_panel": "ui/store_common.json", + "store_rating_count_panel/rating_count_text": "ui/store_common.json", + "hero_offer_grid": "ui/store_common.json", + "hero_offer_grid/row_1": "ui/store_common.json", + "hero_offer_grid/row_1/offer_1": "ui/store_common.json", + "hero_offer_grid/row_1/padding_0": "ui/store_common.json", + "hero_offer_grid/row_1/offer_2": "ui/store_common.json", + "hero_offer_grid/padding_0": "ui/store_common.json", + "hero_offer_grid/row_2": "ui/store_common.json", + "hero_offer_grid/row_2/offer_1": "ui/store_common.json", + "hero_offer_grid/row_2/padding_0": "ui/store_common.json", + "hero_offer_grid/row_2/offer_2": "ui/store_common.json", + "offer_download_progress": "ui/store_common.json", + "offer_download_progress/label": "ui/store_common.json", + "offer_download_progress/bar": "ui/store_common.json", + "banner_button": "ui/store_common.json", + "sdl_text_aligned_panel": "ui/store_common.json", + "sdl_text_minecraftTen_aligned_panel": "ui/store_common.json", + "sdl_content_aligned_panel": "ui/store_common.json", + "sdl_content_aligned_panel/left__padding_panel": "ui/store_common.json", + "sdl_content_aligned_panel/control": "ui/store_common.json", + "sdl_content_aligned_panel/right_padding_panel": "ui/store_common.json", + "sdl_aligned_text": "ui/store_common.json", + "sdl_aligned_minecraftTen_text": "ui/store_common.json", + "content_offer_key_art": "ui/store_common.json", + "vertical_content_offer_header": "ui/store_common.json", + "vertical_content_offer_header/header": "ui/store_common.json", + "vertical_content_offer_panel": "ui/store_common.json", + "vertical_offer_grid_panel": "ui/store_common.json", + "offer_content": "ui/store_common.json", + "offer_content/offer_item": "ui/store_common.json", + "vertical_offer_content": "ui/store_common.json", + "vertical_offer_content/offer_item": "ui/store_common.json", + "vertical_coin_offer_content": "ui/store_common.json", + "vertical_coin_offer_content/offer_item": "ui/store_common.json", + "store_offer_key_art": "ui/store_common.json", + "store_offer_grid_show_more": "ui/store_common.json", + "store_offer_grid_show_more/frame": "ui/store_common.json", + "store_offer_grid_show_more/frame/title": "ui/store_common.json", + "store_offer_grid_show_more/offer_button": "ui/store_common.json", + "store_offer_grid_show_more/offer_button/hover": "ui/store_common.json", + "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": "ui/store_common.json", + "store_offer_grid_show_more/offer_button/pressed": "ui/store_common.json", + "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": "ui/store_common.json", + "persona_grid_show_more": "ui/store_common.json", + "row_offer_sale_markdown": "ui/store_common.json", + "discount_label": "ui/store_common.json", + "discount_label/label_panel": "ui/store_common.json", + "discount_label/label_panel/label": "ui/store_common.json", + "discount_label/icon_panel": "ui/store_common.json", + "discount_label/icon_panel/icon": "ui/store_common.json", + "hero_offer_sale_markdown": "ui/store_common.json", + "offer_price_markdown_panel": "ui/store_common.json", + "offer_price_markdown_panel/offer_price": "ui/store_common.json", + "offer_price_markdown_panel/offer_price/text_strike_through": "ui/store_common.json", + "store_offer_title": "ui/store_common.json", + "store_offer_key_art_frame": "ui/store_common.json", + "store_offer_key_art_frame/key_art": "ui/store_common.json", + "store_offer_key_art_frame/key_art/key_art_frame": "ui/store_common.json", + "store_offer_key_art_frame/key_art/csb_expiration_banner": "ui/store_common.json", + "store_offer_key_art_frame/progress_loading": "ui/store_common.json", + "vertical_store_offer_grid_item": "ui/store_common.json", + "vertical_store_offer_grid_item/frame": "ui/store_common.json", + "vertical_store_offer_grid_item/frame/horizontal_stack_panel": "ui/store_common.json", + "vertical_store_offer_grid_item/frame/offer_button": "ui/store_common.json", + "vertical_store_offer_grid_item/dark_frame": "ui/store_common.json", + "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": "ui/store_common.json", + "vertical_store_offer_grid_item/dark_frame/offer_button": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/key_art_size_panel": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/rating_and_price_padding": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/offer_price_info_panel": "ui/store_common.json", + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": "ui/store_common.json", + "vertical_store_coin_offer_grid_item": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/frame": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/dark_frame": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": "ui/store_common.json", + "vertical_store_coin_offer_grid_item/dark_frame/offer_button": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/key_art_size_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/padding": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/coin_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": "ui/store_common.json", + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": "ui/store_common.json", + "offer_prompt_panel": "ui/store_common.json", + "offer_prompt_panel/coin_panel": "ui/store_common.json", + "offer_prompt_panel/coin_panel/offer_coin_icon": "ui/store_common.json", + "offer_prompt_panel/padding_3": "ui/store_common.json", + "offer_prompt_panel/offer_status_text_panel": "ui/store_common.json", + "offer_prompt_panel/offer_status_text_panel/offer_status_text": "ui/store_common.json", + "store_offer_grid_item": "ui/store_common.json", + "store_offer_grid_item/frame": "ui/store_common.json", + "store_offer_grid_item/frame/key_art": "ui/store_common.json", + "store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_common.json", + "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": "ui/store_common.json", + "store_offer_grid_item/frame/progress_loading": "ui/store_common.json", + "store_offer_grid_item/frame/progress": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": "ui/store_common.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": "ui/store_common.json", + "store_offer_grid_item/frame/offer_button": "ui/store_common.json", + "thumbnail_only_offer": "ui/store_common.json", + "thumbnail_only_offer/frame": "ui/store_common.json", + "thumbnail_only_offer/frame/key_art": "ui/store_common.json", + "thumbnail_only_offer/frame/key_art/key_art_frame": "ui/store_common.json", + "thumbnail_only_offer/frame/key_art/offer_coin_icon": "ui/store_common.json", + "thumbnail_only_offer/frame/offer_button": "ui/store_common.json", + "store_section_header_label": "ui/store_common.json", + "persona_store_row_offer": "ui/store_common.json", + "persona_store_row_offer/persona_offer": "ui/store_common.json", + "thumnail_only_row_offer": "ui/store_common.json", + "thumnail_only_row_offer/generic_store_offer": "ui/store_common.json", + "generic_store_row_offer_panel": "ui/store_common.json", + "generic_store_row_offer_panel/generic_store_offer": "ui/store_common.json", + "store_row_show_more_button_panel": "ui/store_common.json", + "store_row_show_more_button_panel/show_more_button": "ui/store_common.json", + "persona_show_more_button_panel": "ui/store_common.json", + "persona_show_more_button_panel/show_more_button": "ui/store_common.json", + "persona_grid_panel_stack": "ui/store_common.json", + "persona_grid_panel_stack/default_piece_button": "ui/store_common.json", + "persona_grid_panel_stack/persona_grid_panel": "ui/store_common.json", + "persona_grid_panel": "ui/store_common.json", + "persona_grid_panel/persona_offer_grid": "ui/store_common.json", + "store_offer_grid_factory": "ui/store_common.json", + "non_collection_item_horizontal_padding": "ui/store_common.json", + "horizontal_store_offer_row_factory": "ui/store_common.json", + "recently_viewed_row_panel": "ui/store_common.json", + "static_offer_row_panel": "ui/store_common.json", + "static_offer_row_panel/store_row_dropdown_panel": "ui/store_common.json", + "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json", + "store_row_panel": "ui/store_common.json", + "store_row_panel/store_row_dropdown_panel": "ui/store_common.json", + "store_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json", + "vertical_store_row_panel": "ui/store_common.json", + "style_header": "ui/store_common.json", + "style_header/background": "ui/store_common.json", + "style_header/style_header": "ui/store_common.json", + "style_header_panel": "ui/store_common.json", + "style_header_panel/row_header": "ui/store_common.json", + "style_header_panel/row_header/label_panel": "ui/store_common.json", + "style_header_panel/row_header/label_panel/indent": "ui/store_common.json", + "style_header_panel/row_header/label_panel/row_header_label_centering_panel": "ui/store_common.json", + "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": "ui/store_common.json", + "style_header_panel/row_header/label_panel/on_sale_banner": "ui/store_common.json", + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": "ui/store_common.json", + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": "ui/store_common.json", + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": "ui/store_common.json", + "style_header_panel/row_header/label_panel/time_remaining_label": "ui/store_common.json", + "style_header_panel/row_carousel_padding": "ui/store_common.json", + "store_row_cycle_button_panel": "ui/store_common.json", + "store_row_cycle_button_panel/cycle_button_panel": "ui/store_common.json", + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": "ui/store_common.json", + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": "ui/store_common.json", + "store_row": "ui/store_common.json", + "store_row/carousel_panel": "ui/store_common.json", + "store_row/carousel_panel/progress_loading": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": "ui/store_common.json", + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": "ui/store_common.json", + "store_row/divider": "ui/store_common.json", + "page_indicator_panel": "ui/store_common.json", + "page_indicator_panel/first_of_three": "ui/store_common.json", + "page_indicator_panel/second_of_three": "ui/store_common.json", + "page_indicator_panel/third_of_three": "ui/store_common.json", + "page_indicator_panel/first_of_two": "ui/store_common.json", + "page_indicator_panel/second_of_two": "ui/store_common.json", + "page_indicator": "ui/store_common.json", + "popup_dialog__no_store_connection": "ui/store_common.json", + "popup_dialog__no_store_connection/popup_dialog_bg": "ui/store_common.json", + "popup_dialog__no_store_connection/popup_dialog_message": "ui/store_common.json", + "popup_dialog__no_store_connection/popup_dialog_middle_button": "ui/store_common.json", + "popup_dialog__restore_popup": "ui/store_common.json", + "popup_dialog__restore_popup/popup_dialog_bg": "ui/store_common.json", + "popup_dialog__restore_popup/popup_dialog_message": "ui/store_common.json", + "popup_dialog__restore_failed": "ui/store_common.json", + "popup_dialog__restore_failed/popup_dialog_bg": "ui/store_common.json", + "popup_dialog__restore_failed/popup_dialog_message": "ui/store_common.json", + "popup_dialog__restore_failed/popup_dialog_middle_button": "ui/store_common.json", + "suggested_content_offers_grid_item": "ui/store_common.json", + "suggested_content_offers_grid_item/frame": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/key_art": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/key_art/key_art_frame": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/progress_loading": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/progress": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/title_label_panel": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/title_label_panel/title": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/hover": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/pressed": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": "ui/store_common.json", + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": "ui/store_common.json", + "suggested_content_offers_grid": "ui/store_common.json", + "more_suggested_content_offers_button": "ui/store_common.json", + "suggested_content_offers_panel_base": "ui/store_common.json", + "suggested_content_offers_panel_base/content": "ui/store_common.json", + "suggested_content_offers_panel_base/content/suggested_content_offers_grid": "ui/store_common.json", + "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": "ui/store_common.json", + "suggested_content_offers_panel_base/progress_loading": "ui/store_common.json", + "suggested_content_offers_panel_3x1": "ui/store_common.json", + "suggested_content_offers_panel_4x1": "ui/store_common.json", + "search_text_box_panel": "ui/store_common.json", + "search_text_box_panel/search_text_box": "ui/store_common.json", + "search_text_box_panel/clear_button": "ui/store_common.json", + "search_text_box_panel/loading_spinner": "ui/store_common.json", + "search_label_panel": "ui/store_common.json", + "search_label_panel/offset_panel": "ui/store_common.json", + "search_label_panel/offset_panel/label": "ui/store_common.json", + "error_text_panel": "ui/store_common.json", + "error_text_panel/error_text_content": "ui/store_common.json", + "error_text_panel/error_text_content/top_padding": "ui/store_common.json", + "error_text_panel/error_text_content/label_panel": "ui/store_common.json", + "error_text_panel/error_text_content/bottom_padding": "ui/store_common.json", + "results_text_panel": "ui/store_common.json", + "results_text_panel/results_panel": "ui/store_common.json", + "results_text_panel/results_panel/top_padding": "ui/store_common.json", + "results_text_panel/results_panel/results_content": "ui/store_common.json", + "results_text_panel/results_panel/results_content/label_panel": "ui/store_common.json", + "results_text_panel/results_panel/results_content/mid_padding": "ui/store_common.json", + "results_text_panel/results_panel/results_content/results_close_centering_panel": "ui/store_common.json", + "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": "ui/store_common.json", + "results_text_panel/results_panel/results_content/right_padding": "ui/store_common.json", + "results_text_panel/results_panel/bottom_padding": "ui/store_common.json", + "filter_logo_content_panel": "ui/store_common.json", + "filter_logo_content_panel/filter_logo_image": "ui/store_common.json", + "filter_logo_content_panel/filter_count_label": "ui/store_common.json", + "filter_sort_toggle": "ui/store_common.json", + "filter_sort_submenu_scrolling_panel_section": "ui/store_common.json", + "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": "ui/store_common.json", + "filter_sort_grid_panel": "ui/store_common.json", + "filter_sort_grid_panel/filter_sort_grid": "ui/store_common.json", + "sort_button_content_panel": "ui/store_common.json", + "search_panel_filter": "ui/store_common.json", + "search_panel_filter/search_text_box": "ui/store_common.json", + "search_panel_filter/filter_button": "ui/store_common.json", + "search_panel_filter/sort_button": "ui/store_common.json", + "search_results_and_error_stack": "ui/store_common.json", + "search_results_and_error_stack/mid_padding_1": "ui/store_common.json", + "search_results_and_error_stack/error_text_panel": "ui/store_common.json", + "search_results_and_error_stack/mid_padding_2": "ui/store_common.json", + "search_results_and_error_stack/results_text_panel": "ui/store_common.json", + "search_panel": "ui/store_common.json", + "search_panel/search_panel_content": "ui/store_common.json", + "search_panel/search_panel_content/search_text_box": "ui/store_common.json", + "search_panel/search_panel_content/search_results_and_error_panel": "ui/store_common.json", + "search_panel/search_panel_content/bottom_padding": "ui/store_common.json", + "search_and_offer_content": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": "ui/store_common.json", + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": "ui/store_common.json", + "search_object": "ui/store_common.json", + "search_object/search_object_content": "ui/store_common.json", + "sort_and_filter_menu_modal_panel": "ui/store_common.json", + "sort_and_filter_menu_modal_panel/filter_menu": "ui/store_common.json", + "sort_and_filter_menu_modals": "ui/store_common.json", + "sort_and_filter_menu_modals/filter_menu_modal": "ui/store_common.json", + "sort_and_filter_menu_modals/sort_menu_panel": "ui/store_common.json", + "search_filter_sort_background": "ui/store_common.json", + "search_filter_background_panel": "ui/store_common.json", + "search_filter_background_panel/search_filter_sort_background": "ui/store_common.json", + "close_bg_button": "ui/store_common.json", + "close_bg_button/default": "ui/store_common.json", + "close_bg_button/hover": "ui/store_common.json", + "close_bg_button/pressed": "ui/store_common.json", + "close_bg_panel": "ui/store_common.json", + "close_bg_panel/header_close_button": "ui/store_common.json", + "close_bg_panel/main_close_button": "ui/store_common.json", + "vertical_line_divider_row": "ui/store_common.json", + "vertical_line_divider_row/vert_line_divider_row_top_buffer": "ui/store_common.json", + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": "ui/store_common.json", + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": "ui/store_common.json", + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": "ui/store_common.json", + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": "ui/store_common.json", + "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": "ui/store_common.json", + "sdl_dropdown_header_row_button": "ui/store_common.json", + "sdl_subcategory_button": "ui/store_common.json", + "sdl_dropdown_header_row": "ui/store_common.json", + "sdl_dropdown_header_row/drowdown_header_row_content": "ui/store_common.json", + "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": "ui/store_common.json", + "sdl_dropdown_data_row": "ui/store_common.json", + "sdl_dropdown_data_row/row_background": "ui/store_common.json", + "sdl_dropdown_data_row/button_aspects": "ui/store_common.json", + }, + "store_layout": { + "sdl_scrolling_content_panel": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_panel/sdl_scrolling_content_stack": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_stack": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_stack/padding_0": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_stack/store_screen_layout_factory": "ui/store_data_driven_screen.json", + "sdl_scrolling_content_stack/footer": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel/padding0": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel/top_static_sdl_section": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel/padding1": "ui/store_data_driven_screen.json", + "sdl_scrolling_section_panel/sdl_scrolling_section": "ui/store_data_driven_screen.json", + "sdl_scrolling_section": "ui/store_data_driven_screen.json", + "character_creator_sdl_scroll_section": "ui/store_data_driven_screen.json", + "character_creator_sdl_section": "ui/store_data_driven_screen.json", + "character_creator_sdl_section/sdl_section": "ui/store_data_driven_screen.json", + "character_creator_panel": "ui/store_data_driven_screen.json", + "character_creator_panel/left_main_panel_padding": "ui/store_data_driven_screen.json", + "character_creator_panel/character_creator_sdl_portion": "ui/store_data_driven_screen.json", + "character_creator_panel/middle_main_panel_padding": "ui/store_data_driven_screen.json", + "character_creator_panel/right_main_panel": "ui/store_data_driven_screen.json", + "character_creator_panel/right_main_panel_padding": "ui/store_data_driven_screen.json", + "character_creator_screen_layout": "ui/store_data_driven_screen.json", + "character_creator_screen_layout/character_creator_panel": "ui/store_data_driven_screen.json", + "main_panel": "ui/store_data_driven_screen.json", + "main_panel/background": "ui/store_data_driven_screen.json", + "main_panel/main_panel_content": "ui/store_data_driven_screen.json", + "main_panel/main_panel_content/sdl_screen_content": "ui/store_data_driven_screen.json", + "main_panel/progress_loading": "ui/store_data_driven_screen.json", + "nav_button_content": "ui/store_data_driven_screen.json", + "nav_button_content/image_panel": "ui/store_data_driven_screen.json", + "nav_button_content/small_padding": "ui/store_data_driven_screen.json", + "nav_button_content/label_panel": "ui/store_data_driven_screen.json", + "default_nav_label_panel": "ui/store_data_driven_screen.json", + "default_nav_label_panel/button_text_label": "ui/store_data_driven_screen.json", + "styled_nav_label_panel": "ui/store_data_driven_screen.json", + "styled_nav_label_panel/button_text_label": "ui/store_data_driven_screen.json", + "styled_nav_label_panel_minecraftTen": "ui/store_data_driven_screen.json", + "styled_nav_label_panel_minecraftTen/button_text_label": "ui/store_data_driven_screen.json", + "default_styled_button_text_label": "ui/store_data_driven_screen.json", + "nav_image_panel": "ui/store_data_driven_screen.json", + "nav_image_panel/button_image_panel": "ui/store_data_driven_screen.json", + "nav_image_panel/button_animated_panel": "ui/store_data_driven_screen.json", + "nav_button_image_panel": "ui/store_data_driven_screen.json", + "nav_button_image_panel/button_image": "ui/store_data_driven_screen.json", + "nav_button_image": "ui/store_data_driven_screen.json", + "nav_button_animation": "ui/store_data_driven_screen.json", + "nav_button_fill": "ui/store_data_driven_screen.json", + "nav_button_fill_styled": "ui/store_data_driven_screen.json", + "nav_button_fill_styled_mc10": "ui/store_data_driven_screen.json", + "nav_button_standard_styled": "ui/store_data_driven_screen.json", + "nav_button_standard_styled_mc10": "ui/store_data_driven_screen.json", + "nav_button_standard": "ui/store_data_driven_screen.json", + "nav_button_standard/nav_button": "ui/store_data_driven_screen.json", + "nav_button_grid_panel": "ui/store_data_driven_screen.json", + "nav_button_grid_panel/nav_button_grid": "ui/store_data_driven_screen.json", + "store_layout_ribbon_search_button": "ui/store_data_driven_screen.json", + "store_layout_ribbon_search_button_content": "ui/store_data_driven_screen.json", + "store_layout_ribbon_search_button_content/button_image": "ui/store_data_driven_screen.json", + "store_data_driven_screen_base": "ui/store_data_driven_screen.json", + "store_screen_modal_panel": "ui/store_data_driven_screen.json", + "store_screen_modal_panel/one_button_dialog": "ui/store_data_driven_screen.json", + "store_screen_modal_panel/popup_dialog_factory": "ui/store_data_driven_screen.json", + "dialog_button": "ui/store_data_driven_screen.json", + "store_screen_main_panel": "ui/store_data_driven_screen.json", + "store_screen_main_panel/main_content_view": "ui/store_data_driven_screen.json", + "store_screen_main_panel/sort_and_filter_modals": "ui/store_data_driven_screen.json", + "store_full_screen_content": "ui/store_data_driven_screen.json", + "store_full_screen_content/mouse_input_focus_panel": "ui/store_data_driven_screen.json", + "store_full_screen_content/screen_content": "ui/store_data_driven_screen.json", + "store_full_screen_content/screen_content/top_bar_section": "ui/store_data_driven_screen.json", + "store_full_screen_content/screen_content/main_panel": "ui/store_data_driven_screen.json", + "store_full_screen_content/screen_content/main_panel/main_panel_content": "ui/store_data_driven_screen.json", + "store_full_screen_content/popup_dialog_factory": "ui/store_data_driven_screen.json", + "store_full_screen_content/character_selector_dialog_factory": "ui/store_data_driven_screen.json", + "store_full_screen_content/custom_skin_dialog_factory": "ui/store_data_driven_screen.json", + "sdl_base_screen": "ui/store_data_driven_screen.json", + "character_creator_base_screen": "ui/store_data_driven_screen.json", + "store_data_driven_screen": "ui/store_data_driven_screen.json", + "character_creator_screen": "ui/store_data_driven_screen.json", + "dressing_room_color_picker_screen": "ui/store_data_driven_screen.json", + "expanded_appearance_view_screen": "ui/store_data_driven_screen.json", + "non_scrollable_sdl_screen": "ui/store_data_driven_screen.json", + "skin_selector_screen": "ui/store_data_driven_screen.json", + "store_data_driven_modal_one_button_screen": "ui/store_data_driven_screen.json", + }, + "filter_menu": { + "filter_clear_button_panel": "ui/store_filter_menu_screen.json", + "filter_clear_button_panel/clear_button": "ui/store_filter_menu_screen.json", + "chevron_icon_panel": "ui/store_filter_menu_screen.json", + "chevron_icon_panel/chevron_icon": "ui/store_filter_menu_screen.json", + "filter_variables_panel": "ui/store_filter_menu_screen.json", + "filter_option_button_content": "ui/store_filter_menu_screen.json", + "filter_option_button_content/left_chevron_icon_panel": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/top_padding": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/middle_padding": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/selected_label": "ui/store_filter_menu_screen.json", + "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": "ui/store_filter_menu_screen.json", + "filter_option_button_content/right_chevron_icon_panel": "ui/store_filter_menu_screen.json", + "filter_options_button_panel": "ui/store_filter_menu_screen.json", + "filter_options_button_panel/filter_variables_panel": "ui/store_filter_menu_screen.json", + "filter_options_button_panel/filter_variables_panel/filter_options_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_options_button_panel": "ui/store_filter_menu_screen.json", + "filter_title_bar_content": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/filter_logo_and_count_panel": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/centered_filter_title_label": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/centered_filter_title_label/filter_title_label": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/filter_title_padding_close_button": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/centered_x": "ui/store_filter_menu_screen.json", + "filter_title_bar_content/centered_x/close_x_image": "ui/store_filter_menu_screen.json", + "filter_title_bar": "ui/store_filter_menu_screen.json", + "filter_checkbox_toggle": "ui/store_filter_menu_screen.json", + "filter_checkbox_no_icon_toggle": "ui/store_filter_menu_screen.json", + "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": "ui/store_filter_menu_screen.json", + "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": "ui/store_filter_menu_screen.json", + "offer_type_sub_menu_panel": "ui/store_filter_menu_screen.json", + "offer_type_sub_menu_panel/bundles_filter": "ui/store_filter_menu_screen.json", + "offer_type_sub_menu_panel/realms_plus_filter": "ui/store_filter_menu_screen.json", + "offer_type_sub_menu_panel/csb_filter": "ui/store_filter_menu_screen.json", + "realms_plus_filter": "ui/store_filter_menu_screen.json", + "realms_plus_filter/realms_plus_filter": "ui/store_filter_menu_screen.json", + "csb_filter": "ui/store_filter_menu_screen.json", + "csb_filter/csb_filter": "ui/store_filter_menu_screen.json", + "realms_plus_gradient_content_panel": "ui/store_filter_menu_screen.json", + "realms_plus_gradient_content_panel/gradient": "ui/store_filter_menu_screen.json", + "realms_plus_gradient_content_panel/particles": "ui/store_filter_menu_screen.json", + "realms_plus_gradient_content_panel/content_panel": "ui/store_filter_menu_screen.json", + "csb_gradient_content_panel": "ui/store_filter_menu_screen.json", + "csb_gradient_content_panel/gradient": "ui/store_filter_menu_screen.json", + "csb_gradient_content_panel/particles": "ui/store_filter_menu_screen.json", + "csb_gradient_content_panel/content_panel": "ui/store_filter_menu_screen.json", + "filter_section_content": "ui/store_filter_menu_screen.json", + "filter_section_content/section_title_button": "ui/store_filter_menu_screen.json", + "filter_section_content/clear_button": "ui/store_filter_menu_screen.json", + "filter_section_content/section_sub_menu": "ui/store_filter_menu_screen.json", + "filter_section_content_dynamic": "ui/store_filter_menu_screen.json", + "filter_section_content_dynamic/filter_section_content": "ui/store_filter_menu_screen.json", + "filter_main_menu_content": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/filter_title_bar_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/offer_type_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/pack_type_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/minecoin_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/rating_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/creator_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/graphics_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/installed_state_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/filter_main_menu_filter_toggles_section": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content/clear_button_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/filter_title_bar_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/persona_body_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/persona_style_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/emote_filter_section": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/minecoin_button": "ui/store_filter_menu_screen.json", + "filter_main_menu_content_persona/clear_button_panel": "ui/store_filter_menu_screen.json", + "filter_section_content_panel": "ui/store_filter_menu_screen.json", + "filter_section_content_panel/filter_menu_screen": "ui/store_filter_menu_screen.json", + "filter_main_menu_section": "ui/store_filter_menu_screen.json", + "filter_main_menu_section_persona": "ui/store_filter_menu_screen.json", + "filter_pack_type_section": "ui/store_filter_menu_screen.json", + "filter_offer_type_section": "ui/store_filter_menu_screen.json", + "filter_type_section": "ui/store_filter_menu_screen.json", + "filter_menu_content": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_main_menu_screen": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_offer_type_screen": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_pack_type_screen": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_minecoin_section": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_rating_section": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_creator_section": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_graphics_section": "ui/store_filter_menu_screen.json", + "filter_menu_content/filter_installed_state_section": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona/filter_main_menu_screen": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona/filter_style_section": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona/filter_body_section": "ui/store_filter_menu_screen.json", + "filter_menu_content_persona/filter_minecoin_section": "ui/store_filter_menu_screen.json", + "filter_menu_panel": "ui/store_filter_menu_screen.json", + "filter_menu_panel/top_padding": "ui/store_filter_menu_screen.json", + "filter_menu_panel/alignment_panel": "ui/store_filter_menu_screen.json", + "filter_menu_panel/alignment_panel/left_padding": "ui/store_filter_menu_screen.json", + "filter_menu_panel/alignment_panel/filter_menu_content_scroll": "ui/store_filter_menu_screen.json", + "filter_menu_panel/alignment_panel/right_padding": "ui/store_filter_menu_screen.json", + "filter_menu_screen_content": "ui/store_filter_menu_screen.json", + "filter_menu_screen_content/filter_main_panel": "ui/store_filter_menu_screen.json", + "filter_menu_screen_content/filter_main_panel_persona": "ui/store_filter_menu_screen.json", + "filter_menu_screen_content/filter_menu_close_background_button": "ui/store_filter_menu_screen.json", + }, + "store_inventory": { + "sign_in_button": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": "ui/store_inventory_screen.json", + "no_xbl_and_local_content_warning_panel/bottom_padding": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": "ui/store_inventory_screen.json", + "no_xbl_and_no_local_conent_warning_panel/bottom_padding": "ui/store_inventory_screen.json", + "inventory_sign_in_panel": "ui/store_inventory_screen.json", + "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": "ui/store_inventory_screen.json", + "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": "ui/store_inventory_screen.json", + "divider_panel": "ui/store_inventory_screen.json", + "divider_panel/top_pad": "ui/store_inventory_screen.json", + "divider_panel/divider": "ui/store_inventory_screen.json", + "divider_panel/bottom_pad": "ui/store_inventory_screen.json", + "right_image": "ui/store_inventory_screen.json", + "down_image": "ui/store_inventory_screen.json", + "section_toggle_base": "ui/store_inventory_screen.json", + "owned_toggle": "ui/store_inventory_screen.json", + "current_toggle": "ui/store_inventory_screen.json", + "removed_toggle": "ui/store_inventory_screen.json", + "subscriptions_toggle": "ui/store_inventory_screen.json", + "inventory_left_panel": "ui/store_inventory_screen.json", + "inventory_left_panel/top_pad": "ui/store_inventory_screen.json", + "inventory_left_panel/owned_toggle": "ui/store_inventory_screen.json", + "inventory_left_panel/owned_dropdown_box_panel": "ui/store_inventory_screen.json", + "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": "ui/store_inventory_screen.json", + "inventory_left_panel/divider_0": "ui/store_inventory_screen.json", + "inventory_left_panel/csub_panel": "ui/store_inventory_screen.json", + "inventory_left_panel/csub_panel/csub_stack_panel": "ui/store_inventory_screen.json", + "inventory_left_panel/divider_1": "ui/store_inventory_screen.json", + "inventory_left_panel/subscriptions_toggle": "ui/store_inventory_screen.json", + "csub_stack_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/padding_title_vertical": "ui/store_inventory_screen.json", + "csub_stack_panel/section_title": "ui/store_inventory_screen.json", + "csub_stack_panel/section_title/padding_title_horizontal": "ui/store_inventory_screen.json", + "csub_stack_panel/section_title/testTitle": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": "ui/store_inventory_screen.json", + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": "ui/store_inventory_screen.json", + "subscriptions_text_panel": "ui/store_inventory_screen.json", + "subscriptions_text_panel/subscriptions_text": "ui/store_inventory_screen.json", + "realms_plus_stack_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/section_title": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/section_title/border": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/section_title/section_title_label": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/section_title/particles": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": "ui/store_inventory_screen.json", + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": "ui/store_inventory_screen.json", + "dropdown_button_content": "ui/store_inventory_screen.json", + "dropdown_button_content/title_label": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_0_fill": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_0": "ui/store_inventory_screen.json", + "dropdown_button_content/icon_panel": "ui/store_inventory_screen.json", + "dropdown_button_content/icon_panel/block_icon": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_1": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_2": "ui/store_inventory_screen.json", + "dropdown_button_content/count_panel": "ui/store_inventory_screen.json", + "dropdown_button_content/count_panel/count": "ui/store_inventory_screen.json", + "dropdown_button_content/pad_3": "ui/store_inventory_screen.json", + "dropdown_button_content/right_carrot": "ui/store_inventory_screen.json", + "dropdown_button_content/right_carrot/right": "ui/store_inventory_screen.json", + "dropdown_button_content/down_carrot": "ui/store_inventory_screen.json", + "dropdown_button_content/down_carrot/down": "ui/store_inventory_screen.json", + "owned_dropdown_content": "ui/store_inventory_screen.json", + "current_dropdown_content": "ui/store_inventory_screen.json", + "removed_dropdown_content": "ui/store_inventory_screen.json", + "dropdown_box": "ui/store_inventory_screen.json", + "dropdown_box/top_pad": "ui/store_inventory_screen.json", + "dropdown_box/all": "ui/store_inventory_screen.json", + "dropdown_box/divider_0": "ui/store_inventory_screen.json", + "dropdown_box/addons": "ui/store_inventory_screen.json", + "dropdown_box/divider_1": "ui/store_inventory_screen.json", + "dropdown_box/skins": "ui/store_inventory_screen.json", + "dropdown_box/divider_2": "ui/store_inventory_screen.json", + "dropdown_box/worlds": "ui/store_inventory_screen.json", + "dropdown_box/divider_3": "ui/store_inventory_screen.json", + "dropdown_box/textures": "ui/store_inventory_screen.json", + "dropdown_box/divider_4": "ui/store_inventory_screen.json", + "dropdown_box/mashups": "ui/store_inventory_screen.json", + "dropdown_box/bottom_pad": "ui/store_inventory_screen.json", + "category_panel_button": "ui/store_inventory_screen.json", + "category_panel_button/default": "ui/store_inventory_screen.json", + "category_panel_button/hover": "ui/store_inventory_screen.json", + "category_panel_button/pressed": "ui/store_inventory_screen.json", + "category_stack_panel": "ui/store_inventory_screen.json", + "category_stack_panel/text": "ui/store_inventory_screen.json", + "category_stack_panel/fill_pad": "ui/store_inventory_screen.json", + "category_stack_panel/icon": "ui/store_inventory_screen.json", + "category_stack_panel/pad_1": "ui/store_inventory_screen.json", + "category_stack_panel/number": "ui/store_inventory_screen.json", + "search_object": "ui/store_inventory_screen.json", + "list_panel": "ui/store_inventory_screen.json", + "list_panel/list_panel_content": "ui/store_inventory_screen.json", + "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": "ui/store_inventory_screen.json", + "list_panel/progress_loading": "ui/store_inventory_screen.json", + "items_content_section": "ui/store_inventory_screen.json", + "subscriptions_content_section": "ui/store_inventory_screen.json", + "subscriptions_content_section/left_pad": "ui/store_inventory_screen.json", + "subscriptions_content_section/search_and_offers_grid_scroll_panel": "ui/store_inventory_screen.json", + "right_pane_factory": "ui/store_inventory_screen.json", + "content_area": "ui/store_inventory_screen.json", + "content_area/control": "ui/store_inventory_screen.json", + "content_area/control/right_pane_factory": "ui/store_inventory_screen.json", + "main_panel": "ui/store_inventory_screen.json", + "main_panel/inventory_left_panel": "ui/store_inventory_screen.json", + "main_panel/inventory_left_panel/inventory_left_image": "ui/store_inventory_screen.json", + "main_panel/inventory_left_panel/left_scrolling_panel": "ui/store_inventory_screen.json", + "main_panel/divider_panel": "ui/store_inventory_screen.json", + "main_panel/divider_panel/main_divider": "ui/store_inventory_screen.json", + "main_panel/inventory_right_panel": "ui/store_inventory_screen.json", + "main_panel/inventory_right_panel/right_panel_background_image": "ui/store_inventory_screen.json", + "main_panel/inventory_right_panel/content_right_panel": "ui/store_inventory_screen.json", + "store_inventory_screen_main_panel": "ui/store_inventory_screen.json", + "store_inventory_screen_main_panel/main_content_view": "ui/store_inventory_screen.json", + "store_inventory_screen_main_panel/sort_and_filter_modals": "ui/store_inventory_screen.json", + "store_search_screen_content": "ui/store_inventory_screen.json", + "store_search_screen_content/main_panel": "ui/store_inventory_screen.json", + "store_search_screen_content/popup_dialog_factory": "ui/store_inventory_screen.json", + "store_inventory_screen": "ui/store_inventory_screen.json", + "signin_text_section_body": "ui/store_inventory_screen.json", + "signin_text": "ui/store_inventory_screen.json", + "signin_text_02": "ui/store_inventory_screen.json", + "signin_text_section": "ui/store_inventory_screen.json", + "signin_text_section/signin_text": "ui/store_inventory_screen.json", + "signin_text_section/line_1_padding_line_2": "ui/store_inventory_screen.json", + "signin_text_section/signin_text_02": "ui/store_inventory_screen.json", + "sign_in_panel_text_body": "ui/store_inventory_screen.json", + }, + "store_item_list": { + "store_offer_key_art": "ui/store_item_list_screen.json", + "main_panel": "ui/store_item_list_screen.json", + "main_panel/search_object": "ui/store_item_list_screen.json", + "main_panel/progress_loading": "ui/store_item_list_screen.json", + "scrolling_content_stack": "ui/store_item_list_screen.json", + "scrolling_content_stack/search_panel": "ui/store_item_list_screen.json", + "store_offer_grid": "ui/store_item_list_screen.json", + "persona_offer_grid": "ui/store_item_list_screen.json", + "vertical_store_offer_grid": "ui/store_item_list_screen.json", + "store_offer_title": "ui/store_item_list_screen.json", + "store_offer_grid_item": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/key_art": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/key_art/csb_expiration_banner": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/progress": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/title_label_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/hover": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/pressed": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": "ui/store_item_list_screen.json", + "store_offer_grid_item/frame/offer_button/offer_status_icon": "ui/store_item_list_screen.json", + "store_screen_content": "ui/store_item_list_screen.json", + "store_screen_content/main_panel": "ui/store_item_list_screen.json", + "store_screen_content/popup_dialog_factory": "ui/store_item_list_screen.json", + }, + "store_progress": { + "store_progress_screen": "ui/store_progress_screen.json", + "screen_content": "ui/store_progress_screen.json", + "screen_content/title_image": "ui/store_progress_screen.json", + "screen_content/progress_dialog": "ui/store_progress_screen.json", + "dialog_content": "ui/store_progress_screen.json", + "dialog_content/tooltip_panel": "ui/store_progress_screen.json", + "dialog_content/tooltip_panel/tooltip_text": "ui/store_progress_screen.json", + "dialog_content/padding": "ui/store_progress_screen.json", + "dialog_content/progress_panel": "ui/store_progress_screen.json", + "dialog_content/progress_panel/empty_progress_bar": "ui/store_progress_screen.json", + "dialog_content/progress_panel/progress_percent_panel": "ui/store_progress_screen.json", + "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": "ui/store_progress_screen.json", + "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": "ui/store_progress_screen.json", + "screen_background": "ui/store_progress_screen.json", + }, + "promo_timeline": { + "promo_banner_factory": "ui/store_promo_timeline_screen.json", + "promo_banner_button_content": "ui/store_promo_timeline_screen.json", + "promo_banner_button_content/promo_banner_button": "ui/store_promo_timeline_screen.json", + "promo_banner_button_content/progress_loading_spinner": "ui/store_promo_timeline_screen.json", + "promo_banner_image": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_image": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel/padding_0": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel/title_stack_panel": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/banner_text_panel/description": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/button_stack_panel": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/button_stack_panel/left_offset": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/button_stack_panel/banner_button": "ui/store_promo_timeline_screen.json", + "promo_banner_panel_content/button_stack_panel/right_offset": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel/banner_full_button": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel/banner_full_button/default": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel/banner_full_button/hover": "ui/store_promo_timeline_screen.json", + "promo_banner_holiday_panel/banner_full_button/pressed": "ui/store_promo_timeline_screen.json", + "image_message_panel": "ui/store_promo_timeline_screen.json", + "image_message_panel/image_message_row_content": "ui/store_promo_timeline_screen.json", + "image_message_panel/padding_0": "ui/store_promo_timeline_screen.json", + "image_message_row_content": "ui/store_promo_timeline_screen.json", + "image_message_row_content/gray_background": "ui/store_promo_timeline_screen.json", + "image_message_row_content/gray_background/message_text": "ui/store_promo_timeline_screen.json", + "image_message_row_content/gray_background/row_image": "ui/store_promo_timeline_screen.json", + "image_message_row_content/row_button": "ui/store_promo_timeline_screen.json", + "promo_image_panel": "ui/store_promo_timeline_screen.json", + "promo_image_panel/button_image_panel": "ui/store_promo_timeline_screen.json", + "promo_image_panel/button_animated_panel": "ui/store_promo_timeline_screen.json", + "promo_button_image_panel": "ui/store_promo_timeline_screen.json", + "promo_button_image_panel/button_image": "ui/store_promo_timeline_screen.json", + "promo_button_image": "ui/store_promo_timeline_screen.json", + "promo_button_animation": "ui/store_promo_timeline_screen.json", + "banner_button": "ui/store_promo_timeline_screen.json", + "sdl_text_aligned_panel": "ui/store_promo_timeline_screen.json", + "sdl_text_minecraftTen_aligned_panel": "ui/store_promo_timeline_screen.json", + "sdl_content_aligned_panel": "ui/store_promo_timeline_screen.json", + "sdl_content_aligned_panel/left__padding_panel": "ui/store_promo_timeline_screen.json", + "sdl_content_aligned_panel/control": "ui/store_promo_timeline_screen.json", + "sdl_content_aligned_panel/right_padding_panel": "ui/store_promo_timeline_screen.json", + "sdl_aligned_text": "ui/store_promo_timeline_screen.json", + "sdl_aligned_minecraftTen_text": "ui/store_promo_timeline_screen.json", + "colored_direction_button_panel": "ui/store_promo_timeline_screen.json", + "colored_direction_button_panel/chevron_image": "ui/store_promo_timeline_screen.json", + "left_corner_art": "ui/store_promo_timeline_screen.json", + "right_corner_art": "ui/store_promo_timeline_screen.json", + "promo_landing_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_top": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/pad_0": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/promo_landing_panel_content/pad_1": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/left_corner_art": "ui/store_promo_timeline_screen.json", + "promo_landing_panel/right_corner_art": "ui/store_promo_timeline_screen.json", + "promotion_screen_top_section": "ui/store_promo_timeline_screen.json", + "promotion_screen_top_section/main_panel": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": "ui/store_promo_timeline_screen.json", + "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": "ui/store_promo_timeline_screen.json", + "main_panel_title": "ui/store_promo_timeline_screen.json", + "main_panel_title/padding_0": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/padding_0": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/back_button_centering_panel": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/back_button_centering_panel/button": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/padding_1": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/header_panel": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/header_panel/title_and_description": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/padding_2": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/claim_all_button_panel": "ui/store_promo_timeline_screen.json", + "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": "ui/store_promo_timeline_screen.json", + "main_panel_title/padding_1": "ui/store_promo_timeline_screen.json", + "main_panel_title/divdier_centering_panel": "ui/store_promo_timeline_screen.json", + "main_panel_title/divdier_centering_panel/divider": "ui/store_promo_timeline_screen.json", + "main_panel_title/padding_2": "ui/store_promo_timeline_screen.json", + "promo_multi_item_grid": "ui/store_promo_timeline_screen.json", + "promo_button": "ui/store_promo_timeline_screen.json", + "promo_button/default": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel/key_art_frame": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": "ui/store_promo_timeline_screen.json", + "promo_button/default/key_art_size_panel/button_frame": "ui/store_promo_timeline_screen.json", + "promo_button/hover": "ui/store_promo_timeline_screen.json", + "promo_button/hover/key_art_size_panel": "ui/store_promo_timeline_screen.json", + "promo_button/hover/key_art_size_panel/key_art_frame": "ui/store_promo_timeline_screen.json", + "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", + "promo_button/hover/key_art_size_panel/button_frame": "ui/store_promo_timeline_screen.json", + "promo_button/pressed": "ui/store_promo_timeline_screen.json", + "promo_button/pressed/key_art_frame": "ui/store_promo_timeline_screen.json", + "promo_button/pressed/key_art_frame/sizing_panel": "ui/store_promo_timeline_screen.json", + "promo_button/pressed/button_frame": "ui/store_promo_timeline_screen.json", + "promo_grid_item": "ui/store_promo_timeline_screen.json", + "promo_grid_item/background_image": "ui/store_promo_timeline_screen.json", + "promo_grid_item/background_image/promo_content": "ui/store_promo_timeline_screen.json", + "promo_grid_item/promo_button": "ui/store_promo_timeline_screen.json", + "promo_grid_item/platform_restricted_error_multi_item": "ui/store_promo_timeline_screen.json", + "platform_restricted_error": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button/default": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button/hover": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button/pressed": "ui/store_promo_timeline_screen.json", + "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/thumbnail_image": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/persona_key_art_frame": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/persona_key_art_frame/persona_image_panel": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/persona_key_art_frame/background": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/padding_0": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/title_tooltip": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/title_tooltip/promo_title": "ui/store_promo_timeline_screen.json", + "promo_grid_item_content/title_tooltip/tooltip": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_1": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_0": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_2": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_1": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_3": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_2": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_4": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_3": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_5": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_4": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_6": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/padding_5": "ui/store_promo_timeline_screen.json", + "promotion_period_offer_panel/period_7": "ui/store_promo_timeline_screen.json", + "toggle_button_control": "ui/store_promo_timeline_screen.json", + "toggle_button_control/green_check": "ui/store_promo_timeline_screen.json", + "toggle_button_control/key_art_image_panel": "ui/store_promo_timeline_screen.json", + "toggle_button_control/key_art_image_panel/image_loading_panel": "ui/store_promo_timeline_screen.json", + "toggle_button_control/key_art_image_panel/key_art_image": "ui/store_promo_timeline_screen.json", + "checked_border": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_item": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_item/frame": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_item/frame/offer_button": "ui/store_promo_timeline_screen.json", + "promotion_period_grid_item/frame/offer_button/offer_toggle_button": "ui/store_promo_timeline_screen.json", + "vertical_padding_2px": "ui/store_promo_timeline_screen.json", + "timer_icon_tooltip_panel": "ui/store_promo_timeline_screen.json", + "timer_icon_tooltip_panel/limited_status_image": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_right_extending": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_right_extending/default": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_right_extending/hover": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_right_extending/pressed": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_left_extending": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_left_extending/default": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_left_extending/hover": "ui/store_promo_timeline_screen.json", + "timer_tooltip_panel_left_extending/pressed": "ui/store_promo_timeline_screen.json", + "no_timer_tooltip_panel": "ui/store_promo_timeline_screen.json", + "no_timer_tooltip_panel/default": "ui/store_promo_timeline_screen.json", + "no_timer_tooltip_panel/hover": "ui/store_promo_timeline_screen.json", + "no_timer_tooltip_panel/pressed": "ui/store_promo_timeline_screen.json", + "promo_timer_panel": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/padding": "ui/store_promo_timeline_screen.json", + "promo_timer_panel/timer_text": "ui/store_promo_timeline_screen.json", + "offer_title_panel": "ui/store_promo_timeline_screen.json", + "offer_title_panel/offer_title_label": "ui/store_promo_timeline_screen.json", + "title_and_author_panel": "ui/store_promo_timeline_screen.json", + "title_and_author_panel/author_button_panel": "ui/store_promo_timeline_screen.json", + "title_and_author_panel/author_button_panel/summary_author_button": "ui/store_promo_timeline_screen.json", + "glyph_panel": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/glyph_icon_panel": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": "ui/store_promo_timeline_screen.json", + "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": "ui/store_promo_timeline_screen.json", + "vertical_glyph_section_content": "ui/store_promo_timeline_screen.json", + "vertical_glyph_section_content/glyph_content": "ui/store_promo_timeline_screen.json", + "vertical_glyph_section_content/bottom_glyph_content_padding": "ui/store_promo_timeline_screen.json", + "glyph_section_panel": "ui/store_promo_timeline_screen.json", + "glyph_section_panel/glyphs": "ui/store_promo_timeline_screen.json", + "glyph_section_panel/glyphs/skin_glyph_section": "ui/store_promo_timeline_screen.json", + "glyph_section_panel/glyphs/world_glyph_section": "ui/store_promo_timeline_screen.json", + "glyph_section_panel/glyphs/resource_pack_glyph_section": "ui/store_promo_timeline_screen.json", + "vertical_glyph_section_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/world_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/world_panel/border": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/world_panel/world_key_image": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel/border": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel/persona_image": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel/background": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/persona_panel/rarity_bar_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/divider": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/info": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/info/summary_title_and_author_panel": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/info/glyph_section": "ui/store_promo_timeline_screen.json", + "image_glyphs_panel/info/glyph_section/glyph_section_panel": "ui/store_promo_timeline_screen.json", + "promo_lower_button_content": "ui/store_promo_timeline_screen.json", + "promo_lower_button_content/promo_banner_button": "ui/store_promo_timeline_screen.json", + "promo_lower_button_content/progress_loading_spinner": "ui/store_promo_timeline_screen.json", + "free_discount_label": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/sales_banner_offset_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/price_markdown_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/price_markdown_panel/offer_price": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": "ui/store_promo_timeline_screen.json", + "promo_upper_button_content/download_progress_bar": "ui/store_promo_timeline_screen.json", + "description_section_panel": "ui/store_promo_timeline_screen.json", + "description_section_panel/contents_description": "ui/store_promo_timeline_screen.json", + "offset_title_offer": "ui/store_promo_timeline_screen.json", + "offset_title_offer/pad_0": "ui/store_promo_timeline_screen.json", + "offset_title_offer/title_panel": "ui/store_promo_timeline_screen.json", + "offset_promo_timer": "ui/store_promo_timeline_screen.json", + "offset_promo_timer/pad_0": "ui/store_promo_timeline_screen.json", + "offset_promo_timer/promo_timer": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel/pad_0": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel/smaller_panel": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel/smaller_panel/details": "ui/store_promo_timeline_screen.json", + "offset_image_glyphs_panel/smaller_panel/description": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/offset_title_panel": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/offsetted_promo_timer": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/pad_0": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/offsetted_details": "ui/store_promo_timeline_screen.json", + "promo_pack_detail_panel/pad_1": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top_scrolling_content": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top_scrolling_content/details": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top/top": "ui/store_promo_timeline_screen.json", + "promo_left_inner_top/padding2": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom/banner_button_top_panel": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": "ui/store_promo_timeline_screen.json", + "promo_left_inner_bottom/banner_button_bottom": "ui/store_promo_timeline_screen.json", + "promo_left_panel": "ui/store_promo_timeline_screen.json", + "promo_left_panel/top": "ui/store_promo_timeline_screen.json", + "promo_left_panel/bottom_buttons_padded": "ui/store_promo_timeline_screen.json", + "promo_left_panel/bottom_buttons_padded/pad_0": "ui/store_promo_timeline_screen.json", + "promo_left_panel/bottom_buttons_padded/bottom": "ui/store_promo_timeline_screen.json", + "promo_left_panel/padding": "ui/store_promo_timeline_screen.json", + "promo_world_image_panel": "ui/store_promo_timeline_screen.json", + "promo_world_image_panel/image": "ui/store_promo_timeline_screen.json", + "promo_world_image_panel/image/key_image": "ui/store_promo_timeline_screen.json", + "promo_world_image_panel/image/key_image/border": "ui/store_promo_timeline_screen.json", + "promo_grey_bar_panel": "ui/store_promo_timeline_screen.json", + "promo_grey_bar_panel/grey_bar": "ui/store_promo_timeline_screen.json", + "promo_grey_bar_panel/green_bar": "ui/store_promo_timeline_screen.json", + "promo_grey_bar_panel/padding": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/pan_left_button": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/navigation_bar": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/navigation_bar/grey_bar": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": "ui/store_promo_timeline_screen.json", + "promo_world_button_panel/pan_right_button": "ui/store_promo_timeline_screen.json", + "promo_world_panel": "ui/store_promo_timeline_screen.json", + "promo_world_panel/image": "ui/store_promo_timeline_screen.json", + "promo_world_panel/padding1": "ui/store_promo_timeline_screen.json", + "promo_world_panel/buttons": "ui/store_promo_timeline_screen.json", + "promo_world_panel/padding_3": "ui/store_promo_timeline_screen.json", + "promo_skin_panel": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/background": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/default": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/hover": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/pressed": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/content_panel": "ui/store_promo_timeline_screen.json", + "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": "ui/store_promo_timeline_screen.json", + "promo_skin_grid_panel": "ui/store_promo_timeline_screen.json", + "promo_skin_grid_panel/promo_skin_pack_grid": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/world_screenshots_panel": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/skin_image_panel": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/skin_image_panel/skin_panel": "ui/store_promo_timeline_screen.json", + "promo_right_panel_scroll_content/persona_preview": "ui/store_promo_timeline_screen.json", + "skin_scroll_panel": "ui/store_promo_timeline_screen.json", + "persona_classic_skin_grid_panel": "ui/store_promo_timeline_screen.json", + "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": "ui/store_promo_timeline_screen.json", + "promo_right_panel": "ui/store_promo_timeline_screen.json", + "promo_detail_panel": "ui/store_promo_timeline_screen.json", + "promo_detail_panel/detail": "ui/store_promo_timeline_screen.json", + "promo_detail_panel/center_spacing": "ui/store_promo_timeline_screen.json", + "promo_detail_panel/right": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/popup_dialog_factory": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/character_loading_panel": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/skin_model_panel": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/skin_model_panel/skin_model": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": "ui/store_promo_timeline_screen.json", + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": "ui/store_promo_timeline_screen.json", + "promo_popup_toast": "ui/store_promo_timeline_screen.json", + }, + "store_sale_item_list": { + "banner_header": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/on_sale_banner": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/on_sale_banner/padding_panel": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/on_sale_banner/padding_panel/triangle": "ui/store_sales_item_list_screen.json", + "banner_header/label_panel/time_remaining_label": "ui/store_sales_item_list_screen.json", + "sales_offer_content": "ui/store_sales_item_list_screen.json", + "sales_offer_content/top_padding": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel/sales_banner_panel": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel/top_sales_grid_padding": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel/sales_grid_panel": "ui/store_sales_item_list_screen.json", + "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": "ui/store_sales_item_list_screen.json", + "all_offer_content": "ui/store_sales_item_list_screen.json", + "all_offer_content/store_offer_grid_panel": "ui/store_sales_item_list_screen.json", + }, + "store_search": { + "store_offer_grid_item": "ui/store_search_screen.json", + "trending_row_content": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/trending_row_label_panel": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/mid_padding": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/trending_offers_grid": "ui/store_search_screen.json", + "trending_row_content/trending_row_panel/bottom_padding": "ui/store_search_screen.json", + "trending_rows_grid": "ui/store_search_screen.json", + "search_offer_content": "ui/store_search_screen.json", + "search_offer_content/trending_grid": "ui/store_search_screen.json", + "search_offer_content/item_list_panel": "ui/store_search_screen.json", + "search_offer_content/item_list_panel/item_list_grid": "ui/store_search_screen.json", + "main_panel": "ui/store_search_screen.json", + "main_panel/seach_object": "ui/store_search_screen.json", + "main_panel/progress_loading": "ui/store_search_screen.json", + "store_search_screen_content": "ui/store_search_screen.json", + "store_search_screen_content/main_panel": "ui/store_search_screen.json", + "store_search_screen_content/popup_dialog_factory": "ui/store_search_screen.json", + "store_search_screen": "ui/store_search_screen.json", + }, + "sort_menu": { + "sort_menu_toggle_panel": "ui/store_sort_menu_screen.json", + "sort_menu_toggle_panel/sort_menu_toggle_panel": "ui/store_sort_menu_screen.json", + "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/left_padding": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/centered_sort_logo_icon": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/logo_padding_labels": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/labels_padding_x_image": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/x_image_panel": "ui/store_sort_menu_screen.json", + "sort_menu_first_button_content_panel/x_image_panel/x_image": "ui/store_sort_menu_screen.json", + "sort_menu_toggles": "ui/store_sort_menu_screen.json", + "sort_menu_toggles/relevance_toggle_panel": "ui/store_sort_menu_screen.json", + "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": "ui/store_sort_menu_screen.json", + "sort_menu_toggles/sort_toggle_grid": "ui/store_sort_menu_screen.json", + "sort_menu_show": "ui/store_sort_menu_screen.json", + "sort_menu_show/1st_button_centering_panel": "ui/store_sort_menu_screen.json", + "sort_menu_show/1st_button_centering_panel/first_button_main": "ui/store_sort_menu_screen.json", + "sort_menu_show/sort_scrolling_content_panel": "ui/store_sort_menu_screen.json", + "sort_menu_panel": "ui/store_sort_menu_screen.json", + "sort_menu_panel/top_padding": "ui/store_sort_menu_screen.json", + "sort_menu_panel/alignment_panel": "ui/store_sort_menu_screen.json", + "sort_menu_panel/alignment_panel/left_padding": "ui/store_sort_menu_screen.json", + "sort_menu_panel/alignment_panel/sort_menu_show": "ui/store_sort_menu_screen.json", + "sort_menu_panel/alignment_panel/right_padding": "ui/store_sort_menu_screen.json", + "sort_menu_screen_content": "ui/store_sort_menu_screen.json", + "sort_menu_screen_content/sort_menu_main": "ui/store_sort_menu_screen.json", + "sort_menu_screen_content/sort_menu_main_persona": "ui/store_sort_menu_screen.json", + "sort_menu_screen_content/sort_menu_background": "ui/store_sort_menu_screen.json", + }, + "structure_editor": { + "small_padding": "ui/structure_editor_screen.json", + "help_icon": "ui/structure_editor_screen.json", + "common_text_label": "ui/structure_editor_screen.json", + "text_edit_control": "ui/structure_editor_screen.json", + "axis_selection_panel": "ui/structure_editor_screen.json", + "axis_selection_panel/label": "ui/structure_editor_screen.json", + "axis_selection_panel/edit_box": "ui/structure_editor_screen.json", + "grid_axis_selection_panel": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/label_container": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/label_container/label": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/axis_grid": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/axis_grid/X": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/axis_grid/Y": "ui/structure_editor_screen.json", + "grid_axis_selection_panel/axis_grid/Z": "ui/structure_editor_screen.json", + "3d_export_button": "ui/structure_editor_screen.json", + "save_button": "ui/structure_editor_screen.json", + "export_button": "ui/structure_editor_screen.json", + "load_button": "ui/structure_editor_screen.json", + "detect_button": "ui/structure_editor_screen.json", + "import_button": "ui/structure_editor_screen.json", + "reset_button": "ui/structure_editor_screen.json", + "help_button": "ui/structure_editor_screen.json", + "toggle_option_panel": "ui/structure_editor_screen.json", + "toggle_option_panel/toggle": "ui/structure_editor_screen.json", + "toggle_option_panel/offset_0": "ui/structure_editor_screen.json", + "toggle_option_panel/first_label_wrapper": "ui/structure_editor_screen.json", + "toggle_option_panel/first_label_wrapper/first_label": "ui/structure_editor_screen.json", + "toggle_option_panel/second_label_wrapper": "ui/structure_editor_screen.json", + "toggle_option_panel/second_label_wrapper/second_label": "ui/structure_editor_screen.json", + "include_entities_panel": "ui/structure_editor_screen.json", + "include_entities_panel/label": "ui/structure_editor_screen.json", + "include_entities_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "include_entities_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "waterlogging_panel": "ui/structure_editor_screen.json", + "waterlogging_panel/label": "ui/structure_editor_screen.json", + "waterlogging_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "waterlogging_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "show_bounding_box_panel": "ui/structure_editor_screen.json", + "show_bounding_box_panel/label": "ui/structure_editor_screen.json", + "show_bounding_box_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "show_bounding_box_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "include_player_panel": "ui/structure_editor_screen.json", + "include_player_panel/label": "ui/structure_editor_screen.json", + "include_player_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "include_player_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "remove_blocks_panel": "ui/structure_editor_screen.json", + "remove_blocks_panel/label": "ui/structure_editor_screen.json", + "remove_blocks_panel/toggle_wrapper": "ui/structure_editor_screen.json", + "remove_blocks_panel/toggle_wrapper/toggle": "ui/structure_editor_screen.json", + "3d_export_mode_panel": "ui/structure_editor_screen.json", + "3d_export_mode_panel/size_offset_panel": "ui/structure_editor_screen.json", + "3d_export_mode_panel/size_offset_panel/size_panel": "ui/structure_editor_screen.json", + "3d_export_mode_panel/size_offset_panel/offset_panel": "ui/structure_editor_screen.json", + "3d_export_mode_panel/offset_0": "ui/structure_editor_screen.json", + "3d_export_mode_panel/offset_2": "ui/structure_editor_screen.json", + "3d_export_mode_panel/remove_blocks": "ui/structure_editor_screen.json", + "save_mode_panel": "ui/structure_editor_screen.json", + "save_mode_panel/structure_name": "ui/structure_editor_screen.json", + "save_mode_panel/size_offset_panel": "ui/structure_editor_screen.json", + "save_mode_panel/size_offset_panel/size_panel": "ui/structure_editor_screen.json", + "save_mode_panel/size_offset_panel/offset_panel": "ui/structure_editor_screen.json", + "save_mode_panel/detect_offset": "ui/structure_editor_screen.json", + "save_mode_panel/detect": "ui/structure_editor_screen.json", + "save_mode_panel/include_entities_offset": "ui/structure_editor_screen.json", + "save_mode_panel/include_entities": "ui/structure_editor_screen.json", + "save_mode_panel/remove_blocks_offset": "ui/structure_editor_screen.json", + "save_mode_panel/remove_blocks": "ui/structure_editor_screen.json", + "save_mode_panel/redstone_save_offset": "ui/structure_editor_screen.json", + "save_mode_panel/redstone_save_mode": "ui/structure_editor_screen.json", + "save_mode_panel/trailing_offset": "ui/structure_editor_screen.json", + "mirror_checkbox": "ui/structure_editor_screen.json", + "mirror_checkbox/label": "ui/structure_editor_screen.json", + "mirror_checkbox/padding": "ui/structure_editor_screen.json", + "mirror_checkbox/check_box": "ui/structure_editor_screen.json", + "mirror_checkboxes": "ui/structure_editor_screen.json", + "mirror_checkboxes/mirror_checkbox_x": "ui/structure_editor_screen.json", + "mirror_checkboxes/padding": "ui/structure_editor_screen.json", + "mirror_checkboxes/mirror_checkbox_z": "ui/structure_editor_screen.json", + "load_mode_panel": "ui/structure_editor_screen.json", + "load_mode_panel/structure_name": "ui/structure_editor_screen.json", + "load_mode_panel/offset_panel": "ui/structure_editor_screen.json", + "load_mode_panel/include_entities_offset": "ui/structure_editor_screen.json", + "load_mode_panel/include_entities": "ui/structure_editor_screen.json", + "load_mode_panel/remove_blocks_offset": "ui/structure_editor_screen.json", + "load_mode_panel/waterlog_blocks": "ui/structure_editor_screen.json", + "load_mode_panel/waterlog_blocks_offset": "ui/structure_editor_screen.json", + "load_mode_panel/remove_blocks": "ui/structure_editor_screen.json", + "load_mode_panel/integrity_offset": "ui/structure_editor_screen.json", + "load_mode_panel/integrity_label": "ui/structure_editor_screen.json", + "load_mode_panel/integrity_field": "ui/structure_editor_screen.json", + "load_mode_panel/offset_1": "ui/structure_editor_screen.json", + "load_mode_panel/seed_label": "ui/structure_editor_screen.json", + "load_mode_panel/seed_field": "ui/structure_editor_screen.json", + "load_mode_panel/offset_2": "ui/structure_editor_screen.json", + "load_mode_panel/rotation_slider": "ui/structure_editor_screen.json", + "load_mode_panel/mirror_label": "ui/structure_editor_screen.json", + "load_mode_panel/mirror_checkboxes_centerer": "ui/structure_editor_screen.json", + "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": "ui/structure_editor_screen.json", + "load_mode_panel/checkbox_offset": "ui/structure_editor_screen.json", + "load_mode_panel/animation_mode": "ui/structure_editor_screen.json", + "load_mode_panel/animation_time_label": "ui/structure_editor_screen.json", + "load_mode_panel/animation_time_field": "ui/structure_editor_screen.json", + "data_mode_panel": "ui/structure_editor_screen.json", + "data_mode_panel/top_offset": "ui/structure_editor_screen.json", + "data_mode_panel/data_label": "ui/structure_editor_screen.json", + "data_mode_panel/data_label_offset": "ui/structure_editor_screen.json", + "data_mode_panel/data_field": "ui/structure_editor_screen.json", + "data_mode_panel/data_field_offset": "ui/structure_editor_screen.json", + "corner_mode_panel": "ui/structure_editor_screen.json", + "corner_mode_panel/structure_name": "ui/structure_editor_screen.json", + "help_button_panel": "ui/structure_editor_screen.json", + "help_button_panel/help": "ui/structure_editor_screen.json", + "help_button_panel/help_divider": "ui/structure_editor_screen.json", + "save_button_panel": "ui/structure_editor_screen.json", + "save_button_panel/divider": "ui/structure_editor_screen.json", + "save_button_panel/save": "ui/structure_editor_screen.json", + "save_button_panel/save_divider": "ui/structure_editor_screen.json", + "save_button_panel/export": "ui/structure_editor_screen.json", + "save_button_panel/export_divider": "ui/structure_editor_screen.json", + "save_button_panel/import_divider": "ui/structure_editor_screen.json", + "save_button_panel/reset": "ui/structure_editor_screen.json", + "save_button_panel/reset_divider": "ui/structure_editor_screen.json", + "save_button_panel_no_export": "ui/structure_editor_screen.json", + "save_button_panel_no_export/divider": "ui/structure_editor_screen.json", + "save_button_panel_no_export/save": "ui/structure_editor_screen.json", + "save_button_panel_no_export/save_divider": "ui/structure_editor_screen.json", + "save_button_panel_no_export/reset": "ui/structure_editor_screen.json", + "save_button_panel_no_export/reset_divider": "ui/structure_editor_screen.json", + "load_button_panel": "ui/structure_editor_screen.json", + "load_button_panel/divider": "ui/structure_editor_screen.json", + "load_button_panel/load": "ui/structure_editor_screen.json", + "load_button_panel/load_divider": "ui/structure_editor_screen.json", + "load_button_panel/export_divider": "ui/structure_editor_screen.json", + "load_button_panel/import": "ui/structure_editor_screen.json", + "load_button_panel/import_divider": "ui/structure_editor_screen.json", + "load_button_panel/reset": "ui/structure_editor_screen.json", + "load_button_panel/reset_divider": "ui/structure_editor_screen.json", + "load_button_panel_no_export": "ui/structure_editor_screen.json", + "load_button_panel_no_export/divider": "ui/structure_editor_screen.json", + "load_button_panel_no_export/load": "ui/structure_editor_screen.json", + "load_button_panel_no_export/load_divider": "ui/structure_editor_screen.json", + "load_button_panel_no_export/reset": "ui/structure_editor_screen.json", + "load_button_panel_no_export/reset_divider": "ui/structure_editor_screen.json", + "3d_export_button_panel": "ui/structure_editor_screen.json", + "3d_export_button_panel/divider": "ui/structure_editor_screen.json", + "3d_export_button_panel/3d_export": "ui/structure_editor_screen.json", + "3d_export_button_panel/3d_export_divider": "ui/structure_editor_screen.json", + "3d_export_button_panel/import": "ui/structure_editor_screen.json", + "3d_export_button_panel/import_divider": "ui/structure_editor_screen.json", + "3d_export_button_panel/reset": "ui/structure_editor_screen.json", + "3d_export_button_panel/reset_divider": "ui/structure_editor_screen.json", + "data_button_panel": "ui/structure_editor_screen.json", + "data_button_panel/divider": "ui/structure_editor_screen.json", + "data_button_panel/reset": "ui/structure_editor_screen.json", + "data_button_panel/reset_divider": "ui/structure_editor_screen.json", + "corner_button_panel": "ui/structure_editor_screen.json", + "corner_button_panel/reset_divider": "ui/structure_editor_screen.json", + "button_panel_wrapper": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/divider": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/save_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/save_panel_no_export": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/corner_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/load_panel_no_export": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/load_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/3d_export_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/data_panel": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/how_to_play_button": "ui/structure_editor_screen.json", + "button_panel_wrapper/panel/end_divider": "ui/structure_editor_screen.json", + "redstone_dropdown_content": "ui/structure_editor_screen.json", + "redstone_save_mode_panel": "ui/structure_editor_screen.json", + "animation_mode_dropdown_content": "ui/structure_editor_screen.json", + "animation_mode_dropdown": "ui/structure_editor_screen.json", + "structure_name_wrapper": "ui/structure_editor_screen.json", + "structure_name_wrapper/structure_name": "ui/structure_editor_screen.json", + "structure_name_wrapper/structure_name_offset": "ui/structure_editor_screen.json", + "detect_button_wrapper": "ui/structure_editor_screen.json", + "detect_button_wrapper/detect": "ui/structure_editor_screen.json", + "detect_button_wrapper/detect_offset": "ui/structure_editor_screen.json", + "mode_dropdown_content": "ui/structure_editor_screen.json", + "mode_panel": "ui/structure_editor_screen.json", + "scrolling_panel_wrapper": "ui/structure_editor_screen.json", + "scrolling_panel_wrapper/scrolling_panel": "ui/structure_editor_screen.json", + "scrolling_panel": "ui/structure_editor_screen.json", + "scroll_panel_content": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/base_offset": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/mode_panel_offset": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/3d_export_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/save_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/load_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/data_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/corner_mode_panel": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/base_mode_offset": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/show_bounding_box": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/show_bounding_box_offset": "ui/structure_editor_screen.json", + "scroll_panel_content/content_stack_panel/offset_2": "ui/structure_editor_screen.json", + "left_divider_content": "ui/structure_editor_screen.json", + "left_divider_content/scrolling_panel": "ui/structure_editor_screen.json", + "save_message_text": "ui/structure_editor_screen.json", + "save_message_text/save_message_label": "ui/structure_editor_screen.json", + "import_message_text": "ui/structure_editor_screen.json", + "import_message_text/save_message_label": "ui/structure_editor_screen.json", + "import_failed_message_text": "ui/structure_editor_screen.json", + "import_failed_message_text/save_message_label": "ui/structure_editor_screen.json", + "export_disabled_label": "ui/structure_editor_screen.json", + "image_panel_wrapper": "ui/structure_editor_screen.json", + "image_panel_wrapper/image_panel": "ui/structure_editor_screen.json", + "image_panel_wrapper/save_message_factory": "ui/structure_editor_screen.json", + "image_panel_wrapper/import_message_factory": "ui/structure_editor_screen.json", + "image_panel_wrapper/import_failed_message_factory": "ui/structure_editor_screen.json", + "image_panel_wrapper/export_disabled": "ui/structure_editor_screen.json", + "corner_text": "ui/structure_editor_screen.json", + "corner_text/image_panel": "ui/structure_editor_screen.json", + "image_panel": "ui/structure_editor_screen.json", + "image_panel/border_indent": "ui/structure_editor_screen.json", + "image_panel/border_indent/background_gradient": "ui/structure_editor_screen.json", + "image_panel/border_indent/image_outline": "ui/structure_editor_screen.json", + "image_panel/border_indent/structure_renderer": "ui/structure_editor_screen.json", + "image_panel/border_indent/text_corner": "ui/structure_editor_screen.json", + "image_panel/border_indent/progress_panel": "ui/structure_editor_screen.json", + "image_panel/border_indent/rotate_arrows": "ui/structure_editor_screen.json", + "progress_panel": "ui/structure_editor_screen.json", + "progress_panel/stack_panel": "ui/structure_editor_screen.json", + "progress_panel/stack_panel/label_wrapper": "ui/structure_editor_screen.json", + "progress_panel/stack_panel/label_wrapper/progress_label": "ui/structure_editor_screen.json", + "progress_panel/stack_panel/progress_bar": "ui/structure_editor_screen.json", + "background_gradient": "ui/structure_editor_screen.json", + "corner_text_panel": "ui/structure_editor_screen.json", + "corner_text_panel/paragraph_1_corner": "ui/structure_editor_screen.json", + "corner_text_panel/padding_1": "ui/structure_editor_screen.json", + "corner_text_panel/paragraph_2_corner": "ui/structure_editor_screen.json", + "structure_renderer": "ui/structure_editor_screen.json", + "structure_renderer/renderer": "ui/structure_editor_screen.json", + "black_border": "ui/structure_editor_screen.json", + "rotation_arrows": "ui/structure_editor_screen.json", + "right_divider_content": "ui/structure_editor_screen.json", + "right_divider_content/base_offset": "ui/structure_editor_screen.json", + "right_divider_content/preview": "ui/structure_editor_screen.json", + "right_divider_content/image_offset": "ui/structure_editor_screen.json", + "right_divider_content/button_wrapper": "ui/structure_editor_screen.json", + "right_divider_content/button_wrapper/buttons": "ui/structure_editor_screen.json", + "divider_content": "ui/structure_editor_screen.json", + "divider_content/left_side": "ui/structure_editor_screen.json", + "divider_content/right_side": "ui/structure_editor_screen.json", + "structure_editor_content": "ui/structure_editor_screen.json", + "structure_editor_content/background_panel": "ui/structure_editor_screen.json", + "structure_editor_content/title": "ui/structure_editor_screen.json", + "structure_editor_content/content": "ui/structure_editor_screen.json", + "structure_editor_screen": "ui/structure_editor_screen.json", + }, + "submit_feedback": { + "send_feedback_button": "ui/submit_feedback_screen.json", + "write_feedback_panel": "ui/submit_feedback_screen.json", + "write_feedback_panel/pad_1": "ui/submit_feedback_screen.json", + "write_feedback_panel/write_feedback_label": "ui/submit_feedback_screen.json", + "write_feedback_panel/pad_2": "ui/submit_feedback_screen.json", + "write_feedback_panel/feedback_textbox": "ui/submit_feedback_screen.json", + "write_feedback_panel/remaining_characters_panel": "ui/submit_feedback_screen.json", + "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": "ui/submit_feedback_screen.json", + "scroll_panel": "ui/submit_feedback_screen.json", + "scroll_panel/write_feedback_panel": "ui/submit_feedback_screen.json", + "main_panel": "ui/submit_feedback_screen.json", + "main_panel/scrolling_panel": "ui/submit_feedback_screen.json", + "submit_feedback_screen": "ui/submit_feedback_screen.json", + "submit_feedback_content": "ui/submit_feedback_screen.json", + "submit_feedback_content/submit_feedback_main_panel": "ui/submit_feedback_screen.json", + "submit_feedback_content/progress_loading": "ui/submit_feedback_screen.json", + }, + "tabbed_upsell": { + "padding_horizontal": "ui/tabbed_upsell_screen.json", + "padding_vertical": "ui/tabbed_upsell_screen.json", + "text_horizontal_padding": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_buy_now_button": "ui/tabbed_upsell_screen.json", + "tabbed_buy_now_label": "ui/tabbed_upsell_screen.json", + "tabbed_buy_now_label/button_label": "ui/tabbed_upsell_screen.json", + "label_panel": "ui/tabbed_upsell_screen.json", + "label_panel/label_text": "ui/tabbed_upsell_screen.json", + "text_panel": "ui/tabbed_upsell_screen.json", + "text_panel/tab_content_title_panel": "ui/tabbed_upsell_screen.json", + "text_panel/tab_content_description_panel": "ui/tabbed_upsell_screen.json", + "text_panel/tab_content_description_panel_second": "ui/tabbed_upsell_screen.json", + "dialog_image": "ui/tabbed_upsell_screen.json", + "dialog_image_with_border": "ui/tabbed_upsell_screen.json", + "dialog_image_with_border/dialog_image": "ui/tabbed_upsell_screen.json", + "content_image_panel": "ui/tabbed_upsell_screen.json", + "content_image_panel/minecraft_dialog_image_with_border": "ui/tabbed_upsell_screen.json", + "content_image_panel/horizontal_padding_01": "ui/tabbed_upsell_screen.json", + "content_image_panel/scrolling_panel": "ui/tabbed_upsell_screen.json", + "scroll_text": "ui/tabbed_upsell_screen.json", + "image_panel": "ui/tabbed_upsell_screen.json", + "image_panel/dialog_image_with_border": "ui/tabbed_upsell_screen.json", + "image_panel/focus_image": "ui/tabbed_upsell_screen.json", + "top_tab": "ui/tabbed_upsell_screen.json", + "tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", + "tab_navigation_panel_layout/navigation_tabs": "ui/tabbed_upsell_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content": "ui/tabbed_upsell_screen.json", + "common_tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/server_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/store_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/tabbed_upsell_screen.json", + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/minecraft_tab_content": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/xbl_tab_content2": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/achievements_tab_content3": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/server_tab_content5": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/store_tab_content6": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/creative_tab_content7": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/packs_tab_content8": "ui/tabbed_upsell_screen.json", + "tabbed_tab_content_panel_layout/seeds_tab_content9": "ui/tabbed_upsell_screen.json", + "common_tab_content_panel": "ui/tabbed_upsell_screen.json", + "common_tab_content_panel/content": "ui/tabbed_upsell_screen.json", + "minecraft_tab_content_panel": "ui/tabbed_upsell_screen.json", + "xbl_tab_content_panel": "ui/tabbed_upsell_screen.json", + "achievements_tab_content_panel": "ui/tabbed_upsell_screen.json", + "multiplayer_tab_content_panel": "ui/tabbed_upsell_screen.json", + "server_tab_content_panel": "ui/tabbed_upsell_screen.json", + "store_tab_content_panel": "ui/tabbed_upsell_screen.json", + "creative_tab_content_panel": "ui/tabbed_upsell_screen.json", + "packs_tab_content_panel": "ui/tabbed_upsell_screen.json", + "seeds_tab_content_panel": "ui/tabbed_upsell_screen.json", + "common_tab_screen_panel": "ui/tabbed_upsell_screen.json", + "common_tab_screen_panel/tab_navigation_panel": "ui/tabbed_upsell_screen.json", + "common_tab_screen_panel/padding_01": "ui/tabbed_upsell_screen.json", + "common_tab_screen_panel/tab_content_panel": "ui/tabbed_upsell_screen.json", + "tabbed_screen_panel": "ui/tabbed_upsell_screen.json", + "button_panel": "ui/tabbed_upsell_screen.json", + "button_panel/padding_5": "ui/tabbed_upsell_screen.json", + "button_panel/buy_now_button": "ui/tabbed_upsell_screen.json", + "button_panel/padding_6": "ui/tabbed_upsell_screen.json", + "tab_panel": "ui/tabbed_upsell_screen.json", + "tab_panel/padding_3": "ui/tabbed_upsell_screen.json", + "tab_panel/main_control": "ui/tabbed_upsell_screen.json", + "tab_panel/padding_4": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/padding_0": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/tab_panel": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/padding_1": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/button_panel": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_content/padding_2": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_screen": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_screen_panel": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": "ui/tabbed_upsell_screen.json", + "tabbed_upsell_screen_panel/background": "ui/tabbed_upsell_screen.json", + }, + "thanks_for_testing": { + "padding_horizontal": "ui/thanks_for_testing_screen.json", + "padding_vertical": "ui/thanks_for_testing_screen.json", + "text_horizontal_padding": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_buy_now_button": "ui/thanks_for_testing_screen.json", + "tabbed_buy_now_label": "ui/thanks_for_testing_screen.json", + "tabbed_buy_now_label/button_label": "ui/thanks_for_testing_screen.json", + "label_panel": "ui/thanks_for_testing_screen.json", + "label_panel/label_text": "ui/thanks_for_testing_screen.json", + "text_panel": "ui/thanks_for_testing_screen.json", + "text_panel/tab_content_title_panel": "ui/thanks_for_testing_screen.json", + "text_panel/tab_content_description_panel": "ui/thanks_for_testing_screen.json", + "text_panel/tab_content_description_panel_second": "ui/thanks_for_testing_screen.json", + "dialog_image": "ui/thanks_for_testing_screen.json", + "dialog_image_with_border": "ui/thanks_for_testing_screen.json", + "dialog_image_with_border/dialog_image": "ui/thanks_for_testing_screen.json", + "content_image_panel": "ui/thanks_for_testing_screen.json", + "content_image_panel/minecraft_dialog_image_with_border": "ui/thanks_for_testing_screen.json", + "content_image_panel/horizontal_padding_01": "ui/thanks_for_testing_screen.json", + "content_image_panel/scrolling_panel": "ui/thanks_for_testing_screen.json", + "scroll_text": "ui/thanks_for_testing_screen.json", + "image_panel": "ui/thanks_for_testing_screen.json", + "image_panel/dialog_image_with_border": "ui/thanks_for_testing_screen.json", + "image_panel/focus_image": "ui/thanks_for_testing_screen.json", + "top_tab": "ui/thanks_for_testing_screen.json", + "tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", + "tab_navigation_panel_layout/navigation_tabs": "ui/thanks_for_testing_screen.json", + "tab_navigation_panel_layout/navigation_tabs/content": "ui/thanks_for_testing_screen.json", + "common_tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_01": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_02": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_03": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_04": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/server_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_05": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/store_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_06": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_07": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/nav_padding_08": "ui/thanks_for_testing_screen.json", + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/minecraft_tab_content": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/xbl_tab_content2": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/achievements_tab_content3": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/server_tab_content5": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/store_tab_content6": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/creative_tab_content7": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/packs_tab_content8": "ui/thanks_for_testing_screen.json", + "tabbed_tab_content_panel_layout/seeds_tab_content9": "ui/thanks_for_testing_screen.json", + "common_tab_content_panel": "ui/thanks_for_testing_screen.json", + "common_tab_content_panel/content": "ui/thanks_for_testing_screen.json", + "minecraft_tab_content_panel": "ui/thanks_for_testing_screen.json", + "xbl_tab_content_panel": "ui/thanks_for_testing_screen.json", + "achievements_tab_content_panel": "ui/thanks_for_testing_screen.json", + "multiplayer_tab_content_panel": "ui/thanks_for_testing_screen.json", + "server_tab_content_panel": "ui/thanks_for_testing_screen.json", + "store_tab_content_panel": "ui/thanks_for_testing_screen.json", + "creative_tab_content_panel": "ui/thanks_for_testing_screen.json", + "packs_tab_content_panel": "ui/thanks_for_testing_screen.json", + "seeds_tab_content_panel": "ui/thanks_for_testing_screen.json", + "common_tab_screen_panel": "ui/thanks_for_testing_screen.json", + "common_tab_screen_panel/tab_navigation_panel": "ui/thanks_for_testing_screen.json", + "common_tab_screen_panel/padding_01": "ui/thanks_for_testing_screen.json", + "common_tab_screen_panel/tab_content_panel": "ui/thanks_for_testing_screen.json", + "tabbed_screen_panel": "ui/thanks_for_testing_screen.json", + "button_panel": "ui/thanks_for_testing_screen.json", + "button_panel/padding_5": "ui/thanks_for_testing_screen.json", + "button_panel/buy_now_button": "ui/thanks_for_testing_screen.json", + "button_panel/padding_6": "ui/thanks_for_testing_screen.json", + "tab_panel": "ui/thanks_for_testing_screen.json", + "tab_panel/padding_3": "ui/thanks_for_testing_screen.json", + "tab_panel/main_control": "ui/thanks_for_testing_screen.json", + "tab_panel/padding_4": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/padding_0": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/tab_panel": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/padding_1": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/button_panel": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_content/padding_2": "ui/thanks_for_testing_screen.json", + "thanks_for_testing_screen": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_screen_panel": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": "ui/thanks_for_testing_screen.json", + "tabbed_upsell_screen_panel/background": "ui/thanks_for_testing_screen.json", + }, + "third_party_store": { + "third_party_store_screen": "ui/third_party_store_screen.json", + }, + "toast_screen": { + "toast_image": "ui/toast_screen.json", + "toast_icon": "ui/toast_screen.json", + "toast_icon/toast_icon": "ui/toast_screen.json", + "xbox_icon": "ui/toast_screen.json", + "third_party_invite_icon": "ui/toast_screen.json", + "third_party_achievement_icon": "ui/toast_screen.json", + "persona_icon": "ui/toast_screen.json", + "persona_icon/item": "ui/toast_screen.json", + "resource_pack_icon": "ui/toast_screen.json", + "resource_pack_icon/resource_pack_image": "ui/toast_screen.json", + "key_art_image": "ui/toast_screen.json", + "gamer_score_icon": "ui/toast_screen.json", + "toast_label": "ui/toast_screen.json", + "static_button_state_panel": "ui/toast_screen.json", + "static_button": "ui/toast_screen.json", + "static_button/default": "ui/toast_screen.json", + "static_button/hover": "ui/toast_screen.json", + "static_button/pressed": "ui/toast_screen.json", + "static_button/locked": "ui/toast_screen.json", + "popup": "ui/toast_screen.json", + "popup/background": "ui/toast_screen.json", + "popup/popup_content": "ui/toast_screen.json", + "popup/popup_content/icon_padding": "ui/toast_screen.json", + "popup/popup_content/text_padding": "ui/toast_screen.json", + "popup/popup_content/text_panel": "ui/toast_screen.json", + "popup/popup_content/text_panel/text_stack_panel": "ui/toast_screen.json", + "popup/popup_content/button_panel": "ui/toast_screen.json", + "popup/popup_content/button_panel/visual_button": "ui/toast_screen.json", + "item_renderer": "ui/toast_screen.json", + "game_tip_label": "ui/toast_screen.json", + "toast_progress_bar": "ui/toast_screen.json", + "toast_progress_bar/toast_duration_progress_bar": "ui/toast_screen.json", + "recipe_unlocked_icon": "ui/toast_screen.json", + "recipe_unlocked_icon/padding_vertical": "ui/toast_screen.json", + "recipe_unlocked_icon/item_renderer": "ui/toast_screen.json", + "recipe_unlocked_popup": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/label_panel": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": "ui/toast_screen.json", + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": "ui/toast_screen.json", + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": "ui/toast_screen.json", + "text_stack_panel": "ui/toast_screen.json", + "text_stack_panel/title": "ui/toast_screen.json", + "text_stack_panel/subtitle": "ui/toast_screen.json", + "text_stack_panel/subtitle/icon_padding": "ui/toast_screen.json", + "text_stack_panel/subtitle/icon_padding/gamer_score_icon": "ui/toast_screen.json", + "text_stack_panel/subtitle/subtext_offset": "ui/toast_screen.json", + "text_stack_panel/subtitle/subtext_offset/subtext": "ui/toast_screen.json", + "join_button_icon": "ui/toast_screen.json", + "chat_popup": "ui/toast_screen.json", + "splitscreen_join_popup": "ui/toast_screen.json", + "splitscreen_join_popup/join_button_icon": "ui/toast_screen.json", + "splitscreen_join_popup/join_prompt_text_panel": "ui/toast_screen.json", + "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": "ui/toast_screen.json", + "formfitting_alpha_toast": "ui/toast_screen.json", + "formfitting_alpha_toast/bg": "ui/toast_screen.json", + "formfitting_alpha_toast/bg/label": "ui/toast_screen.json", + "snackbar": "ui/toast_screen.json", + "snackbar/body": "ui/toast_screen.json", + "snackbar/body/background": "ui/toast_screen.json", + "snackbar/body/background/content": "ui/toast_screen.json", + "snackbar/body/background/content/left_padding": "ui/toast_screen.json", + "snackbar/body/background/content/vertically_central_text": "ui/toast_screen.json", + "snackbar/body/background/content/vertically_central_text/top_padding": "ui/toast_screen.json", + "snackbar/body/background/content/vertically_central_text/text": "ui/toast_screen.json", + "snackbar/body/background/content/right_padding": "ui/toast_screen.json", + "snackbar/body/background/right_shadow": "ui/toast_screen.json", + "progress_button_content": "ui/toast_screen.json", + "progress_button_content/gamepad_icon_glyph": "ui/toast_screen.json", + "progress_button_content/spacer": "ui/toast_screen.json", + "progress_button_content/progress_button_label": "ui/toast_screen.json", + "progress_popup": "ui/toast_screen.json", + "progress_popup/background": "ui/toast_screen.json", + "progress_popup/popup_content": "ui/toast_screen.json", + "progress_popup/popup_content/progress_toast_image": "ui/toast_screen.json", + "progress_popup/popup_content/profilepicture": "ui/toast_screen.json", + "progress_popup/popup_content/text_padding": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel/subtext": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": "ui/toast_screen.json", + "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": "ui/toast_screen.json", + "progress_popup/popup_content/divider_padding": "ui/toast_screen.json", + "progress_popup/popup_content/divider_image": "ui/toast_screen.json", + "progress_popup/popup_content/popup_decline_button": "ui/toast_screen.json", + "progress_popup/popup_content/end_padding": "ui/toast_screen.json", + "party_invite_popup": "ui/toast_screen.json", + "party_invite_popup/background": "ui/toast_screen.json", + "party_invite_popup/party_invite_content": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/profilepicture": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/text_padding": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/divider_padding": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/divider_image": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/party_invite_button": "ui/toast_screen.json", + "party_invite_popup/party_invite_content/end_padding": "ui/toast_screen.json", + "party_travel_popup": "ui/toast_screen.json", + "toast_screen": "ui/toast_screen.json", + "toast_screen_content": "ui/toast_screen.json", + "toast_screen_content/content_log_panel": "ui/toast_screen.json", + "toast_screen_content/perf_turtle_panel": "ui/toast_screen.json", + }, + "token_faq": { + "main_panel": "ui/token_faq_screen.json", + "main_panel/faq_question_1": "ui/token_faq_screen.json", + "main_panel/faq_question_1_divider": "ui/token_faq_screen.json", + "main_panel/faq_question_2": "ui/token_faq_screen.json", + "main_panel/faq_question_2_divider": "ui/token_faq_screen.json", + "main_panel/faq_question_3": "ui/token_faq_screen.json", + "main_panel/faq_question_3_divider": "ui/token_faq_screen.json", + "main_panel/faq_question_4": "ui/token_faq_screen.json", + "main_panel/faq_question_4_divider": "ui/token_faq_screen.json", + "main_panel/faq_question_5": "ui/token_faq_screen.json", + "scrolling_panel": "ui/token_faq_screen.json", + "token_faq_screen_content": "ui/token_faq_screen.json", + "token_faq_screen_content/dialog": "ui/token_faq_screen.json", + "background": "ui/token_faq_screen.json", + "token_faq_screen": "ui/token_faq_screen.json", + "token_content_panel": "ui/token_faq_screen.json", + "token_content_panel/token_info_text": "ui/token_faq_screen.json", + "token_popup_content": "ui/token_faq_screen.json", + "token_popup_content/dialog": "ui/token_faq_screen.json", + "token_faq_button_panel": "ui/token_faq_screen.json", + "back_button_panel": "ui/token_faq_screen.json", + "token_popup": "ui/token_faq_screen.json", + }, + "trade": { + "cycle_recipe_button": "ui/trade_screen.json", + "cycle_recipe_left_button": "ui/trade_screen.json", + "cycle_recipe_right_button": "ui/trade_screen.json", + "arrow_image": "ui/trade_screen.json", + "cross_out_icon": "ui/trade_screen.json", + "highlight_slot_panel": "ui/trade_screen.json", + "highlight_slot_panel/hover_text": "ui/trade_screen.json", + "recipe_button": "ui/trade_screen.json", + "recipe_button/hover": "ui/trade_screen.json", + "recipe_item_panel": "ui/trade_screen.json", + "recipe_item_panel/item_renderer": "ui/trade_screen.json", + "recipe_item_panel/item_renderer/stack_count_label": "ui/trade_screen.json", + "recipe_item_panel/recipe_button": "ui/trade_screen.json", + "trade_item_slot": "ui/trade_screen.json", + "trade_item_slot/container_item": "ui/trade_screen.json", + "trade_item_slotB": "ui/trade_screen.json", + "trade_item_slot_result_button": "ui/trade_screen.json", + "trade_item_slot_result": "ui/trade_screen.json", + "arrow": "ui/trade_screen.json", + "arrow/arrow_image": "ui/trade_screen.json", + "arrow/cross_out_icon": "ui/trade_screen.json", + "arrow/recipe_button": "ui/trade_screen.json", + "purchase_grid_item": "ui/trade_screen.json", + "purchase_grid_item/top_item": "ui/trade_screen.json", + "purchase_grid_item/padding": "ui/trade_screen.json", + "purchase_grid_item/bottom_item": "ui/trade_screen.json", + "purchase_grid": "ui/trade_screen.json", + "purchase_grid/grid_slot1": "ui/trade_screen.json", + "purchase_grid/grid_slot2": "ui/trade_screen.json", + "purchase_grid/arrow": "ui/trade_screen.json", + "purchase_grid/result_item_slot": "ui/trade_screen.json", + "greyed_item_panel": "ui/trade_screen.json", + "greyed_item_panel/item_renderer": "ui/trade_screen.json", + "cycle_panel_keyboard": "ui/trade_screen.json", + "cycle_panel_keyboard/left": "ui/trade_screen.json", + "cycle_panel_keyboard/right": "ui/trade_screen.json", + "cycle_panel_gamepad": "ui/trade_screen.json", + "cycle_panel_gamepad/left": "ui/trade_screen.json", + "cycle_panel_gamepad/right": "ui/trade_screen.json", + "cycle_panel": "ui/trade_screen.json", + "cycle_panel/keyboard": "ui/trade_screen.json", + "cycle_panel/gamepad": "ui/trade_screen.json", + "merchant_purchase_panel": "ui/trade_screen.json", + "merchant_purchase_panel/purchase_grid": "ui/trade_screen.json", + "top_half_panel": "ui/trade_screen.json", + "top_half_panel/villager_name_label": "ui/trade_screen.json", + "top_half_panel/cycle_panel": "ui/trade_screen.json", + "top_half_panel/merchant_purchase_panel": "ui/trade_screen.json", + "trade_panel": "ui/trade_screen.json", + "trade_panel/gamepad_helpers": "ui/trade_screen.json", + "trade_panel/selected_item_details_factory": "ui/trade_screen.json", + "trade_panel/item_lock_notification_factory": "ui/trade_screen.json", + "trade_panel/root_panel": "ui/trade_screen.json", + "trade_panel/root_panel/common_panel": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/top_half_panel": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/hotbar_grid_template": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": "ui/trade_screen.json", + "trade_panel/root_panel/trade_inventory/gamepad_cursor": "ui/trade_screen.json", + "trade_panel/flying_item_renderer": "ui/trade_screen.json", + "trade_screen": "ui/trade_screen.json", + }, + "trade_pocket": { + "background_image": "ui/trade_screen_pocket.json", + "recipe_item_panel": "ui/trade_screen_pocket.json", + "recipe_item_panel/item_renderer": "ui/trade_screen_pocket.json", + "recipe_item_panel/item_renderer/stack_count_label": "ui/trade_screen_pocket.json", + "result_item_panel": "ui/trade_screen_pocket.json", + "result_item_panel/output_item_name": "ui/trade_screen_pocket.json", + "result_item_panel/recipe_item_panel": "ui/trade_screen_pocket.json", + "trade_item_slot": "ui/trade_screen_pocket.json", + "trade_item_slot/container_item": "ui/trade_screen_pocket.json", + "trade_item_slotB": "ui/trade_screen_pocket.json", + "trade_item_slot_result_button": "ui/trade_screen_pocket.json", + "trade_item_slot_result": "ui/trade_screen_pocket.json", + "purchase_grid": "ui/trade_screen_pocket.json", + "purchase_grid/grid_slot1": "ui/trade_screen_pocket.json", + "purchase_grid/grid_slot2": "ui/trade_screen_pocket.json", + "purchase_grid/arrow": "ui/trade_screen_pocket.json", + "purchase_grid/result_item_slot": "ui/trade_screen_pocket.json", + "merchant_purchase_panel": "ui/trade_screen_pocket.json", + "merchant_purchase_panel/left": "ui/trade_screen_pocket.json", + "merchant_purchase_panel/purchase_grid": "ui/trade_screen_pocket.json", + "merchant_purchase_panel/right": "ui/trade_screen_pocket.json", + "merchant_panel": "ui/trade_screen_pocket.json", + "merchant_panel/merchant_purchase_panel": "ui/trade_screen_pocket.json", + "inventory_grid": "ui/trade_screen_pocket.json", + "inventory_content": "ui/trade_screen_pocket.json", + "inventory_content/scrolling_panel": "ui/trade_screen_pocket.json", + "half_screen": "ui/trade_screen_pocket.json", + "inventory_half_screen": "ui/trade_screen_pocket.json", + "inventory_half_screen/inventory_content": "ui/trade_screen_pocket.json", + "merchant_half_screen": "ui/trade_screen_pocket.json", + "merchant_half_screen/merchant_panel": "ui/trade_screen_pocket.json", + "header": "ui/trade_screen_pocket.json", + "header/header_background": "ui/trade_screen_pocket.json", + "header/close_button": "ui/trade_screen_pocket.json", + "header/villager_name_label": "ui/trade_screen_pocket.json", + "trade_panel": "ui/trade_screen_pocket.json", + "trade_panel/bg": "ui/trade_screen_pocket.json", + "trade_panel/root_panel": "ui/trade_screen_pocket.json", + "trade_panel/header": "ui/trade_screen_pocket.json", + "trade_panel/inventory": "ui/trade_screen_pocket.json", + "trade_panel/merchant_half_screen": "ui/trade_screen_pocket.json", + "trade_panel/gamepad_helpers": "ui/trade_screen_pocket.json", + "trade_panel/container_gamepad_helpers": "ui/trade_screen_pocket.json", + "trade_panel/inventory_selected_icon_button": "ui/trade_screen_pocket.json", + "trade_panel/selected_item_details_factory": "ui/trade_screen_pocket.json", + "trade_panel/item_lock_notification_factory": "ui/trade_screen_pocket.json", + "trade_panel/flying_item_renderer": "ui/trade_screen_pocket.json", + }, + "trade2": { + "toolbar_background": "ui/trade_2_screen.json", + "arrow_left_image": "ui/trade_2_screen.json", + "arrow_right_image": "ui/trade_2_screen.json", + "trade_cell_image": "ui/trade_2_screen.json", + "cross_out_image": "ui/trade_2_screen.json", + "lock_image": "ui/trade_2_screen.json", + "scroll_background_image": "ui/trade_2_screen.json", + "red_slash": "ui/trade_2_screen.json", + "blue_progress_bar": "ui/trade_2_screen.json", + "white_progress_bar": "ui/trade_2_screen.json", + "empty_progress_bar": "ui/trade_2_screen.json", + "progress_bar_nub": "ui/trade_2_screen.json", + "hover_button": "ui/trade_2_screen.json", + "hover_button/hover_text": "ui/trade_2_screen.json", + "stack_count_label": "ui/trade_2_screen.json", + "changed_item_count_label": "ui/trade_2_screen.json", + "changed_item_count_label/stack_count_label": "ui/trade_2_screen.json", + "changed_item_count_label/stack_count_label/red_slash": "ui/trade_2_screen.json", + "changed_item_count_label/stack_count_label/red_slash_double": "ui/trade_2_screen.json", + "changed_item_count_label/padding": "ui/trade_2_screen.json", + "changed_item_count_label/second_stack_count_label": "ui/trade_2_screen.json", + "single_item_grid": "ui/trade_2_screen.json", + "single_item_grid/item_with_count": "ui/trade_2_screen.json", + "single_item_grid/item_with_count/item_renderer": "ui/trade_2_screen.json", + "single_item_grid/item_with_count/item_renderer/stack_count_label": "ui/trade_2_screen.json", + "single_item_grid/item_with_count/item_renderer/changed_item_count_label": "ui/trade_2_screen.json", + "single_item_grid/item_with_count/item_renderer/hover_button": "ui/trade_2_screen.json", + "trade_item_1": "ui/trade_2_screen.json", + "trade_item_2": "ui/trade_2_screen.json", + "sell_item": "ui/trade_2_screen.json", + "arrow_holder": "ui/trade_2_screen.json", + "arrow_holder/arrow_image": "ui/trade_2_screen.json", + "arrow_holder/cross_out_image": "ui/trade_2_screen.json", + "arrow_holder/lock_image": "ui/trade_2_screen.json", + "toggle_content": "ui/trade_2_screen.json", + "toggle_content/padding_1": "ui/trade_2_screen.json", + "toggle_content/trade_item_1": "ui/trade_2_screen.json", + "toggle_content/padding_2": "ui/trade_2_screen.json", + "toggle_content/padding_2_extra": "ui/trade_2_screen.json", + "toggle_content/trade_item_2": "ui/trade_2_screen.json", + "toggle_content/padding_3": "ui/trade_2_screen.json", + "toggle_content/padding_3_extra": "ui/trade_2_screen.json", + "toggle_content/arrow_holder": "ui/trade_2_screen.json", + "toggle_content/padding_4": "ui/trade_2_screen.json", + "toggle_content/sell_item_holder": "ui/trade_2_screen.json", + "toggle_content/sell_item_holder/sell_item": "ui/trade_2_screen.json", + "toggle_content/sell_item_holder_with_less_padding": "ui/trade_2_screen.json", + "toggle_content/sell_item_holder_with_less_padding/sell_item": "ui/trade_2_screen.json", + "toggle_content/padding_5": "ui/trade_2_screen.json", + "toggle_content_holder": "ui/trade_2_screen.json", + "toggle_content_holder/toggle_content": "ui/trade_2_screen.json", + "trade_toggle_unchecked": "ui/trade_2_screen.json", + "trade_toggle_unchecked/toggle_checked_normal": "ui/trade_2_screen.json", + "trade_toggle_unchecked/toggle_checked_red": "ui/trade_2_screen.json", + "trade_toggle_checked": "ui/trade_2_screen.json", + "trade_toggle_checked/toggle_checked_normal": "ui/trade_2_screen.json", + "trade_toggle_checked/toggle_checked_red": "ui/trade_2_screen.json", + "trade_toggle_locked": "ui/trade_2_screen.json", + "trade_actual_toggle": "ui/trade_2_screen.json", + "trade_toggle": "ui/trade_2_screen.json", + "trade_toggle_holder": "ui/trade_2_screen.json", + "trade_toggle_holder/trade_toggle": "ui/trade_2_screen.json", + "trade_toggle_stack_panel": "ui/trade_2_screen.json", + "tier_label": "ui/trade_2_screen.json", + "tier_label_locked": "ui/trade_2_screen.json", + "tier_stack_panel": "ui/trade_2_screen.json", + "tier_stack_panel/padding": "ui/trade_2_screen.json", + "tier_stack_panel/tier_label_holder": "ui/trade_2_screen.json", + "tier_stack_panel/tier_label_holder/tier_label": "ui/trade_2_screen.json", + "tier_stack_panel/tier_label_holder/tier_label_locked": "ui/trade_2_screen.json", + "tier_stack_panel/trade_toggle_stack_panel": "ui/trade_2_screen.json", + "trade_selector_stack_panel": "ui/trade_2_screen.json", + "scroll_inner_input_panel": "ui/trade_2_screen.json", + "scroll_inner_input_panel/trade_selector_stack_panel": "ui/trade_2_screen.json", + "trade_scroll_panel": "ui/trade_2_screen.json", + "left_panel": "ui/trade_2_screen.json", + "left_panel/bg": "ui/trade_2_screen.json", + "left_panel/trade_scroll_panel": "ui/trade_2_screen.json", + "exp_progress_bar": "ui/trade_2_screen.json", + "exp_progress_bar/empty_progress_bar": "ui/trade_2_screen.json", + "exp_progress_bar/empty_progress_bar/progress_bar_nub": "ui/trade_2_screen.json", + "exp_progress_bar/empty_progress_bar/blue_progress_bar": "ui/trade_2_screen.json", + "exp_progress_bar/empty_progress_bar/white_progress_bar": "ui/trade_2_screen.json", + "trade_details": "ui/trade_2_screen.json", + "trade_details/item_panel_image": "ui/trade_2_screen.json", + "trade_details/item_panel_image/item_text_label": "ui/trade_2_screen.json", + "trade_details_factory": "ui/trade_2_screen.json", + "trade_details_factory_holder": "ui/trade_2_screen.json", + "trade_details_button": "ui/trade_2_screen.json", + "trade_details_1_button": "ui/trade_2_screen.json", + "trade_details_2_button": "ui/trade_2_screen.json", + "enchantment_details_button": "ui/trade_2_screen.json", + "trade_result_item_slot_button": "ui/trade_2_screen.json", + "red_cell_image": "ui/trade_2_screen.json", + "container_cell_image": "ui/trade_2_screen.json", + "container_cell_image/cell_image": "ui/trade_2_screen.json", + "container_cell_image/red_cell_image": "ui/trade_2_screen.json", + "item_slot": "ui/trade_2_screen.json", + "ingredient_1_item_slot": "ui/trade_2_screen.json", + "ingredient_2_item_slot": "ui/trade_2_screen.json", + "result_item_slot": "ui/trade_2_screen.json", + "item_slot_holder": "ui/trade_2_screen.json", + "item_slot_holder/ingredient_1_item_slot": "ui/trade_2_screen.json", + "item_slot_holder/trade_details_1_button": "ui/trade_2_screen.json", + "item_slot_holder/trade_details_1_factory_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel": "ui/trade_2_screen.json", + "item_slots_stack_panel/ingredient_item_1_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel/ingredient_item_2_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel/pointing_right_arrow_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": "ui/trade_2_screen.json", + "item_slots_stack_panel/pointing_left_arrow_holder": "ui/trade_2_screen.json", + "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": "ui/trade_2_screen.json", + "item_slots_stack_panel/result_item_slot_holder": "ui/trade_2_screen.json", + "trade_button": "ui/trade_2_screen.json", + "how_to_play_button": "ui/trade_2_screen.json", + "top_half_stack_panel": "ui/trade_2_screen.json", + "top_half_stack_panel/item_slots_holder": "ui/trade_2_screen.json", + "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": "ui/trade_2_screen.json", + "top_half_stack_panel/padding_1": "ui/trade_2_screen.json", + "top_half_stack_panel/trade_button_holder": "ui/trade_2_screen.json", + "top_half_stack_panel/trade_button_holder/trade_button": "ui/trade_2_screen.json", + "top_half_stack_panel/how_to_play_button_holder": "ui/trade_2_screen.json", + "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": "ui/trade_2_screen.json", + "top_half_panel": "ui/trade_2_screen.json", + "top_half_panel/top_half_stack_panel": "ui/trade_2_screen.json", + "villager_name_label": "ui/trade_2_screen.json", + "right_panel": "ui/trade_2_screen.json", + "right_panel/common_panel": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/villager_name_label": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/exp_progress_bar": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/top_half_panel": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": "ui/trade_2_screen.json", + "right_panel/trade_screen_inventory/hotbar_grid": "ui/trade_2_screen.json", + "toolbar_panel": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": "ui/trade_2_screen.json", + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/trade_2_screen.json", + "toolbar_anchor": "ui/trade_2_screen.json", + "toolbar_anchor/toolbar_panel": "ui/trade_2_screen.json", + "center_fold": "ui/trade_2_screen.json", + "center_fold/center_bg": "ui/trade_2_screen.json", + "screen_stack_panel": "ui/trade_2_screen.json", + "screen_stack_panel/left_panel": "ui/trade_2_screen.json", + "screen_stack_panel/center_fold": "ui/trade_2_screen.json", + "screen_stack_panel/right_panel": "ui/trade_2_screen.json", + "screen_stack_panel/toolbar_anchor": "ui/trade_2_screen.json", + "gamepad_helper_x": "ui/trade_2_screen.json", + "gamepad_helper_y": "ui/trade_2_screen.json", + "screen_panel": "ui/trade_2_screen.json", + "screen_panel/screen_stack_panel": "ui/trade_2_screen.json", + "screen_panel/container_gamepad_helpers": "ui/trade_2_screen.json", + "screen_panel/selected_item_details_factory": "ui/trade_2_screen.json", + "screen_panel/item_lock_notification_factory": "ui/trade_2_screen.json", + "screen_panel/inventory_selected_icon_button": "ui/trade_2_screen.json", + "screen_panel/inventory_take_progress_icon_button": "ui/trade_2_screen.json", + "screen_panel/flying_item_renderer": "ui/trade_2_screen.json", + "trade_screen": "ui/trade_2_screen.json", + }, + "trade2_pocket": { + "chest_item_renderer": "ui/trade_2_screen_pocket.json", + "trade_icon": "ui/trade_2_screen_pocket.json", + "arrow_right_image": "ui/trade_2_screen_pocket.json", + "right_navigation_tabs": "ui/trade_2_screen_pocket.json", + "right_navigation_tabs/pocket_tab_close_button": "ui/trade_2_screen_pocket.json", + "right_navigation_tabs/fill": "ui/trade_2_screen_pocket.json", + "trade_slots_panel": "ui/trade_2_screen_pocket.json", + "trade_slots_panel/item_slots_stack_panel": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons/trade_button_holder": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons/trade_button_holder/trade_button": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons/how_to_play_button_holder": "ui/trade_2_screen_pocket.json", + "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/padding_1": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/villager_name_label_holder": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/padding_2": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/exp_progress_bar_holder": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/padding_3": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/trade_slots_panel": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/padding_4": "ui/trade_2_screen_pocket.json", + "name_and_trade_slots_stack_panel/trade_and_help_buttons": "ui/trade_2_screen_pocket.json", + "right_panel": "ui/trade_2_screen_pocket.json", + "right_panel/content": "ui/trade_2_screen_pocket.json", + "right_panel/content/bg": "ui/trade_2_screen_pocket.json", + "right_panel/content/name_and_trade_slots_stack_panel": "ui/trade_2_screen_pocket.json", + "right_panel/navigation_tabs_holder": "ui/trade_2_screen_pocket.json", + "right_panel/navigation_tabs_holder/right_navigation_tabs": "ui/trade_2_screen_pocket.json", + "left_tab_trade": "ui/trade_2_screen_pocket.json", + "left_tab_inventory": "ui/trade_2_screen_pocket.json", + "left_navigation_tabs": "ui/trade_2_screen_pocket.json", + "left_navigation_tabs/left_tab_trades": "ui/trade_2_screen_pocket.json", + "left_navigation_tabs/padding": "ui/trade_2_screen_pocket.json", + "left_navigation_tabs/left_tab_inventory": "ui/trade_2_screen_pocket.json", + "arrow_holder": "ui/trade_2_screen_pocket.json", + "arrow_holder/arrow_image": "ui/trade_2_screen_pocket.json", + "arrow_holder/cross_out_image": "ui/trade_2_screen_pocket.json", + "arrow_holder/lock_image": "ui/trade_2_screen_pocket.json", + "inventory_scroll_panel": "ui/trade_2_screen_pocket.json", + "toggle_content": "ui/trade_2_screen_pocket.json", + "toggle_content/padding_1": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/padding_left": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/trade_item_1": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/padding_middle": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/trade_item_2": "ui/trade_2_screen_pocket.json", + "toggle_content/trade_item_holder/padding_right": "ui/trade_2_screen_pocket.json", + "toggle_content/padding_2": "ui/trade_2_screen_pocket.json", + "toggle_content/arrow_holder": "ui/trade_2_screen_pocket.json", + "toggle_content/padding_3": "ui/trade_2_screen_pocket.json", + "toggle_content/sell_item_holder": "ui/trade_2_screen_pocket.json", + "toggle_content/sell_item_holder/sell_item": "ui/trade_2_screen_pocket.json", + "toggle_content/padding_4": "ui/trade_2_screen_pocket.json", + "left_panel": "ui/trade_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder": "ui/trade_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": "ui/trade_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": "ui/trade_2_screen_pocket.json", + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": "ui/trade_2_screen_pocket.json", + "left_panel/content": "ui/trade_2_screen_pocket.json", + "left_panel/content/bg": "ui/trade_2_screen_pocket.json", + "left_panel/content/inventory_scroll_panel": "ui/trade_2_screen_pocket.json", + "left_panel/content/trade_scroll_panel": "ui/trade_2_screen_pocket.json", + "pocket_hotbar_and_content_panels": "ui/trade_2_screen_pocket.json", + "screen_panel": "ui/trade_2_screen_pocket.json", + "screen_panel/pocket_hotbar_and_content_panels": "ui/trade_2_screen_pocket.json", + "screen_panel/container_gamepad_helpers": "ui/trade_2_screen_pocket.json", + "screen_panel/selected_item_details_factory": "ui/trade_2_screen_pocket.json", + "screen_panel/item_lock_notification_factory": "ui/trade_2_screen_pocket.json", + "screen_panel/inventory_selected_icon_button": "ui/trade_2_screen_pocket.json", + "screen_panel/inventory_take_progress_icon_button": "ui/trade_2_screen_pocket.json", + "screen_panel/flying_item_renderer": "ui/trade_2_screen_pocket.json", + }, + "trialUpsell": { + "normal_stroke_button": "ui/trial_upsell_screen.json", + "normal_description_label": "ui/trial_upsell_screen.json", + "trialTime": "ui/trial_upsell_screen.json", + "trial_label": "ui/trial_upsell_screen.json", + "trial_description_panel": "ui/trial_upsell_screen.json", + "trial_description_panel/description_text": "ui/trial_upsell_screen.json", + "trial_expired_description_panel": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/vertical_padding_0": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line1": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/vertical_padding_1": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line2": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line3": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line4": "ui/trial_upsell_screen.json", + "trial_expired_description_panel/line5": "ui/trial_upsell_screen.json", + "continue_button": "ui/trial_upsell_screen.json", + "buy_button": "ui/trial_upsell_screen.json", + "root_panel": "ui/trial_upsell_screen.json", + "trial_upsell_screen_dialog": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_dialog": "ui/trial_upsell_screen.json", + "button_content_panel": "ui/trial_upsell_screen.json", + "button_content_panel/buy": "ui/trial_upsell_screen.json", + "button_content_panel/continue": "ui/trial_upsell_screen.json", + "trial_upsell_screen": "ui/trial_upsell_screen.json", + "trial_upsell_screen_content": "ui/trial_upsell_screen.json", + "trial_upsell_screen_content/trialTime": "ui/trial_upsell_screen.json", + "trial_upsell_screen_content/root_panel": "ui/trial_upsell_screen.json", + "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_content": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_content/trialTime": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_content/root_panel": "ui/trial_upsell_screen.json", + "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": "ui/trial_upsell_screen.json", + "content_description_panel": "ui/trial_upsell_screen.json", + "content_description_panel/scrolling_panel": "ui/trial_upsell_screen.json", + }, + "ugc_viewer": { + "padding": "ui/ugc_viewer_screen.json", + "world_label": "ui/ugc_viewer_screen.json", + "world_image": "ui/ugc_viewer_screen.json", + "button_content": "ui/ugc_viewer_screen.json", + "button_content/stack_panel": "ui/ugc_viewer_screen.json", + "button_content/stack_panel/world_label": "ui/ugc_viewer_screen.json", + "button_content/stack_panel/world_panel": "ui/ugc_viewer_screen.json", + "button_content/stack_panel/world_panel/background": "ui/ugc_viewer_screen.json", + "button_content/stack_panel/world_panel/background/world_image": "ui/ugc_viewer_screen.json", + "grid_item": "ui/ugc_viewer_screen.json", + "grid_item/button": "ui/ugc_viewer_screen.json", + "place_holder_control": "ui/ugc_viewer_screen.json", + "place_holder_control/search_icon": "ui/ugc_viewer_screen.json", + "place_holder_control/place_holder_text": "ui/ugc_viewer_screen.json", + "search_box": "ui/ugc_viewer_screen.json", + "grid_content": "ui/ugc_viewer_screen.json", + "scrolling_content": "ui/ugc_viewer_screen.json", + "scrolling_content/grid_content": "ui/ugc_viewer_screen.json", + "main_panel": "ui/ugc_viewer_screen.json", + "main_panel/padding_0": "ui/ugc_viewer_screen.json", + "main_panel/centerer_panel_0": "ui/ugc_viewer_screen.json", + "main_panel/centerer_panel_0/search_box": "ui/ugc_viewer_screen.json", + "main_panel/padding_1": "ui/ugc_viewer_screen.json", + "main_panel/centerer_panel_1": "ui/ugc_viewer_screen.json", + "main_panel/centerer_panel_1/scrolling_panel": "ui/ugc_viewer_screen.json", + "main_panel/padding_2": "ui/ugc_viewer_screen.json", + "ugc_viewer_screen": "ui/ugc_viewer_screen.json", + "screen_content": "ui/ugc_viewer_screen.json", + "screen_content/main_panel": "ui/ugc_viewer_screen.json", + }, + "common_art": { + "title_image": "ui/ui_art_assets_common.json", + "title_image_edu": "ui/ui_art_assets_common.json", + "splash_text": "ui/ui_art_assets_common.json", + "title_panel_pocket": "ui/ui_art_assets_common.json", + "title_panel_pocket/title_image": "ui/ui_art_assets_common.json", + "title_panel_pocket/splash_text": "ui/ui_art_assets_common.json", + "title_panel_win10": "ui/ui_art_assets_common.json", + "title_panel_win10/title_image": "ui/ui_art_assets_common.json", + "title_panel_win10/splash_text": "ui/ui_art_assets_common.json", + "title_panel_osx": "ui/ui_art_assets_common.json", + "title_panel_osx/title_image": "ui/ui_art_assets_common.json", + "title_panel_osx/splash_text": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/banner_control": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/banner_control/banner": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/banner_control/drop_shadow": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/title_control": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/title_control/title_image_edu": "ui/ui_art_assets_common.json", + "title_panel_edu_desktop/title_control/splash_text": "ui/ui_art_assets_common.json", + "title_panel_edu_mobile": "ui/ui_art_assets_common.json", + "title_panel_edu_mobile/title_control": "ui/ui_art_assets_common.json", + "title_panel_edu_mobile/title_control/title_image_edu": "ui/ui_art_assets_common.json", + "title_panel_edu_mobile/title_control/splash_text": "ui/ui_art_assets_common.json", + "title_panel_content": "ui/ui_art_assets_common.json", + "start_title_panel_content": "ui/ui_art_assets_common.json", + "pause_logo_panel": "ui/ui_art_assets_common.json", + "pause_logo_panel/logo": "ui/ui_art_assets_common.json", + }, + "common": { + "empty_panel": "ui/ui_common.json", + "vertical_padding_8px": "ui/ui_common.json", + "horizontal_padding_2px": "ui/ui_common.json", + "empty_image": "ui/ui_common.json", + "horizontal_stack_panel": "ui/ui_common.json", + "vertical_stack_panel": "ui/ui_common.json", + "vert_stack_centering_panel": "ui/ui_common.json", + "vert_stack_centering_panel/stack_content": "ui/ui_common.json", + "button": "ui/ui_common.json", + "screen_header_title_panel": "ui/ui_common.json", + "screen_header_title_panel/store_header_title": "ui/ui_common.json", + "back_button": "ui/ui_common.json", + "back_title_button": "ui/ui_common.json", + "back_title_button/panel1": "ui/ui_common.json", + "back_title_button/panel1/button": "ui/ui_common.json", + "back_title_button/padding1": "ui/ui_common.json", + "back_title_button/panel2": "ui/ui_common.json", + "back_title_button/panel2/label": "ui/ui_common.json", + "chevron_image": "ui/ui_common.json", + "back_button_content": "ui/ui_common.json", + "back_button_content/chevron_panel": "ui/ui_common.json", + "back_button_content/chevron_panel/left_chevron": "ui/ui_common.json", + "back_button_content/padding1": "ui/ui_common.json", + "back_button_content/label_panel": "ui/ui_common.json", + "back_button_content/label_panel/label": "ui/ui_common.json", + "label_hover": "ui/ui_common.json", + "label_hover/hover": "ui/ui_common.json", + "tts_activate_sibling": "ui/ui_common.json", + "tts_activate_sibling/default": "ui/ui_common.json", + "tts_activate_sibling/pressed": "ui/ui_common.json", + "tts_activate_sibling/hover": "ui/ui_common.json", + "back_title_button_content": "ui/ui_common.json", + "back_title_button_content/padding1": "ui/ui_common.json", + "back_title_button_content/chevron_panel": "ui/ui_common.json", + "back_title_button_content/chevron_panel/left_chevron": "ui/ui_common.json", + "back_title_button_content/padding2": "ui/ui_common.json", + "toggle_visuals": "ui/ui_common.json", + "toggle_visuals/unchecked": "ui/ui_common.json", + "toggle_visuals/checked": "ui/ui_common.json", + "toggle_visuals/unchecked_hover": "ui/ui_common.json", + "toggle_visuals/checked_hover": "ui/ui_common.json", + "toggle_visuals/unchecked_locked": "ui/ui_common.json", + "toggle_visuals/checked_locked": "ui/ui_common.json", + "toggle_visuals/unchecked_locked_hover": "ui/ui_common.json", + "toggle_visuals/checked_locked_hover": "ui/ui_common.json", + "toggle": "ui/ui_common.json", + "radio_toggle": "ui/ui_common.json", + "checkbox": "ui/ui_common.json", + "checkbox_image": "ui/ui_common.json", + "checked_image": "ui/ui_common.json", + "unchecked_image": "ui/ui_common.json", + "checked_hover_image": "ui/ui_common.json", + "unchecked_hover_image": "ui/ui_common.json", + "rotating_text": "ui/ui_common.json", + "button_text": "ui/ui_common.json", + "toggle_state_template": "ui/ui_common.json", + "new_button_label": "ui/ui_common.json", + "checkbox_checked_state": "ui/ui_common.json", + "checkbox_unchecked_state": "ui/ui_common.json", + "checkbox_checked_hover_state": "ui/ui_common.json", + "checkbox_unchecked_hover_state": "ui/ui_common.json", + "checkbox_checked_locked_state": "ui/ui_common.json", + "checkbox_unchecked_locked_state": "ui/ui_common.json", + "radio_toggle_checked_state": "ui/ui_common.json", + "radio_toggle_unchecked_state": "ui/ui_common.json", + "radio_toggle_checked_hover_state": "ui/ui_common.json", + "radio_toggle_unchecked_hover_state": "ui/ui_common.json", + "radio_toggle_checked_locked_state": "ui/ui_common.json", + "radio_toggle_unchecked_locked_state": "ui/ui_common.json", + "slider_button_state": "ui/ui_common.json", + "slider_button_layout": "ui/ui_common.json", + "slider_button_hover_layout": "ui/ui_common.json", + "slider_button_locked_layout": "ui/ui_common.json", + "slider_button_indent_layout": "ui/ui_common.json", + "slider_box": "ui/ui_common.json", + "slider_box/default": "ui/ui_common.json", + "slider_box/hover": "ui/ui_common.json", + "slider_box/indent": "ui/ui_common.json", + "slider_box/locked": "ui/ui_common.json", + "slider_box/locked/transparent_grey": "ui/ui_common.json", + "slider_background": "ui/ui_common.json", + "slider_background_hover": "ui/ui_common.json", + "slider_progress": "ui/ui_common.json", + "slider_progress_hover": "ui/ui_common.json", + "slider_border": "ui/ui_common.json", + "slider_bar_default": "ui/ui_common.json", + "slider_bar_default/sizing_panel": "ui/ui_common.json", + "slider_bar_default/transparent_grey": "ui/ui_common.json", + "slider_bar_hover": "ui/ui_common.json", + "slider_step": "ui/ui_common.json", + "slider_step_hover": "ui/ui_common.json", + "slider_step_progress": "ui/ui_common.json", + "slider_step_progress_hover": "ui/ui_common.json", + "slider": "ui/ui_common.json", + "slider/slider_box": "ui/ui_common.json", + "slider/slider_bar_default": "ui/ui_common.json", + "slider/slider_bar_hover": "ui/ui_common.json", + "dropdown_background": "ui/ui_common.json", + "dropdown": "ui/ui_common.json", + "dropdown/dropdown_content": "ui/ui_common.json", + "dropdown/dropdown_content/0": "ui/ui_common.json", + "dropdown_no_scrollpanel": "ui/ui_common.json", + "square_image_border_white": "ui/ui_common.json", + "focus_border_white": "ui/ui_common.json", + "focus_border_yellow": "ui/ui_common.json", + "focus_border_black": "ui/ui_common.json", + "non_interact_focus_border": "ui/ui_common.json", + "non_interact_focus_border_button": "ui/ui_common.json", + "non_interact_focus_border_button/default": "ui/ui_common.json", + "non_interact_focus_border_button/hover": "ui/ui_common.json", + "non_interact_focus_border_button/pressed": "ui/ui_common.json", + "non_interact_focus_border_button/content": "ui/ui_common.json", + "tts_label_focus_wrapper": "ui/ui_common.json", + "tts_label_focus_wrapper/label": "ui/ui_common.json", + "tts_label_focus_wrapper/focus_border": "ui/ui_common.json", + "default_indent": "ui/ui_common.json", + "edit_box_indent": "ui/ui_common.json", + "edit_box_indent_hover": "ui/ui_common.json", + "transparent_edit_box_indent": "ui/ui_common.json", + "transparent_edit_box_indent_hover": "ui/ui_common.json", + "text_edit_box_label": "ui/ui_common.json", + "text_edit_box_place_holder_label": "ui/ui_common.json", + "text_magnifying_glass_image": "ui/ui_common.json", + "text_close_X_button_image": "ui/ui_common.json", + "text_close_X_button_image_hover": "ui/ui_common.json", + "clear_text_button": "ui/ui_common.json", + "clear_text_button/default": "ui/ui_common.json", + "clear_text_button/hover": "ui/ui_common.json", + "clear_text_button/pressed": "ui/ui_common.json", + "text_edit_box": "ui/ui_common.json", + "text_edit_box/centering_panel": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/magnifying_glass": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/visibility_panel": "ui/ui_common.json", + "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", + "text_edit_box/locked": "ui/ui_common.json", + "text_edit_box/locked/edit_box_indent": "ui/ui_common.json", + "text_edit_box/default": "ui/ui_common.json", + "text_edit_box/hover": "ui/ui_common.json", + "text_edit_box/pressed": "ui/ui_common.json", + "text_edit_box_scrolling_content": "ui/ui_common.json", + "scrollable_text_edit_box": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel/clipper_panel": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": "ui/ui_common.json", + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", + "scrollable_text_edit_box/locked": "ui/ui_common.json", + "scrollable_text_edit_box/locked/edit_box_indent": "ui/ui_common.json", + "scrollable_text_edit_box/default": "ui/ui_common.json", + "scrollable_text_edit_box/hover": "ui/ui_common.json", + "scrollable_text_edit_box/pressed": "ui/ui_common.json", + "transparent_text_edit_box": "ui/ui_common.json", + "transparent_text_edit_box/clipper_panel": "ui/ui_common.json", + "transparent_text_edit_box/clipper_panel/visibility_panel": "ui/ui_common.json", + "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": "ui/ui_common.json", + "transparent_text_edit_box/locked": "ui/ui_common.json", + "transparent_text_edit_box/locked/edit_box_indent": "ui/ui_common.json", + "transparent_text_edit_box/default": "ui/ui_common.json", + "transparent_text_edit_box/hover": "ui/ui_common.json", + "transparent_text_edit_box/pressed": "ui/ui_common.json", + "multiline_text_edit_box": "ui/ui_common.json", + "scrollable_multiline_text_edit_box": "ui/ui_common.json", + "dirt_background": "ui/ui_common.json", + "portal_background": "ui/ui_common.json", + "empty_progress_bar": "ui/ui_common.json", + "filled_progress_bar": "ui/ui_common.json", + "empty_progress_bar_beveled": "ui/ui_common.json", + "progress_bar_beveled_overlay": "ui/ui_common.json", + "filled_progress_bar_for_collections": "ui/ui_common.json", + "progress_bar": "ui/ui_common.json", + "progress_bar/empty_progress_bar": "ui/ui_common.json", + "progress_bar/filled_progress_bar": "ui/ui_common.json", + "progress_bar_for_collections": "ui/ui_common.json", + "progress_bar_for_collections/empty_progress_bar": "ui/ui_common.json", + "progress_bar_for_collections/filled_progress_bar_for_collections": "ui/ui_common.json", + "horizontal_divider": "ui/ui_common.json", + "horizontal_divider/divider_image": "ui/ui_common.json", + "vertical_divider": "ui/ui_common.json", + "vertical_divider/divider_image": "ui/ui_common.json", + "underline": "ui/ui_common.json", + "single_line_label": "ui/ui_common.json", + "single_line_label/label_panel": "ui/ui_common.json", + "single_line_label/label_panel/0": "ui/ui_common.json", + "gamepad_helper_icon_description": "ui/ui_common.json", + "gamepad_helper_icon_image": "ui/ui_common.json", + "keyboard_helper_icon_image": "ui/ui_common.json", + "gamepad_helper": "ui/ui_common.json", + "gamepad_helper/icon_panel": "ui/ui_common.json", + "gamepad_helper/description_panel": "ui/ui_common.json", + "gamepad_helper/description_panel/desc": "ui/ui_common.json", + "gamepad_helpers": "ui/ui_common.json", + "gamepad_helpers_a_and_b": "ui/ui_common.json", + "gamepad_helpers_a_and_b/gamepad_helper_a": "ui/ui_common.json", + "gamepad_helpers_a_and_b/control": "ui/ui_common.json", + "gamepad_helpers_a_and_b/gamepad_helper_b": "ui/ui_common.json", + "container_gamepad_helpers": "ui/ui_common.json", + "container_gamepad_helpers/fill_panel": "ui/ui_common.json", + "container_gamepad_helpers/buttons": "ui/ui_common.json", + "container_gamepad_helpers/buttons/gamepad_helper_x": "ui/ui_common.json", + "container_gamepad_helpers/buttons/gamepad_helper_a": "ui/ui_common.json", + "container_gamepad_helpers/buttons/gamepad_helper_y": "ui/ui_common.json", + "container_gamepad_helpers/buttons/gamepad_helper_b": "ui/ui_common.json", + "container_gamepad_helpers/buffer_panel_right": "ui/ui_common.json", + "tabs_left_gamepad_helpers": "ui/ui_common.json", + "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": "ui/ui_common.json", + "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": "ui/ui_common.json", + "tabs_right_gamepad_helpers": "ui/ui_common.json", + "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": "ui/ui_common.json", + "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": "ui/ui_common.json", + "keyboard_helper_description": "ui/ui_common.json", + "keyboard_helper": "ui/ui_common.json", + "keyboard_helper/image_centerer": "ui/ui_common.json", + "keyboard_helper/image_centerer/image": "ui/ui_common.json", + "keyboard_helper/image_centerer/image/keyboard_character": "ui/ui_common.json", + "keyboard_helper/centerer": "ui/ui_common.json", + "keyboard_helper/centerer/desc": "ui/ui_common.json", + "keyboard_helpers": "ui/ui_common.json", + "gamepad_icon_button": "ui/ui_common.json", + "gamepad_helper_start": "ui/ui_common.json", + "gamepad_helper_a": "ui/ui_common.json", + "gamepad_helper_a_14": "ui/ui_common.json", + "gamepad_helper_b": "ui/ui_common.json", + "gamepad_helper_b_14": "ui/ui_common.json", + "gamepad_helper_x": "ui/ui_common.json", + "gamepad_helper_x_14": "ui/ui_common.json", + "gamepad_helper_y": "ui/ui_common.json", + "gamepad_helper_y_14": "ui/ui_common.json", + "keyboard_helper_keys": "ui/ui_common.json", + "gamepad_helper_left_trigger": "ui/ui_common.json", + "gamepad_helper_right_trigger": "ui/ui_common.json", + "keyboard_left_trigger": "ui/ui_common.json", + "keyboard_right_trigger": "ui/ui_common.json", + "gamepad_icon_dpad": "ui/ui_common.json", + "gamepad_helper_dpad": "ui/ui_common.json", + "gamepad_helper_dpad_down": "ui/ui_common.json", + "gamepad_helper_dpad_left": "ui/ui_common.json", + "gamepad_helper_dpad_right": "ui/ui_common.json", + "gamepad_helper_dpad_up": "ui/ui_common.json", + "gamepad_icon_thumbstick": "ui/ui_common.json", + "gamepad_helper_thumbstick": "ui/ui_common.json", + "gamepad_helper_thumbstick_right": "ui/ui_common.json", + "gamepad_helper_thumbstick_left": "ui/ui_common.json", + "gamepad_helper_left_bumper": "ui/ui_common.json", + "gamepad_helper_right_bumper": "ui/ui_common.json", + "dialog_background_common": "ui/ui_common.json", + "dialog_background_hollow_common": "ui/ui_common.json", + "dialog_background_hollow_common/control": "ui/ui_common.json", + "dialog_background_opaque": "ui/ui_common.json", + "dialog_background_hollow_1": "ui/ui_common.json", + "dialog_background_hollow_2": "ui/ui_common.json", + "dialog_background_hollow_3": "ui/ui_common.json", + "dialog_background_hollow_4": "ui/ui_common.json", + "dialog_background_hollow_4_thin": "ui/ui_common.json", + "dialog_background_hollow_5": "ui/ui_common.json", + "dialog_background_hollow_6": "ui/ui_common.json", + "dialog_background_hollow_7": "ui/ui_common.json", + "dialog_background_hollow_8": "ui/ui_common.json", + "dialog_divider": "ui/ui_common.json", + "normal_button": "ui/ui_common.json", + "normal_stroke_button": "ui/ui_common.json", + "section_heading_label": "ui/ui_common.json", + "section_divider": "ui/ui_common.json", + "section_divider/padding1": "ui/ui_common.json", + "section_divider/divider_parent": "ui/ui_common.json", + "section_divider/divider_parent/divider": "ui/ui_common.json", + "section_divider/padding2": "ui/ui_common.json", + "minecraftTenLabel": "ui/ui_common.json", + "close_button_image": "ui/ui_common.json", + "close_button_panel": "ui/ui_common.json", + "close_button_panel/close_button_image": "ui/ui_common.json", + "close_button": "ui/ui_common.json", + "close_button/default": "ui/ui_common.json", + "close_button/hover": "ui/ui_common.json", + "close_button/pressed": "ui/ui_common.json", + "close_button_grey_bg": "ui/ui_common.json", + "close_button_grey_bg/default": "ui/ui_common.json", + "close_button_grey_bg/hover": "ui/ui_common.json", + "close_button_grey_bg/pressed": "ui/ui_common.json", + "close_button_high_contrast": "ui/ui_common.json", + "close_button_high_contrast/background": "ui/ui_common.json", + "close_button_high_contrast/default": "ui/ui_common.json", + "close_button_high_contrast/hover": "ui/ui_common.json", + "close_button_high_contrast/pressed": "ui/ui_common.json", + "compact_close_button": "ui/ui_common.json", + "compact_close_button/default": "ui/ui_common.json", + "compact_close_button/hover": "ui/ui_common.json", + "compact_close_button/pressed": "ui/ui_common.json", + "light_close_button": "ui/ui_common.json", + "light_close_button/default": "ui/ui_common.json", + "light_close_button/hover": "ui/ui_common.json", + "light_close_button/pressed": "ui/ui_common.json", + "help_button": "ui/ui_common.json", + "help_button/default": "ui/ui_common.json", + "help_button/hover": "ui/ui_common.json", + "help_button/pressed": "ui/ui_common.json", + "cell_image": "ui/ui_common.json", + "cell_image_selected": "ui/ui_common.json", + "cell_image_panel": "ui/ui_common.json", + "cell_image_panel/cell_image": "ui/ui_common.json", + "cell_image_panel/cell_image_selected": "ui/ui_common.json", + "cell_overlay": "ui/ui_common.json", + "highlight_slot": "ui/ui_common.json", + "white_border_slot": "ui/ui_common.json", + "progressive_select_progress_bar": "ui/ui_common.json", + "progressive_select_progress_bar/stack_progress_bar_down": "ui/ui_common.json", + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": "ui/ui_common.json", + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": "ui/ui_common.json", + "stack_splitting_overlay": "ui/ui_common.json", + "stack_splitting_overlay/classic_stack_splitting_overlay": "ui/ui_common.json", + "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": "ui/ui_common.json", + "stack_splitting_overlay/pocket_stack_splitting_overlay": "ui/ui_common.json", + "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": "ui/ui_common.json", + "inventory_hold_icon_holding": "ui/ui_common.json", + "inventory_hold_icon_holding/progressive_down": "ui/ui_common.json", + "inventory_hold_icon_holding/progressive_up": "ui/ui_common.json", + "inventory_hold_icon_holding/progressive_left_side": "ui/ui_common.json", + "inventory_hold_icon_holding/progressive_right_side": "ui/ui_common.json", + "inventory_hold_icon_release": "ui/ui_common.json", + "highlight_slot_panel": "ui/ui_common.json", + "highlight_slot_panel/highlight": "ui/ui_common.json", + "highlight_slot_panel/highlight/hover_text": "ui/ui_common.json", + "highlight_slot_panel/white_border": "ui/ui_common.json", + "pocket_ui_highlight_slot": "ui/ui_common.json", + "hover_text": "ui/ui_common.json", + "screen_background": "ui/ui_common.json", + "stack_count_label": "ui/ui_common.json", + "durability_bar": "ui/ui_common.json", + "durability_bar_grabbed": "ui/ui_common.json", + "storage_bar": "ui/ui_common.json", + "storage_bar_grabbed": "ui/ui_common.json", + "item_renderer": "ui/ui_common.json", + "filtered_item_renderer": "ui/ui_common.json", + "flying_item_renderer": "ui/ui_common.json", + "selected_item_details": "ui/ui_common.json", + "selected_item_details/item_panel_image": "ui/ui_common.json", + "item_panel_image": "ui/ui_common.json", + "item_panel_image/item_text_label": "ui/ui_common.json", + "item_text_label": "ui/ui_common.json", + "selected_item_details_factory": "ui/ui_common.json", + "item_lock_notification": "ui/ui_common.json", + "item_lock_notification/notification_background_image": "ui/ui_common.json", + "item_lock_notification/notification_background_image/notification_text_label": "ui/ui_common.json", + "item_lock_notification_factory": "ui/ui_common.json", + "empty_panel_size_y_0": "ui/ui_common.json", + "scroll_background_and_viewport": "ui/ui_common.json", + "scroll_background_and_viewport/background": "ui/ui_common.json", + "scroll_background_and_viewport/scrolling_view_port": "ui/ui_common.json", + "scroll_background_and_viewport/scrolling_view_port/scrolling_content": "ui/ui_common.json", + "scroll_bar_and_track": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/empty_panel_0": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/panel": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/panel/centered_panel": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/panel/centered_panel/track": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": "ui/ui_common.json", + "scroll_bar_and_track/stack_panel/empty_panel_1": "ui/ui_common.json", + "scroll_view_control": "ui/ui_common.json", + "scroll_view_control/stack_panel": "ui/ui_common.json", + "scroll_view_control/stack_panel/background_and_viewport": "ui/ui_common.json", + "scroll_view_control/stack_panel/bar_and_track": "ui/ui_common.json", + "scroll_view_control/panel": "ui/ui_common.json", + "scroll_view_control/panel/background_and_viewport": "ui/ui_common.json", + "scroll_view_control/panel/bar_and_track": "ui/ui_common.json", + "scrollbar_track": "ui/ui_common.json", + "scrollbar_track/bar_indent": "ui/ui_common.json", + "scroll_box": "ui/ui_common.json", + "scroll_box/box": "ui/ui_common.json", + "scroll_box/box/mouse_box": "ui/ui_common.json", + "scroll_box/box/touch_box": "ui/ui_common.json", + "scroll_box_indent": "ui/ui_common.json", + "scrollbar_box_image": "ui/ui_common.json", + "touch_scrollbar_box_image": "ui/ui_common.json", + "new_touch_scrollbar_box_image": "ui/ui_common.json", + "container_touch_scrollbar_box_image": "ui/ui_common.json", + "scroll_indent_image": "ui/ui_common.json", + "scrolling_panel_base": "ui/ui_common.json", + "scrolling_panel": "ui/ui_common.json", + "scrolling_panel/scroll_touch": "ui/ui_common.json", + "scrolling_panel/scroll_mouse": "ui/ui_common.json", + "scrolling_panel_with_offset": "ui/ui_common.json", + "container_slot_button_prototype": "ui/ui_common.json", + "container_slot_button_prototype/hover": "ui/ui_common.json", + "no_coalesce_container_slot_button": "ui/ui_common.json", + "pocket_ui_container_slot": "ui/ui_common.json", + "pocket_ui_container_slot/hover": "ui/ui_common.json", + "pocket_ui_container_slot/hover/highlight_square": "ui/ui_common.json", + "slot_selected": "ui/ui_common.json", + "slot_selected/progress_bar_release": "ui/ui_common.json", + "container_item": "ui/ui_common.json", + "container_item/item_cell": "ui/ui_common.json", + "container_item/item_cell/item": "ui/ui_common.json", + "container_item/item_cell/item/stack_count_label": "ui/ui_common.json", + "container_item/item_cell/durability_bar": "ui/ui_common.json", + "container_item/item_cell/storage_bar": "ui/ui_common.json", + "container_item/item_cell_overlay_ref": "ui/ui_common.json", + "container_item/item_selected_image": "ui/ui_common.json", + "container_item/item_button_ref": "ui/ui_common.json", + "container_item/container_item_lock_overlay": "ui/ui_common.json", + "container_item/item_lock_cell_image": "ui/ui_common.json", + "container_item/bundle_slot_panel": "ui/ui_common.json", + "pocket_ui_container_item": "ui/ui_common.json", + "pocket_ui_large_container_item": "ui/ui_common.json", + "container_item_lock_yellow": "ui/ui_common.json", + "container_item_lock_red": "ui/ui_common.json", + "container_item_lock_overlay": "ui/ui_common.json", + "container_item_lock_overlay/container_item_lock_yellow": "ui/ui_common.json", + "container_item_lock_overlay/container_item_lock_red": "ui/ui_common.json", + "item_lock_cell_image": "ui/ui_common.json", + "container_grid": "ui/ui_common.json", + "pocket_container_grid": "ui/ui_common.json", + "container_scroll_box_image": "ui/ui_common.json", + "container_scroll_bar_side_rails": "ui/ui_common.json", + "container_scrollbar_track": "ui/ui_common.json", + "container_scrollbar_track/rails": "ui/ui_common.json", + "container_scroll_background_image": "ui/ui_common.json", + "container_scroll_panel": "ui/ui_common.json", + "pocket_ui_highlight_selected_slot": "ui/ui_common.json", + "pocket_hotbar_panel": "ui/ui_common.json", + "pocket_hotbar_panel/bg": "ui/ui_common.json", + "pocket_hotbar_panel/hotbar_grid": "ui/ui_common.json", + "drop_item_panel": "ui/ui_common.json", + "pocket_hotbar_and_content_panels": "ui/ui_common.json", + "pocket_hotbar_and_content_panels/pocket_content_panels": "ui/ui_common.json", + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": "ui/ui_common.json", + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": "ui/ui_common.json", + "blank_pocket_content_panel": "ui/ui_common.json", + "pocket_content_panels": "ui/ui_common.json", + "pocket_content_panels/left_panel": "ui/ui_common.json", + "pocket_content_panels/offset_panel": "ui/ui_common.json", + "pocket_content_panels/offset_panel/center_bg": "ui/ui_common.json", + "pocket_content_panels/right_panel": "ui/ui_common.json", + "inventory_selected_icon": "ui/ui_common.json", + "inventory_selected_stack_size_text": "ui/ui_common.json", + "inventory_hold_icon": "ui/ui_common.json", + "inventory_selected_item_lock_overlay": "ui/ui_common.json", + "inventory_selected_item_lock_overlay/container_item_lock_yellow": "ui/ui_common.json", + "inventory_selected_item_lock_overlay/container_item_lock_red": "ui/ui_common.json", + "inventory_icon_panel": "ui/ui_common.json", + "inventory_icon_panel/selected_item_icon": "ui/ui_common.json", + "inventory_icon_panel/selected_stack_size_text": "ui/ui_common.json", + "inventory_icon_panel/selected_item_lock_overlay": "ui/ui_common.json", + "inventory_icon_panel/hover_text": "ui/ui_common.json", + "inventory_selected_icon_button": "ui/ui_common.json", + "inventory_selected_icon_button/default": "ui/ui_common.json", + "inventory_selected_icon_button/pressed": "ui/ui_common.json", + "inventory_selected_icon_button/hover": "ui/ui_common.json", + "inventory_selected_icon_button/durability_bar_grabbed": "ui/ui_common.json", + "inventory_selected_icon_button/storage_bar_grabbed": "ui/ui_common.json", + "inventory_take_progress_icon_button": "ui/ui_common.json", + "inventory_take_progress_icon_button/default": "ui/ui_common.json", + "inventory_take_progress_icon_button/pressed": "ui/ui_common.json", + "inventory_take_progress_icon_button/hover": "ui/ui_common.json", + "gamepad_cursor_image": "ui/ui_common.json", + "gamepad_cursor_button": "ui/ui_common.json", + "gamepad_cursor_button/default": "ui/ui_common.json", + "gamepad_cursor_button/pressed": "ui/ui_common.json", + "gamepad_cursor_button/hover": "ui/ui_common.json", + "grid_item_for_inventory": "ui/ui_common.json", + "grid_item_for_hotbar": "ui/ui_common.json", + "hotbar_grid_template": "ui/ui_common.json", + "inventory_panel": "ui/ui_common.json", + "inventory_panel/inventory_grid": "ui/ui_common.json", + "inventory_panel_bottom_half": "ui/ui_common.json", + "inventory_panel_bottom_half/inventory_panel": "ui/ui_common.json", + "inventory_panel_bottom_half_with_label": "ui/ui_common.json", + "inventory_panel_bottom_half_with_label/inventory_panel": "ui/ui_common.json", + "inventory_panel_bottom_half_with_label/inventory_label": "ui/ui_common.json", + "common_panel": "ui/ui_common.json", + "common_panel/bg_image": "ui/ui_common.json", + "common_panel/dialog_divider": "ui/ui_common.json", + "common_panel/close_button_holder": "ui/ui_common.json", + "common_panel/close_button_holder/close": "ui/ui_common.json", + "common_panel/close_button_holder/compact_close": "ui/ui_common.json", + "root_panel": "ui/ui_common.json", + "input_panel": "ui/ui_common.json", + "base_screen": "ui/ui_common.json", + "base_screen/variables_button_mappings_and_controls": "ui/ui_common.json", + "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": "ui/ui_common.json", + "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": "ui/ui_common.json", + "base_screen/variables_button_mappings_and_controls/screen_background": "ui/ui_common.json", + "base_screen/loading_bars_background": "ui/ui_common.json", + "base_screen/loading_bars_background/loading_bars": "ui/ui_common.json", + "render_below_base_screen": "ui/ui_common.json", + "safezone_buffer": "ui/ui_common.json", + "top_safezone_vertical_buffer": "ui/ui_common.json", + "bottom_safezone_vertical_buffer": "ui/ui_common.json", + "left_safezone_horizontal_buffer": "ui/ui_common.json", + "right_safezone_horizontal_buffer": "ui/ui_common.json", + "safe_zone_stack": "ui/ui_common.json", + "safe_zone_stack/top_outer_control": "ui/ui_common.json", + "safe_zone_stack/top_inner_control": "ui/ui_common.json", + "safe_zone_stack/header_bar": "ui/ui_common.json", + "safezone_inner_matrix": "ui/ui_common.json", + "safezone_inner_matrix/outer_top": "ui/ui_common.json", + "safezone_inner_matrix/outer_top/top_side_control": "ui/ui_common.json", + "safezone_inner_matrix/inner_top": "ui/ui_common.json", + "safezone_inner_matrix/inner_top/top_side_control": "ui/ui_common.json", + "safezone_inner_matrix/safezone_screen_panel": "ui/ui_common.json", + "safezone_inner_matrix/inner_bottom": "ui/ui_common.json", + "safezone_inner_matrix/outer_bottom": "ui/ui_common.json", + "safezone_outer_matrix": "ui/ui_common.json", + "safezone_outer_matrix/outer_left": "ui/ui_common.json", + "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": "ui/ui_common.json", + "safezone_outer_matrix/inner_left": "ui/ui_common.json", + "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": "ui/ui_common.json", + "safezone_outer_matrix/inner_matrix": "ui/ui_common.json", + "safezone_outer_matrix/inner_right": "ui/ui_common.json", + "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": "ui/ui_common.json", + "safezone_outer_matrix/outer_right": "ui/ui_common.json", + "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": "ui/ui_common.json", + "bundle_tooltip_wrapper": "ui/ui_common.json", + "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": "ui/ui_common.json", + "bundle_tooltip_wrapper/bundle_touch_tooltip": "ui/ui_common.json", + "screen_panel": "ui/ui_common.json", + "screen_panel/root_screen_panel": "ui/ui_common.json", + "screen_panel/additional_screen_content": "ui/ui_common.json", + "screen_panel/popup_dialog_factory": "ui/ui_common.json", + "screen_panel/bundle_hover_tooltip": "ui/ui_common.json", + "base_screen_empty_panel": "ui/ui_common.json", + "modal_screen": "ui/ui_common.json", + "realms_error_modal_screen": "ui/ui_common.json", + "modal_area_panel_base": "ui/ui_common.json", + "inactive_modal_pane_fade": "ui/ui_common.json", + "inventory_screen_common": "ui/ui_common.json", + "fullscreen_header": "ui/ui_common.json", + "fullscreen_header/top_bar": "ui/ui_common.json", + "fullscreen_header/top_bar/title_stack_panel": "ui/ui_common.json", + "fullscreen_header/top_bar/title_stack_panel/padding1": "ui/ui_common.json", + "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": "ui/ui_common.json", + "fullscreen_header/top_bar/title_stack_panel/padding2": "ui/ui_common.json", + "fullscreen_header/child_control": "ui/ui_common.json", + "back_content_panel": "ui/ui_common.json", + "back_content_panel/back_button": "ui/ui_common.json", + "top_bar": "ui/ui_common.json", + "tooltip_background": "ui/ui_common.json", + "tooltip_button_content": "ui/ui_common.json", + "tooltip_button_content/tooltip_panel_content": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": "ui/ui_common.json", + "static_tooltip_popup_with_image_and_text/tooltip_chevron": "ui/ui_common.json", + "dynamic_tooltip_popup_with_custom_content": "ui/ui_common.json", + "dynamic_tooltip_popup_with_custom_content/tooltip_content": "ui/ui_common.json", + "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": "ui/ui_common.json", + "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": "ui/ui_common.json", + "dynamic_tooltip_left": "ui/ui_common.json", + "dynamic_tooltip_below": "ui/ui_common.json", + "dynamic_custom_tooltip_below": "ui/ui_common.json", + "dynamic_tooltip": "ui/ui_common.json", + "dynamic_tooltip/above": "ui/ui_common.json", + "dynamic_tooltip/above/content": "ui/ui_common.json", + "dynamic_tooltip/below": "ui/ui_common.json", + "dynamic_tooltip/below/content": "ui/ui_common.json", + "legacy_pocket_close_button_default": "ui/ui_common.json", + "legacy_pocket_close_button_pressed": "ui/ui_common.json", + "legacy_pocket_close_button": "ui/ui_common.json", + "legacy_pocket_close_button/default": "ui/ui_common.json", + "legacy_pocket_close_button/hover": "ui/ui_common.json", + "legacy_pocket_close_button/pressed": "ui/ui_common.json", + "info_icon": "ui/ui_common.json", + "error_glyph": "ui/ui_common.json", + "service_repo_image_panel": "ui/ui_common.json", + "service_repo_image_panel/service_repo_image": "ui/ui_common.json", + "service_repo_image_panel/progress_loading": "ui/ui_common.json", + "common_cycler": "ui/ui_common.json", + "image_cycler": "ui/ui_common.json", + "text_cycler": "ui/ui_common.json", + "squaring_panel": "ui/ui_common.json", + "squaring_panel/squaring_panel": "ui/ui_common.json", + "squaring_panel/squaring_panel/squaring_panel_content": "ui/ui_common.json", + }, + "common-classic": { + "button": "ui/ui_common_classic.json", + "button_state_default": "ui/ui_common_classic.json", + "button_state_hover": "ui/ui_common_classic.json", + "button_state_pressed": "ui/ui_common_classic.json", + "toggle": "ui/ui_common_classic.json", + "toggle_checked_state": "ui/ui_common_classic.json", + "toggle_unchecked_state": "ui/ui_common_classic.json", + "toggle_checked_hovered_state": "ui/ui_common_classic.json", + "toggle_checked_hovered_state/toggle_checked_state": "ui/ui_common_classic.json", + "toggle_checked_hovered_state/hover": "ui/ui_common_classic.json", + "toggle_unchecked_hovered_state": "ui/ui_common_classic.json", + "toggle_unchecked_hovered_state/toggle_unchecked_state": "ui/ui_common_classic.json", + "toggle_unchecked_hovered_state/hover": "ui/ui_common_classic.json", + }, + "edu_common": { + "light_label": "ui/ui_edu_common.json", + "dark_label": "ui/ui_edu_common.json", + "readable_label": "ui/ui_edu_common.json", + "slider_toggle": "ui/ui_edu_common.json", + "trash_default": "ui/ui_edu_common.json", + "trash_hover": "ui/ui_edu_common.json", + "trash_pressed": "ui/ui_edu_common.json", + "photo_trash_button": "ui/ui_edu_common.json", + "photo_trash_button/default": "ui/ui_edu_common.json", + "photo_trash_button/hover": "ui/ui_edu_common.json", + "photo_trash_button/pressed": "ui/ui_edu_common.json", + "download_progress_modal_panel": "ui/ui_edu_common.json", + "download_progress_modal_panel/downloading": "ui/ui_edu_common.json", + "loading_progress_modal_panel": "ui/ui_edu_common.json", + "loading_progress_modal_panel/loading": "ui/ui_edu_common.json", + "modal_cancel_button": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/common_panel": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/title": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/content": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/content/title_panel": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/content/label": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/content/progress_loading_bars": "ui/ui_edu_common.json", + "modal_progress_panel_with_cancel/cancel_button": "ui/ui_edu_common.json", + "modal_progress_panel_no_button": "ui/ui_edu_common.json", + "modal_progress_panel_no_button/common_panel": "ui/ui_edu_common.json", + "modal_progress_panel_no_button/content": "ui/ui_edu_common.json", + "modal_progress_panel_no_button/content/progress_title_text": "ui/ui_edu_common.json", + "modal_progress_panel_no_button/content/progress_loading_bars": "ui/ui_edu_common.json", + "apple_animation": "ui/ui_edu_common.json", + "book_animation": "ui/ui_edu_common.json", + "edu_loading_animation": "ui/ui_edu_common.json", + "horizontal_stack_item": "ui/ui_edu_common.json", + "vertical_stack_item": "ui/ui_edu_common.json", + "back_button_padded": "ui/ui_edu_common.json", + "back_button_padded/back_button_padding_before": "ui/ui_edu_common.json", + "back_button_padded/back_button": "ui/ui_edu_common.json", + "home_button_content": "ui/ui_edu_common.json", + "home_button": "ui/ui_edu_common.json", + "underline_text": "ui/ui_edu_common.json", + "underline_text/label_hover": "ui/ui_edu_common.json", + "underline_button": "ui/ui_edu_common.json", + "underline_button/default": "ui/ui_edu_common.json", + "underline_button/hover": "ui/ui_edu_common.json", + "underline_button/pressed": "ui/ui_edu_common.json", + "edu_screen_header": "ui/ui_edu_common.json", + "edu_screen_header/title_controls": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/back_item": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/back_item/back_button": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/back_item/gamepad": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item/image": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item_template": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item_template/image": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/image_item_template/image/image_color": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/title_text_padding": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/title_item": "ui/ui_edu_common.json", + "edu_screen_header/title_controls/title_item/title": "ui/ui_edu_common.json", + "share_dialog_title": "ui/ui_edu_common.json", + "share_header_panel": "ui/ui_edu_common.json", + "share_header_panel/title": "ui/ui_edu_common.json", + "share_header_panel/close_button": "ui/ui_edu_common.json", + "teams_advanced_share_header_panel": "ui/ui_edu_common.json", + "add_resource_share_header_panel": "ui/ui_edu_common.json", + "body_panel": "ui/ui_edu_common.json", + "body_panel/body_stack": "ui/ui_edu_common.json", + "teams_body_panel": "ui/ui_edu_common.json", + "teams_body_resource_panel": "ui/ui_edu_common.json", + "teams_simple_body_resource_panel": "ui/ui_edu_common.json", + "joincode_body_panel": "ui/ui_edu_common.json", + "add_resource_body_panel": "ui/ui_edu_common.json", + "icon_section": "ui/ui_edu_common.json", + "icon_section/icon_stack_panel": "ui/ui_edu_common.json", + "icon_section/icon_padding": "ui/ui_edu_common.json", + "add_resources_section": "ui/ui_edu_common.json", + "add_resources_section/divider": "ui/ui_edu_common.json", + "add_resources_section/add_resource_label": "ui/ui_edu_common.json", + "add_resources_section/teams_padding_middle": "ui/ui_edu_common.json", + "add_resources_section/resource_button": "ui/ui_edu_common.json", + "edit_resource_uri_glyph": "ui/ui_edu_common.json", + "edit_resources_section": "ui/ui_edu_common.json", + "edit_resources_section/divider": "ui/ui_edu_common.json", + "edit_resources_section/resource_label_text": "ui/ui_edu_common.json", + "edit_resources_section/teams_padding_middle": "ui/ui_edu_common.json", + "edit_resources_section/edit_resource_body_button_stack": "ui/ui_edu_common.json", + "edit_resources_section/edit_resource_body_button_stack/resource_button": "ui/ui_edu_common.json", + "edit_resources_section/edit_resource_body_button_stack/padding_middle": "ui/ui_edu_common.json", + "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": "ui/ui_edu_common.json", + "body_content_stack": "ui/ui_edu_common.json", + "body_content_stack/body_text_centering_panel": "ui/ui_edu_common.json", + "body_content_stack/body_text_centering_panel/body_text": "ui/ui_edu_common.json", + "body_content_stack/padding_middle": "ui/ui_edu_common.json", + "body_content_stack/icons": "ui/ui_edu_common.json", + "body_content_stack/copy_link_centering_panel": "ui/ui_edu_common.json", + "body_content_stack/copy_link_centering_panel/copy_link_panel": "ui/ui_edu_common.json", + "body_content_stack/add_resources": "ui/ui_edu_common.json", + "body_content_stack/edit_resources": "ui/ui_edu_common.json", + "teams_simple_body_content_stack": "ui/ui_edu_common.json", + "teams_body_content_stack": "ui/ui_edu_common.json", + "teams_body_resource_content_stack": "ui/ui_edu_common.json", + "joincode_body_content_stack": "ui/ui_edu_common.json", + "add_resource_body_content_stack": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_one_centering_panel": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_padding_middle": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_two_centering_panel": "ui/ui_edu_common.json", + "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": "ui/ui_edu_common.json", + "add_resource_body_content_stack/learn_more_padding_middle": "ui/ui_edu_common.json", + "add_resource_body_content_stack/link1": "ui/ui_edu_common.json", + "add_resource_body_content_stack/url_padding_middle": "ui/ui_edu_common.json", + "add_resource_body_content_stack/url_label": "ui/ui_edu_common.json", + "add_resource_body_content_stack/url_textbox": "ui/ui_edu_common.json", + "add_resource_body_content_stack/inline_notification": "ui/ui_edu_common.json", + "add_resource_body_content_stack/inline_notification_spacer": "ui/ui_edu_common.json", + "add_resource_body_content_stack/button_name_label": "ui/ui_edu_common.json", + "add_resource_body_content_stack/button_middle_spacer": "ui/ui_edu_common.json", + "add_resource_body_content_stack/button_name_textbox": "ui/ui_edu_common.json", + "add_resource_body_content_stack/button_name_textbox_next_disabled": "ui/ui_edu_common.json", + "add_edit_resource_body_content_stack": "ui/ui_edu_common.json", + "add_edit_resource_body_content_stack/scroll_content": "ui/ui_edu_common.json", + "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": "ui/ui_edu_common.json", + "resource_popup_buttons": "ui/ui_edu_common.json", + "resource_popup_buttons/done_button": "ui/ui_edu_common.json", + "resource_popup_buttons/button_padding": "ui/ui_edu_common.json", + "resource_popup_buttons/back_button_panel": "ui/ui_edu_common.json", + "resource_popup_buttons/back_button_panel/back_button_enabled": "ui/ui_edu_common.json", + "resource_popup_buttons/back_button_panel/back_button_disabled": "ui/ui_edu_common.json", + "add_resource_popup_lower_button_panel": "ui/ui_edu_common.json", + "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": "ui/ui_edu_common.json", + "add_resource_popup_lower_button_panel/add_resource_popup_buttons": "ui/ui_edu_common.json", + "share_dialog_body_text": "ui/ui_edu_common.json", + "share_dialog_body_text/tts_border": "ui/ui_edu_common.json", + "share_dialog_body_text/text": "ui/ui_edu_common.json", + "share_icon": "ui/ui_edu_common.json", + "share_label": "ui/ui_edu_common.json", + "share_label/share_image_offset_panel": "ui/ui_edu_common.json", + "share_label/share_image_offset_panel/link_share": "ui/ui_edu_common.json", + "copy_link_stack_panel": "ui/ui_edu_common.json", + "copy_link_stack_panel/link_box": "ui/ui_edu_common.json", + "copy_link_stack_panel/copy_button": "ui/ui_edu_common.json", + "icon_stack_panel": "ui/ui_edu_common.json", + "icon_stack_panel/padding_left": "ui/ui_edu_common.json", + "icon_stack_panel/teams_button": "ui/ui_edu_common.json", + "icon_stack_panel/teams_mail_padding": "ui/ui_edu_common.json", + "icon_stack_panel/mail_button": "ui/ui_edu_common.json", + "icon_stack_panel/mail_classrooms_padding": "ui/ui_edu_common.json", + "icon_stack_panel/classrooms_button": "ui/ui_edu_common.json", + "icon_stack_panel/padding_right": "ui/ui_edu_common.json", + "default_share_button_contents": "ui/ui_edu_common.json", + "default_share_button_contents/background": "ui/ui_edu_common.json", + "default_share_button_contents/image": "ui/ui_edu_common.json", + "default_share_button": "ui/ui_edu_common.json", + "default_share_button/default": "ui/ui_edu_common.json", + "default_share_button/hover": "ui/ui_edu_common.json", + "default_share_button/pressed": "ui/ui_edu_common.json", + "vertical_divider": "ui/ui_edu_common.json", + "vertical_divider/divider": "ui/ui_edu_common.json", + "horizontal_divider": "ui/ui_edu_common.json", + "horizontal_divider/divider": "ui/ui_edu_common.json", + "stack_panel_grid_slot": "ui/ui_edu_common.json", + "stack_panel_grid_slot/stack_panel_grid_item_panel": "ui/ui_edu_common.json", + "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": "ui/ui_edu_common.json", + "stack_panel_grid_row": "ui/ui_edu_common.json", + "stack_panel_grid_row/stack_panel_grid_row_item": "ui/ui_edu_common.json", + "stack_panel_grid_row/stack_panel_grid_row_item/row": "ui/ui_edu_common.json", + "stack_panel_grid_row/divider": "ui/ui_edu_common.json", + "stack_panel_grid_row/divider/line": "ui/ui_edu_common.json", + "stack_panel_grid": "ui/ui_edu_common.json", + "border": "ui/ui_edu_common.json", + "description_panel": "ui/ui_edu_common.json", + "description_panel/border": "ui/ui_edu_common.json", + "description_panel/description": "ui/ui_edu_common.json", + "edu_share_text_popup": "ui/ui_edu_common.json", + "teams_edu_share_text_popup": "ui/ui_edu_common.json", + "teams_edu_share_resource_popup": "ui/ui_edu_common.json", + "teams_edu_simple_share_resource_popup": "ui/ui_edu_common.json", + "joincode_edu_popup": "ui/ui_edu_common.json", + "add_resource_dialog": "ui/ui_edu_common.json", + "share_popup_dialog_factory": "ui/ui_edu_common.json", + "inline_notification": "ui/ui_edu_common.json", + "inline_notification/stack": "ui/ui_edu_common.json", + "inline_notification/stack/icon": "ui/ui_edu_common.json", + "inline_notification/stack/spacer": "ui/ui_edu_common.json", + "inline_notification/stack/warning_text": "ui/ui_edu_common.json", + "search_button_content": "ui/ui_edu_common.json", + "search_bar_and_home_button": "ui/ui_edu_common.json", + "search_bar_and_home_button/search_bar": "ui/ui_edu_common.json", + "search_bar_and_home_button/search_bar/search_bar": "ui/ui_edu_common.json", + "search_bar_and_home_button/search_button": "ui/ui_edu_common.json", + "search_bar_and_home_button/search_pad": "ui/ui_edu_common.json", + "search_bar_and_home_button/home_button": "ui/ui_edu_common.json", + "search_bar_and_home_button/end_pad": "ui/ui_edu_common.json", + "hotbar_hint": "ui/ui_edu_common.json", + "hotbar_hint/inactive_slot_dimmer": "ui/ui_edu_common.json", + "hotbar_hint/bound_key_glyph_background": "ui/ui_edu_common.json", + "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": "ui/ui_edu_common.json", + "view_toggle_content": "ui/ui_edu_common.json", + "view_toggle_content/button_image_templates": "ui/ui_edu_common.json", + "view_toggle_content/button_image_templates/image_color_templates": "ui/ui_edu_common.json", + "view_toggle_content/button_image_worlds": "ui/ui_edu_common.json", + "view_toggle_content/button_label_wrapper": "ui/ui_edu_common.json", + "view_toggle_content/button_label_wrapper/button_label": "ui/ui_edu_common.json", + "view_toggle_content/left_edge_text_padding": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/temp_padding": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": "ui/ui_edu_common.json", + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_popup_dialog_factory": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_popup": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/padding1": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/padding2": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/keep_local_button": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/keep_cloud_button": "ui/ui_edu_common.json", + "edu_cloud_conflict_resolution_content/keep_both_button": "ui/ui_edu_common.json", + "nested_buttons_base_definition": "ui/ui_edu_common.json", + }, + "purchase_common": { + "banner_fill": "ui/ui_purchase_common.json", + "banner_empty": "ui/ui_purchase_common.json", + "screenshots_grid_item": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/screenshot_image": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/progress_loading": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/screenshot_button": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/screenshot_button/hover": "ui/ui_purchase_common.json", + "screenshots_grid_item/frame/screenshot_button/pressed": "ui/ui_purchase_common.json", + "screenshots_grid": "ui/ui_purchase_common.json", + "key_image_frame": "ui/ui_purchase_common.json", + "key_image_frame/zoomed": "ui/ui_purchase_common.json", + "offer_grid_item": "ui/ui_purchase_common.json", + "offer_grid_item/frame": "ui/ui_purchase_common.json", + "offer_grid_item/frame/offer_key_art": "ui/ui_purchase_common.json", + "offer_grid_item/frame/offer_button": "ui/ui_purchase_common.json", + "offer_grid_item/frame/offer_button/hover": "ui/ui_purchase_common.json", + "offer_grid_item/frame/offer_button/pressed": "ui/ui_purchase_common.json", + "offer_grid": "ui/ui_purchase_common.json", + "key_art_and_text": "ui/ui_purchase_common.json", + "key_art_and_text/key_image_panel": "ui/ui_purchase_common.json", + "key_art_and_text/key_image_panel/key_image": "ui/ui_purchase_common.json", + "key_art_and_text/padding": "ui/ui_purchase_common.json", + "key_art_and_text/description_scroll": "ui/ui_purchase_common.json", + "pack_description": "ui/ui_purchase_common.json", + }, + "common_buttons": { + "button_image": "ui/ui_template_buttons.json", + "background_button_image": "ui/ui_template_buttons.json", + "locked_button_image": "ui/ui_template_buttons.json", + "light_button_assets": "ui/ui_template_buttons.json", + "dark_button_assets": "ui/ui_template_buttons.json", + "focus_border": "ui/ui_template_buttons.json", + "new_ui_button_panel": "ui/ui_template_buttons.json", + "new_ui_button_panel/button_content": "ui/ui_template_buttons.json", + "new_ui_button_panel/border": "ui/ui_template_buttons.json", + "new_ui_form_fitting_button_panel": "ui/ui_template_buttons.json", + "new_ui_form_fitting_button_panel/border": "ui/ui_template_buttons.json", + "new_ui_width_fitting_button_panel": "ui/ui_template_buttons.json", + "new_ui_width_fitting_button_panel/border": "ui/ui_template_buttons.json", + "new_ui_height_fitting_button_panel": "ui/ui_template_buttons.json", + "new_ui_height_fitting_button_panel/border": "ui/ui_template_buttons.json", + "borderless_form_fitting_button_panel": "ui/ui_template_buttons.json", + "light_text_button": "ui/ui_template_buttons.json", + "light_text_button/default": "ui/ui_template_buttons.json", + "light_text_button/hover": "ui/ui_template_buttons.json", + "light_text_button/pressed": "ui/ui_template_buttons.json", + "light_text_button/locked": "ui/ui_template_buttons.json", + "dark_text_button": "ui/ui_template_buttons.json", + "dark_text_button/default": "ui/ui_template_buttons.json", + "dark_text_button/hover": "ui/ui_template_buttons.json", + "dark_text_button/pressed": "ui/ui_template_buttons.json", + "dark_text_button/locked": "ui/ui_template_buttons.json", + "new_ui_binding_button_label": "ui/ui_template_buttons.json", + "underline_button": "ui/ui_template_buttons.json", + "underline_button/default": "ui/ui_template_buttons.json", + "underline_button/default/label_default": "ui/ui_template_buttons.json", + "underline_button/hover": "ui/ui_template_buttons.json", + "underline_button/hover/label_hover": "ui/ui_template_buttons.json", + "underline_button/pressed": "ui/ui_template_buttons.json", + "underline_button/pressed/label_hover": "ui/ui_template_buttons.json", + "read_button": "ui/ui_template_buttons.json", + "read_button/read_button_inner": "ui/ui_template_buttons.json", + "light_content_form_fitting_button": "ui/ui_template_buttons.json", + "dark_content_form_fitting_button": "ui/ui_template_buttons.json", + "light_text_form_fitting_button": "ui/ui_template_buttons.json", + "dark_text_form_fitting_button": "ui/ui_template_buttons.json", + "transparent_content_button": "ui/ui_template_buttons.json", + "single_image_with_border_button": "ui/ui_template_buttons.json", + "light_content_button": "ui/ui_template_buttons.json", + "light_content_button/default": "ui/ui_template_buttons.json", + "light_content_button/hover": "ui/ui_template_buttons.json", + "light_content_button/pressed": "ui/ui_template_buttons.json", + "light_content_button/locked": "ui/ui_template_buttons.json", + "light_content_button_control_content": "ui/ui_template_buttons.json", + "light_content_button_control_content/default": "ui/ui_template_buttons.json", + "light_content_button_control_content/hover": "ui/ui_template_buttons.json", + "light_content_button_control_content/pressed": "ui/ui_template_buttons.json", + "light_content_button_control_content/locked": "ui/ui_template_buttons.json", + "deactivated_light_content_button": "ui/ui_template_buttons.json", + "dark_content_button": "ui/ui_template_buttons.json", + "dark_content_button/default": "ui/ui_template_buttons.json", + "dark_content_button/hover": "ui/ui_template_buttons.json", + "dark_content_button/pressed": "ui/ui_template_buttons.json", + "dark_content_button/locked": "ui/ui_template_buttons.json", + "no_background_content_button": "ui/ui_template_buttons.json", + "no_background_content_button/default": "ui/ui_template_buttons.json", + "no_background_content_button/hover": "ui/ui_template_buttons.json", + "no_background_content_button/pressed": "ui/ui_template_buttons.json", + "no_background_content_button/locked": "ui/ui_template_buttons.json", + "button_content_panel": "ui/ui_template_buttons.json", + "button_content_panel/content": "ui/ui_template_buttons.json", + "form_fitting_button_content_panel": "ui/ui_template_buttons.json", + "form_fitting_button_content_panel/content": "ui/ui_template_buttons.json", + "horizontal_form_fitting": "ui/ui_template_buttons.json", + "horizontal_form_fitting/content": "ui/ui_template_buttons.json", + "width_fitting_button_content_panel": "ui/ui_template_buttons.json", + "width_fitting_button_content_panel/content": "ui/ui_template_buttons.json", + "height_fitting_button_content_panel": "ui/ui_template_buttons.json", + "height_fitting_button_content_panel/content": "ui/ui_template_buttons.json", + "light_glyph_button": "ui/ui_template_buttons.json", + "light_glyph_button/default": "ui/ui_template_buttons.json", + "light_glyph_button/hover": "ui/ui_template_buttons.json", + "light_glyph_button/pressed": "ui/ui_template_buttons.json", + "light_glyph_button/locked": "ui/ui_template_buttons.json", + "dark_glyph_button_default": "ui/ui_template_buttons.json", + "dark_glyph_button_hover": "ui/ui_template_buttons.json", + "dark_glyph_button_pressed": "ui/ui_template_buttons.json", + "dark_glyph_button_locked": "ui/ui_template_buttons.json", + "dark_glyph_button": "ui/ui_template_buttons.json", + "dark_glyph_button/default": "ui/ui_template_buttons.json", + "dark_glyph_button/hover": "ui/ui_template_buttons.json", + "dark_glyph_button/pressed": "ui/ui_template_buttons.json", + "dark_glyph_button/locked": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/custom_control": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/default": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/hover": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/pressed": "ui/ui_template_buttons.json", + "dark_glyph_button_with_custom_control/locked": "ui/ui_template_buttons.json", + "glyph_content_panel": "ui/ui_template_buttons.json", + "glyph_content_panel/glyph_button_content": "ui/ui_template_buttons.json", + "hyperlink_button": "ui/ui_template_buttons.json", + "hyperlink_content_button": "ui/ui_template_buttons.json", + "nested_button_assets": "ui/ui_template_buttons.json", + "nested_overlay_assets": "ui/ui_template_buttons.json", + "nested_label_content_background_assets": "ui/ui_template_buttons.json", + "nested_label_background_assets": "ui/ui_template_buttons.json", + "nested_transparent_label_content_background_assets": "ui/ui_template_buttons.json", + "nested_transparent_label_content_background_assets/assets": "ui/ui_template_buttons.json", + "nested_base_label": "ui/ui_template_buttons.json", + "nested_centered_label_control": "ui/ui_template_buttons.json", + "nested_centered_label_control/label": "ui/ui_template_buttons.json", + "nested_label_with_image_control": "ui/ui_template_buttons.json", + "nested_label_with_image_control/image": "ui/ui_template_buttons.json", + "nested_label_with_image_control/image_to_label_padding": "ui/ui_template_buttons.json", + "nested_label_with_image_control/label_panel": "ui/ui_template_buttons.json", + "nested_label_with_image_control/label_panel/label": "ui/ui_template_buttons.json", + "nested_six_part_empty_definition": "ui/ui_template_buttons.json", + "nested_six_part_label_control": "ui/ui_template_buttons.json", + "nested_six_part_label_control/left_top_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/left_middle_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/left_bottom_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/right_top_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/right_middle_label": "ui/ui_template_buttons.json", + "nested_six_part_label_control/right_bottom_label": "ui/ui_template_buttons.json", + "nested_dark_button_assets": "ui/ui_template_buttons.json", + "nested_content_background_assets": "ui/ui_template_buttons.json", + "nested_content_overlay_assets": "ui/ui_template_buttons.json", + "nested_dark_control_with_image": "ui/ui_template_buttons.json", + "nested_dark_control_with_image/background": "ui/ui_template_buttons.json", + "nested_dark_control_with_image/image_panel": "ui/ui_template_buttons.json", + "nested_dark_control_with_image/image_panel/image": "ui/ui_template_buttons.json", + "nestable_button": "ui/ui_template_buttons.json", + "nestable_button/nested_controls_panel": "ui/ui_template_buttons.json", + "nestable_button/nested_controls_panel/locked_overlay": "ui/ui_template_buttons.json", + "nestable_button/nested_controls_panel/nested_controls": "ui/ui_template_buttons.json", + "nestable_button/base_button": "ui/ui_template_buttons.json", + "nestable_button/base_button/default": "ui/ui_template_buttons.json", + "nestable_button/base_button/hover": "ui/ui_template_buttons.json", + "nestable_button/base_button/pressed": "ui/ui_template_buttons.json", + "nestable_button/base_button/locked": "ui/ui_template_buttons.json", + "nested_button_base": "ui/ui_template_buttons.json", + "nested_button_base/button_overlay": "ui/ui_template_buttons.json", + "nested_button_base/button_control": "ui/ui_template_buttons.json", + "nested_button_base/button_control/control_area": "ui/ui_template_buttons.json", + "nested_button_base/button_control/control_area/background": "ui/ui_template_buttons.json", + "nested_button_base/button_control/control_area/control": "ui/ui_template_buttons.json", + "nested_button_base/button_control/control_area/overlay": "ui/ui_template_buttons.json", + "nested_button_base/button_control/button_stack_padding": "ui/ui_template_buttons.json", + "nested_button_base/button_control/label_area": "ui/ui_template_buttons.json", + "nested_button_base/button_control/label_area/background": "ui/ui_template_buttons.json", + "nested_button_base/button_control/label_area/control_background": "ui/ui_template_buttons.json", + "nested_button_base/button_control/label_area/control": "ui/ui_template_buttons.json", + "dark_nestable_button": "ui/ui_template_buttons.json", + "transparent_label_nestable_button": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/default": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/pressed": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/hover": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/locked": "ui/ui_template_buttons.json", + "static_tooltip_notification_panel/static_tooltip_popup_panel": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/default": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/pressed": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/hover": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/locked": "ui/ui_template_buttons.json", + "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button/default": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button/hover": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button/hover/focus_border": "ui/ui_template_buttons.json", + "text_body_focus_border_for_controller_button/text_control": "ui/ui_template_buttons.json", + }, + "common_dialogs": { + "standard_title_label": "ui/ui_template_dialogs.json", + "title_label": "ui/ui_template_dialogs.json", + "title_label/common_dialogs_0": "ui/ui_template_dialogs.json", + "title_label/common_dialogs_1": "ui/ui_template_dialogs.json", + "main_panel_three_buttons": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/common_panel": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/title_label": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/top_button_panel": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/middle_button_panel": "ui/ui_template_dialogs.json", + "main_panel_three_buttons/bottom_button_panel": "ui/ui_template_dialogs.json", + "main_panel_two_buttons": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/common_panel": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/title_label": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/top_button_panel": "ui/ui_template_dialogs.json", + "main_panel_two_buttons/bottom_button_panel": "ui/ui_template_dialogs.json", + "main_panel_one_button": "ui/ui_template_dialogs.json", + "main_panel_one_button/common_panel": "ui/ui_template_dialogs.json", + "main_panel_one_button/title_label": "ui/ui_template_dialogs.json", + "main_panel_one_button/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_one_button/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_one_button/bottom_button_panel": "ui/ui_template_dialogs.json", + "main_panel_no_buttons": "ui/ui_template_dialogs.json", + "main_panel_no_buttons/common_panel": "ui/ui_template_dialogs.json", + "main_panel_no_buttons/title_label": "ui/ui_template_dialogs.json", + "main_panel_no_buttons/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_no_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_no_title_no_buttons": "ui/ui_template_dialogs.json", + "main_panel_no_title_no_buttons/common_panel": "ui/ui_template_dialogs.json", + "main_panel_no_title_no_buttons/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/common_panel": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/title_label": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/panel_indent": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "main_panel_small_title_one_button/bottom_button_panel": "ui/ui_template_dialogs.json", + "main_panel": "ui/ui_template_dialogs.json", + "main_panel/modal_background_image": "ui/ui_template_dialogs.json", + "main_panel/panel_indent": "ui/ui_template_dialogs.json", + "main_panel/panel_indent/inside_header_panel": "ui/ui_template_dialogs.json", + "form_fitting_main_panel_no_buttons": "ui/ui_template_dialogs.json", + "form_fitting_main_panel_no_buttons/common_panel": "ui/ui_template_dialogs.json", + "common_panel": "ui/ui_template_dialogs.json", + "common_panel/bg_image": "ui/ui_template_dialogs.json", + "dialog_background_common": "ui/ui_template_dialogs.json", + "dialog_background_thin": "ui/ui_template_dialogs.json", + "flat_solid_background": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common/control": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common/control/inside_header_panel": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common/control/close_button_holder": "ui/ui_template_dialogs.json", + "dialog_background_hollow_common/control/title_label": "ui/ui_template_dialogs.json", + "common_close_button_holder": "ui/ui_template_dialogs.json", + "common_close_button_holder/close": "ui/ui_template_dialogs.json", + "common_close_button_holder/compact_close": "ui/ui_template_dialogs.json", + "dialog_background_opaque": "ui/ui_template_dialogs.json", + "dialog_background_opaque_with_child": "ui/ui_template_dialogs.json", + "dialog_background_hollow_1": "ui/ui_template_dialogs.json", + "dialog_background_hollow_2": "ui/ui_template_dialogs.json", + "dialog_background_hollow_3": "ui/ui_template_dialogs.json", + "dialog_background_hollow_4": "ui/ui_template_dialogs.json", + "dialog_background_hollow_6": "ui/ui_template_dialogs.json", + "full_screen_background": "ui/ui_template_dialogs.json", + "full_screen_background/background": "ui/ui_template_dialogs.json", + "background_image": "ui/ui_template_dialogs.json", + }, + "common_tabs": { + "empty_tab_content": "ui/ui_template_tabs.json", + "tab_image": "ui/ui_template_tabs.json", + "tab_panel": "ui/ui_template_tabs.json", + "tab_panel/tab_image": "ui/ui_template_tabs.json", + "tab_panel/tab_content_sizer": "ui/ui_template_tabs.json", + "tab_panel/tab_content_sizer/tab_content": "ui/ui_template_tabs.json", + "base_tab": "ui/ui_template_tabs.json", + "tab_top": "ui/ui_template_tabs.json", + "tab_left": "ui/ui_template_tabs.json", + "tab_right": "ui/ui_template_tabs.json", + "pocket_tab_left": "ui/ui_template_tabs.json", + "pocket_tab_right": "ui/ui_template_tabs.json", + "pocket_tab_close_button": "ui/ui_template_tabs.json", + "pocket_tab_close_button/close_button": "ui/ui_template_tabs.json", + "pocket_tab_help_button": "ui/ui_template_tabs.json", + "pocket_tab_help_button/help_button": "ui/ui_template_tabs.json", + "pocket_tab_close_and_help_button": "ui/ui_template_tabs.json", + "pocket_tab_close_and_help_button/close_button": "ui/ui_template_tabs.json", + "pocket_tab_close_and_help_button/help_button": "ui/ui_template_tabs.json", + "tab_close_and_help_button": "ui/ui_template_tabs.json", + "tab_close_and_help_button/close_button": "ui/ui_template_tabs.json", + "tab_close_and_help_button/help_button": "ui/ui_template_tabs.json", + }, + "common_toggles": { + "content_toggle_image_panel": "ui/ui_template_toggles.json", + "content_toggle_image_panel/icon": "ui/ui_template_toggles.json", + "content_toggle_label_panel": "ui/ui_template_toggles.json", + "content_toggle_label_panel/toggle_label": "ui/ui_template_toggles.json", + "content_toggle_icon_panel": "ui/ui_template_toggles.json", + "content_toggle_icon_panel/content_toggle_image": "ui/ui_template_toggles.json", + "toggle_content_panel": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_image_panel": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_image_padding_label": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_label_panel": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_label_padding_toggle_icon": "ui/ui_template_toggles.json", + "toggle_content_panel/toggle_icon": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_image_panel": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_image_padding_label": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_label_panel": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": "ui/ui_template_toggles.json", + "vertical_form_fitting_toggle_content/toggle_icon": "ui/ui_template_toggles.json", + "light_text_toggle": "ui/ui_template_toggles.json", + "light_image_toggle": "ui/ui_template_toggles.json", + "light_content_toggle": "ui/ui_template_toggles.json", + "dark_ui_toggle": "ui/ui_template_toggles.json", + "dark_text_toggle": "ui/ui_template_toggles.json", + "dark_image_toggle": "ui/ui_template_toggles.json", + "dark_content_toggle": "ui/ui_template_toggles.json", + "dark_vertical_template_toggle": "ui/ui_template_toggles.json", + "dark_vertical_form_fitting_content_toggle": "ui/ui_template_toggles.json", + "dark_vertical_form_fitting_content_toggle/dark_content_toggle": "ui/ui_template_toggles.json", + "dark_template_toggle": "ui/ui_template_toggles.json", + "light_template_toggle": "ui/ui_template_toggles.json", + "light_ui_toggle": "ui/ui_template_toggles.json", + "switch_toggle": "ui/ui_template_toggles.json", + "light_text_toggle_collection": "ui/ui_template_toggles.json", + "light_image_toggle_collection": "ui/ui_template_toggles.json", + "dark_text_toggle_collection": "ui/ui_template_toggles.json", + "dark_image_toggle_collection": "ui/ui_template_toggles.json", + "dark_ui_toggle_collection": "ui/ui_template_toggles.json", + "light_ui_toggle_collection": "ui/ui_template_toggles.json", + "switch_toggle_collection": "ui/ui_template_toggles.json", + "toggle_state_panel": "ui/ui_template_toggles.json", + "toggle_state_panel/button_panel": "ui/ui_template_toggles.json", + "toggle_unchecked": "ui/ui_template_toggles.json", + "toggle_checked": "ui/ui_template_toggles.json", + "toggle_unchecked_hover": "ui/ui_template_toggles.json", + "toggle_checked_hover": "ui/ui_template_toggles.json", + "toggle_locked": "ui/ui_template_toggles.json", + "toggle_unchecked_locked": "ui/ui_template_toggles.json", + "toggle_checked_locked": "ui/ui_template_toggles.json", + "toggle_unchecked_hover_with_chevron": "ui/ui_template_toggles.json", + "toggle_checked_hover_with_chevron": "ui/ui_template_toggles.json", + "toggle_image": "ui/ui_template_toggles.json", + "toggle_image/image": "ui/ui_template_toggles.json", + "radio_off_icon": "ui/ui_template_toggles.json", + "radio_off_hover_icon": "ui/ui_template_toggles.json", + "radio_on_icon": "ui/ui_template_toggles.json", + "radio_on_hover_icon": "ui/ui_template_toggles.json", + "check_box_button_toggle_image": "ui/ui_template_toggles.json", + "checkbox_button_checked_state": "ui/ui_template_toggles.json", + "checkbox_button_unchecked_state": "ui/ui_template_toggles.json", + "checkbox_button_checked_hover_state": "ui/ui_template_toggles.json", + "checkbox_button_unchecked_hover_state": "ui/ui_template_toggles.json", + "checkbox_button_checked_locked_state": "ui/ui_template_toggles.json", + "checkbox_button_unchecked_locked_state": "ui/ui_template_toggles.json", + "toggle_checkbox_unchecked": "ui/ui_template_toggles.json", + "toggle_checkbox_checked": "ui/ui_template_toggles.json", + "toggle_checkbox_unchecked_hover": "ui/ui_template_toggles.json", + "toggle_checkbox_checked_hover": "ui/ui_template_toggles.json", + "toggle_checkbox_unchecked_locked": "ui/ui_template_toggles.json", + "toggle_checkbox_checked_locked": "ui/ui_template_toggles.json", + "check_box_button_ui_panel": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image/button_content": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image/border": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image/checkbox_image": "ui/ui_template_toggles.json", + "check_box_button_ui_panel/toggle_image/checkbox_image/image": "ui/ui_template_toggles.json", + "button_and_checkbox_template": "ui/ui_template_toggles.json", + "button_with_checkbox_toggle": "ui/ui_template_toggles.json", + }, + "friendsbutton": { + "friendsdrawer_animated_icon": "ui/ui_friendsbutton.json", + "profilepicture": "ui/ui_friendsbutton.json", + "persona_icon_with_border": "ui/ui_friendsbutton.json", + "persona_icon_with_border/profile_icon": "ui/ui_friendsbutton.json", + "persona_icon_with_border/border_black": "ui/ui_friendsbutton.json", + "friendsdrawer_persona_icons": "ui/ui_friendsbutton.json", + "social_button_stackpanel": "ui/ui_friendsbutton.json", + "social_button_stackpanel/image_panel": "ui/ui_friendsbutton.json", + "social_button_stackpanel/image_panel/social_icon": "ui/ui_friendsbutton.json", + "social_button_hover_stackpanel": "ui/ui_friendsbutton.json", + "self_persona_stackpanel": "ui/ui_friendsbutton.json", + "self_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", + "single_friend_persona_stackpanel": "ui/ui_friendsbutton.json", + "single_friend_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", + "single_friend_persona_stackpanel/friend_one_icon": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/self_icon": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/extra_friends_text_panel": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/extra_friends_text_panel/background": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": "ui/ui_friendsbutton.json", + "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": "ui/ui_friendsbutton.json", + "button": "ui/ui_friendsbutton.json", + "button/default": "ui/ui_friendsbutton.json", + "button/hover": "ui/ui_friendsbutton.json", + "button/pressed": "ui/ui_friendsbutton.json", + "button/locked": "ui/ui_friendsbutton.json", + "social_factory_stackpanel_default": "ui/ui_friendsbutton.json", + "social_factory_stackpanel_hovered": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/social_factory_stackpanel": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/padding_middle": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/vertically_centered_text": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/vertically_centered_text/top_padding": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/vertically_centered_text/profile_button_label": "ui/ui_friendsbutton.json", + "friendsdrawer_button_content/padding_right": "ui/ui_friendsbutton.json", + "friendsdrawer_hover_button_content": "ui/ui_friendsbutton.json", + "friends_drawer_popup": "ui/ui_friendsbutton.json", + }, + "iconbutton": { + "iconbutton_animated_icon": "ui/ui_iconbutton.json", + "button": "ui/ui_iconbutton.json", + "iconbutton_button_content": "ui/ui_iconbutton.json", + "iconbutton_button_content/icon_wrapper": "ui/ui_iconbutton.json", + "iconbutton_button_content/icon_wrapper/icon_with_border": "ui/ui_iconbutton.json", + "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": "ui/ui_iconbutton.json", + "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": "ui/ui_iconbutton.json", + "iconbutton_button_content/padding_middle": "ui/ui_iconbutton.json", + "iconbutton_button_content/vertically_centered_text": "ui/ui_iconbutton.json", + "iconbutton_button_content/vertically_centered_text/top_padding": "ui/ui_iconbutton.json", + "iconbutton_button_content/vertically_centered_text/profile_button_label": "ui/ui_iconbutton.json", + }, + "update_dimensions": { + "update_dimensions_update_and_play_button": "ui/update_dimensions.json", + "update_dimensions_description": "ui/update_dimensions.json", + "update_dimensions_label_panel": "ui/update_dimensions.json", + "make_backup_checkbox": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel/buffer_panel": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": "ui/update_dimensions.json", + "make_backup_checkbox/header_description_stack_panel/another_panel": "ui/update_dimensions.json", + "world_upgrade": "ui/update_dimensions.json", + "update_dimensions_dialog": "ui/update_dimensions.json", + "update_dimensions_dialog/common_panel": "ui/update_dimensions.json", + "update_dimensions_dialog/title_label": "ui/update_dimensions.json", + "update_dimensions_dialog/panel_indent": "ui/update_dimensions.json", + "update_dimensions_dialog/panel_indent/inside_header_panel": "ui/update_dimensions.json", + "update_dimensions_dialog/top_button_panel": "ui/update_dimensions.json", + "update_dimensions_dialog/bottom_button_panel": "ui/update_dimensions.json", + "update_dimensions_dialog/world_upgrade_image": "ui/update_dimensions.json", + "gamepad_helpers": "ui/update_dimensions.json", + "gamepad_helpers/gamepad_helper_a": "ui/update_dimensions.json", + "update_dimensions_screen": "ui/update_dimensions.json", + "update_dimensions_screen_content": "ui/update_dimensions.json", + "update_dimensions_screen_content/update_dimensions_dialog": "ui/update_dimensions.json", + "update_dimensions_screen_content/gamepad_helpers": "ui/update_dimensions.json", + }, + "update_version": { + "update_version_screen": "ui/update_version.json", + "update_version_popup": "ui/update_version.json", + "background": "ui/update_version.json", + "update_version_content": "ui/update_version.json", + "update_version_content/top_of_version_panel": "ui/update_version.json", + "update_version_content/spacer_1px": "ui/update_version.json", + "update_version_content/update_body_text": "ui/update_version.json", + "update_version_content/spacer_1px_2": "ui/update_version.json", + "patch_notes_panel": "ui/update_version.json", + "patch_notes_panel/patch_notes_text": "ui/update_version.json", + "picture_and_patch_notes": "ui/update_version.json", + "picture_and_patch_notes/patch_notes_image_outline": "ui/update_version.json", + "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": "ui/update_version.json", + "picture_and_patch_notes/patch_notes_panel": "ui/update_version.json", + "patch_notes": "ui/update_version.json", + "patch_notes/patch_notes_text": "ui/update_version.json", + "update_body_text": "ui/update_version.json", + "update_button": "ui/update_version.json", + }, + "world_recovery": { + "world_recovery_screen": "ui/world_recovery_screen.json", + "world_recovery_screen_content": "ui/world_recovery_screen.json", + "world_recovery_screen_content/dialog": "ui/world_recovery_screen.json", + "description_panel": "ui/world_recovery_screen.json", + "scrolling_panel": "ui/world_recovery_screen.json", + "description_label": "ui/world_recovery_screen.json", + "button_panel": "ui/world_recovery_screen.json", + "background": "ui/world_recovery_screen.json", + }, + "world_templates": { + "horizontal_padding": "ui/world_templates_screen.json", + "world_icon": "ui/world_templates_screen.json", + "realms_icon": "ui/world_templates_screen.json", + "label_background": "ui/world_templates_screen.json", + "lock_icon": "ui/world_templates_screen.json", + "realms_plus_icon": "ui/world_templates_screen.json", + "new_world_toggle": "ui/world_templates_screen.json", + "new_realm_toggle": "ui/world_templates_screen.json", + "world_button_content": "ui/world_templates_screen.json", + "world_button_content/horizontal_padding_0": "ui/world_templates_screen.json", + "world_button_content/icon_panel": "ui/world_templates_screen.json", + "world_button_content/horizontal_padding_1": "ui/world_templates_screen.json", + "world_button_content/world_button_label_panel": "ui/world_templates_screen.json", + "world_button_content/world_button_label_panel/world_button_label": "ui/world_templates_screen.json", + "world_button_content/horizontal_padding_2": "ui/world_templates_screen.json", + "world_button_label": "ui/world_templates_screen.json", + "common_button_template": "ui/world_templates_screen.json", + "generate_random": "ui/world_templates_screen.json", + "help_button": "ui/world_templates_screen.json", + "grid_button_content_template": "ui/world_templates_screen.json", + "grid_button_content_template/content": "ui/world_templates_screen.json", + "label_content_template": "ui/world_templates_screen.json", + "label_content_template/label_panel": "ui/world_templates_screen.json", + "label_content_template/label_panel/label_panel_layout": "ui/world_templates_screen.json", + "label_content_template/label_panel/label_panel_layout/label": "ui/world_templates_screen.json", + "my_templates_label": "ui/world_templates_screen.json", + "realms_plus_templates_label": "ui/world_templates_screen.json", + "custom_templates_label": "ui/world_templates_screen.json", + "generate_random_button": "ui/world_templates_screen.json", + "realms_templates_info": "ui/world_templates_screen.json", + "realms_templates_info/info_label": "ui/world_templates_screen.json", + "world_list_text": "ui/world_templates_screen.json", + "world_template_screenshot": "ui/world_templates_screen.json", + "world_template_screenshot/picture": "ui/world_templates_screen.json", + "world_template_name": "ui/world_templates_screen.json", + "world_template_description": "ui/world_templates_screen.json", + "world_template_version": "ui/world_templates_screen.json", + "template_download_text": "ui/world_templates_screen.json", + "world_template_text_panel": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/top_side": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/top_side/world_template_name": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/top_side/download_text_label": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side/csb_icon": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side/pad": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side/world_template_description": "ui/world_templates_screen.json", + "world_template_text_panel/text_indent/bottom_side/world_template_version": "ui/world_templates_screen.json", + "csb_banner": "ui/world_templates_screen.json", + "csb_banner/banner": "ui/world_templates_screen.json", + "world_template_content_panel": "ui/world_templates_screen.json", + "world_template_content_panel/world_template_screenshot": "ui/world_templates_screen.json", + "world_template_content_panel/world_template_text_panel": "ui/world_templates_screen.json", + "world_template_content_panel/lock_panel": "ui/world_templates_screen.json", + "world_template_content_panel/lock_panel/lock_icon": "ui/world_templates_screen.json", + "world_template_item_button": "ui/world_templates_screen.json", + "realms_plus_template_item_button": "ui/world_templates_screen.json", + "world_template_item": "ui/world_templates_screen.json", + "world_template_item/world_template_item_button": "ui/world_templates_screen.json", + "realms_plus_template_item": "ui/world_templates_screen.json", + "realms_plus_template_item/realms_plus_template_item_button": "ui/world_templates_screen.json", + "world_template_item_grid": "ui/world_templates_screen.json", + "see_more_templates_button": "ui/world_templates_screen.json", + "suggested_see_more_button": "ui/world_templates_screen.json", + "realms_plus_see_more_button": "ui/world_templates_screen.json", + "world_template_inventory_see_more_button": "ui/world_templates_screen.json", + "custom_world_template_see_more_button": "ui/world_templates_screen.json", + "world_template_section_factory": "ui/world_templates_screen.json", + "suggested_template_section_factory": "ui/world_templates_screen.json", + "realms_plus_template_section_factory": "ui/world_templates_screen.json", + "world_template_inventory_section_factory": "ui/world_templates_screen.json", + "custom_world_template_section_factory": "ui/world_templates_screen.json", + "custom_world_template_item_grid": "ui/world_templates_screen.json", + "no_owned_templates_text_label": "ui/world_templates_screen.json", + "no_owned_templates_text": "ui/world_templates_screen.json", + "no_template_content_owned": "ui/world_templates_screen.json", + "no_template_content_owned/no_template_content_owned_text_panel": "ui/world_templates_screen.json", + "common_scrolling_panel": "ui/world_templates_screen.json", + "common_content": "ui/world_templates_screen.json", + "scrolling_offsets": "ui/world_templates_screen.json", + "template_scroll_content": "ui/world_templates_screen.json", + "template_scroll_content/scrolling_panel": "ui/world_templates_screen.json", + "common_scroll_pane": "ui/world_templates_screen.json", + "template_scroll_panel": "ui/world_templates_screen.json", + "template_scroll_panel/world_template_screen_content_stack_panel": "ui/world_templates_screen.json", + "world_list_grids_stack": "ui/world_templates_screen.json", + "world_list_grids_stack/template_list_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/template_list_panel/my_templates_label_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": "ui/world_templates_screen.json", + "world_list_grids_stack/template_list_panel/template_bottom_padding": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/loading_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": "ui/world_templates_screen.json", + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": "ui/world_templates_screen.json", + "world_list_grids_stack/custom_template_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": "ui/world_templates_screen.json", + "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": "ui/world_templates_screen.json", + "world_list_grids_stack/realms_info_panel": "ui/world_templates_screen.json", + "world_list_grids_stack/realms_info_panel/padding": "ui/world_templates_screen.json", + "world_list_grids_stack/realms_info_panel/realms_templates_info": "ui/world_templates_screen.json", + "world_list_grids_stack/realms_info_panel/open_uri_button": "ui/world_templates_screen.json", + "world_list_grid_content": "ui/world_templates_screen.json", + "world_list_grid_content/world_list_grids_stack": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/padding_0": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/crossplatform_disabled_panel": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/crossplatform_disable_spacer": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/generate_random_panel": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": "ui/world_templates_screen.json", + "world_template_screen_content_stack_panel/world_list_grid_content": "ui/world_templates_screen.json", + "open_account_setting_button": "ui/world_templates_screen.json", + "world_templates_screen": "ui/world_templates_screen.json", + "world_templates_picker_content": "ui/world_templates_screen.json", + "world_templates_picker_content/background": "ui/world_templates_screen.json", + }, + "xbl_console_qr_signin": { + "banner_fill": "ui/xbl_console_qr_signin.json", + "main_panel_qr": "ui/xbl_console_qr_signin.json", + "main_panel_qr/left_panel": "ui/xbl_console_qr_signin.json", + "main_panel_qr/divider": "ui/xbl_console_qr_signin.json", + "main_panel_qr/right_panel": "ui/xbl_console_qr_signin.json", + "main_panel_qr/right_panel/scrolling_panel_sizer": "ui/xbl_console_qr_signin.json", + "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": "ui/xbl_console_qr_signin.json", + "common_scrolling_panel": "ui/xbl_console_qr_signin.json", + "gamepad_helpers": "ui/xbl_console_qr_signin.json", + "gamepad_helpers/gamepad_helper_b": "ui/xbl_console_qr_signin.json", + "xbl_console_qr_signin": "ui/xbl_console_qr_signin.json", + "xbl_console_qr_signin_screen_content": "ui/xbl_console_qr_signin.json", + "xbl_console_qr_signin_screen_content/gamepad_helpers": "ui/xbl_console_qr_signin.json", + "xbl_console_qr_signin_screen_content/dialog": "ui/xbl_console_qr_signin.json", + "dialog": "ui/xbl_console_qr_signin.json", + "scroll_content_focus_border": "ui/xbl_console_qr_signin.json", + "left_panel": "ui/xbl_console_qr_signin.json", + "left_panel/left_header": "ui/xbl_console_qr_signin.json", + "left_panel/padding_1": "ui/xbl_console_qr_signin.json", + "left_panel/left_body": "ui/xbl_console_qr_signin.json", + "left_panel/padding_2": "ui/xbl_console_qr_signin.json", + "left_panel/qr_panel": "ui/xbl_console_qr_signin.json", + "left_panel/qr_panel/qr_border": "ui/xbl_console_qr_signin.json", + "left_panel/qr_panel/qr_code": "ui/xbl_console_qr_signin.json", + "left_panel/qr_panel/bee_overlay": "ui/xbl_console_qr_signin.json", + "input_panel_wrapper": "ui/xbl_console_qr_signin.json", + "input_panel_wrapper/r_scroll_panel": "ui/xbl_console_qr_signin.json", + "right_scroll_panel": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/right_header": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_1": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/website_message_label": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_2": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_1": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_1/banner_1": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_1/banner_1/url_label": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_3": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/code_message_label": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_4": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_2": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_2/banner_2": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/wrapper_panel_2/banner_2/code_label": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_5": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/code_message_body1": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_6": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/code_message_body2": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/padding_7": "ui/xbl_console_qr_signin.json", + "right_scroll_panel/warning_messages": "ui/xbl_console_qr_signin.json", + "ps4_warning_message_panel": "ui/xbl_console_qr_signin.json", + "ps4_warning_message_panel/sign_in_account_message": "ui/xbl_console_qr_signin.json", + "ps4_warning_message_panel/padding_1": "ui/xbl_console_qr_signin.json", + "ps4_warning_message_panel/permanent_linking_message": "ui/xbl_console_qr_signin.json", + }, + "xbl_console_signin": { + "banner_fill": "ui/xbl_console_signin.json", + "main_panel": "ui/xbl_console_signin.json", + "main_panel/padding_0": "ui/xbl_console_signin.json", + "main_panel/message_label_panel": "ui/xbl_console_signin.json", + "main_panel/message_label_panel/message_label": "ui/xbl_console_signin.json", + "main_panel/padding_1": "ui/xbl_console_signin.json", + "main_panel/website_message_label": "ui/xbl_console_signin.json", + "main_panel/banner_1": "ui/xbl_console_signin.json", + "main_panel/banner_1/url_label": "ui/xbl_console_signin.json", + "main_panel/padding_2": "ui/xbl_console_signin.json", + "main_panel/code_message_label": "ui/xbl_console_signin.json", + "main_panel/banner_2": "ui/xbl_console_signin.json", + "main_panel/banner_2/code_label": "ui/xbl_console_signin.json", + "gamepad_helpers": "ui/xbl_console_signin.json", + "gamepad_helpers/gamepad_helper_b": "ui/xbl_console_signin.json", + "xbl_console_signin": "ui/xbl_console_signin.json", + "xbl_console_signin_screen_content": "ui/xbl_console_signin.json", + "xbl_console_signin_screen_content/gamepad_helpers": "ui/xbl_console_signin.json", + "xbl_console_signin_screen_content/dialog": "ui/xbl_console_signin.json", + "dialog": "ui/xbl_console_signin.json", + }, + "xbl_console_signin_succeeded": { + "banner_fill": "ui/xbl_console_signin_succeeded.json", + "gamer_score_icon": "ui/xbl_console_signin_succeeded.json", + "profile_pic": "ui/xbl_console_signin_succeeded.json", + "gamertag_label": "ui/xbl_console_signin_succeeded.json", + "gamer_score_label": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel/gamer_score_icon": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel/padding_0": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel/gamer_score_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_score_panel/gamer_score_panel/gamer_score": "ui/xbl_console_signin_succeeded.json", + "button_panel": "ui/xbl_console_signin_succeeded.json", + "button_panel/play": "ui/xbl_console_signin_succeeded.json", + "text_panel": "ui/xbl_console_signin_succeeded.json", + "text_panel/new_account_text": "ui/xbl_console_signin_succeeded.json", + "third_party_platform_legal_text": "ui/xbl_console_signin_succeeded.json", + "new_account_text_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/picture_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/picture_panel/banner": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/picture_panel/banner/profile_pic": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/padding_1": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel/profile_info_panel": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel/profile_info_panel/padding_0": "ui/xbl_console_signin_succeeded.json", + "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": "ui/xbl_console_signin_succeeded.json", + "main_panel": "ui/xbl_console_signin_succeeded.json", + "main_panel/profile": "ui/xbl_console_signin_succeeded.json", + "main_panel/padding_0": "ui/xbl_console_signin_succeeded.json", + "main_panel/third_party_legal_text_panel": "ui/xbl_console_signin_succeeded.json", + "main_panel/padding_1": "ui/xbl_console_signin_succeeded.json", + "main_panel/new_account_text_panel": "ui/xbl_console_signin_succeeded.json", + "main_panel/padding_2": "ui/xbl_console_signin_succeeded.json", + "main_panel/button_panel": "ui/xbl_console_signin_succeeded.json", + "xbl_console_signin_succeeded": "ui/xbl_console_signin_succeeded.json", + "xbl_console_signin_succeeded_screen_content": "ui/xbl_console_signin_succeeded.json", + "xbl_console_signin_succeeded_screen_content/dialog": "ui/xbl_console_signin_succeeded.json", + "dialog": "ui/xbl_console_signin_succeeded.json", + }, + "xbl_immediate_signin": { + "xbl_immediate_signin_screen": "ui/xbl_immediate_signin.json", + "xbl_immediate_signin_screen_content": "ui/xbl_immediate_signin.json", + "xbl_immediate_signin_screen_content/root_panel": "ui/xbl_immediate_signin.json", + }, + "win10_trial_conversion": { + "padding_horizontal": "ui/win10_trial_conversion_screen.json", + "padding_vertical": "ui/win10_trial_conversion_screen.json", + "padding_vertical_3": "ui/win10_trial_conversion_screen.json", + "background_image": "ui/win10_trial_conversion_screen.json", + "title_image": "ui/win10_trial_conversion_screen.json", + "focus_border": "ui/win10_trial_conversion_screen.json", + "pack_image": "ui/win10_trial_conversion_screen.json", + "pack_image_panel": "ui/win10_trial_conversion_screen.json", + "pack_image_panel/pack_image": "ui/win10_trial_conversion_screen.json", + "title_image_border": "ui/win10_trial_conversion_screen.json", + "title_image_border/image": "ui/win10_trial_conversion_screen.json", + "pack_image_with_border": "ui/win10_trial_conversion_screen.json", + "pack_image_with_border/image": "ui/win10_trial_conversion_screen.json", + "label_panel": "ui/win10_trial_conversion_screen.json", + "button_panel": "ui/win10_trial_conversion_screen.json", + "button_panel/padding_5": "ui/win10_trial_conversion_screen.json", + "button_panel/buy_now_button": "ui/win10_trial_conversion_screen.json", + "button_panel/padding_6": "ui/win10_trial_conversion_screen.json", + "buy_now_button": "ui/win10_trial_conversion_screen.json", + "buy_now_label": "ui/win10_trial_conversion_screen.json", + "buy_now_label/button_label": "ui/win10_trial_conversion_screen.json", + "is_focused": "ui/win10_trial_conversion_screen.json", + "filler_panel": "ui/win10_trial_conversion_screen.json", + "focus_border_button": "ui/win10_trial_conversion_screen.json", + "focus_border_button/default": "ui/win10_trial_conversion_screen.json", + "focus_border_button/hover": "ui/win10_trial_conversion_screen.json", + "focus_border_button/pressed": "ui/win10_trial_conversion_screen.json", + "grid_item": "ui/win10_trial_conversion_screen.json", + "grid_item/padding_1": "ui/win10_trial_conversion_screen.json", + "grid_item/pack_image_pane": "ui/win10_trial_conversion_screen.json", + "grid_item/padding_2": "ui/win10_trial_conversion_screen.json", + "grid_item/pack_panel": "ui/win10_trial_conversion_screen.json", + "grid_item/padding_3": "ui/win10_trial_conversion_screen.json", + "grid_item_vertical": "ui/win10_trial_conversion_screen.json", + "grid_item_vertical/grid_item_horizontal": "ui/win10_trial_conversion_screen.json", + "grid_item_vertical/pack_grid": "ui/win10_trial_conversion_screen.json", + "pack_panel": "ui/win10_trial_conversion_screen.json", + "pack_panel/packtitle": "ui/win10_trial_conversion_screen.json", + "pack_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "pack_panel/packdesc": "ui/win10_trial_conversion_screen.json", + "collection_main_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/title_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/title_image_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/title_image_panel/border_image": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_3": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel/label_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel/label_panel/offer_label": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/offer_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_4": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/button_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_5": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/include_panel": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/include_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/include_panel/include_label": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/padding_6": "ui/win10_trial_conversion_screen.json", + "collection_main_panel/pack_list_grid": "ui/win10_trial_conversion_screen.json", + "background_image_with_border": "ui/win10_trial_conversion_screen.json", + "background_image_with_border/main_panel_no_buttons": "ui/win10_trial_conversion_screen.json", + "win10_trial_conversion_main_panel": "ui/win10_trial_conversion_screen.json", + "win10_trial_conversion_main_panel/scrolling_panel": "ui/win10_trial_conversion_screen.json", + "vertical_main_panel": "ui/win10_trial_conversion_screen.json", + "vertical_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "vertical_main_panel/panel": "ui/win10_trial_conversion_screen.json", + "vertical_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel/padding_1": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel/starter_collection": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel/padding_2": "ui/win10_trial_conversion_screen.json", + "horizontal_main_panel/master_collection": "ui/win10_trial_conversion_screen.json", + "win10_trial_conversion_screen": "ui/win10_trial_conversion_screen.json", + "win10_trial_conversion_panel": "ui/win10_trial_conversion_screen.json", + }, +} \ No newline at end of file diff --git a/test/app.ts b/test/app.ts index 750edc5..618aab1 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1 +1,7 @@ -import { Modify } from ".." +import { Extends, GlobalVariables, Modify } from ".." + +const vanilla = Modify("anvil_pocket", "slots_panel").setProperties({ + ignored: true, +}) + +console.log(vanilla.path) diff --git a/tsconfig.json b/tsconfig.json index a459abe..787cc74 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,10 +3,8 @@ "target": "esnext", "module": "nodenext", "moduleResolution": "nodenext", - "outDir": "dist", "declaration": true, - "sourceMap": false, "strict": true, "esModuleInterop": true, @@ -14,5 +12,5 @@ "tsBuildInfoFile": ".tsbuildinfo" }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules"] }