asajs 3.0.2 → 3.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (286) hide show
  1. package/dist/cjs/compilers/BindingCompiler.js +458 -0
  2. package/dist/cjs/compilers/BindingFunctions.js +267 -0
  3. package/dist/cjs/compilers/Compiler.js +158 -0
  4. package/dist/cjs/compilers/Compress.js +55 -0
  5. package/dist/cjs/compilers/Config.js +138 -0
  6. package/dist/cjs/compilers/Encoder.js +90 -0
  7. package/dist/cjs/compilers/Installer.js +123 -0
  8. package/dist/cjs/compilers/PreCompile.js +86 -0
  9. package/dist/cjs/compilers/generator/GenerateDir.js +51 -0
  10. package/dist/cjs/compilers/generator/JsonBuilder.js +66 -0
  11. package/dist/cjs/compilers/generator/LangBuilder.js +65 -0
  12. package/dist/cjs/compilers/generator/Log.js +45 -0
  13. package/dist/cjs/compilers/generator/Manifest.js +63 -0
  14. package/dist/cjs/compilers/generator/Save.js +87 -0
  15. package/dist/cjs/compilers/generator/SearchFiles.js +70 -0
  16. package/dist/cjs/compilers/generator/Sounds.js +91 -0
  17. package/dist/cjs/compilers/generator/Template.js +54 -0
  18. package/dist/cjs/compilers/generator/UIBuilder.js +123 -0
  19. package/dist/cjs/compilers/reader/Audio.js +81 -0
  20. package/dist/cjs/compilers/reader/Color.js +65 -0
  21. package/dist/cjs/compilers/reader/CurrentLine.js +36 -0
  22. package/dist/cjs/compilers/reader/Env.js +21 -0
  23. package/dist/cjs/compilers/reader/GlobalVariables.js +23 -0
  24. package/dist/cjs/compilers/reader/Object.js +44 -0
  25. package/dist/cjs/compilers/reader/ReadBinding.js +67 -0
  26. package/dist/cjs/compilers/reader/ReadProperties.js +118 -0
  27. package/dist/cjs/components/AddCollectionChill.js +41 -0
  28. package/dist/cjs/components/Animation.js +127 -0
  29. package/dist/cjs/components/AnimationKeyFrame.js +49 -0
  30. package/dist/cjs/components/Class.js +95 -0
  31. package/dist/cjs/components/LocalizeText.js +59 -0
  32. package/dist/cjs/components/Modify.js +377 -0
  33. package/dist/cjs/components/Random.js +104 -0
  34. package/dist/cjs/components/UI.js +387 -0
  35. package/dist/cjs/components/Vanilla.js +57915 -0
  36. package/dist/cjs/index.js +291 -0
  37. package/dist/cjs/package.json +1 -0
  38. package/dist/cjs/template.js +37 -0
  39. package/dist/cjs/types/components/ChildIdentifier.js +16 -0
  40. package/dist/cjs/types/components/Identifier.js +17 -0
  41. package/dist/cjs/types/components/NameCallback.js +16 -0
  42. package/dist/cjs/types/components/UIIdentifier.js +16 -0
  43. package/dist/cjs/types/components/UIInterface.js +16 -0
  44. package/dist/cjs/types/enums/Anchor.js +39 -0
  45. package/dist/cjs/types/enums/AnimTypes.js +39 -0
  46. package/dist/cjs/types/enums/BindingCondition.js +36 -0
  47. package/dist/cjs/types/enums/BindingName.js +4208 -0
  48. package/dist/cjs/types/enums/BindingType.js +35 -0
  49. package/dist/cjs/types/enums/ClipDirecion.js +35 -0
  50. package/dist/cjs/types/enums/Collection.js +202 -0
  51. package/dist/cjs/types/enums/Direction.js +33 -0
  52. package/dist/cjs/types/enums/EasingTypes.js +62 -0
  53. package/dist/cjs/types/enums/EnumColor.js +37 -0
  54. package/dist/cjs/types/enums/FocusNavigationMode.js +34 -0
  55. package/dist/cjs/types/enums/FontSize.js +34 -0
  56. package/dist/cjs/types/enums/FontType.js +35 -0
  57. package/dist/cjs/types/enums/GlobalVariables.js +345 -0
  58. package/dist/cjs/types/enums/InputModeCondition.js +33 -0
  59. package/dist/cjs/types/enums/ItemAuxID.js +31 -0
  60. package/dist/cjs/types/enums/JsonUIArrayName.js +36 -0
  61. package/dist/cjs/types/enums/MappingFrom.js +81 -0
  62. package/dist/cjs/types/enums/MappingTo.js +248 -0
  63. package/dist/cjs/types/enums/MappingTypes.js +34 -0
  64. package/dist/cjs/types/enums/Orientation.js +32 -0
  65. package/dist/cjs/types/enums/Renderer.js +68 -0
  66. package/dist/cjs/types/enums/Rotation.js +33 -0
  67. package/dist/cjs/types/enums/Scope.js +32 -0
  68. package/dist/cjs/types/enums/TextTypes.js +33 -0
  69. package/dist/cjs/types/enums/TextureFileSystem.js +41 -0
  70. package/dist/cjs/types/enums/Types.js +57 -0
  71. package/dist/cjs/types/objects/Animation.js +16 -0
  72. package/dist/cjs/types/objects/BindingHook.js +16 -0
  73. package/dist/cjs/types/objects/BindingInterface.js +16 -0
  74. package/dist/cjs/types/objects/ButtonMapping.js +16 -0
  75. package/dist/cjs/types/objects/Factory.js +16 -0
  76. package/dist/cjs/types/objects/Installer.js +53 -0
  77. package/dist/cjs/types/objects/Manifest.js +56 -0
  78. package/dist/cjs/types/objects/Modify.js +16 -0
  79. package/dist/cjs/types/objects/PropertyBag.js +16 -0
  80. package/dist/cjs/types/objects/Sound.js +16 -0
  81. package/dist/cjs/types/objects/Variables.js +16 -0
  82. package/dist/cjs/types/objects/elements/Button.js +17 -0
  83. package/dist/cjs/types/objects/elements/CollectionPanel.js +17 -0
  84. package/dist/cjs/types/objects/elements/Custom.js +17 -0
  85. package/dist/cjs/types/objects/elements/Dropdown.js +17 -0
  86. package/dist/cjs/types/objects/elements/EditBox.js +17 -0
  87. package/dist/cjs/types/objects/elements/Grid.js +16 -0
  88. package/dist/cjs/types/objects/elements/Image.js +17 -0
  89. package/dist/cjs/types/objects/elements/InputPanel.js +16 -0
  90. package/dist/cjs/types/objects/elements/Label.js +17 -0
  91. package/dist/cjs/types/objects/elements/PropertiesType.js +17 -0
  92. package/dist/cjs/types/objects/elements/Screen.js +17 -0
  93. package/dist/cjs/types/objects/elements/ScrollView.js +17 -0
  94. package/dist/cjs/types/objects/elements/ScrollbarBox.js +17 -0
  95. package/dist/cjs/types/objects/elements/ScrollbarTrack.js +17 -0
  96. package/dist/cjs/types/objects/elements/SelectionWheel.js +17 -0
  97. package/dist/cjs/types/objects/elements/Slider.js +17 -0
  98. package/dist/cjs/types/objects/elements/SliderBox.js +17 -0
  99. package/dist/cjs/types/objects/elements/StackPanel.js +16 -0
  100. package/dist/cjs/types/objects/elements/Toggle.js +17 -0
  101. package/dist/cjs/types/objects/elements/TooltipTrigger.js +16 -0
  102. package/dist/cjs/types/objects/elements/panel.js +16 -0
  103. package/dist/cjs/types/objects/properties/Buttons.js +16 -0
  104. package/dist/cjs/types/objects/properties/CollectionIndexs.js +16 -0
  105. package/dist/cjs/types/objects/properties/Collections.js +16 -0
  106. package/dist/cjs/types/objects/properties/Controls.js +16 -0
  107. package/dist/cjs/types/objects/properties/Dropdowns.js +16 -0
  108. package/dist/cjs/types/objects/properties/Focus.js +16 -0
  109. package/dist/cjs/types/objects/properties/FocusContainerCustom.js +16 -0
  110. package/dist/cjs/types/objects/properties/Grids.js +16 -0
  111. package/dist/cjs/types/objects/properties/Inputs.js +16 -0
  112. package/dist/cjs/types/objects/properties/Layouts.js +16 -0
  113. package/dist/cjs/types/objects/properties/Properties.js +16 -0
  114. package/dist/cjs/types/objects/properties/Renderers.js +16 -0
  115. package/dist/cjs/types/objects/properties/Screens.js +16 -0
  116. package/dist/cjs/types/objects/properties/ScrollViews.js +16 -0
  117. package/dist/cjs/types/objects/properties/SelectionWheels.js +16 -0
  118. package/dist/cjs/types/objects/properties/SliderBoxs.js +16 -0
  119. package/dist/cjs/types/objects/properties/Sliders.js +16 -0
  120. package/dist/cjs/types/objects/properties/Sounds.js +16 -0
  121. package/dist/cjs/types/objects/properties/Specials.js +16 -0
  122. package/dist/cjs/types/objects/properties/Sprites.js +16 -0
  123. package/dist/cjs/types/objects/properties/StackPanels.js +16 -0
  124. package/dist/cjs/types/objects/properties/TTS.js +16 -0
  125. package/dist/cjs/types/objects/properties/TextEdits.js +16 -0
  126. package/dist/cjs/types/objects/properties/Texts.js +16 -0
  127. package/dist/cjs/types/objects/properties/Toggles.js +16 -0
  128. package/dist/cjs/types/objects/properties/TooltipTriggers.js +16 -0
  129. package/dist/cjs/types/objects/properties/Variables.js +16 -0
  130. package/dist/cjs/types/values/Any.js +16 -0
  131. package/dist/cjs/types/values/Binding.js +16 -0
  132. package/dist/cjs/types/values/Bool.js +16 -0
  133. package/dist/cjs/types/values/ColorVector.js +16 -0
  134. package/dist/cjs/types/values/ElementPath.js +16 -0
  135. package/dist/cjs/types/values/Hex.js +16 -0
  136. package/dist/cjs/types/values/Number.js +16 -0
  137. package/dist/cjs/types/values/RangeVector.js +16 -0
  138. package/dist/cjs/types/values/Str.js +16 -0
  139. package/dist/cjs/types/values/StringVector.js +16 -0
  140. package/dist/cjs/types/values/TargetElementPath.js +16 -0
  141. package/dist/cjs/types/values/Variable.js +16 -0
  142. package/dist/cjs/types/values/Vector.js +16 -0
  143. package/dist/esm/index.js +68470 -0
  144. package/dist/esm/package.json +1 -0
  145. package/dist/types/compilers/BindingCompiler.d.ts +44 -0
  146. package/dist/types/compilers/BindingFunctions.d.ts +10 -0
  147. package/dist/types/compilers/Compiler.d.ts +3 -0
  148. package/dist/types/compilers/Compress.d.ts +1 -0
  149. package/dist/types/compilers/Config.d.ts +95 -0
  150. package/dist/types/compilers/Encoder.d.ts +11 -0
  151. package/dist/types/compilers/Installer.d.ts +14 -0
  152. package/dist/types/compilers/PreCompile.d.ts +4 -0
  153. package/dist/types/compilers/generator/GenerateDir.d.ts +1 -0
  154. package/dist/types/compilers/generator/JsonBuilder.d.ts +28 -0
  155. package/dist/types/compilers/generator/LangBuilder.d.ts +4 -0
  156. package/dist/types/compilers/generator/Log.d.ts +9 -0
  157. package/dist/types/compilers/generator/Manifest.d.ts +21 -0
  158. package/dist/types/compilers/generator/Save.d.ts +16 -0
  159. package/dist/types/compilers/generator/SearchFiles.d.ts +11 -0
  160. package/dist/types/compilers/generator/Sounds.d.ts +5 -0
  161. package/dist/types/compilers/generator/Template.d.ts +1 -0
  162. package/dist/types/compilers/generator/UIBuilder.d.ts +9 -0
  163. package/dist/types/compilers/reader/Audio.d.ts +1 -0
  164. package/dist/types/compilers/reader/Color.d.ts +5 -0
  165. package/dist/types/compilers/reader/CurrentLine.d.ts +1 -0
  166. package/dist/types/compilers/reader/Env.d.ts +1 -0
  167. package/dist/types/compilers/reader/GlobalVariables.d.ts +1 -0
  168. package/dist/types/compilers/reader/Object.d.ts +11 -0
  169. package/dist/types/compilers/reader/ReadBinding.d.ts +6 -0
  170. package/dist/types/compilers/reader/ReadProperties.d.ts +3 -0
  171. package/dist/types/components/AddCollectionChill.d.ts +6 -0
  172. package/dist/types/components/Animation.d.ts +15 -0
  173. package/dist/types/components/AnimationKeyFrame.d.ts +10 -0
  174. package/dist/types/components/Class.d.ts +68 -0
  175. package/dist/types/components/LocalizeText.d.ts +21 -0
  176. package/dist/types/components/Modify.d.ts +30 -0
  177. package/dist/types/components/Random.d.ts +20 -0
  178. package/dist/types/components/UI.d.ts +89 -0
  179. package/dist/types/components/Vanilla.d.ts +19729 -0
  180. package/dist/types/index.d.ts +136 -0
  181. package/dist/types/template.d.ts +4 -0
  182. package/dist/types/types/components/ChildIdentifier.d.ts +11 -0
  183. package/dist/types/types/components/Identifier.d.ts +4 -0
  184. package/dist/types/types/components/NameCallback.d.ts +3 -0
  185. package/dist/types/types/components/UIIdentifier.d.ts +4 -0
  186. package/dist/types/types/components/UIInterface.d.ts +16 -0
  187. package/dist/types/types/enums/Anchor.d.ts +11 -0
  188. package/dist/types/types/enums/AnimTypes.d.ts +11 -0
  189. package/dist/types/types/enums/BindingCondition.d.ts +8 -0
  190. package/dist/types/types/enums/BindingName.d.ts +4180 -0
  191. package/dist/types/types/enums/BindingType.d.ts +7 -0
  192. package/dist/types/types/enums/ClipDirecion.d.ts +7 -0
  193. package/dist/types/types/enums/Collection.d.ts +174 -0
  194. package/dist/types/types/enums/Direction.d.ts +5 -0
  195. package/dist/types/types/enums/EasingTypes.d.ts +34 -0
  196. package/dist/types/types/enums/EnumColor.d.ts +9 -0
  197. package/dist/types/types/enums/FocusNavigationMode.d.ts +6 -0
  198. package/dist/types/types/enums/FontSize.d.ts +6 -0
  199. package/dist/types/types/enums/FontType.d.ts +7 -0
  200. package/dist/types/types/enums/GlobalVariables.d.ts +317 -0
  201. package/dist/types/types/enums/InputModeCondition.d.ts +5 -0
  202. package/dist/types/types/enums/ItemAuxID.d.ts +3 -0
  203. package/dist/types/types/enums/JsonUIArrayName.d.ts +7 -0
  204. package/dist/types/types/enums/MappingFrom.d.ts +53 -0
  205. package/dist/types/types/enums/MappingTo.d.ts +220 -0
  206. package/dist/types/types/enums/MappingTypes.d.ts +6 -0
  207. package/dist/types/types/enums/Orientation.d.ts +4 -0
  208. package/dist/types/types/enums/Renderer.d.ts +40 -0
  209. package/dist/types/types/enums/Rotation.d.ts +5 -0
  210. package/dist/types/types/enums/Scope.d.ts +4 -0
  211. package/dist/types/types/enums/TextTypes.d.ts +5 -0
  212. package/dist/types/types/enums/TextureFileSystem.d.ts +13 -0
  213. package/dist/types/types/enums/Types.d.ts +29 -0
  214. package/dist/types/types/objects/Animation.d.ts +36 -0
  215. package/dist/types/types/objects/BindingHook.d.ts +1 -0
  216. package/dist/types/types/objects/BindingInterface.d.ts +21 -0
  217. package/dist/types/types/objects/ButtonMapping.d.ts +18 -0
  218. package/dist/types/types/objects/Factory.d.ts +2 -0
  219. package/dist/types/types/objects/Installer.d.ts +26 -0
  220. package/dist/types/types/objects/Manifest.d.ts +74 -0
  221. package/dist/types/types/objects/Modify.d.ts +52 -0
  222. package/dist/types/types/objects/PropertyBag.d.ts +2 -0
  223. package/dist/types/types/objects/Sound.d.ts +8 -0
  224. package/dist/types/types/objects/Variables.d.ts +1 -0
  225. package/dist/types/types/objects/elements/Button.d.ts +4 -0
  226. package/dist/types/types/objects/elements/CollectionPanel.d.ts +4 -0
  227. package/dist/types/types/objects/elements/Custom.d.ts +5 -0
  228. package/dist/types/types/objects/elements/Dropdown.d.ts +4 -0
  229. package/dist/types/types/objects/elements/EditBox.d.ts +4 -0
  230. package/dist/types/types/objects/elements/Grid.d.ts +4 -0
  231. package/dist/types/types/objects/elements/Image.d.ts +4 -0
  232. package/dist/types/types/objects/elements/InputPanel.d.ts +7 -0
  233. package/dist/types/types/objects/elements/Label.d.ts +4 -0
  234. package/dist/types/types/objects/elements/PropertiesType.d.ts +45 -0
  235. package/dist/types/types/objects/elements/Screen.d.ts +4 -0
  236. package/dist/types/types/objects/elements/ScrollView.d.ts +5 -0
  237. package/dist/types/types/objects/elements/ScrollbarBox.d.ts +4 -0
  238. package/dist/types/types/objects/elements/ScrollbarTrack.d.ts +4 -0
  239. package/dist/types/types/objects/elements/SelectionWheel.d.ts +4 -0
  240. package/dist/types/types/objects/elements/Slider.d.ts +4 -0
  241. package/dist/types/types/objects/elements/SliderBox.d.ts +5 -0
  242. package/dist/types/types/objects/elements/StackPanel.d.ts +7 -0
  243. package/dist/types/types/objects/elements/Toggle.d.ts +4 -0
  244. package/dist/types/types/objects/elements/TooltipTrigger.d.ts +8 -0
  245. package/dist/types/types/objects/elements/panel.d.ts +6 -0
  246. package/dist/types/types/objects/properties/Buttons.d.ts +5 -0
  247. package/dist/types/types/objects/properties/CollectionIndexs.d.ts +4 -0
  248. package/dist/types/types/objects/properties/Collections.d.ts +6 -0
  249. package/dist/types/types/objects/properties/Controls.d.ts +27 -0
  250. package/dist/types/types/objects/properties/Dropdowns.d.ts +6 -0
  251. package/dist/types/types/objects/properties/Focus.d.ts +28 -0
  252. package/dist/types/types/objects/properties/FocusContainerCustom.d.ts +5 -0
  253. package/dist/types/types/objects/properties/Grids.d.ts +15 -0
  254. package/dist/types/types/objects/properties/Inputs.d.ts +13 -0
  255. package/dist/types/types/objects/properties/Layouts.d.ts +35 -0
  256. package/dist/types/types/objects/properties/Properties.d.ts +27 -0
  257. package/dist/types/types/objects/properties/Renderers.d.ts +5 -0
  258. package/dist/types/types/objects/properties/Screens.d.ts +23 -0
  259. package/dist/types/types/objects/properties/ScrollViews.d.ts +17 -0
  260. package/dist/types/types/objects/properties/SelectionWheels.d.ts +13 -0
  261. package/dist/types/types/objects/properties/SliderBoxs.d.ts +6 -0
  262. package/dist/types/types/objects/properties/Sliders.d.ts +23 -0
  263. package/dist/types/types/objects/properties/Sounds.d.ts +10 -0
  264. package/dist/types/types/objects/properties/Specials.d.ts +60 -0
  265. package/dist/types/types/objects/properties/Sprites.d.ts +33 -0
  266. package/dist/types/types/objects/properties/StackPanels.d.ts +5 -0
  267. package/dist/types/types/objects/properties/TTS.d.ts +24 -0
  268. package/dist/types/types/objects/properties/TextEdits.d.ts +19 -0
  269. package/dist/types/types/objects/properties/Texts.d.ts +26 -0
  270. package/dist/types/types/objects/properties/Toggles.d.ts +24 -0
  271. package/dist/types/types/objects/properties/TooltipTriggers.d.ts +7 -0
  272. package/dist/types/types/objects/properties/Variables.d.ts +3 -0
  273. package/dist/types/types/values/Any.d.ts +4 -0
  274. package/dist/types/types/values/Binding.d.ts +2 -0
  275. package/dist/types/types/values/Bool.d.ts +2 -0
  276. package/dist/types/types/values/ColorVector.d.ts +6 -0
  277. package/dist/types/types/values/ElementPath.d.ts +2 -0
  278. package/dist/types/types/values/Hex.d.ts +1 -0
  279. package/dist/types/types/values/Number.d.ts +4 -0
  280. package/dist/types/types/values/RangeVector.d.ts +5 -0
  281. package/dist/types/types/values/Str.d.ts +2 -0
  282. package/dist/types/types/values/StringVector.d.ts +6 -0
  283. package/dist/types/types/values/TargetElementPath.d.ts +1 -0
  284. package/dist/types/types/values/Variable.d.ts +1 -0
  285. package/dist/types/types/values/Vector.d.ts +5 -0
  286. package/package.json +4 -4
@@ -0,0 +1,4180 @@
1
+ export declare enum BindingName {
2
+ "PlayButtonEnabled" = "#play_button_enabled",
3
+ "Enabled" = "#enabled",
4
+ "PlayButtonDisabled" = "#play_button_disabled",
5
+ "Visible" = "#visible",
6
+ "SaveButtonEnabled" = "#save_button_enabled",
7
+ "SaveButtonDisabled" = "#save_button_disabled",
8
+ "TitleText" = "#title_text",
9
+ "NameTextBox" = "#name_text_box",
10
+ "NameTextBoxContent" = "#name_text_box_content",
11
+ "IpTextBox" = "#ip_text_box",
12
+ "IpTextBoxContent" = "#ip_text_box_content",
13
+ "PortTextBox" = "#port_text_box",
14
+ "PortTextBoxContent" = "#port_text_box_content",
15
+ "AdhocTitle" = "#adhoc_title",
16
+ "Region" = "#region",
17
+ "Endregion" = "#endregion",
18
+ "PropertyField" = "#property_field",
19
+ "ItemName" = "#item_name",
20
+ "TextBoxItemName" = "#text_box_item_name",
21
+ "CrossOutIcon" = "#cross_out_icon",
22
+ "Text" = "#text",
23
+ "CostText" = "#cost_text",
24
+ "CostTextRed" = "#cost_text_red",
25
+ "CostTextGreen" = "#cost_text_green",
26
+ "BodyText" = "#body_text",
27
+ "LeftButtonText" = "#left_button_text",
28
+ "RightButtonText" = "#right_button_text",
29
+ "None" = "#none",
30
+ "TtsEnabled" = "#tts_enabled",
31
+ "SignInButtonText" = "#sign_in_button_text",
32
+ "SignInButtonVisible" = "#sign_in_button_visible",
33
+ "AuthenticationMessage" = "#authentication_message",
34
+ "Hyperlink" = "#hyperlink",
35
+ "AgreeTermsAndConditions" = "#agree_terms_and_conditions",
36
+ "ConfirmButtonEnabled" = "#confirm_button_enabled",
37
+ "EduStorePurchaseInfo" = "#edu_store_purchase_info",
38
+ "EduStorePurchaseButtonText" = "#edu_store_purchase_button_text",
39
+ "AskingToBuyVisible" = "#asking_to_buy_visible",
40
+ "ConfirmingPurchaseVisible" = "#confirming_purchase_visible",
41
+ "SignInErrorVisible" = "#sign_in_error_visible",
42
+ "SignInErrorClientVisible" = "#sign_in_error_client_visible",
43
+ "SignInModalTitle" = "#sign_in_modal_title",
44
+ "SignInVisible" = "#sign_in_visible",
45
+ "SignInIosVisible" = "#sign_in_ios_visible",
46
+ "PackProgressVisible" = "#pack_progress_visible",
47
+ "WelcomeVisible" = "#welcome_visible",
48
+ "DemoVisible" = "#demo_visible",
49
+ "EulaVisible" = "#eula_visible",
50
+ "EduStoreVisible" = "#edu_store_visible",
51
+ "PopupTitle" = "#popup_title",
52
+ "PopupText" = "#popup_text",
53
+ "PopupMessageStudentText" = "#popup_message_student_text",
54
+ "PopupMessageStudentVisible" = "#popup_message_student_visible",
55
+ "HyperlinkPromptText" = "#hyperlink_prompt_text",
56
+ "GenericPopupLinkVisible" = "#generic_popup_link_visible",
57
+ "TrialPurchaseLinkVisible" = "#trial_purchase_link_visible",
58
+ "ShowPopupDismissButton" = "#show_popup_dismiss_button",
59
+ "LoadingText" = "#loading_text",
60
+ "SkipVisible" = "#skip_visible",
61
+ "SignInIosButtonsVisible" = "#sign_in_ios_buttons_visible",
62
+ "DebugJsonPopupEnabled" = "#debug_json_popup_enabled",
63
+ "DebugToggleIosText" = "#debug_toggle_ios_text",
64
+ "Popup_" = "#popup_",
65
+ "PopupHasTwoButtons" = "#popup_has_two_buttons",
66
+ "AutoSaveAnimationVisible" = "#auto_save_animation_visible",
67
+ "TtsDialogBody" = "#tts_dialog_body",
68
+ "ItemIdAux" = "#item_id_aux",
69
+ "SupportsNetherite" = "#supports_netherite",
70
+ "ButtonVisible" = "#button_visible",
71
+ "ButtonHover" = "#button_hover",
72
+ "HoverText" = "#hover_text",
73
+ "Selected" = "#selected",
74
+ "ToggleState" = "#toggle_state",
75
+ "Active" = "#active",
76
+ "Inactive" = "#inactive",
77
+ "ExtraImageSelection" = "#extra_image_selection",
78
+ "GamepadHelperVisible" = "#gamepad_helper_visible",
79
+ "ScreenshotPath" = "#screenshot_path",
80
+ "Texture" = "#texture",
81
+ "ItemScreenshotPath" = "#item_screenshot_path",
82
+ "InventoryScreenshotPath" = "#inventory_screenshot_path",
83
+ "Editable" = "#editable",
84
+ "FinalizeButtonEnabled" = "#finalize_button_enabled",
85
+ "PageTextBox" = "#page_text_box",
86
+ "IsTextPage" = "#is_text_page",
87
+ "PageNumber" = "#page_number",
88
+ "SwapLeftActive" = "#swap_left_active",
89
+ "InsertPageActive" = "#insert_page_active",
90
+ "InsertPhotoPageActive" = "#insert_photo_page_active",
91
+ "EditControlsActive" = "#edit_controls_active",
92
+ "SwapRightActive" = "#swap_right_active",
93
+ "IsPhotoPage" = "#is_photo_page",
94
+ "EditButtonActive" = "#edit_button_active",
95
+ "PageVisible" = "#page_visible",
96
+ "TitleTextBox" = "#title_text_box",
97
+ "TitleTextBoxItemName" = "#title_text_box_item_name",
98
+ "AuthorTextBox" = "#author_text_box",
99
+ "AuthorEditable" = "#author_editable",
100
+ "AuthorTextBoxItemName" = "#author_text_box_item_name",
101
+ "PrevPageButtonActive" = "#prev_page_button_active",
102
+ "NextPageButtonActive" = "#next_page_button_active",
103
+ "Viewing" = "#viewing",
104
+ "Signing" = "#signing",
105
+ "Picking" = "#picking",
106
+ "Exporting" = "#exporting",
107
+ "EmptyBottleImageVisible" = "#empty_bottle_image_visible",
108
+ "EmptyFuelImageVisible" = "#empty_fuel_image_visible",
109
+ "BrewingBubblesRatio" = "#brewing_bubbles_ratio",
110
+ "ClipRatio" = "#clip_ratio",
111
+ "BrewingArrowRatio" = "#brewing_arrow_ratio",
112
+ "BrewingFuelRatio" = "#brewing_fuel_ratio",
113
+ "BannerVisible" = "#banner_visible",
114
+ "IsUsingGamepad" = "#is_using_gamepad",
115
+ "FocusOverrideUp" = "#focus_override_up",
116
+ "FocusChangeUp" = "#focus_change_up",
117
+ "FocusOverrideDown" = "#focus_override_down",
118
+ "FocusChangeDown" = "#focus_change_down",
119
+ "FocusIdOverride" = "#focus_id_override",
120
+ "FocusIdentifier" = "#focus_identifier",
121
+ "KeyartPath" = "#keyart_path",
122
+ "KeyartTextureFileSystem" = "#keyart_texture_file_system",
123
+ "TextureFileSystem" = "#texture_file_system",
124
+ "OfferTitle" = "#offer_title",
125
+ "OwnedGridDimension" = "#owned_grid_dimension",
126
+ "UnownedGridDimension" = "#unowned_grid_dimension",
127
+ "BundlePurchaseConfirm" = "#bundle_purchase_confirm",
128
+ "BundlePurchaseWarningTitle" = "#bundle_purchase_warning_title",
129
+ "TextBoxPlaceholderName" = "#text_box_placeholder_name",
130
+ "IsNoneMode" = "#is_none_mode",
131
+ "IsCloneMode" = "#is_clone_mode",
132
+ "IsRenameMode" = "#is_rename_mode",
133
+ "IsBasicMapMode" = "#is_basic_map_mode",
134
+ "IsLocatorMapMode" = "#is_locator_map_mode",
135
+ "IsExtendMode" = "#is_extend_mode",
136
+ "IsLockedMode" = "#is_locked_mode",
137
+ "OutputDescription" = "#output_description",
138
+ "CollectionName" = "#collection_name",
139
+ "CollectionIndex" = "#collection_index",
140
+ "IsRightTabCartography" = "#is_right_tab_cartography",
141
+ "IsLeftTabInventory" = "#is_left_tab_inventory",
142
+ "Locked" = "#locked",
143
+ "LockVisible" = "#lock_visible",
144
+ "LockLabelText" = "#lock_label_text",
145
+ "KeyboardBeingUsed" = "#keyboard_being_used",
146
+ "KeyboardButtonFocusOverrideUp" = "#keyboard_button_focus_override_up",
147
+ "KeyboardButtonFocusOverrideDown" = "#keyboard_button_focus_override_down",
148
+ "KeyboardButtonVisible" = "#keyboard_button_visible",
149
+ "SendButtonAccessibilityText" = "#send_button_accessibility_text",
150
+ "SendButtonVisible" = "#send_button_visible",
151
+ "TextTts" = "#text_tts",
152
+ "ChatVisible" = "#chat_visible",
153
+ "HostOptionsMenuNotOpenAndTtsEnabled" = "#host_options_menu_not_open_and_tts_enabled",
154
+ "MessageTextBox" = "#message_text_box",
155
+ "MessageTextBoxContent" = "#message_text_box_content",
156
+ "TextEditBoxFocusOverrideUp" = "#text_edit_box_focus_override_up",
157
+ "TextEditBoxFocusOverrideDown" = "#text_edit_box_focus_override_down",
158
+ "AutoCompleteItem" = "#auto_complete_item",
159
+ "AutoCompleteText" = "#auto_complete_text",
160
+ "IsAutocompleteSuggestion" = "#is_autocomplete_suggestion",
161
+ "GetGridSize" = "#get_grid_size",
162
+ "ChatTitleText" = "#chat_title_text",
163
+ "BackButtonText" = "#back_button_text",
164
+ "BackButtonAccessibilityText" = "#back_button_accessibility_text",
165
+ "CoordinateTypePosition" = "#coordinate_type_position",
166
+ "CoordinateTypeFacing" = "#coordinate_type_facing",
167
+ "ChatCoordinateDropdownLabel" = "#chat_coordinate_dropdown_label",
168
+ "CopyButtonEnabled" = "#copy_button_enabled",
169
+ "ChatTitleVisible" = "#chat_title_visible",
170
+ "ChatCoordinateDropdownVisible" = "#chat_coordinate_dropdown_visible",
171
+ "CoordinatesText" = "#coordinates_text",
172
+ "HideChat" = "#hide_chat",
173
+ "ToggleEmoteChat" = "#toggle_emote_chat",
174
+ "ToggleTts" = "#toggle_tts",
175
+ "TypefaceRadioMojangles" = "#typeface_radio_mojangles",
176
+ "TypefaceRadioNotoSans" = "#typeface_radio_notoSans",
177
+ "ChatTypefaceDropdownEnabled" = "#chat_typeface_dropdown_enabled",
178
+ "ChatTypefaceDropdownLabel" = "#chat_typeface_dropdown_label",
179
+ "ChatTypefaceVisible" = "#chat_typeface_visible",
180
+ "ChatFontType" = "#chat_font_type",
181
+ "FontType" = "#font_type",
182
+ "FontColor" = "#font_color",
183
+ "FontColorLabel" = "#font_color_label",
184
+ "Color" = "#color",
185
+ "ChatToggleColor" = "#chat_toggle_color",
186
+ "MentionsToggleColor" = "#mentions_toggle_color",
187
+ "ChatFontSizeCustomLabel" = "#chat_font_size_custom_label",
188
+ "ChatFontSize" = "#chat_font_size",
189
+ "ChatFontSizeEnabled" = "#chat_font_size_enabled",
190
+ "ChatFontSizeSteps" = "#chat_font_size_steps",
191
+ "ChatFontSizeTextValue" = "#chat_font_size_text_value",
192
+ "ChatLineSpacingSliderLabel" = "#chat_line_spacing_slider_label",
193
+ "ChatLineSpacing" = "#chat_line_spacing",
194
+ "ChatLineSpacingEnabled" = "#chat_line_spacing_enabled",
195
+ "ChatLineSpacingTextValue" = "#chat_line_spacing_text_value",
196
+ "Slot" = "#slot",
197
+ "RealmsGridDimension" = "#realms_grid_dimension",
198
+ "WorldButtonFocusIdentifier" = "#world_button_focus_identifier",
199
+ "TenPlayerButtonVisible" = "#ten_player_button_visible",
200
+ "TwoPlayerButtonVisible" = "#two_player_button_visible",
201
+ "RealmsWorldHeader" = "#realms_world_header",
202
+ "RealmsWorldPlayerCount" = "#realms_world_player_count",
203
+ "RealmsGameOnline" = "#realms_game_online",
204
+ "RealmsGameUnavailable" = "#realms_game_unavailable",
205
+ "RealmsGameOffline" = "#realms_game_offline",
206
+ "ProgressLoadingVisible" = "#progress_loading_visible",
207
+ "RealmSlotIsFilled" = "#realm_slot_is_filled",
208
+ "SlotWorldImage" = "#slot_world_image",
209
+ "SlotWorldTextureSource" = "#slot_world_texture_source",
210
+ "SlotName" = "#slot_name",
211
+ "WindowTitleText" = "#window_title_text",
212
+ "SlotsViewToggle" = "#slots_view_toggle",
213
+ "SlotDialogHeader" = "#slot_dialog_header",
214
+ "UploadInProgress" = "#upload_in_progress",
215
+ "UploadButtonText" = "#upload_button_text",
216
+ "CloudUploadTermsAccepted" = "#cloud_upload_terms_accepted",
217
+ "UploadFailedDescription" = "#upload_failed_description",
218
+ "UploadFailedRetryableDescription" = "#upload_failed_retryable_description",
219
+ "CoinsWithoutBonus" = "#coins_without_bonus",
220
+ "AccessibilityCoinsWithoutBonus" = "#accessibility_coins_without_bonus",
221
+ "CallOutColor" = "#call_out_color",
222
+ "CallOutBannerColor" = "#call_out_banner_color",
223
+ "CallOutText" = "#call_out_text",
224
+ "CoinOfferTextureName" = "#coin_offer_texture_name",
225
+ "CoinOfferTextureFileSystem" = "#coin_offer_texture_file_system",
226
+ "BonusCoinsVisible" = "#bonus_coins_visible",
227
+ "BonusCoins" = "#bonus_coins",
228
+ "AccessibilityBonusCoins" = "#accessibility_bonus_coins",
229
+ "DebugPriceVisible" = "#debug_price_visible",
230
+ "PriceText" = "#price_text",
231
+ "IsCallOut" = "#is_call_out",
232
+ "CoinsText" = "#coins_text",
233
+ "CoinsRequiredForPurchase" = "#coins_required_for_purchase",
234
+ "ShowMissingCoins" = "#show_missing_coins",
235
+ "NeedsMoreCoins" = "#needs_more_coins",
236
+ "CoinOfferSize" = "#coin_offer_size",
237
+ "HasCoinOffers" = "#has_coin_offers",
238
+ "CoinLoadingVisible" = "#coin_loading_visible",
239
+ "CoinBundleDescriptionText" = "#coin_bundle_description_text",
240
+ "CoinBundleDescriptionTextTts" = "#coin_bundle_description_text_tts",
241
+ "CoinBundleDescriptionFontType" = "#coin_bundle_description_font_type",
242
+ "CoinBundleDescriptionFontSize" = "#coin_bundle_description_font_size",
243
+ "CoinBundleDescriptionFontColor" = "#coin_bundle_description_font_color",
244
+ "FontScaleFactor" = "#font_scale_factor",
245
+ "CoinBundleTitle" = "#coin_bundle_title",
246
+ "CoinBundleDescriptionSection" = "#coin_bundle_description_section",
247
+ "CollectionLength" = "#collection_length",
248
+ "BundleThumbnailTextureName" = "#bundle_thumbnail_texture_name",
249
+ "BundleThumbnailTextureFileSystem" = "#bundle_thumbnail_texture_file_system",
250
+ "BundleIsOwned" = "#bundle_is_owned",
251
+ "Grayscale" = "#grayscale",
252
+ "BundleCoinTextureName" = "#bundle_coin_texture_name",
253
+ "BundleCoinTextureFileSystem" = "#bundle_coin_texture_file_system",
254
+ "BundleBannerColor" = "#bundle_banner_color",
255
+ "ValidOfferIndex" = "#valid_offer_index",
256
+ "CoinBundleSectionContent" = "#coin_bundle_section_content",
257
+ "MaximizedInputVisible" = "#maximized_input_visible",
258
+ "BlockTypeIconTexture" = "#block_type_icon_texture",
259
+ "CloseButtonVisibleBindingName" = "#close_button_visible_binding_name",
260
+ "CommandImpulseMode" = "#command_impulse_mode",
261
+ "CommandChainMode" = "#command_chain_mode",
262
+ "CommandRepeatMode" = "#command_repeat_mode",
263
+ "BlockTypeDropdownLabelColorBinding" = "#block_type_dropdown_label_color_binding",
264
+ "BlockTypeDropdownEnabled" = "#block_type_dropdown_enabled",
265
+ "BlockTypeDropdownToggleLabel" = "#block_type_dropdown_toggle_label",
266
+ "CommandConditionalMode" = "#command_conditional_mode",
267
+ "CommandUnconditionalMode" = "#command_unconditional_mode",
268
+ "ConditionDropdownEnabled" = "#condition_dropdown_enabled",
269
+ "ConditionDropdownToggleLabel" = "#condition_dropdown_toggle_label",
270
+ "CommandAlwaysOnMode" = "#command_always_on_mode",
271
+ "CommandNeedsRedstoneMode" = "#command_needs_redstone_mode",
272
+ "RedstoneDropdownEnabled" = "#redstone_dropdown_enabled",
273
+ "RedstoneDropdownToggleLabel" = "#redstone_dropdown_toggle_label",
274
+ "CommandHoverNote" = "#command_hover_note",
275
+ "ExecuteOnFirstTick" = "#execute_on_first_tick",
276
+ "ExecuteOnFirstTickEnabled" = "#execute_on_first_tick_enabled",
277
+ "CommandTickDelay" = "#command_tick_delay",
278
+ "CharLimitWarningVisible" = "#char_limit_warning_visible",
279
+ "CommandTextEdit" = "#command_text_edit",
280
+ "TrackOutputBinding" = "#track_output_binding",
281
+ "CommandOutputText" = "#command_output_text",
282
+ "PreviousBlockTypeText" = "#previous_block_type_text",
283
+ "PreviousBlockTypeTextColor" = "#previous_block_type_text_color",
284
+ "PreviousConditionModeText" = "#previous_condition_mode_text",
285
+ "PreviousRedstoneModeText" = "#previous_redstone_mode_text",
286
+ "DividerVisible" = "#divider_visible",
287
+ "MinimizeButtonVisibleBindingName" = "#minimize_button_visible_binding_name",
288
+ "XoutButtonVisibleBindingName" = "#Xout_button_visible_binding_name",
289
+ "UnlinkWarningText" = "#unlink_warning_text",
290
+ "UnlinkConsequencesAcknowledged" = "#unlink_consequences_acknowledged",
291
+ "Confirm0" = "#confirm_0",
292
+ "Confirm0Enabled" = "#confirm_0_enabled",
293
+ "Confirm1" = "#confirm_1",
294
+ "Confirm1Enabled" = "#confirm_1_enabled",
295
+ "Confirm2" = "#confirm_2",
296
+ "Confirm2Enabled" = "#confirm_2_enabled",
297
+ "Confirm3" = "#confirm_3",
298
+ "Confirm3Enabled" = "#confirm_3_enabled",
299
+ "ContentLogText" = "#content_log_text",
300
+ "MessagesSize" = "#messages_size",
301
+ "ShowPersistentBundleHoverText" = "#show_persistent_bundle_hover_text",
302
+ "CraftingPreviewInfo" = "#crafting_preview_info",
303
+ "CrafterOutputItem" = "#crafter_output_item",
304
+ "CrafterOutputItemColor" = "#crafter_output_item_color",
305
+ "ItemCustomColor" = "#item_custom_color",
306
+ "CrafterOutputItemShieldBaseColorHovered" = "#crafter_output_item_shield_base_color_hovered",
307
+ "ShieldBaseColor" = "#shield_base_color",
308
+ "CrafterOutputItemBannerPatterns" = "#crafter_output_item_banner_patterns",
309
+ "BannerPatterns" = "#banner_patterns",
310
+ "CrafterOutputItemBannerColors" = "#crafter_output_item_banner_colors",
311
+ "BannerColors" = "#banner_colors",
312
+ "CrafterOutputItemBannerType" = "#crafter_output_item_banner_type",
313
+ "BannerType" = "#banner_type",
314
+ "CrafterOutputItemDecoratedPotSherds" = "#crafter_output_item_decorated_pot_sherds",
315
+ "DecoratedPotSherds" = "#decorated_pot_sherds",
316
+ "OutputStackCount" = "#output_stack_count",
317
+ "InventoryStackCount" = "#inventory_stack_count",
318
+ "ButtonVisible0" = "#button_visible0",
319
+ "ButtonVisible1" = "#button_visible1",
320
+ "ButtonVisible2" = "#button_visible2",
321
+ "ButtonVisible3" = "#button_visible3",
322
+ "ButtonVisible4" = "#button_visible4",
323
+ "ButtonVisible5" = "#button_visible5",
324
+ "ButtonVisible6" = "#button_visible6",
325
+ "ButtonVisible7" = "#button_visible7",
326
+ "ButtonVisible8" = "#button_visible8",
327
+ "RedstoneArrowTexture" = "#redstone_arrow_texture",
328
+ "AllowPurchaseRealm" = "#allow_purchase_realm",
329
+ "RealmButtonText" = "#realm_button_text",
330
+ "RealmTrialAvailable" = "#realm_trial_available",
331
+ "RealmPrice" = "#realm_price",
332
+ "RealmGridDimension" = "#realm_grid_dimension",
333
+ "TemplatesVisible" = "#templates_visible",
334
+ "DarkBannerVisible" = "#dark_banner_visible",
335
+ "GreyBannerVisible" = "#grey_banner_visible",
336
+ "UpsellText" = "#upsell_text",
337
+ "WorldGridDimension" = "#world_grid_dimension",
338
+ "SkipButtonVisible" = "#skip_button_visible",
339
+ "ShowEduIcon" = "#show_edu_icon",
340
+ "ShowEndPoem" = "#show_end_poem",
341
+ "PlayerName" = "#player_name",
342
+ "ScrollFaster" = "#scroll_faster",
343
+ "ErrorCode" = "#error_code",
344
+ "CorrelationId" = "#correlation_id",
345
+ "NavigationTabFocusPrecedence" = "#navigation_tab_focus_precedence",
346
+ "ToggleOnHover" = "#toggle_on_hover",
347
+ "BuyVisible" = "#buy_visible",
348
+ "SectionContent" = "#section_content",
349
+ "KeyArtTextureFileSystem" = "#key_art_texture_file_system",
350
+ "KeyArtTexturePath" = "#key_art_texture_path",
351
+ "TitleLabel" = "#title_label",
352
+ "RightMostGridItemFocusOverrideRight" = "#right_most_grid_item_focus_override_right",
353
+ "FocusChangeRight" = "#focus_change_right",
354
+ "ContentSectionText" = "#content_section_text",
355
+ "BannerTextureName" = "#banner_texture_name",
356
+ "BannerTextureFilepath" = "#banner_texture_filepath",
357
+ "BannerHoverTextureName" = "#banner_hover_texture_name",
358
+ "BannerHoverTextureFilepath" = "#banner_hover_texture_filepath",
359
+ "PromoPageIsReady" = "#promo_page_is_ready",
360
+ "BuyButtonEnabled" = "#buy_button_enabled",
361
+ "PlatformTermsText" = "#platform_terms_text",
362
+ "TrialDesciptionText" = "#trial_desciption_text",
363
+ "BuyNowBannerText" = "#buy_now_banner_text",
364
+ "BuyNowButtonText" = "#buy_now_button_text",
365
+ "HasCsbSubcription" = "#has_csb_subcription",
366
+ "HasCsbSubscription" = "#has_csb_subscription",
367
+ "ItemRealmsExpirationLabel" = "#item_realms_expiration_label",
368
+ "CsbExpirationBannerVisible" = "#csb_expiration_banner_visible",
369
+ "CsbBuyPanelVisible" = "#csb_buy_panel_visible",
370
+ "CsbPriceText" = "#csb_price_text",
371
+ "CsbPlatformMismatch" = "#csb_platform_mismatch",
372
+ "CsbLeftPrice" = "#csb_left_price",
373
+ "CsbRightPrice" = "#csb_right_price",
374
+ "PageLoadingVisible" = "#page_loading_visible",
375
+ "ViewPacksChevron" = "#view_packs_chevron",
376
+ "FaqPriceText" = "#faq_price_text",
377
+ "CsbOneMonthFreeTrialVisible" = "#csb_one_month_free_trial_visible",
378
+ "FreeTrialHeaderText" = "#free_trial_header_text",
379
+ "LandingInfoText" = "#landing_info_text",
380
+ "SubscriptionInfoText" = "#subscription_info_text",
381
+ "LandingInfoLine4" = "#landing_info_line_4",
382
+ "TemplatesGridDimension" = "#templates_grid_dimension",
383
+ "ScreenshotTexture" = "#screenshot_texture",
384
+ "ScreenshotZipFolder" = "#screenshot_zip_folder",
385
+ "ScreenshotFileSystem" = "#screenshot_file_system",
386
+ "ZipFolder" = "#zip_folder",
387
+ "TemplateName" = "#template_name",
388
+ "DownloadTextVisible" = "#download_text_visible",
389
+ "TemplateVersion" = "#template_version",
390
+ "ConvertedWorldPreviewName" = "#converted_world_preview_name",
391
+ "ConvertedWorldPreviewDate" = "#converted_world_preview_date",
392
+ "ConvertedWorldPreviewDateVisible" = "#converted_world_preview_date_visible",
393
+ "ConvertedWorldPreviewGameMode" = "#converted_world_preview_game_mode",
394
+ "ConvertedWorldPreviewFileSize" = "#converted_world_preview_file_size",
395
+ "ConvertedWorldPreviewImage" = "#converted_world_preview_image",
396
+ "ConvertedWorldPreviewTextureSource" = "#converted_world_preview_texture_source",
397
+ "Playername" = "#playername",
398
+ "XPadding" = "#x_padding",
399
+ "HasPreviousSkin" = "#has_previous_skin",
400
+ "SkinRotation" = "#skin_rotation",
401
+ "IsSkinRetrievalFinished" = "#is_skin_retrieval_finished",
402
+ "LegacySkin" = "#legacy_skin",
403
+ "NoNetworkMessageVisible" = "#no_network_message_visible",
404
+ "LegacyWorldItemGridDimension" = "#legacy_world_item_grid_dimension",
405
+ "LoadingLegacyWorldsGridVisible" = "#loading_legacy_worlds_grid_visible",
406
+ "NextButtonText" = "#next_button_text",
407
+ "NextButtonEnabled" = "#next_button_enabled",
408
+ "ShowNextButton" = "#show_next_button",
409
+ "CurrentDayOneTabIndex" = "#current_day_one_tab_index",
410
+ "DeathReasonText" = "#death_reason_text",
411
+ "RespawnEnabled" = "#respawn_enabled",
412
+ "RespawnVisible" = "#respawn_visible",
413
+ "QuitEnabled" = "#quit_enabled",
414
+ "QuitVisible" = "#quit_visible",
415
+ "ButtonsAndDeathmessageVisible" = "#buttons_and_deathmessage_visible",
416
+ "LoadingMessageVisible" = "#loading_message_visible",
417
+ "AccessScreenVisible" = "#access_screen_visible",
418
+ "KeyboardHelperVisible" = "#keyboard_helper_visible",
419
+ "DisconnectText" = "#disconnect_text",
420
+ "TtsDialogTitle" = "#tts_dialog_title",
421
+ "OpenUriButtonVisible" = "#open_uri_button_visible",
422
+ "ErrorCountMessage" = "#error_count_message",
423
+ "CopyButtonFocusOverrideUp" = "#copy_button_focus_override_up",
424
+ "ErrorContent" = "#error_content",
425
+ "ErrorFocusId" = "#error_focus_id",
426
+ "ErrorFocusOverrideUp" = "#error_focus_override_up",
427
+ "ErrorFocusOverrideDown" = "#error_focus_override_down",
428
+ "ErrorMessage" = "#error_message",
429
+ "ErrorExpandLabel" = "#error_expand_label",
430
+ "ServiceBodyText" = "#service_body_text",
431
+ "ServiceButtonText" = "#service_button_text",
432
+ "ServiceButtonVisible" = "#service_button_visible",
433
+ "ButtonCount" = "#button_count",
434
+ "ServiceTitleText" = "#service_title_text",
435
+ "Category" = "#category",
436
+ "EmoteScreenInstructions" = "#emote_screen_instructions",
437
+ "IsUsingGamepadOverride" = "#is_using_gamepad_override",
438
+ "EmoteScreenExit" = "#emote_screen_exit",
439
+ "IsUsingMouse" = "#is_using_mouse",
440
+ "IsTouchMode" = "#is_touch_mode",
441
+ "DressingRoomButtonVisible" = "#dressing_room_button_visible",
442
+ "EnchantButtons" = "#enchant_buttons",
443
+ "SelectableDustIsVisible" = "#selectable_dust_is_visible",
444
+ "UnselectableDustIsVisible" = "#unselectable_dust_is_visible",
445
+ "Runes" = "#runes",
446
+ "Cost" = "#cost",
447
+ "UnselectableButtonVisibility" = "#unselectable_button_visibility",
448
+ "SelectableButtonVisibility" = "#selectable_button_visibility",
449
+ "Open" = "#open",
450
+ "StartSelected" = "#start_selected",
451
+ "ShowSelectedButtonHighlight" = "#show_selected_button_highlight",
452
+ "ActiveEnchant" = "#active_enchant",
453
+ "InactiveEnchant" = "#inactive_enchant",
454
+ "FilteredLightMultiplier" = "#filtered_light_multiplier",
455
+ "InputItemId" = "#input_item_id",
456
+ "DisabledFilterVisible" = "#disabled_filter_visible",
457
+ "OutputItemId" = "#output_item_id",
458
+ "EnchantHint" = "#enchant_hint",
459
+ "PlayerLevelColor" = "#player_level_color",
460
+ "PlayerLevelInfo" = "#player_level_info",
461
+ "EnchantError" = "#enchant_error",
462
+ "PreProcess_" = "#pre_process_",
463
+ "TouchBeingUsed" = "#touch_being_used",
464
+ "PreviewSkin" = "#preview_skin",
465
+ "GestureDeltaSource" = "#gesture_delta_source",
466
+ "GestureMouseDeltaX" = "#gesture_mouse_delta_x",
467
+ "ShowPreviewSkinLock" = "#show_preview_skin_lock",
468
+ "UndoButtonEnabled" = "#undo_button_enabled",
469
+ "ConfirmSkinButtonEnabled" = "#confirm_skin_button_enabled",
470
+ "DelayRightSideButtonsVisible" = "#delay_right_side_buttons_visible",
471
+ "IsOwned" = "#is_owned",
472
+ "SkinIndex" = "#skin_index",
473
+ "PackName" = "#pack_name",
474
+ "CreatorName" = "#creator_name",
475
+ "SkinLocked" = "#skin_locked",
476
+ "SkinsGridDimensions" = "#skins_grid_dimensions",
477
+ "MaximumGridItems" = "#maximum_grid_items",
478
+ "SkinDefaultFocus" = "#skin_default_focus",
479
+ "DefaultFocusPrecedence" = "#default_focus_precedence",
480
+ "SkinName" = "#skin_name",
481
+ "SelectorAreaFocused" = "#selector_area_focused",
482
+ "ContentAreaFocused" = "#content_area_focused",
483
+ "NoFeedItemVisible" = "#no_feed_item_visible",
484
+ "Hidden" = "#hidden",
485
+ "ProgressPercentage" = "#progress_percentage",
486
+ "ProgressVisible" = "#progress_visible",
487
+ "LabelText" = "#label_text",
488
+ "ProgressTextVisible" = "#progress_text_visible",
489
+ "ProgressSizeLabel" = "#progress_size_label",
490
+ "TotalSizeLabel" = "#total_size_label",
491
+ "MessageTextVisible" = "#message_text_visible",
492
+ "MessageText" = "#message_text",
493
+ "SingleTitleLabel" = "#single_title_label",
494
+ "DualTitleLeftLabel" = "#dual_title_left_label",
495
+ "DualTitleRightLabel" = "#dual_title_right_label",
496
+ "SingleLabelVisible" = "#single_label_visible",
497
+ "DualLabelVisible" = "#dual_label_visible",
498
+ "UploadContentVisible" = "#upload_content_visible",
499
+ "WarningContentVisible" = "#warning_content_visible",
500
+ "PlayButtonVisible" = "#play_button_visible",
501
+ "CancelButtonVisible" = "#cancel_button_visible",
502
+ "WarningButton2Visible" = "#warning_button2_visible",
503
+ "FurnaceArrowRatio" = "#furnace_arrow_ratio",
504
+ "FurnaceFlameRatio" = "#furnace_flame_ratio",
505
+ "OutputName" = "#output_name",
506
+ "AnimationName" = "#animation_name",
507
+ "BundleSelectedItemVisible" = "#bundle_selected_item_visible",
508
+ "BundleItemRendererData" = "#bundle_item_renderer_data",
509
+ "UsingTouch" = "#using_touch",
510
+ "BundleOpenBack" = "#bundle_open_back",
511
+ "BundleOpenFront" = "#bundle_open_front",
512
+ "IsSelectedBundleItemSlot" = "#is_selected_bundle_item_slot",
513
+ "ShowBundleItemSlot" = "#show_bundle_item_slot",
514
+ "MoreHiddenItemsText" = "#more_hidden_items_text",
515
+ "IsHiddenItemsLabel" = "#is_hidden_items_label",
516
+ "SelectedBundleItemText" = "#selected_bundle_item_text",
517
+ "BundleHasSelectedItem" = "#bundle_has_selected_item",
518
+ "BundleName" = "#bundle_name",
519
+ "ShowBundleTooltipPocket" = "#show_bundle_tooltip_pocket",
520
+ "BundleTooltipGridDimensions" = "#bundle_tooltip_grid_dimensions",
521
+ "IsSelectedBundleEmpty" = "#is_selected_bundle_empty",
522
+ "BundleWeightBarRatio" = "#bundle_weight_bar_ratio",
523
+ "IsSelectedBundleFull" = "#is_selected_bundle_full",
524
+ "ShowBundleTooltipHover" = "#show_bundle_tooltip_hover",
525
+ "HeaderText" = "#header_text",
526
+ "EventImage" = "#event_image",
527
+ "ActionButtonText" = "#action_button_text",
528
+ "ActionButtonEnabled" = "#action_button_enabled",
529
+ "InfoButtonText" = "#info_button_text",
530
+ "GatheringIdLabel" = "#gathering_id_label",
531
+ "QrTexture" = "#qr_texture",
532
+ "QrPanelVisible" = "#qr_panel_visible",
533
+ "BodyImage" = "#body_image",
534
+ "QrTitleText" = "#qr_title_text",
535
+ "QrBodyText" = "#qr_body_text",
536
+ "HdrStrengthSliderLabel" = "#hdr_strength_slider_label",
537
+ "HdrStrengthEnabled" = "#hdr_strength_enabled",
538
+ "GammaCalibration" = "#gamma_calibration",
539
+ "GammaCalibrationTextValue" = "#gamma_calibration_text_value",
540
+ "EquipGridDimensions" = "#equip_grid_dimensions",
541
+ "InvGridDimensions" = "#inv_grid_dimensions",
542
+ "HasSaddleSlot" = "#has_saddle_slot",
543
+ "HasOnlyArmorSlot" = "#has_only_armor_slot",
544
+ "HasOnlyCarpetSlot" = "#has_only_carpet_slot",
545
+ "HasArmorAndSaddleSlot" = "#has_armor_and_saddle_slot",
546
+ "HasCarpetAndSaddleSlot" = "#has_carpet_and_saddle_slot",
547
+ "EntityId" = "#entity_id",
548
+ "IsCamel" = "#is_camel",
549
+ "SadleSlotCentered" = "#sadle_slot_centered",
550
+ "HasArmorSlot" = "#has_armor_slot",
551
+ "RendererTabToggle" = "#renderer_tab_toggle",
552
+ "ChestTabToggle" = "#chest_tab_toggle",
553
+ "IsChested" = "#is_chested",
554
+ "PanelTitle" = "#panel_title",
555
+ "SplitscreenEnabled" = "#splitscreen_enabled",
556
+ "GamepadBeingUsed" = "#gamepad_being_used",
557
+ "RiftControllerBeingUsed" = "#rift_controller_being_used",
558
+ "WindowsmrControllerBeingUsed" = "#windowsmr_controller_being_used",
559
+ "VrControlsBeingUsed" = "#vr_controls_being_used",
560
+ "TouchJoystickTapBeingUsed" = "#touch_joystick_tap_being_used",
561
+ "TouchClassicDpadBeingUsed" = "#touch_classic_dpad_being_used",
562
+ "TouchJoystickCrosshairBeingUsed" = "#touch_joystick_crosshair_being_used",
563
+ "TouchNotBeingUsed" = "#touch_not_being_used",
564
+ "SectionTitle" = "#section_title",
565
+ "ShouldShowSubscriptionTab" = "#should_show_subscription_tab",
566
+ "PaperDollVisible" = "#paper_doll_visible",
567
+ "HotbarVisible" = "#hotbar_visible",
568
+ "ShowSurvivalUi" = "#show_survival_ui",
569
+ "IsArmorVisible" = "#is_armor_visible",
570
+ "HotbarWithXpBar" = "#hotbar_with_xp_bar",
571
+ "HotbarNoXpBar" = "#hotbar_no_xp_bar",
572
+ "AnchoredOffsetValueY" = "#anchored_offset_value_y",
573
+ "SizeBindingX" = "#size_binding_x",
574
+ "SizeBindingY" = "#size_binding_y",
575
+ "ExpBarAndTextOffsetY" = "#exp_bar_and_text_offset_y",
576
+ "ExpBarSizeX" = "#exp_bar_size_x",
577
+ "ExpBarSizeY" = "#exp_bar_size_y",
578
+ "ExpProgress" = "#exp_progress",
579
+ "LevelNumber" = "#level_number",
580
+ "LevelNumberVisible" = "#level_number_visible",
581
+ "InventoryTouchButton" = "#inventory_touch_button",
582
+ "SlotSelected" = "#slot_selected",
583
+ "PlayerPositionText" = "#player_position_text",
584
+ "PlayerPositionVisible" = "#player_position_visible",
585
+ "NumberOfDaysPlayedText" = "#number_of_days_played_text",
586
+ "NumberOfDaysPlayedVisible" = "#number_of_days_played_visible",
587
+ "ChatText" = "#chat_text",
588
+ "OnNewDeathScreen" = "#on_new_death_screen",
589
+ "StackCountVisible" = "#stack_count_visible",
590
+ "HudVisibleCenteredGuiElements" = "#hud_visible_centered_gui_elements",
591
+ "CreativeHorseHearts" = "#creative_horse_hearts",
592
+ "SurvivalHorseHearts" = "#survival_horse_hearts",
593
+ "IsNotRidingBubbles" = "#is_not_riding_bubbles",
594
+ "IsRidingBubbles" = "#is_riding_bubbles",
595
+ "HudVisibleCentered" = "#hud_visible_centered",
596
+ "HudVisibleCenteredTouch" = "#hud_visible_centered_touch",
597
+ "HorseHeartsTouch" = "#horse_hearts_touch",
598
+ "HudVisibleNotCentered" = "#hud_visible_not_centered",
599
+ "HotbarElipsesRightVisible" = "#hotbar_elipses_right_visible",
600
+ "HotbarElipsesLeftVisible" = "#hotbar_elipses_left_visible",
601
+ "AnchoredOffsetValueX" = "#anchored_offset_value_x",
602
+ "HotbarOffsetX" = "#hotbar_offset_x",
603
+ "HotbarOffsetY" = "#hotbar_offset_y",
604
+ "HotbarSizeX" = "#hotbar_size_x",
605
+ "HotbarSizeY" = "#hotbar_size_y",
606
+ "HotbarGridDimensions" = "#hotbar_grid_dimensions",
607
+ "ItemText" = "#item_text",
608
+ "InteractVisible" = "#interact_visible",
609
+ "ItemNameTextOffset" = "#item_name_text_offset",
610
+ "Offset" = "#offset",
611
+ "JukeboxText" = "#jukebox_text",
612
+ "TipText" = "#tip_text",
613
+ "HudTitleTextString" = "#hud_title_text_string",
614
+ "HudSubtitleTextString" = "#hud_subtitle_text_string",
615
+ "BossName" = "#bossName",
616
+ "HelperDescription" = "#helper_description",
617
+ "IsGamepadTip" = "#is_gamepad_tip",
618
+ "TooltipVisible" = "#tooltip_visible",
619
+ "GamepadButtonIcon" = "#gamepad_button_icon",
620
+ "GamepadPostfixText" = "#gamepad_postfix_text",
621
+ "IsMouseButton" = "#is_mouse_button",
622
+ "KeyboardKeyText" = "#keyboard_key_text",
623
+ "LeftHelperCount" = "#left_helper_count",
624
+ "LeftTipsVisible" = "#left_tips_visible",
625
+ "LeftTipBackground" = "#left_tip_background",
626
+ "EmoteTipsVisible" = "#emote_tips_visible",
627
+ "ButtonEmote0Description" = "#button_emote_0_description",
628
+ "ButtonEmote1Description" = "#button_emote_1_description",
629
+ "ButtonEmote2Description" = "#button_emote_2_description",
630
+ "ButtonEmote3Description" = "#button_emote_3_description",
631
+ "RightHelperCount" = "#right_helper_count",
632
+ "BarVisible" = "#bar_visible",
633
+ "BossGridDimension" = "#boss_grid_dimension",
634
+ "ResetModalVisible" = "#reset_modal_visible",
635
+ "CloseWithoutSavingModalVisible" = "#close_without_saving_modal_visible",
636
+ "HintDragVisible" = "#hint_drag_visible",
637
+ "LayoutCustomizationHintOffsetY" = "#layout_customization_hint_offset_y",
638
+ "HintDeselectVisible" = "#hint_deselect_visible",
639
+ "HintSavedVisible" = "#hint_saved_visible",
640
+ "HudVisibleCenteredRidingvr" = "#hud_visible_centered_ridingvr",
641
+ "Gamertag" = "#gamertag",
642
+ "HotbarVisibleNotCentered" = "#hotbar_visible_not_centered",
643
+ "HotbarVisibleNotCenteredResizable" = "#hotbar_visible_not_centered_resizable",
644
+ "StatusEffectsVisible" = "#status_effects_visible",
645
+ "IsEditorModePastePreviewVisible" = "#is_editor_mode_paste_preview_visible",
646
+ "ScoreboardSidebarVisible" = "#scoreboard_sidebar_visible",
647
+ "PaperDollVisibleLivingRoom" = "#paper_doll_visible_living_room",
648
+ "VrRiding" = "#vr_riding",
649
+ "VrNonRiding" = "#vr_non_riding",
650
+ "BossHudPadding" = "#boss_hud_padding",
651
+ "BossHudTouchPadding" = "#boss_hud_touch_padding",
652
+ "HudVisible" = "#hud_visible",
653
+ "HudAlpha" = "#hud_alpha",
654
+ "Alpha" = "#alpha",
655
+ "HudPropagateAlpha" = "#hud_propagate_alpha",
656
+ "PropagateAlpha" = "#propagateAlpha",
657
+ "WysiwygResetButtonEnabled" = "#wysiwyg_reset_button_enabled",
658
+ "WysiwygNoControlSelected" = "#wysiwyg_no_control_selected",
659
+ "WysiwygControlSelected" = "#wysiwyg_control_selected",
660
+ "LayoutCustomizationMainPanelOffsetY" = "#layout_customization_main_panel_offset_y",
661
+ "LayoutCustomizationMainPanelSizeX" = "#layout_customization_main_panel_size_x",
662
+ "LayoutCustomizationMainPanelSizeY" = "#layout_customization_main_panel_size_y",
663
+ "LayoutCustomizationMainPanelVisible" = "#layout_customization_main_panel_visible",
664
+ "ScaleOptionSliderLabel" = "#scale_option_slider_label",
665
+ "ScaleOption" = "#scale_option",
666
+ "ScaleOptionTextValue" = "#scale_option_text_value",
667
+ "ScaleOptionEnabled" = "#scale_option_enabled",
668
+ "ScaleOptionVisible" = "#scale_option_visible",
669
+ "OpacityOptionSliderLabel" = "#opacity_option_slider_label",
670
+ "OpacityOption" = "#opacity_option",
671
+ "OpacityOptionTextValue" = "#opacity_option_text_value",
672
+ "OpacityOptionEnabled" = "#opacity_option_enabled",
673
+ "OpacityOptionVisible" = "#opacity_option_visible",
674
+ "ApplyToAllSelected" = "#apply_to_all_selected",
675
+ "ApplyToAllOptionVisible" = "#apply_to_all_option_visible",
676
+ "LayoutCustomizationOptionSizeY" = "#layout_customization_option_size_y",
677
+ "LayoutCustomizationDimension" = "#layout_customization_dimension",
678
+ "LayoutCustomizationSubPanelOffsetY" = "#layout_customization_sub_panel_offset_y",
679
+ "LayoutCustomizationSubPanelSizeX" = "#layout_customization_sub_panel_size_x",
680
+ "LayoutCustomizationSubPanelSizeY" = "#layout_customization_sub_panel_size_y",
681
+ "LayoutCustomizationSubPanelVisible" = "#layout_customization_sub_panel_visible",
682
+ "ButtonGlyphVisible" = "#button_glyph_visible",
683
+ "CheatsOn" = "#cheats_on",
684
+ "HostMainButtonFocusOverrideUp" = "#host_main_button_focus_override_up",
685
+ "HostMainButtonFocusOverrideDown" = "#host_main_button_focus_override_down",
686
+ "ButtonText" = "#button_text",
687
+ "SubCommand" = "#sub_command",
688
+ "PlayersGridDimension" = "#players_grid_dimension",
689
+ "ToggleSelected" = "#toggle_selected",
690
+ "HostTeleportVisible" = "#host_teleport_visible",
691
+ "TeleName" = "#tele_name",
692
+ "ButtonNavigation" = "#button_navigation",
693
+ "HostTeleportMainVisible" = "#host_teleport_main_visible",
694
+ "HostTeleportGridDimension" = "#host_teleport_grid_dimension",
695
+ "HostTeleportPlayersVisible" = "#host_teleport_players_visible",
696
+ "HostTimeVisible" = "#host_time_visible",
697
+ "HostTimeGridDimension" = "#host_time_grid_dimension",
698
+ "HostWeatherVisible" = "#host_weather_visible",
699
+ "HostWeatherGridDimension" = "#host_weather_grid_dimension",
700
+ "HostOptionFocusId" = "#host_option_focus_id",
701
+ "HostOptionFocusOverrideLeft" = "#host_option_focus_override_left",
702
+ "FocusChangeLeft" = "#focus_change_left",
703
+ "HostOptionFocusOverrideRight" = "#host_option_focus_override_right",
704
+ "HostOptionFocusOverrideUp" = "#host_option_focus_override_up",
705
+ "HostOptionFocusOverrideDown" = "#host_option_focus_override_down",
706
+ "HostMainGridDimension" = "#host_main_grid_dimension",
707
+ "HostMainVisible" = "#host_main_visible",
708
+ "WakeUpLabelPanel" = "#wake_up_label_panel",
709
+ "PackTitle" = "#pack_title",
710
+ "PackContentsDescription" = "#pack_contents_description",
711
+ "AuthorLabel" = "#author_label",
712
+ "PackDescription" = "#pack_description",
713
+ "WebviewUpdate" = "#webview_update",
714
+ "ImmersiveReaderRunning" = "#immersive_reader_running",
715
+ "ImmersiveReaderLoading" = "#immersive_reader_loading",
716
+ "CanRetry" = "#can_retry",
717
+ "ErrorText" = "#error_text",
718
+ "ImmersiveReaderError" = "#immersive_reader_error",
719
+ "GamepadHelperXVisible" = "#gamepad_helper_x_visible",
720
+ "GamepadHelperYVisible" = "#gamepad_helper_y_visible",
721
+ "GamepadHelperAVisible" = "#gamepad_helper_a_visible",
722
+ "GamepadHelperLsVisible" = "#gamepad_helper_ls_visible",
723
+ "GamepadHelperRsVisible" = "#gamepad_helper_rs_visible",
724
+ "IsLeftTabSearch" = "#is_left_tab_search",
725
+ "IsLeftTabConstruct" = "#is_left_tab_construct",
726
+ "IsLeftTabEquipment" = "#is_left_tab_equipment",
727
+ "IsLeftTabNature" = "#is_left_tab_nature",
728
+ "IsLeftTabItems" = "#is_left_tab_items",
729
+ "IsCreativeAndRecipeBookLayout" = "#is_creative_and_recipe_book_layout",
730
+ "IsCreativeAndCreativeLayout" = "#is_creative_and_creative_layout",
731
+ "IsCreativeMode" = "#is_creative_mode",
732
+ "EmptyArmorImageVisible" = "#empty_armor_image_visible",
733
+ "EmptyOffhandImageVisible" = "#empty_offhand_image_visible",
734
+ "LookAtCursor" = "#look_at_cursor",
735
+ "CraftingLabelText" = "#crafting_label_text",
736
+ "NeedsCraftingTable" = "#needs_crafting_table",
737
+ "ContainerItemBackgroundTexture" = "#container_item_background_texture",
738
+ "ContainerItemBackground" = "#container_item_background",
739
+ "ContainerItemModifier" = "#container_item_modifier",
740
+ "IsCreativeSelectedSlot" = "#is_creative_selected_slot",
741
+ "RecipeCraftableCount" = "#recipe_craftable_count",
742
+ "RecipeHoverText" = "#recipe_hover_text",
743
+ "RecipeBookTotalItems" = "#recipe_book_total_items",
744
+ "TabLabelText" = "#tab_label_text",
745
+ "FilteringEnabled" = "#filtering_enabled",
746
+ "IsCreativeLayout" = "#is_creative_layout",
747
+ "IsRecipeBookLayout" = "#is_recipe_book_layout",
748
+ "IsSurvivalLayout" = "#is_survival_layout",
749
+ "CreativeLayoutButtonVisible" = "#creative_layout_button_visible",
750
+ "CloseButtonVisible" = "#close_button_visible",
751
+ "RecipeItemName" = "#recipe_item_name",
752
+ "UseHeartOffset" = "#use_heart_offset",
753
+ "PocketRightPaneVisible" = "#pocket_right_pane_visible",
754
+ "IsLoading" = "#is_loading",
755
+ "ProfileImageOptions" = "#profile_image_options",
756
+ "ThirdPartyProfilePic" = "#third_party_profile_pic",
757
+ "ThirdPartyProfilePicFileSystem" = "#third_party_profile_pic_file_system",
758
+ "OnlineVisible" = "#online_visible",
759
+ "OfflineVisible" = "#offline_visible",
760
+ "XblGamertag" = "#xbl_gamertag",
761
+ "CurrentGameLabel" = "#current_game_label",
762
+ "ThirdPartyTag" = "#third_party_tag",
763
+ "ToggleInviteState" = "#toggle_invite_state",
764
+ "FriendButtonFocusOverrideUp" = "#friend_button_focus_override_up",
765
+ "FriendButtonFocusOverrideDown" = "#friend_button_focus_override_down",
766
+ "CrossPlatformEnabled" = "#cross_platform_enabled",
767
+ "OnlineXboxLiveFriendGridDimension" = "#online_xbox_live_friend_grid_dimension",
768
+ "OfflineXboxLiveFriendGridDimension" = "#offline_xbox_live_friend_grid_dimension",
769
+ "OnlinePlatformFriendGridDimension" = "#online_platform_friend_grid_dimension",
770
+ "OfflinePlatformFriendGridDimension" = "#offline_platform_friend_grid_dimension",
771
+ "OnlineLinkedAccountFriendGridDimension" = "#online_linked_account_friend_grid_dimension",
772
+ "OfflineLinkedAccountFriendGridDimension" = "#offline_linked_account_friend_grid_dimension",
773
+ "PreviousButtonEnabled" = "#previous_button_enabled",
774
+ "PageCounterLabel" = "#page_counter_label",
775
+ "FriendsPaginationVisible" = "#friends_pagination_visible",
776
+ "OnlinePlatformFriendsVisible" = "#online_platform_friends_visible",
777
+ "OnlineXboxLiveFriendsVisible" = "#online_xbox_live_friends_visible",
778
+ "OnlineLinkedAccountFriendsVisible" = "#online_linked_account_friends_visible",
779
+ "OfflinePlatformFriendsVisible" = "#offline_platform_friends_visible",
780
+ "NoPlatformFriendsVisible" = "#no_platform_friends_visible",
781
+ "OfflineXboxLiveFriendsVisible" = "#offline_xbox_live_friends_visible",
782
+ "OfflineLinkedAccountFriendsVisible" = "#offline_linked_account_friends_visible",
783
+ "NoXboxLiveFriendsVisible" = "#no_xbox_live_friends_visible",
784
+ "NoXboxLiveFriendsText" = "#no_xbox_live_friends_text",
785
+ "FindCrossPlatformFriendsEnabled" = "#find_cross_platform_friends_enabled",
786
+ "SendButton" = "#send_button",
787
+ "TargetPoolTextBoxValue" = "#target_pool_text_box_value",
788
+ "NameTextBoxValue" = "#name_text_box_value",
789
+ "TargetTextBoxValue" = "#target_text_box_value",
790
+ "FinalBlockTextBoxValue" = "#final_block_text_box_value",
791
+ "JointTypeToggleState" = "#joint_type_toggle_state",
792
+ "JointTypeEnabled" = "#joint_type_enabled",
793
+ "JointTypeToggleText" = "#joint_type_toggle_text",
794
+ "JointTypeDisabled" = "#joint_type_disabled",
795
+ "SelectionPriorityTextBoxValue" = "#selection_priority_text_box_value",
796
+ "PlacementPriorityTextBoxValue" = "#placement_priority_text_box_value",
797
+ "AnimatingText" = "#animating_text",
798
+ "AnimatingTextVisible" = "#animating_text_visible",
799
+ "ShowInGamePrompt" = "#show_in_game_prompt",
800
+ "ShowFetchError" = "#show_fetch_error",
801
+ "Welcome" = "#welcome",
802
+ "PatternCellBackgroundTexture" = "#pattern_cell_background_texture",
803
+ "ContainerCellBackgroundTexture" = "#container_cell_background_texture",
804
+ "EmptyImageVisible" = "#empty_image_visible",
805
+ "PatternSelectorTotalItems" = "#pattern_selector_total_items",
806
+ "ResultPatterns" = "#result_patterns",
807
+ "ResultColors" = "#result_colors",
808
+ "IsRightTabLoom" = "#is_right_tab_loom",
809
+ "IsLeftTabPatterns" = "#is_left_tab_patterns",
810
+ "ManageFeedButtonsVisible" = "#manage_feed_buttons_visible",
811
+ "ManageFeedPageIndexText" = "#manage_feed_page_index_text",
812
+ "ManageFeedPrevButtonVisible" = "#manage_feed_prevButton_visible",
813
+ "ManageFeedNextButtonVisible" = "#manage_feed_nextButton_visible",
814
+ "ManageFeedGridDimension" = "#manage_feed_grid_dimension",
815
+ "ManageContent" = "#manage_content",
816
+ "ManageFeedTextVisible" = "#manage_feed_text_visible",
817
+ "TimeSinceManageFeedPost" = "#time_since_manage_feed_post",
818
+ "Nrreports" = "#nrreports",
819
+ "ManageGamertag" = "#manage_gamertag",
820
+ "LoadingBarsAnimationVisible" = "#loading_bars_animation_visible",
821
+ "ManageFeedTexture" = "#manage_feed_texture",
822
+ "ManageFeedTextureSource" = "#manage_feed_texture_source",
823
+ "ManageTextpostContent" = "#manage_textpost_content",
824
+ "ManageTextpostVisible" = "#manage_textpost_visible",
825
+ "ManageProfileImageOptions" = "#manage_profile_image_options",
826
+ "ManageGamerpicVisible" = "#manage_gamerpic_visible",
827
+ "IsDeleting" = "#is_deleting",
828
+ "IsDoneValidating" = "#is_done_validating",
829
+ "IconPath" = "#icon_path",
830
+ "IconZip" = "#icon_zip",
831
+ "IconFileSystem" = "#icon_file_system",
832
+ "PackHeaderTitle" = "#pack_header_title",
833
+ "PackHeaderSize" = "#pack_header_size",
834
+ "PackHeaderSizeVisible" = "#pack_header_size_visible",
835
+ "PackHeaderDescription" = "#pack_header_description",
836
+ "RefreshVisible" = "#refresh_visible",
837
+ "DeleteVisible" = "#delete_visible",
838
+ "PackId" = "#pack_id",
839
+ "PackVersion" = "#pack_version",
840
+ "PackPath" = "#pack_path",
841
+ "ErrorTypeLabel" = "#error_type_label",
842
+ "HasErrorsOrWarnings" = "#has_errors_or_warnings",
843
+ "FileLabel" = "#file_label",
844
+ "FileError" = "#file_error",
845
+ "ErrorContentLabel" = "#error_content_label",
846
+ "IsWorking" = "#is_working",
847
+ "ErrorGridDimensions" = "#error_grid_dimensions",
848
+ "TextAlignment" = "#text_alignment",
849
+ "SdlDropdownRowExpanded" = "#sdl_dropdown_row_expanded",
850
+ "HeaderLabelFromStyle" = "#header_label_from_style",
851
+ "HeaderLabelColor" = "#header_label_color",
852
+ "HeaderLabelFontType" = "#header_label_font_type",
853
+ "HeaderLabelFontScale" = "#header_label_font_scale",
854
+ "HeaderLabelAlignment" = "#header_label_alignment",
855
+ "HeaderLabelId" = "#header_label_id",
856
+ "ImageRowIds" = "#image_row_ids",
857
+ "ScreenshotTextureImageRow" = "#screenshot_texture_image_row",
858
+ "ScreenshotTextureFileSystemImageRow" = "#screenshot_texture_file_system_image_row",
859
+ "3rdBorder" = "#3rd_border",
860
+ "2ndBorder" = "#2nd_border",
861
+ "1stBorder" = "#1st_border",
862
+ "TextRowLabel" = "#text_row_label",
863
+ "TextRowIds" = "#text_row_ids",
864
+ "TextRowFontScale" = "#text_row_font_scale",
865
+ "TextRowFontType" = "#text_row_font_type",
866
+ "TextRowTextColor" = "#text_row_text_color",
867
+ "TextRowAlignment" = "#text_row_alignment",
868
+ "TextRowShowBackground" = "#text_row_show_background",
869
+ "TextRowHighlightVisible" = "#text_row_highlight_visible",
870
+ "TextRowHighlightColor" = "#text_row_highlight_color",
871
+ "MobEffectName" = "#mob_effect_name",
872
+ "MobEffectTimer" = "#mob_effect_timer",
873
+ "MobEffectGridSize" = "#mob_effect_grid_size",
874
+ "ModalTitleText" = "#modal_title_text",
875
+ "ModalLabelText" = "#modal_label_text",
876
+ "ModalLeftButtonText" = "#modal_left_button_text",
877
+ "ModalMiddleButtonText" = "#modal_middle_button_text",
878
+ "ModalRightcancelButtonText" = "#modal_rightcancel_button_text",
879
+ "SkinVisible" = "#skin_visible",
880
+ "CyclePackLeftButtonVisible" = "#cycle_pack_left_button_visible",
881
+ "NameText" = "#name_text",
882
+ "BasicVisible" = "#basic_visible",
883
+ "ActionText" = "#action_text",
884
+ "CommandIdentifier" = "#command_identifier",
885
+ "AddCommandFocusOverrideUp" = "#add_command_focus_override_up",
886
+ "CommandFocusOverrideDown" = "#command_focus_override_down",
887
+ "MaximizedActionText" = "#maximized_action_text",
888
+ "MaximizedPlaceholderText" = "#maximized_placeholder_text",
889
+ "MaximizedEditVisible" = "#maximized_edit_visible",
890
+ "ButtonNameText" = "#button_name_text",
891
+ "ButtonNameEditVisible" = "#button_name_edit_visible",
892
+ "ButtonNameIdentifier" = "#button_name_identifier",
893
+ "ButtonNameFocusOverrideUp" = "#button_name_focus_override_up",
894
+ "ButtonModeIdentifier" = "#button_mode_identifier",
895
+ "ButtonModeFocusOverrideUp" = "#button_mode_focus_override_up",
896
+ "ButtonModeEnabled" = "#button_mode_enabled",
897
+ "OnEnterEnabled" = "#on_enter_enabled",
898
+ "OnExitEnabled" = "#on_exit_enabled",
899
+ "IsUrlAction" = "#is_url_action",
900
+ "ActionErrorStatus" = "#action_error_status",
901
+ "IsCommandAction" = "#is_command_action",
902
+ "CommandsEnabled" = "#commands_enabled",
903
+ "ActionCount" = "#action_count",
904
+ "HelpVisible" = "#help_visible",
905
+ "AddButtonsEnabled" = "#add_buttons_enabled",
906
+ "AdvancedVisible" = "#advanced_visible",
907
+ "StudentModelUpdate" = "#student_model_update",
908
+ "ImReaderButtonVisible" = "#im_reader_button_visible",
909
+ "Dialogtext" = "#dialogtext",
910
+ "PlaceholderDialogText" = "#placeholder_dialog_text",
911
+ "StudentButtonText" = "#student_button_text",
912
+ "IsUrlButton" = "#is_url_button",
913
+ "IsCommandButton" = "#is_command_button",
914
+ "StudentButtonVisible" = "#student_button_visible",
915
+ "StudentButtonGridDimensions" = "#student_button_grid_dimensions",
916
+ "StudentViewVisible" = "#student_view_visible",
917
+ "TeacherViewVisible" = "#teacher_view_visible",
918
+ "OnlineSafetyDoNotShowAgain" = "#online_safety_do_not_show_again",
919
+ "PackSettingsTitle" = "#pack_settings_title",
920
+ "HasContentTiering" = "#has_content_tiering",
921
+ "ContentTierLabel" = "#content_tier_label",
922
+ "ContentTierSupported" = "#content_tier_supported",
923
+ "ContentTierValue" = "#content_tier_value",
924
+ "ContentTierSteps" = "#content_tier_steps",
925
+ "ContentTierSliderTextValue" = "#content_tier_slider_text_value",
926
+ "IncompatibleReason" = "#incompatible_reason",
927
+ "PanoramaTexture" = "#panorama_texture",
928
+ "PanoramaTextureFileSystem" = "#panorama_texture_file_system",
929
+ "PanoramaView" = "#panorama_view",
930
+ "CanScrollLeft" = "#can_scroll_left",
931
+ "CanScrollRight" = "#can_scroll_right",
932
+ "LoadingPatchNotes" = "#loading_patch_notes",
933
+ "MainImageTexture" = "#main_image_texture",
934
+ "MainImageTextureSource" = "#main_image_texture_source",
935
+ "StoreImageTexture" = "#store_image_texture",
936
+ "StoreImageTextureSource" = "#store_image_texture_source",
937
+ "PatchLinkButtonText" = "#patch_link_button_text",
938
+ "TtsOfferName" = "#tts_offer_name",
939
+ "PatchDescription" = "#patch_description",
940
+ "DialogTitle" = "#dialog_title",
941
+ "SunsettingDoNotShowAgain" = "#sunsetting_do_not_show_again",
942
+ "CanChangeSkin" = "#can_change_skin",
943
+ "DressingRoomControllerButtonVisible" = "#dressing_room_controller_button_visible",
944
+ "ProfileButtonXIconVisible" = "#profile_button_x_icon_visible",
945
+ "IsSignedInXbl" = "#is_signed_in_xbl",
946
+ "PaperDollSkin" = "#paper_doll_skin",
947
+ "PlayernameVisible" = "#playername_visible",
948
+ "ProfileButtonBVisible" = "#profile_button_b_visible",
949
+ "IsRealmLevel" = "#is_realm_level",
950
+ "RealmsUnreadStoryCount" = "#realms_unread_story_count",
951
+ "RealmsUnreadStoryCountVisible" = "#realms_unread_story_count_visible",
952
+ "StoreButtonVisible" = "#store_button_visible",
953
+ "StoreErrorTooltipVisible" = "#store_error_tooltip_visible",
954
+ "StoreErrorText" = "#store_error_text",
955
+ "InviteButtonVisible" = "#invite_button_visible",
956
+ "InviteButtonEnabled" = "#invite_button_enabled",
957
+ "IsTrialVersion" = "#is_trial_version",
958
+ "AchievementsVisible" = "#achievements_visible",
959
+ "ScreenshotButtonVisible" = "#screenshot_button_visible",
960
+ "ProfileButtonAVisible" = "#profile_button_a_visible",
961
+ "ListHasDisplayObjective" = "#list_has_display_objective",
962
+ "DisconnectedFromXboxLiveLabelVisible" = "#disconnected_from_xbox_live_label_visible",
963
+ "DisconnectedFromThirdPartyLabelVisible" = "#disconnected_from_third_party_label_visible",
964
+ "DisconnectedFromAdhocLabelVisible" = "#disconnected_from_adhoc_label_visible",
965
+ "DisconnectedFromCrossplatformMultiplayer" = "#disconnected_from_crossplatform_multiplayer",
966
+ "DisconnectedFromMultiplayer" = "#disconnected_from_multiplayer",
967
+ "Ip" = "#ip",
968
+ "IpAddressText" = "#ip_address_text",
969
+ "Worldname" = "#worldname",
970
+ "PermissionsButtonVisible" = "#permissions_button_visible",
971
+ "PlayerPermissionLevelIconTexture" = "#player_permission_level_icon_texture",
972
+ "ButtonEnabled" = "#button_enabled",
973
+ "ButtonDisabled" = "#button_disabled",
974
+ "LocalIconVisible" = "#local_icon_visible",
975
+ "TextureSource" = "#texture_source",
976
+ "GamerpicVisible" = "#gamerpic_visible",
977
+ "IsPlatformIconVisible" = "#is_platform_icon_visible",
978
+ "EduKeyboardHelperVisible" = "#edu_keyboard_helper_visible",
979
+ "DownloadInfoVisible" = "#download_info_visible",
980
+ "DownloadInfoText" = "#download_info_text",
981
+ "DownloadProgressBarVisible" = "#download_progress_bar_visible",
982
+ "DownloadProgress" = "#download_progress",
983
+ "MainButtonText" = "#main_button_text",
984
+ "InteractionButtonText" = "#interaction_button_text",
985
+ "InterationButtonEnabled" = "#interation_button_enabled",
986
+ "InteractionButtonVisible" = "#interaction_button_visible",
987
+ "DownloadProgressBarPercentage" = "#download_progress_bar_percentage",
988
+ "ProgressLoadingAnimVisible" = "#progress_loading_anim_visible",
989
+ "PurchaseButtonsEnabled" = "#purchase_buttons_enabled",
990
+ "ActivatedPurchasePanelVisible" = "#activated_purchase_panel_visible",
991
+ "DeactivatedPurchasePanelVisible" = "#deactivated_purchase_panel_visible",
992
+ "ButtonsPanelVisible" = "#buttons_panel_visible",
993
+ "PurchasePanelVisible" = "#purchase_panel_visible",
994
+ "InteractButtonText" = "#interact_button_text",
995
+ "ActionButtonVisible" = "#action_button_visible",
996
+ "ExitWorldButtonVisible" = "#exit_world_button_visible",
997
+ "CurrencyPurchaseVisible" = "#currency_purchase_visible",
998
+ "ShareButtonEnabled" = "#share_button_enabled",
999
+ "WishlistButtonVisible" = "#wishlist_button_visible",
1000
+ "WishlistButtonEnabled" = "#wishlist_button_enabled",
1001
+ "PurchaseWithCurrencyButtonText" = "#purchase_with_currency_button_text",
1002
+ "CoinVisible" = "#coin_visible",
1003
+ "IsOnSale" = "#is_on_sale",
1004
+ "MarkdownPercentage" = "#markdown_percentage",
1005
+ "TtsMarkdownPercentage" = "#tts_markdown_percentage",
1006
+ "PurchaseWithCoinsButtonText" = "#purchase_with_coins_button_text",
1007
+ "TtsPurchaseWithCoinsButtonText" = "#tts_purchase_with_coins_button_text",
1008
+ "IsOnWishlist" = "#is_on_wishlist",
1009
+ "FullPrice" = "#full_price",
1010
+ "TtsFullPrice" = "#tts_full_price",
1011
+ "SectionHeader" = "#section_header",
1012
+ "SectionTitleVisible" = "#section_title_visible",
1013
+ "SummaryContentVisible" = "#summary_content_visible",
1014
+ "TabSectionContent" = "#tab_section_content",
1015
+ "NavGridVisible" = "#nav_grid_visible",
1016
+ "UpdateNotificationSectionVisible" = "#update_notification_section_visible",
1017
+ "IsSkinPackSectionVisible" = "#is_skin_pack_section_visible",
1018
+ "SkinPackSectionVisible" = "#skin_pack_section_visible",
1019
+ "RatingsFocusContainerVisible" = "#ratings_focus_container_visible",
1020
+ "RecentlyViewedRowVisible" = "#recently_viewed_row_visible",
1021
+ "ItemPageSectionContent" = "#item_page_section_content",
1022
+ "WarningIconPath" = "#warning_icon_path",
1023
+ "ContentRating" = "#content_rating",
1024
+ "ContentRatingReverse" = "#content_rating_reverse",
1025
+ "5StarPercentNormalized" = "#5_star_percent_normalized",
1026
+ "5StarPercent" = "#5_star_percent",
1027
+ "4StarPercentNormalized" = "#4_star_percent_normalized",
1028
+ "4StarPercent" = "#4_star_percent",
1029
+ "3StarPercentNormalized" = "#3_star_percent_normalized",
1030
+ "3StarPercent" = "#3_star_percent",
1031
+ "2StarPercentNormalized" = "#2_star_percent_normalized",
1032
+ "2StarPercent" = "#2_star_percent",
1033
+ "1StarPercentNormalized" = "#1_star_percent_normalized",
1034
+ "1StarPercent" = "#1_star_percent",
1035
+ "RatingsPanel5starsVisible" = "#ratings_panel_5stars_visible",
1036
+ "RatingsPanelText" = "#ratings_panel_text",
1037
+ "NumberOfRatings" = "#number_of_ratings",
1038
+ "EmptyStarTexture" = "#empty_star_texture",
1039
+ "FilledStarTexture" = "#filled_star_texture",
1040
+ "UserRatingStarTexture" = "#user_rating_star_texture",
1041
+ "RatingsStarDimensions" = "#ratings_star_dimensions",
1042
+ "RatingsInteractPanelVisible" = "#ratings_interact_panel_visible",
1043
+ "SubmitRatingButtonText" = "#submit_rating_button_text",
1044
+ "RatingsButtonEnabled" = "#ratings_button_enabled",
1045
+ "RatingFooterText" = "#rating_footer_text",
1046
+ "ScreenshotTextureImageRowGlobal" = "#screenshot_texture_image_row_global",
1047
+ "ScreenshotTextureFileSystemImageRowGlobal" = "#screenshot_texture_file_system_image_row_global",
1048
+ "ItemCsbExpirationLabel" = "#item_csb_expiration_label",
1049
+ "VideoButtonEnabled" = "#video_button_enabled",
1050
+ "RtxLabelVisible" = "#rtx_label_visible",
1051
+ "MainMashupKeyArtTexture" = "#main_mashup_key_art_texture",
1052
+ "MainMashupKeyArtFileSystem" = "#main_mashup_key_art_file_system",
1053
+ "RatingStatusValid" = "#rating_status_valid",
1054
+ "RatingButtonStars" = "#rating_button_stars",
1055
+ "RatingButtonText" = "#rating_button_text",
1056
+ "CreatorLabel" = "#creator_label",
1057
+ "IsCreatorLabelVisible" = "#is_creator_label_visible",
1058
+ "DescriptionLabel" = "#description_label",
1059
+ "WarningTextString" = "#warning_text_string",
1060
+ "ShowWarningIcon" = "#show_warning_icon",
1061
+ "GlyphHoverVisible" = "#glyph_hover_visible",
1062
+ "ItemMashupCountAndLabel" = "#item_mashup_count_and_label",
1063
+ "ItemMashupCountVisible" = "#item_mashup_count_visible",
1064
+ "GlyphHoverTextMashup" = "#glyph_hover_text_mashup",
1065
+ "ItemSkinCountAndLabel" = "#item_skin_count_and_label",
1066
+ "GlyphSkinHoverVisible" = "#glyph_skin_hover_visible",
1067
+ "ItemSkinCountVisible" = "#item_skin_count_visible",
1068
+ "ItemResourcePackCountAndLabel" = "#item_resource_pack_count_and_label",
1069
+ "ItemResourcePackCountVisible" = "#item_resource_pack_count_visible",
1070
+ "ItemWorldTemplateCountAndLabel" = "#item_world_template_count_and_label",
1071
+ "ItemWorldTemplateCountVisible" = "#item_world_template_count_visible",
1072
+ "ItemAddonPackCountAndLabel" = "#item_addon_pack_count_and_label",
1073
+ "ItemAddonPackCountVisible" = "#item_addon_pack_count_visible",
1074
+ "TimeUntilSaleExpires" = "#time_until_sale_expires",
1075
+ "IsSaleTimerVisible" = "#is_sale_timer_visible",
1076
+ "CsbIncompatibleButtonVisible" = "#csb_incompatible_button_visible",
1077
+ "InCsbButtonVisible" = "#in_csb_button_visible",
1078
+ "EntitlementsRefreshingVisible" = "#entitlements_refreshing_visible",
1079
+ "UpdateNotificationVisible" = "#update_notification_visible",
1080
+ "UpdateCheckVisible" = "#update_check_visible",
1081
+ "LastUpdateText" = "#last_update_text",
1082
+ "TagLabel" = "#tag_label",
1083
+ "PlayerCountLabel" = "#player_count_label",
1084
+ "PlayerCountCommaVisible" = "#player_count_comma_visible",
1085
+ "PlayerCountCollectionLength" = "#player_count_collection_length",
1086
+ "LanguageLabel" = "#language_label",
1087
+ "HasTitleIcon" = "#has_title_icon",
1088
+ "DescriptionHeaderIcon" = "#description_header_icon",
1089
+ "DescriptionTitle" = "#description_title",
1090
+ "HasTitle" = "#has_title",
1091
+ "ShowWarning" = "#show_warning",
1092
+ "HasTags" = "#has_tags",
1093
+ "IsDescriptionExpanded" = "#is_description_expanded",
1094
+ "CollapsedShowMoreVisible" = "#collapsed_show_more_visible",
1095
+ "DescriptionExpandedVisible" = "#description_expanded_visible",
1096
+ "TagColumnsCollectionLength" = "#tag_columns_collection_length",
1097
+ "TagRowsCollectionLength" = "#tag_rows_collection_length",
1098
+ "DescriptionCollapsedVisible" = "#description_collapsed_visible",
1099
+ "TagCollapsedCollectionLength" = "#tag_collapsed_collection_length",
1100
+ "GenreLabel" = "#genre_label",
1101
+ "SubgenreLabel" = "#subgenre_label",
1102
+ "PlayerCountRangeLabel" = "#player_count_range_label",
1103
+ "LanguageColumnsCollectionLength" = "#language_columns_collection_length",
1104
+ "CommaVisible" = "#comma_visible",
1105
+ "LanguageRowsCollectionLength" = "#language_rows_collection_length",
1106
+ "ThumbnailTexturePath" = "#thumbnail_texture_path",
1107
+ "ThumbnailTextureFileSystem" = "#thumbnail_texture_file_system",
1108
+ "BundleThumbnailGridDimensions" = "#bundle_thumbnail_grid_dimensions",
1109
+ "OfferPromptText" = "#offer_prompt_text",
1110
+ "TtsOfferPromptText" = "#tts_offer_prompt_text",
1111
+ "DefaultPromptColor" = "#default_prompt_color",
1112
+ "CoinPromptColor" = "#coin_prompt_color",
1113
+ "OfferPromptTextColor" = "#offer_prompt_text_color",
1114
+ "OfferCoinVisible" = "#offer_coin_visible",
1115
+ "ItemDoesNotMeetRequirements" = "#item_does_not_meet_requirements",
1116
+ "OfferGridDimensions" = "#offer_grid_dimensions",
1117
+ "NOBINDING" = "#NO_BINDING",
1118
+ "OfferMarkdownVisible" = "#offer_markdown_visible",
1119
+ "BundleUpsellOtherPacksDescription" = "#bundle_upsell_other_packs_description",
1120
+ "BundleUpsellStrikethroughPriceVisible" = "#bundle_upsell_strikethrough_price_visible",
1121
+ "BundleUpsellOfferAlpha" = "#bundle_upsell_offer_alpha",
1122
+ "IsValidBundleUpsell" = "#is_valid_bundle_upsell",
1123
+ "IsBundleUpsellLoading" = "#is_bundle_upsell_loading",
1124
+ "LeftMostGridItemFocusOverrideLeft" = "#left_most_grid_item_focus_override_left",
1125
+ "MaxUpsellOffers" = "#max_upsell_offers",
1126
+ "BundleUpsellOfferCount" = "#bundle_upsell_offer_count",
1127
+ "BundleUpsellGridVisible" = "#bundle_upsell_grid_visible",
1128
+ "BundleUpsellContentVisible" = "#bundle_upsell_content_visible",
1129
+ "BundleUpsellProgressVisible" = "#bundle_upsell_progress_visible",
1130
+ "BundleUpsellRowVisible" = "#bundle_upsell_row_visible",
1131
+ "CycleScreenshotsLeftButtonEnabled" = "#cycle_screenshots_left_button_enabled",
1132
+ "CycleScreenshotsRightButtonEnabled" = "#cycle_screenshots_right_button_enabled",
1133
+ "ScreenshotFocusOverrideRight" = "#screenshot_focus_override_right",
1134
+ "ScreenshotTextureFileSystem" = "#screenshot_texture_file_system",
1135
+ "BButtonText" = "#b_button_text",
1136
+ "KickButtonVisible" = "#kick_button_visible",
1137
+ "KickButtonEnabled" = "#kick_button_enabled",
1138
+ "BanButtonVisible" = "#ban_button_visible",
1139
+ "BanButtonEnabled" = "#ban_button_enabled",
1140
+ "IsWorldTemplateLocked" = "#is_world_template_locked",
1141
+ "WorldTemplatePermissionsLockedWarningText" = "#world_template_permissions_locked_warning_text",
1142
+ "PermissionsGridDimension" = "#permissions_grid_dimension",
1143
+ "PermissionOptionsGridVisible" = "#permission_options_grid_visible",
1144
+ "OptionName" = "#option_name",
1145
+ "OptionStateName" = "#option_state_name",
1146
+ "PlayerToggleState" = "#player_toggle_state",
1147
+ "OptionToggleState" = "#option_toggle_state",
1148
+ "CanEditPermissions" = "#can_edit_permissions",
1149
+ "PermissionLevelDropdownLabel" = "#permission_level_dropdown_label",
1150
+ "PermissionLevelRadioVisitor" = "#permission_level_radio_visitor",
1151
+ "PermissionLevelRadioMember" = "#permission_level_radio_member",
1152
+ "PermissionLevelRadioOperator" = "#permission_level_radio_operator",
1153
+ "PermissionLevelRadioCustom" = "#permission_level_radio_custom",
1154
+ "PermissionLevelDropdownIconTexture" = "#permission_level_dropdown_icon_texture",
1155
+ "CastEnabledSelect" = "#cast_enabled_select",
1156
+ "CastCharacterOptionsDimensions" = "#cast_character_options_dimensions",
1157
+ "CastButtonSelected" = "#cast_button_selected",
1158
+ "CastButtonVisible" = "#cast_button_visible",
1159
+ "InUseTexture" = "#in_use_texture",
1160
+ "InUseTextureFileSystem" = "#in_use_texture_file_system",
1161
+ "IsCharacterLoading" = "#is_character_loading",
1162
+ "CastPreviewSkin" = "#cast_preview_skin",
1163
+ "SelectedCharacterName" = "#selected_character_name",
1164
+ "RarityBarTexture" = "#rarity_bar_texture",
1165
+ "RarityBarVisible" = "#rarity_bar_visible",
1166
+ "RarityColor" = "#rarity_color",
1167
+ "Common" = "#common",
1168
+ "Uncommon" = "#uncommon",
1169
+ "Rare" = "#rare",
1170
+ "Epic" = "#epic",
1171
+ "Legendary" = "#legendary",
1172
+ "EmoteLabel" = "#emote_label",
1173
+ "EmoteNameTouch" = "#emote_name_touch",
1174
+ "EmoteIsValid" = "#emote_is_valid",
1175
+ "EmoteImage" = "#emote_image",
1176
+ "EmoteImageFileSystem" = "#emote_image_file_system",
1177
+ "ImageIsValid" = "#image_is_valid",
1178
+ "EmoteIndexName" = "#emote_index_name",
1179
+ "AreGamepadQuickSelectHelpersVisible" = "#are_gamepad_quick_select_helpers_visible",
1180
+ "IsEmoteGamepadHelperVisible" = "#is_emote_gamepad_helper_visible",
1181
+ "Index" = "#index",
1182
+ "HoverSlice" = "#hover_slice",
1183
+ "InitSelectionWheelInputMode" = "#init_selection_wheel_input_mode",
1184
+ "EmoteName" = "#emote_name",
1185
+ "CanPaperdollRotate" = "#can_paperdoll_rotate",
1186
+ "AlwaysHandleControllerDirection" = "#always_handle_controller_direction",
1187
+ "PreviewAppearanceOn" = "#preview_appearance_on",
1188
+ "LeftSkinColorOptionOn" = "#left_skin_color_option_on",
1189
+ "ExpandedAppearanceVisible" = "#expanded_appearance_visible",
1190
+ "SkinColorOptionEnabled" = "#skin_color_option_enabled",
1191
+ "FocusEnabled" = "#focus_enabled",
1192
+ "PlayHighlightedEmoteHelperVisible" = "#play_highlighted_emote_helper_visible",
1193
+ "RightSkinColorOptionOn" = "#right_skin_color_option_on",
1194
+ "RestrictedInfoVisible" = "#restricted_info_visible",
1195
+ "PersonaIsUpdating" = "#persona_is_updating",
1196
+ "RealmsSavedCoinsLabel" = "#realms_saved_coins_label",
1197
+ "RealmsRedeemButtonVisible" = "#realms_redeem_button_visible",
1198
+ "RealmsSubscriptionButtonVisible" = "#realms_subscription_button_visible",
1199
+ "ShowEquipButtonHelper" = "#show_equip_button_helper",
1200
+ "IsSubcategoryEquipButtonVisible" = "#is_subcategory_equip_button_visible",
1201
+ "IsSkinEquipVisible" = "#is_skin_equip_visible",
1202
+ "IsSizeEquipVisible" = "#is_size_equip_visible",
1203
+ "IsCoinPurchaseVisible" = "#is_coin_purchase_visible",
1204
+ "IsCurrencyPurchaseVisible" = "#is_currency_purchase_visible",
1205
+ "IsAchievementAward" = "#is_achievement_award",
1206
+ "CanCollectAchievementAward" = "#can_collect_achievement_award",
1207
+ "IsSeeInStoreButtonVisible" = "#is_see_in_store_button_visible",
1208
+ "IsPurchaseButtonPaddingVisible" = "#is_purchase_button_padding_visible",
1209
+ "RightPanelTitle" = "#right_panel_title",
1210
+ "RightPanelTitleRarity" = "#right_panel_title_rarity",
1211
+ "IsRightPanelClassicCustomVisible" = "#is_right_panel_classic_custom_visible",
1212
+ "IsLimitedTimeOffer" = "#is_limited_time_offer",
1213
+ "SpecialBannerText" = "#special_banner_text",
1214
+ "IsSpecailOfferBannerVisible" = "#is_specail_offer_banner_visible",
1215
+ "LeftCycleButtonEnabled" = "#left_cycle_button_enabled",
1216
+ "RightCycleButtonEnabled" = "#right_cycle_button_enabled",
1217
+ "IsRightInfo_" = "#is_right_info_",
1218
+ "IsUsingDressingRoomDebugging" = "#is_using_dressing_room_debugging",
1219
+ "CurrentSkinName" = "#current_skin_name",
1220
+ "ActiveSkinName" = "#active_skin_name",
1221
+ "CurrentSkin" = "#current_skin",
1222
+ "ActiveSkin" = "#active_skin",
1223
+ "PreviewSkinName" = "#preview_skin_name",
1224
+ "IsGettingStartedVisible" = "#is_getting_started_visible",
1225
+ "ShowColorPicker" = "#show_color_picker",
1226
+ "FeaturedSkinPackDimensions" = "#featured_skin_pack_dimensions",
1227
+ "IsLeftCycleFeaturedSkinsButtonEnabled" = "#is_left_cycle_featured_skins_button_enabled",
1228
+ "IsRightCycleFeaturedSkinsButtonEnabled" = "#is_right_cycle_featured_skins_button_enabled",
1229
+ "EmotesActive" = "#emotes_active",
1230
+ "AchievementOfferLockStateTexture" = "#achievement_offer_lock_state_texture",
1231
+ "IsOfferAchievement" = "#is_offer_achievement",
1232
+ "RightPanelDescription" = "#right_panel_description",
1233
+ "IsLeftCycleFeaturedPiecesButtonEnabled" = "#is_left_cycle_featured_pieces_button_enabled",
1234
+ "IsRightCycleFeaturedPiecesButtonEnabled" = "#is_right_cycle_featured_pieces_button_enabled",
1235
+ "Is_" = "#is_",
1236
+ "ColorSinglePageSize" = "#color_single_page_size",
1237
+ "ColorPickerInfoPanelTitleColor" = "#color_picker_info_panel_title_color",
1238
+ "ColorPickerInfoPanelTitleName" = "#color_picker_info_panel_title_name",
1239
+ "SkinPackRightPanelUsageIsLimited" = "#skin_pack_right_panel_usage_is_limited",
1240
+ "SkinPackRightPanelUsageText" = "#skin_pack_right_panel_usage_text",
1241
+ "IsRightPanelClassicSkinPackVisible" = "#is_right_panel_classic_skin_pack_visible",
1242
+ "IsAppearanceStatusHoverPanelVisible" = "#is_appearance_status_hover_panel_visible",
1243
+ "SkinPackRightPanelUsageTooltipText" = "#skin_pack_right_panel_usage_tooltip_text",
1244
+ "SkinPackRightPanelSkinCountText" = "#skin_pack_right_panel_skin_count_text",
1245
+ "SkinPackRightPanelWorldCountText" = "#skin_pack_right_panel_world_count_text",
1246
+ "SkinPackRightPanelTexturePackCountText" = "#skin_pack_right_panel_texture_pack_count_text",
1247
+ "RealmsPlusSkinPackName" = "#realms_plus_skin_pack_name",
1248
+ "RealmsPlusSkinPackTexture" = "#realms_plus_skin_pack_texture",
1249
+ "RealmsPlusSkinPackTextureFileSystem" = "#realms_plus_skin_pack_texture_file_system",
1250
+ "IsFeaturedClassicSkinLoading" = "#is_featured_classic_skin_loading",
1251
+ "IsFeaturedPackVisible" = "#is_featured_pack_visible",
1252
+ "IsClassicSkinCurrentOfferLoading" = "#is_classic_skin_current_offer_loading",
1253
+ "CustomSkinButtonEnabled" = "#custom_skin_button_enabled",
1254
+ "SkinPackTitle" = "#skin_pack_title",
1255
+ "SkinPackAuthor" = "#skin_pack_author",
1256
+ "HeightImageBinding" = "#height_image_binding",
1257
+ "BodySizeDimensions" = "#body_size_dimensions",
1258
+ "BodySizeSelected" = "#body_size_selected",
1259
+ "BodySizeEquipped" = "#body_size_equipped",
1260
+ "ArmsImageBinding" = "#arms_image_binding",
1261
+ "ArmSizeDimensions" = "#arm_size_dimensions",
1262
+ "ArmSizeSelected" = "#arm_size_selected",
1263
+ "ArmSizeEquipped" = "#arm_size_equipped",
1264
+ "IsOfferOnSale" = "#is_offer_on_sale",
1265
+ "IsOfferPurchasableAndNotFree" = "#is_offer_purchasable_and_not_free",
1266
+ "IsRedeemable" = "#is_redeemable",
1267
+ "IsOfferNew" = "#is_offer_new",
1268
+ "IsOfferLocked" = "#is_offer_locked",
1269
+ "KeyBoundTexture" = "#key_bound_texture",
1270
+ "KeyBoundLabel" = "#key_bound_label",
1271
+ "IsKeyBound" = "#is_key_bound",
1272
+ "CurrentPanelColor" = "#current_panel_color",
1273
+ "ColorEquipped" = "#color_equipped",
1274
+ "ColorSelected" = "#color_selected",
1275
+ "LeftColorCycleEnabled" = "#left_color_cycle_enabled",
1276
+ "OtherChannels" = "#other_channels",
1277
+ "ColorPickerTitle" = "#color_picker_title",
1278
+ "RightColorCycleEnabled" = "#right_color_cycle_enabled",
1279
+ "IsSkinSelected" = "#is_skin_selected",
1280
+ "IsSkinEquipped" = "#is_skin_equipped",
1281
+ "ClassicSkinIndex" = "#classic_skin_index",
1282
+ "IsSkinLocked" = "#is_skin_locked",
1283
+ "IsSkinIndexVisible" = "#is_skin_index_visible",
1284
+ "IsSkinNotEquippable" = "#is_skin_not_equippable",
1285
+ "IsSkinRealmsPlus" = "#is_skin_realms_plus",
1286
+ "IsSkinNew" = "#is_skin_new",
1287
+ "SkinFocusId" = "#skin_focus_id",
1288
+ "SkinPackChangeRight" = "#skin_pack_change_right",
1289
+ "PieceContentDownloading" = "#piece_content_downloading",
1290
+ "IsPieceCsb" = "#is_piece_csb",
1291
+ "IsPieceEquipped" = "#is_piece_equipped",
1292
+ "IsPieceSelected" = "#is_piece_selected",
1293
+ "IsPieceBeingPreviewed" = "#is_piece_being_previewed",
1294
+ "IsPieceVisible" = "#is_piece_visible",
1295
+ "PiecePlusButtonText" = "#piece_plus_button_text",
1296
+ "IsPiecePlusButtonVisible" = "#is_piece_plus_button_visible",
1297
+ "PieceOfferCount" = "#piece_offer_count",
1298
+ "IsNoneOptionVisible" = "#is_none_option_visible",
1299
+ "PieceSectionTitle" = "#piece_section_title",
1300
+ "LeftLimbEnabled" = "#left_limb_enabled",
1301
+ "LimbTitle" = "#limb_title",
1302
+ "LimbTitleEnabled" = "#limb_title_enabled",
1303
+ "RightLimbEnabled" = "#right_limb_enabled",
1304
+ "IsLegOrArmsSelected" = "#is_leg_or_arms_selected",
1305
+ "NoneOptionText" = "#none_option_text",
1306
+ "IsNoneOptionEnabled" = "#is_none_option_enabled",
1307
+ "SizingOptionsOn" = "#sizing_options_on",
1308
+ "IsPieceSectionVisible" = "#is_piece_section_visible",
1309
+ "PieceSections" = "#piece_sections",
1310
+ "IsPieceListSectionVisible" = "#is_piece_list_section_visible",
1311
+ "IsCycleFeaturedSectionReady" = "#is_cycle_featured_section_ready",
1312
+ "SubCategoryFeaturedTitle" = "#sub_category_featured_title",
1313
+ "IsSubcategoryFeaturedSectionVisible" = "#is_subcategory_featured_section_visible",
1314
+ "SubcategoryTitle" = "#subcategory_title",
1315
+ "SubcategoryImage" = "#subcategory_image",
1316
+ "IsCategoryToggleSelected" = "#is_category_toggle_selected",
1317
+ "CategoryTitle" = "#category_title",
1318
+ "SubcategoryDimensionBinding" = "#subcategory_dimension_binding",
1319
+ "IsRightInfoMainRealmsPanelVisible" = "#is_right_info_main_realms_panel_visible",
1320
+ "CategorySectionContent" = "#category_section_content",
1321
+ "FeaturedSectionContent" = "#featured_section_content",
1322
+ "IsCategorySectionVisible" = "#is_category_section_visible",
1323
+ "SkinnySkinIndex" = "#skinny_skin_index",
1324
+ "FatSkinIndex" = "#fat_skin_index",
1325
+ "ToastTitle" = "#toast_title",
1326
+ "SwitchingPersonaSkinTitle" = "#switching_persona_skin_title",
1327
+ "SwitchingPersonaSkinMessage" = "#switching_persona_skin_message",
1328
+ "ClassicSkinPersonaSwitchToggle" = "#classic_skin_persona_switch_toggle",
1329
+ "IsCustomSkinPopupVisible" = "#is_custom_skin_popup_visible",
1330
+ "ExpandedPackDimensions" = "#expanded_pack_dimensions",
1331
+ "IsSkinPickerSectionVisible" = "#is_skin_picker_section_visible",
1332
+ "PackAdditionalSkinCountText" = "#pack_additional_skin_count_text",
1333
+ "IsClassicSkinPackLoading" = "#is_classic_skin_pack_loading",
1334
+ "SkinDimensions" = "#skin_dimensions",
1335
+ "ExpandButtonFocusId" = "#expand_button_focus_id",
1336
+ "SkinPackExpandPackFocusChangeLeft" = "#skin_pack_expand_pack_focus_change_left",
1337
+ "SkinPackDimensions" = "#skin_pack_dimensions",
1338
+ "ShowMorePackVisible" = "#show_more_pack_visible",
1339
+ "SkinPackCollectorSections" = "#skin_pack_collector_sections",
1340
+ "PersonaSkinPackCategoryName" = "#persona_skin_pack_category_name",
1341
+ "IsSkinPackScreenSearchLoading" = "#is_skin_pack_screen_search_loading",
1342
+ "IsClassicSkinSectionVisible" = "#is_classic_skin_section_visible",
1343
+ "CapeCount" = "#cape_count",
1344
+ "IsCapeSelectionVisible" = "#is_cape_selection_visible",
1345
+ "IsCapeSectionVisible" = "#is_cape_section_visible",
1346
+ "PersonaEmoteSlotName" = "#persona_emote_slot_name",
1347
+ "PersonaEmoteImageName" = "#persona_emote_image_name",
1348
+ "PersonaEmoteImageFileSystem" = "#persona_emote_image_file_system",
1349
+ "EmoteSlotDimensionBinding" = "#emote_slot_dimension_binding",
1350
+ "IsPlayAgainButtonVisible" = "#is_play_again_button_visible",
1351
+ "EmoteOfferCount" = "#emote_offer_count",
1352
+ "IsEmoteOfferListVisible" = "#is_emote_offer_list_visible",
1353
+ "IsNoneEmoteOptionEnabled" = "#is_none_emote_option_enabled",
1354
+ "EmotePopupTitle" = "#emote_popup_title",
1355
+ "PreviewSkinFull" = "#preview_skin_full",
1356
+ "PersonaCoinsFocusEnabled" = "#persona_coins_focus_enabled",
1357
+ "PersonaXBindEnabled" = "#persona_x_bind_enabled",
1358
+ "RealmsplusExpiredVisible" = "#realmsplus_expired_visible",
1359
+ "FriendsServerIconTextureName" = "#friends_server_icon_texture_name",
1360
+ "CrossPlatformFriendsServerIconTextureName" = "#cross_platform_friends_server_icon_texture_name",
1361
+ "PingReadyThirdparty" = "#ping_ready_thirdparty",
1362
+ "RealmsSignInPrompt" = "#realms_sign_in_prompt",
1363
+ "RealmsSignInPromptFriends" = "#realms_sign_in_prompt_friends",
1364
+ "RealmsSignInButtonVisible" = "#realms_sign_in_button_visible",
1365
+ "RealmsWorldDetails" = "#realms_world_details",
1366
+ "RealmsWorldIsHardcore" = "#realms_world_is_hardcore",
1367
+ "PlayerGamertag" = "#player_gamertag",
1368
+ "RealmsFeedButtonTtsHeader" = "#realms_feed_button_tts_header",
1369
+ "MenuRealmsFeedVisible" = "#menu_realms_feed_visible",
1370
+ "RealmsWorldExpiryNotificationVisible" = "#realms_world_expiry_notification_visible",
1371
+ "RealmsEditVisible" = "#realms_edit_visible",
1372
+ "LeaveRealmButtonVisible" = "#leave_realm_button_visible",
1373
+ "RealmsGridsVisible" = "#realms_grids_visible",
1374
+ "NetworkWorldHeaderIconTexturePath" = "#network_world_header_icon_texture_path",
1375
+ "NetworkWorldHeaderIconTextureLocation" = "#network_world_header_icon_texture_location",
1376
+ "NetworkWorldHeader" = "#network_world_header",
1377
+ "NetworkWorldDetails" = "#network_world_details",
1378
+ "NetworkWorldPlayerCount" = "#network_world_player_count",
1379
+ "NetworkWorldPlayerCountVisible" = "#network_world_player_count_visible",
1380
+ "GameOnline" = "#game_online",
1381
+ "GameUnavailable" = "#game_unavailable",
1382
+ "GameOffline" = "#game_offline",
1383
+ "NetworkWorldIsHardcore" = "#network_world_is_hardcore",
1384
+ "NetworkWorldButtonEnabled" = "#network_world_button_enabled",
1385
+ "PrivilegesBlockedText" = "#privilegesBlockedText",
1386
+ "ServersNetworkWorldItemGridDimension" = "#servers_network_world_item_grid_dimension",
1387
+ "AdditionalServerToggleIndex" = "#additional_server_toggle_index",
1388
+ "IsNetworkAvailableAndMultiplayerVisible" = "#is_network_available_and_multiplayer_visible",
1389
+ "InfoAdditionalServerName" = "#info_additional_server_name",
1390
+ "ServerPlayerCountIcon" = "#server_player_count_icon",
1391
+ "InfoAdditionalServerPlayerCount" = "#info_additional_server_player_count",
1392
+ "InfoAdditionalServerPingTextureName" = "#info_additional_server_ping_texture_name",
1393
+ "InfoAdditionalServerPing" = "#info_additional_server_ping",
1394
+ "PingReadyExternal" = "#ping_ready_external",
1395
+ "TextureName" = "#texture_name",
1396
+ "ServerPlayerCount" = "#server_player_count",
1397
+ "IsNetworkAvailableAndPingNotLoading" = "#is_network_available_and_ping_not_loading",
1398
+ "ThirdPartyFeaturedItemGridDimension" = "#third_party_featured_item_grid_dimension",
1399
+ "ThirdPartyToggleIndex" = "#third_party_toggle_index",
1400
+ "FeaturedServersVisible" = "#featured_servers_visible",
1401
+ "ThirdPartyScreenshotVisible" = "#third_party_screenshot_visible",
1402
+ "ThirdPartyServerName" = "#third_party_server_name",
1403
+ "IsServerInfoAvailableCollection" = "#is_server_info_available_collection",
1404
+ "ThirdPartyServerMessage" = "#third_party_server_message",
1405
+ "IsNetworkAvailable" = "#is_network_available",
1406
+ "ThirdPartyServerLogoTexturePath" = "#third_party_server_logo_texture_path",
1407
+ "ThirdPartyServerLogoResourceLocation" = "#third_party_server_logo_resource_location",
1408
+ "FeaturedServersVisibleAndAvailable" = "#featured_servers_visible_and_available",
1409
+ "IsServerInfoAvailable" = "#is_server_info_available",
1410
+ "InfoThirdPartyServerLogoTexturePath" = "#info_third_party_server_logo_texture_path",
1411
+ "InfoThirdPartyScreenshotVisible" = "#info_third_party_screenshot_visible",
1412
+ "InfoThirdPartyServerName" = "#info_third_party_server_name",
1413
+ "InfoThirdPartyServerPlayerCount" = "#info_third_party_server_player_count",
1414
+ "InfoPingTextureName" = "#info_ping_texture_name",
1415
+ "InfoServerPing" = "#info_server_ping",
1416
+ "ViewOffersVisible" = "#view_offers_visible",
1417
+ "ServerHasScreenshots" = "#server_has_screenshots",
1418
+ "ServerHasDescription" = "#server_has_description",
1419
+ "ServerHasGames" = "#server_has_games",
1420
+ "ServerHasNews" = "#server_has_news",
1421
+ "ThisScreenshotSelected" = "#this_screenshot_selected",
1422
+ "ScreenshotCollectionLength" = "#screenshot_collection_length",
1423
+ "DescriptionIsReadMore" = "#description_is_read_more",
1424
+ "DescriptionIsReadLess" = "#description_is_read_less",
1425
+ "UsingEllipses" = "#using_ellipses",
1426
+ "AvailableGameImage" = "#available_game_image",
1427
+ "AvailableGameImageVisible" = "#available_game_image_visible",
1428
+ "AvailableGameTitle" = "#available_game_title",
1429
+ "AvailableGameSubtitle" = "#available_game_subtitle",
1430
+ "AvailableGameDescription" = "#available_game_description",
1431
+ "GamesCollectionLength" = "#games_collection_length",
1432
+ "NewsText" = "#news_text",
1433
+ "NewsLabel" = "#news_label",
1434
+ "NewsIsReadMore" = "#news_is_read_more",
1435
+ "NewsIsReadLess" = "#news_is_read_less",
1436
+ "LocalWorldsStorageSize" = "#local_worlds_storage_size",
1437
+ "LegacyWorldsStorageSize" = "#legacy_worlds_storage_size",
1438
+ "LocalWorldName" = "#local_world_name",
1439
+ "LegacyWorldName" = "#legacy_world_name",
1440
+ "LocalWorldGameMode" = "#local_world_game_mode",
1441
+ "LegacyWorldGameMode" = "#legacy_world_game_mode",
1442
+ "LocalWorldDate" = "#local_world_date",
1443
+ "LegacyWorldDate" = "#legacy_world_date",
1444
+ "LegacyWorldDateVisible" = "#legacy_world_date_visible",
1445
+ "LocalWorldfileSize" = "#local_worldfile_size",
1446
+ "LegacyWorldfileSize" = "#legacy_worldfile_size",
1447
+ "LocalAndCloudStorageVisible" = "#local_and_cloud_storage_visible",
1448
+ "LocalOnlyStorageVisible" = "#local_only_storage_visible",
1449
+ "CloudOnlyStorageVisible" = "#cloud_only_storage_visible",
1450
+ "WorldLockVisible" = "#world_lock_visible",
1451
+ "RealmsChevronVisible" = "#realms_chevron_visible",
1452
+ "OwnershipVerificationStateText" = "#ownership_verification_state_text",
1453
+ "IsOwnershipVerificationInProgress" = "#is_ownership_verification_in_progress",
1454
+ "LocalWorldImage" = "#local_world_image",
1455
+ "LocalWorldTextureSource" = "#local_world_texture_source",
1456
+ "LegacyWorldImage" = "#legacy_world_image",
1457
+ "LegacyWorldTextureSource" = "#legacy_world_texture_source",
1458
+ "CloudUploadEnabled" = "#cloud_upload_enabled",
1459
+ "LocalWorldItemGridDimension" = "#local_world_item_grid_dimension",
1460
+ "BetaRetailLocalWorldItemGridDimension" = "#beta_retail_local_world_item_grid_dimension",
1461
+ "BetaRetailLocalWorldName" = "#beta_retail_local_world_name",
1462
+ "BetaRetailLocalWorldDate" = "#beta_retail_local_world_date",
1463
+ "BetaRetailLocalWorldGameMode" = "#beta_retail_local_world_game_mode",
1464
+ "BetaRetailLocalWorldFilesize" = "#beta_retail_local_world_filesize",
1465
+ "BetaRetailLocalWorldImage" = "#beta_retail_local_world_image",
1466
+ "BetaRetailLocalWorldTextureSource" = "#beta_retail_local_world_texture_source",
1467
+ "BetaRetailLegacyWorldItemGridDimension" = "#beta_retail_legacy_world_item_grid_dimension",
1468
+ "BetaRetailLegacyWorldName" = "#beta_retail_legacy_world_name",
1469
+ "BetaRetailLegacyWorldDate" = "#beta_retail_legacy_world_date",
1470
+ "BetaRetailLegacyWorldGameMode" = "#beta_retail_legacy_world_game_mode",
1471
+ "BetaRetailLegacyWorldFilesize" = "#beta_retail_legacy_world_filesize",
1472
+ "BetaRetailLegacyWorldImage" = "#beta_retail_legacy_world_image",
1473
+ "BetaRetailLegacyWorldTextureSource" = "#beta_retail_legacy_world_texture_source",
1474
+ "AddFriendButtonVisible" = "#add_friend_button_visible",
1475
+ "RealmsNotificationButtonVisible" = "#realms_notification_button_visible",
1476
+ "JoinByCodeVisible" = "#join_by_code_visible",
1477
+ "AddServerEnabled" = "#add_server_enabled",
1478
+ "CreateOnRealmsButtonVisible" = "#create_on_realms_button_visible",
1479
+ "WorldsTabImportButtonFocusDownOverride" = "#worlds_tab_import_button_focus_down_override",
1480
+ "SyncLegacyButtonText" = "#sync_legacy_button_text",
1481
+ "SyncLegacyWorldsButtonVisible" = "#sync_legacy_worlds_button_visible",
1482
+ "InboxEnabled" = "#inbox_enabled",
1483
+ "FriendsTabInvitationButtonFocusDownOverride" = "#friends_tab_invitation_button_focus_down_override",
1484
+ "OpenAccountSettingButtonGamecoreVisible" = "#open_account_setting_button_gamecore_visible",
1485
+ "RealmsWarningText" = "#realms_warning_text",
1486
+ "DeviceSunsetting" = "#device_sunsetting",
1487
+ "ShowNewPlayScreenOptIn" = "#show_new_play_screen_opt_in",
1488
+ "ShowNewPlayScreenServersOptIn" = "#show_new_play_screen_servers_opt_in",
1489
+ "PersonalRealmsGridVisible" = "#personal_realms_grid_visible",
1490
+ "RealmLabelVisible" = "#realm_label_visible",
1491
+ "FreePreviewRealmButtonVisible" = "#free_preview_realm_button_visible",
1492
+ "FreePreviewRealmNewButtonVisible" = "#free_preview_realm_new_button_visible",
1493
+ "FreePreviewRealmAvailable" = "#free_preview_realm_available",
1494
+ "PersonalRealmsGridDimension" = "#personal_realms_grid_dimension",
1495
+ "LoadingPersonalRealmsGridDimension" = "#loading_personal_realms_grid_dimension",
1496
+ "RealmsLoadingDisplayMessage" = "#realms_loading_display_message",
1497
+ "LoadingPersonalRealmsGridVisible" = "#loading_personal_realms_grid_visible",
1498
+ "RealmsTrialText" = "#realms_trial_text",
1499
+ "RealmTrialButtonVisible" = "#realm_trial_button_visible",
1500
+ "RealmNintendoFirstRealmPurchaseButtonVisible" = "#realm_nintendo_first_realm_purchase_button_visible",
1501
+ "MultiplayerBlockedPanelVisible" = "#multiplayer_blocked_panel_visible",
1502
+ "MultiplayerSessions" = "#multiplayer_sessions",
1503
+ "LocalWorldsVisible" = "#local_worlds_visible",
1504
+ "NoLocalWorlds" = "#no_local_worlds",
1505
+ "BetaRetailLocalWorldsVisible" = "#beta_retail_local_worlds_visible",
1506
+ "LegacyWorldsLoadingDisplayMessage" = "#legacy_worlds_loading_display_message",
1507
+ "LegacyWorldsVisible" = "#legacy_worlds_visible",
1508
+ "BetaRetailLegacyWorldsVisible" = "#beta_retail_legacy_worlds_visible",
1509
+ "NoLocalWorldSwitchVisible" = "#no_local_world_switch_visible",
1510
+ "NoLocalWorldsHelpLabel" = "#no_local_worlds_help_label",
1511
+ "NoLocalWorldHelpVisible" = "#no_local_world_help_visible",
1512
+ "NoLocalWorldsSwitchSettingVisible" = "#no_local_worlds_switch_setting_visible",
1513
+ "NoLocalWorldsLaunchHelpButtonLabel" = "#no_local_worlds_launch_help_button_label",
1514
+ "SwitchStorageTypeEnabled" = "#switch_storage_type_enabled",
1515
+ "SwitchStorageTypeToggleLabel" = "#switch_storage_type_toggle_label",
1516
+ "StorageLocationRadioExternal" = "#storage_location_radio_external",
1517
+ "StorageLocationRadioPackage" = "#storage_location_radio_package",
1518
+ "LanNetworkWorldItemGridDimension" = "#lan_network_world_item_grid_dimension",
1519
+ "LanGridVisible" = "#lan_grid_visible",
1520
+ "JoinableRealmsPanelVisible" = "#joinable_realms_panel_visible",
1521
+ "FriendsRealmsVisible" = "#friends_realms_visible",
1522
+ "FriendRealmsGridDimension" = "#friend_realms_grid_dimension",
1523
+ "LoadingFriendsRealmsGridDimension" = "#loading_friends_realms_grid_dimension",
1524
+ "LoadingFriendsRealmsGridVisible" = "#loading_friends_realms_grid_visible",
1525
+ "GetOfflineAuthcodeMessagePanelVisible" = "#get_offline_authcode_message_panel_visible",
1526
+ "NoFriendsRealmsVisible" = "#no_friends_realms_visible",
1527
+ "FriendsNetworkWorldItemGridDimension" = "#friends_network_world_item_grid_dimension",
1528
+ "FriendsGridVisible" = "#friends_grid_visible",
1529
+ "NoFriendsGridMessageText" = "#no_friends_grid_message_text",
1530
+ "NoFriendsGridMessageVisible" = "#no_friends_grid_message_visible",
1531
+ "CrossPlatformFriendsNetworkWorldItemGridDimension" = "#cross_platform_friends_network_world_item_grid_dimension",
1532
+ "CrossPlatformFriendsGridVisible" = "#cross_platform_friends_grid_visible",
1533
+ "NoCrossPlatformFriendsGridMessageText" = "#no_cross_platform_friends_grid_message_text",
1534
+ "NoCrossPlatformFriendsGridMessageVisible" = "#no_cross_platform_friends_grid_message_visible",
1535
+ "GeneralNoMultiplayerGridMessageText" = "#general_no_multiplayer_grid_message_text",
1536
+ "GeneralNoMultiplayerGridMessageVisible" = "#general_no_multiplayer_grid_message_visible",
1537
+ "IsAdditionalServerLabelVisible" = "#is_additional_server_label_visible",
1538
+ "ServersGridVisible" = "#servers_grid_visible",
1539
+ "LoadingServersProgressVisible" = "#loading_servers_progress_visible",
1540
+ "InternetConnectionText" = "#internet_connection_text",
1541
+ "MultiplayerBlockedText" = "#multiplayer_blocked_text",
1542
+ "FeatureServerMessageVisible" = "#feature_server_message_visible",
1543
+ "FeatureServerMessageText" = "#feature_server_message_text",
1544
+ "IsThirdPartyServerSelected" = "#is_third_party_server_selected",
1545
+ "IsAdditionalServerSelected" = "#is_additional_server_selected",
1546
+ "AddServerInfoVisible" = "#add_server_info_visible",
1547
+ "WorldItemCount" = "#world_item_count",
1548
+ "FriendsTabShowBouncing" = "#friends_tab_show_bouncing",
1549
+ "FriendsTabShowNotBouncing" = "#friends_tab_show_not_bouncing",
1550
+ "FriendsTabShowInvites" = "#friends_tab_show_invites",
1551
+ "FriendWorldItemCount" = "#friend_world_item_count",
1552
+ "ServerWorldItemCount" = "#server_world_item_count",
1553
+ "ExitButtonVisible" = "#exit_button_visible",
1554
+ "BumperTooltipsVisible" = "#bumper_tooltips_visible",
1555
+ "JoinByCodeTextEdit" = "#join_by_code_text_edit",
1556
+ "DevelopmentVersion" = "#development_version",
1557
+ "Version" = "#version",
1558
+ "TurtleVisible" = "#turtle_visible",
1559
+ "TurtleText" = "#turtle_text",
1560
+ "TtsText" = "#tts_text",
1561
+ "ModalTitleTts" = "#modal_title_tts",
1562
+ "ModalLabelTts" = "#modal_label_tts",
1563
+ "ProgressLabel" = "#progress_label",
1564
+ "ProgressCurrentLabel" = "#progress_current_label",
1565
+ "ProgressTotalLabel" = "#progress_total_label",
1566
+ "LeftPhotoVisibility" = "#left_photo_visibility",
1567
+ "RightPhotoVisibility" = "#right_photo_visibility",
1568
+ "PhotoPageItemNameLeft" = "#photo_page_item_name_left",
1569
+ "PhotoPageItemNameRight" = "#photo_page_item_name_right",
1570
+ "NoPickPhotosAlertVisibility" = "#no_pick_photos_alert_visibility",
1571
+ "TextBoxPhotos" = "#text_box_photos",
1572
+ "PhotoVisibility" = "#photo_visibility",
1573
+ "PagePrevVisibility" = "#page_prev_visibility",
1574
+ "PageNextVisibility" = "#page_next_visibility",
1575
+ "ExportVisibility" = "#export_visibility",
1576
+ "NoPicsAlertVisibility" = "#no_pics_alert_visibility",
1577
+ "PlayerRating" = "#player_rating",
1578
+ "CurrentRating5" = "#current_rating_5",
1579
+ "CurrentRating4" = "#current_rating_4",
1580
+ "CurrentRating3" = "#current_rating_3",
1581
+ "CurrentRating2" = "#current_rating_2",
1582
+ "CurrentRating1" = "#current_rating_1",
1583
+ "FooterText" = "#footer_text",
1584
+ "PlatformPicturePath" = "#platform_picture_path",
1585
+ "PlatformPictureFileSystem" = "#platform_picture_file_system",
1586
+ "GamerScore" = "#gamer_score",
1587
+ "PlayerOnline" = "#player_online",
1588
+ "PlayerOffline" = "#player_offline",
1589
+ "PlatformInfoVisible" = "#platform_info_visible",
1590
+ "PlatformName" = "#platform_name",
1591
+ "XblInfoVisible" = "#xbl_info_visible",
1592
+ "CurrentlyPlaying" = "#currently_playing",
1593
+ "CurrentlyPlayingVisible" = "#currently_playing_visible",
1594
+ "AddFriendButtonText" = "#add_friend_button_text",
1595
+ "RemoveFriendButtonText" = "#remove_friend_button_text",
1596
+ "RemoveFriendButtonVisible" = "#remove_friend_button_visible",
1597
+ "AddRemoveInProgress" = "#add_remove_in_progress",
1598
+ "IsFriend" = "#is_friend",
1599
+ "FriendStatusDropdownToggleLabel" = "#friend_status_dropdown_toggle_label",
1600
+ "MutePlayer" = "#mute_player",
1601
+ "BlockPlayer" = "#block_player",
1602
+ "FriendOption" = "#friend_option",
1603
+ "FriendHelperText" = "#friend_helper_text",
1604
+ "FavoriteOption" = "#favorite_option",
1605
+ "RemoveFriendOption" = "#remove_friend_option",
1606
+ "PlayerUuid" = "#player_uuid",
1607
+ "EnableEditAppearance" = "#enable_edit_appearance",
1608
+ "ManageOptionsVisible" = "#manage_options_visible",
1609
+ "Modal" = "#modal",
1610
+ "ArrowLeftEnabled" = "#arrow_left_enabled",
1611
+ "ArrowRightEnabled" = "#arrow_right_enabled",
1612
+ "IsPresetVisible" = "#is_preset_visible",
1613
+ "IsPresetAddVisible" = "#is_preset_add_visible",
1614
+ "IsRetryVisible" = "#is_retry_visible",
1615
+ "IsPresetLoadingVisible" = "#is_preset_loading_visible",
1616
+ "AppearancePresetPreview" = "#appearance_preset_preview",
1617
+ "PreviewIdx" = "#preview_idx",
1618
+ "SelectedSkinName" = "#selected_skin_name",
1619
+ "SelectedSkin" = "#selected_skin",
1620
+ "CenterPresetSize" = "#center_preset_size",
1621
+ "EditAppearanceErrorTooltipVisible" = "#edit_appearance_error_tooltip_visible",
1622
+ "MarketplaceDisabled" = "#marketplace_disabled",
1623
+ "EditAppearanceText" = "#edit_appearance_text",
1624
+ "DeleteButtonEnabled" = "#delete_button_enabled",
1625
+ "SelectedPersonaSkinText" = "#selected_persona_skin_text",
1626
+ "SelectedPersonaSkinIcon" = "#selected_persona_skin_icon",
1627
+ "IsAProfileSelected" = "#is_a_profile_selected",
1628
+ "LeftPanelTitle" = "#left_panel_title",
1629
+ "IsClassicSkinProfileSelected" = "#is_classic_skin_profile_selected",
1630
+ "IsFeaturedPanelVisible" = "#is_featured_panel_visible",
1631
+ "DeepLinkProfileLoadingVisible" = "#deep_link_profile_loading_visible",
1632
+ "PersonaTypeToggleState" = "#persona_type_toggle_state",
1633
+ "CreatePersonaPopupConfirmText" = "#create_persona_popup_confirm_text",
1634
+ "CreatePersonaHasSelectedType" = "#create_persona_has_selected_type",
1635
+ "SelectedPacks" = "#selectedPacks",
1636
+ "SelectedPackSize" = "#selectedPackSize",
1637
+ "ResourcePackName" = "#resource_pack_name",
1638
+ "RequiredResourcePackGridDimension" = "#required_resource_pack_grid_dimension",
1639
+ "OptionalResourcePackGridDimension" = "#optional_resource_pack_grid_dimension",
1640
+ "ShowRayTracingWarning" = "#show_ray_tracing_warning",
1641
+ "PackDownloadTypeMessage" = "#pack_download_type_message",
1642
+ "RayTracingWarningMessage" = "#ray_tracing_warning_message",
1643
+ "EmptyBinding" = "#empty_binding",
1644
+ "JoinAndDownloadEverything" = "#join_and_download_everything",
1645
+ "JoinAndDownloadRequired" = "#join_and_download_required",
1646
+ "ProgressText" = "#progress_text",
1647
+ "CodeText" = "#code_text",
1648
+ "CodeNumber" = "#code_number",
1649
+ "BarAnimationVisible" = "#bar_animation_visible",
1650
+ "SpinnerAnimationVisible" = "#spinner_animation_visible",
1651
+ "LoadingBarPercentage" = "#loading_bar_percentage",
1652
+ "LoadingBarVisible" = "#loading_bar_visible",
1653
+ "TouchProgressBarVisible" = "#touch_progress_bar_visible",
1654
+ "LoadingBarTotalAmount" = "#loading_bar_total_amount",
1655
+ "ProgressBarTotalAmount" = "#progress_bar_total_amount",
1656
+ "LoadingBarCurrentAmount" = "#loading_bar_current_amount",
1657
+ "ProgressBarCurrentAmount" = "#progress_bar_current_amount",
1658
+ "UseDeterminateAnimation" = "#use_determinate_animation",
1659
+ "ProgressAnimationVisible" = "#progress_animation_visible",
1660
+ "CancelButtonText" = "#cancel_button_text",
1661
+ "CancelVisible" = "#cancel_visible",
1662
+ "RetryAndAbortVisible" = "#retry_and_abort_visible",
1663
+ "OkVisible" = "#ok_visible",
1664
+ "EduCloudUploadImagesVisible" = "#edu_cloud_upload_images_visible",
1665
+ "CloudLinkVisible" = "#cloud_link_visible",
1666
+ "EduCloudErrorHyperlinkLabel" = "#edu_cloud_error_hyperlink_label",
1667
+ "OneButtonPanel" = "#one_button_panel",
1668
+ "EduCloudUploadError" = "#edu_cloud_upload_error",
1669
+ "EduCloudDownloadError" = "#edu_cloud_download_error",
1670
+ "MobileDataIconVisible" = "#mobile_data_icon_visible",
1671
+ "ButtonName" = "#ButtonName",
1672
+ "Title" = "#title",
1673
+ "PendingInvitesVisible" = "#pending_invites_visible",
1674
+ "RealmsNameBox" = "#realms_name_box",
1675
+ "RealmsNameTextbox" = "#realms_name_textbox",
1676
+ "PlaceholderRealmName" = "#placeholder_realm_name",
1677
+ "SelectedDurationShort" = "#selected_duration_short",
1678
+ "SelectedDurationLong" = "#selected_duration_long",
1679
+ "PlayerCount2" = "#player_count_2",
1680
+ "HasCheckedTos" = "#has_checked_tos",
1681
+ "ConfirmationButtonText" = "#confirmation_button_text",
1682
+ "RealmsSwitchNsoInfo" = "#realms_switch_nso_info",
1683
+ "RealmsTermsInfo" = "#realms_terms_info",
1684
+ "RealmsTermsInfoExtra" = "#realms_terms_info_extra",
1685
+ "ResponseButtonsVisible" = "#response_buttons_visible",
1686
+ "RealmName" = "#realm_name",
1687
+ "RealmOwner" = "#realm_owner",
1688
+ "InviteStatus" = "#invite_status",
1689
+ "AcceptPanelVisible" = "#accept_panel_visible",
1690
+ "GamertagItemGridDimension" = "#gamertag_item_grid_dimension",
1691
+ "HideInvites" = "#hide_invites",
1692
+ "InviteToggleState" = "#invite_toggle_state",
1693
+ "NoInvitesVisible" = "#no_invites_visible",
1694
+ "WorldImage" = "#world_image",
1695
+ "WorldTextureSource" = "#world_texture_source",
1696
+ "SlotIsFilled" = "#slot_is_filled",
1697
+ "SlotIsCurrentWorld" = "#slot_is_current_world",
1698
+ "SlotEditButtonsToggle" = "#slot_edit_buttons_toggle",
1699
+ "SlotImageVisible" = "#slot_image_visible",
1700
+ "NewSlotLabel" = "#new_slot_label",
1701
+ "WorldSlotName" = "#world_slot_name",
1702
+ "WorldSlotType" = "#world_slot_type",
1703
+ "WarningTextVisible" = "#warning_text_visible",
1704
+ "SlotsScreenHeader" = "#slots_screen_header",
1705
+ "RealmPlayerCount" = "#realm_player_count",
1706
+ "RealmDurationLabel" = "#realm_duration_label",
1707
+ "RealmSubscriptionOrigin" = "#realm_subscription_origin",
1708
+ "RealmSubscriptionOriginAddendum" = "#realm_subscription_origin_addendum",
1709
+ "RealmSubscriptionOriginVisibility" = "#realm_subscription_origin_visibility",
1710
+ "RealmConsumableToSubscriptionInfo" = "#realm_consumable_to_subscription_info",
1711
+ "RealmConsumableToSubscriptionVisibility" = "#realm_consumable_to_subscription_visibility",
1712
+ "DeleteRealmButtonVisible" = "#delete_realm_button_visible",
1713
+ "OpenRealmButtonVisible" = "#open_realm_button_visible",
1714
+ "CloseRealmButtonVisible" = "#close_realm_button_visible",
1715
+ "RealmsSubscriptionLoadingMessageVisible" = "#realms_subscription_loading_message_visible",
1716
+ "RealmsSubscriptionLoadingFailedMessageVisible" = "#realms_subscription_loading_failed_message_visible",
1717
+ "RealmsPurchasedStore" = "#realms_purchased_store",
1718
+ "RealmsSubscriptionInfoVisible" = "#realms_subscription_info_visible",
1719
+ "LinkName" = "#link_name",
1720
+ "LinkNameTTS" = "#link_name_TTS",
1721
+ "LinkExpiry" = "#link_expiry",
1722
+ "LinkExpiryTTS" = "#link_expiry_TTS",
1723
+ "LinkState" = "#link_state",
1724
+ "RealmsInviteLinksLoadingMessageVisible" = "#realms_invite_links_loading_message_visible",
1725
+ "RealmsInviteLinksLoadingFailedMessageVisible" = "#realms_invite_links_loading_failed_message_visible",
1726
+ "RealmInviteLinksDescription" = "#realm_invite_links_description",
1727
+ "RealmsInviteLinksCollectionLength" = "#realms_invite_links_collection_length",
1728
+ "AddInviteLinkButtonVisible" = "#add_invite_link_button_visible",
1729
+ "AddInviteLinkButtonEnabled" = "#add_invite_link_button_enabled",
1730
+ "RealmsInviteLinksInfoVisible" = "#realms_invite_links_info_visible",
1731
+ "BranchName" = "#branch_name",
1732
+ "CommitId" = "#commit_id",
1733
+ "MatchingBranchName" = "#matching_branch_name",
1734
+ "MatchingCommitId" = "#matching_commit_id",
1735
+ "RealmsBranchGridDimension" = "#realms_branch_grid_dimension",
1736
+ "SelectedBranchCommitId" = "#selected_branch_commit_id",
1737
+ "VersionFilterTextBox" = "#version_filter_text_box",
1738
+ "PrevButtonVisible" = "#prev_button_visible",
1739
+ "PageIndexText" = "#page_index_text",
1740
+ "NextButtonVisible" = "#next_button_visible",
1741
+ "DateText" = "#date_text",
1742
+ "VersionText" = "#version_text",
1743
+ "TimeText" = "#time_text",
1744
+ "SizeText" = "#size_text",
1745
+ "BackupItemButtonEnabled" = "#backup_item_button_enabled",
1746
+ "RealmsBackupGridDimension" = "#realms_backup_grid_dimension",
1747
+ "BackupInfotext" = "#backup_infotext",
1748
+ "BackupNetworkErrormsg" = "#backup_network_errormsg",
1749
+ "ProgressLoadingBarsBackupsVisible" = "#progress_loading_bars_backups_visible",
1750
+ "BackupNetworkErrorVisible" = "#backup_network_error_visible",
1751
+ "CreateButtonVisible" = "#create_button_visible",
1752
+ "DisabledPlayButtonVisible" = "#disabled_play_button_visible",
1753
+ "IsRealmExpired" = "#is_realm_expired",
1754
+ "RealmDefaultPermissionDropdownToggleLabel" = "#realm_default_permission_dropdown_toggle_label",
1755
+ "RealmDefaultPermissionDropdownEnabled" = "#realm_default_permission_dropdown_enabled",
1756
+ "MembersSectionContent" = "#members_section_content",
1757
+ "MembersPageIndexText" = "#members_page_index_text",
1758
+ "MembersButtonsVisible" = "#members_buttons_visible",
1759
+ "MembersPrevButtonVisible" = "#members_prevButton_visible",
1760
+ "MembersNextButtonVisible" = "#members_nextButton_visible",
1761
+ "InvitedSectionContent" = "#invited_section_content",
1762
+ "InvitedFriendsPageIndexText" = "#invited_friends_page_index_text",
1763
+ "InvitedFriendsButtonsVisible" = "#invited_friends_buttons_visible",
1764
+ "InvitedFriendsPrevButtonVisible" = "#invited_friends_prevButton_visible",
1765
+ "InvitedFriendsNextButtonVisible" = "#invited_friends_nextButton_visible",
1766
+ "UninvitedSectionContent" = "#uninvited_section_content",
1767
+ "UninvitedFriendsPageIndexText" = "#uninvited_friends_page_index_text",
1768
+ "UninvitedFriendsButtonsVisible" = "#uninvited_friends_buttons_visible",
1769
+ "UninvitedFriendsPrevButtonVisible" = "#uninvited_friends_prevButton_visible",
1770
+ "UninvitedFriendsNextButtonVisible" = "#uninvited_friends_nextButton_visible",
1771
+ "BlockedSectionContent" = "#blocked_section_content",
1772
+ "BlockedPlayersPageIndexText" = "#blocked_players_page_index_text",
1773
+ "BlockedPlayersButtonsVisible" = "#blocked_players_buttons_visible",
1774
+ "BlockedPlayersPrevButtonVisible" = "#blocked_players_prevButton_visible",
1775
+ "BlockedPlayersNextButtonVisible" = "#blocked_players_nextButton_visible",
1776
+ "LoadingFriends" = "#loading_friends",
1777
+ "MembersListEnabled" = "#members_list_enabled",
1778
+ "OptionsVisible" = "#options_visible",
1779
+ "InvitedFriendsVisible" = "#invited_friends_visible",
1780
+ "MemberLoadingText" = "#member_loading_text",
1781
+ "MembersVisible" = "#members_visible",
1782
+ "BlockedPlayersVisible" = "#blocked_players_visible",
1783
+ "UninvitedFriendsVisible" = "#uninvited_friends_visible",
1784
+ "ThirdPartyProfileName" = "#third_party_profile_name",
1785
+ "RealName" = "#real_name",
1786
+ "ShowMemberSettings" = "#show_member_settings",
1787
+ "CollectionPermissionLevelDropdownIconTexture" = "#collection_permission_level_dropdown_icon_texture",
1788
+ "PlayerPermissionsDropdownToggleLabel" = "#player_permissions_dropdown_toggle_label",
1789
+ "PlayerPermissionsDropdownEnabled" = "#player_permissions_dropdown_enabled",
1790
+ "Operator" = "#operator",
1791
+ "PlayerFilterTextBox" = "#player_filter_text_box",
1792
+ "RealmInviteLinkUrl" = "#realm_invite_link_url",
1793
+ "RealmInviteLinkUrlTTS" = "#realm_invite_link_url_TTS",
1794
+ "CopyShareEnabled" = "#copy_share_enabled",
1795
+ "ActivateLink" = "#activate_link",
1796
+ "ActivateLinkEnabled" = "#activate_link_enabled",
1797
+ "InfiniteLink" = "#infinite_link",
1798
+ "InfiniteLinkEnabled" = "#infinite_link_enabled",
1799
+ "InviteLinkExpirationTime" = "#invite_link_expiration_time",
1800
+ "InviteLinkExpirationTimeTTS" = "#invite_link_expiration_time_TTS",
1801
+ "ExpirationDurationDropdownEnabled" = "#expiration_duration_dropdown_enabled",
1802
+ "ExpirationDurationDropdownToggleLabel" = "#expiration_duration_dropdown_toggle_label",
1803
+ "ExpirationDurationRadioNever" = "#expiration_duration_radio_never",
1804
+ "ExpirationDurationRadioHalfHour" = "#expiration_duration_radio_halfHour",
1805
+ "ExpirationDurationRadioHour" = "#expiration_duration_radio_hour",
1806
+ "ExpirationDurationRadioQuarterDay" = "#expiration_duration_radio_quarterDay",
1807
+ "ExpirationDurationRadioHalfDay" = "#expiration_duration_radio_halfDay",
1808
+ "ExpirationDurationRadioDay" = "#expiration_duration_radio_day",
1809
+ "ExpirationDurationRadioWeek" = "#expiration_duration_radio_week",
1810
+ "RealmInviteLinkActive" = "#realm_invite_link_active",
1811
+ "IsContentTab" = "#is_content_tab",
1812
+ "ContentTabSections" = "#content_tab_sections",
1813
+ "RealmsContentCreatorButtonVisible" = "#realms_content_creator_button_visible",
1814
+ "PacksLabel" = "#packs_label",
1815
+ "RealmsContentSubEnabled" = "#realms_contentSub_enabled",
1816
+ "RealmsPlusOneMonthFreeTrialVisible" = "#realms_plus_one_month_free_trial_visible",
1817
+ "LandingInfoSubscribe" = "#landing_info_subscribe",
1818
+ "LandingInfoPreviewLine1" = "#landing_info_preview_line_1",
1819
+ "LandingInfoPreviewLine2" = "#landing_info_preview_line_2",
1820
+ "LandingInfoPreviewLine3" = "#landing_info_preview_line_3",
1821
+ "LandingInfoPreviewLine4" = "#landing_info_preview_line_4",
1822
+ "PlatformTermControls" = "#platform_term_controls",
1823
+ "UnderstandPurchaseWarning" = "#understand_purchase_warning",
1824
+ "IsUnderstandChecked" = "#is_understand_checked",
1825
+ "CrafterOutputItemSelectedBannerColors" = "#crafter_output_item_selected_banner_colors",
1826
+ "CrafterOutputItemSelectedBannerType" = "#crafter_output_item_selected_banner_type",
1827
+ "CrafterOutputItemSelectedDecoratedPotSherds" = "#crafter_output_item_selected_decorated_pot_sherds",
1828
+ "HasErrors" = "#has_errors",
1829
+ "HasWarnings" = "#has_warnings",
1830
+ "ErrorFree" = "#error_free",
1831
+ "ReportGenerating" = "#report_generating",
1832
+ "AnyErrors" = "#any_errors",
1833
+ "AnyWarnings" = "#any_warnings",
1834
+ "NumWarnings" = "#num_warnings",
1835
+ "NumErrors" = "#num_errors",
1836
+ "HasExpired" = "#has_expired",
1837
+ "IsReadMore" = "#is_read_more",
1838
+ "IsReadLess" = "#is_read_less",
1839
+ "DirectionButtonVisible" = "#direction_button_visible",
1840
+ "IsSelected" = "#is_selected",
1841
+ "CanMove" = "#can_move",
1842
+ "CanGoToStore" = "#can_go_to_store",
1843
+ "CanSortUp" = "#can_sort_up",
1844
+ "CanSortDown" = "#can_sort_down",
1845
+ "ReportButtonVisible" = "#report_button_visible",
1846
+ "HasPackSettings" = "#has_pack_settings",
1847
+ "AvailableCount" = "#available_count",
1848
+ "AvailableGridVisible" = "#available_grid_visible",
1849
+ "RealmsCount" = "#realms_count",
1850
+ "RealmsGridVisible" = "#realms_grid_visible",
1851
+ "UnownedCount" = "#unowned_count",
1852
+ "UnownedGridVisible" = "#unowned_grid_visible",
1853
+ "SelectedCount" = "#selected_count",
1854
+ "SelectedGridVisible" = "#selected_grid_visible",
1855
+ "Name" = "#name",
1856
+ "Size" = "#size",
1857
+ "Description" = "#description",
1858
+ "ForceUserAgreementLevel" = "#force_user_agreement_level",
1859
+ "ForceUserAgreementLevelEnabled" = "#force_user_agreement_level_enabled",
1860
+ "WorldTemplateOptionLockedWarningText" = "#world_template_option_locked_warning_text",
1861
+ "ForcePackDownloadEnabledLevel" = "#force_pack_download_enabled_level",
1862
+ "ForcePackDownloadLockedLevel" = "#force_pack_download_locked_level",
1863
+ "WarnOrError" = "#warn_or_error",
1864
+ "AnyExceptions" = "#any_exceptions",
1865
+ "RealmsVisible" = "#realms_visible",
1866
+ "LeftSafeZoneOffset" = "#left_safe_zone_offset",
1867
+ "BottomSafeZoneOffset" = "#bottom_safe_zone_offset",
1868
+ "RightSafeZoneOffset" = "#right_safe_zone_offset",
1869
+ "TopSafeZoneOffset" = "#top_safe_zone_offset",
1870
+ "SafeZoneAllSliderLabel" = "#safe_zone_all_slider_label",
1871
+ "SafeZoneAll" = "#safe_zone_all",
1872
+ "SafeZoneAllEnabled" = "#safe_zone_all_enabled",
1873
+ "SafeZoneAllTextValue" = "#safe_zone_all_text_value",
1874
+ "SafeZoneXSliderLabel" = "#safe_zone_x_slider_label",
1875
+ "SafeZoneX" = "#safe_zone_x",
1876
+ "SafeZoneXEnabled" = "#safe_zone_x_enabled",
1877
+ "SafeZoneXTextValue" = "#safe_zone_x_text_value",
1878
+ "SafeZoneYSliderLabel" = "#safe_zone_y_slider_label",
1879
+ "SafeZoneY" = "#safe_zone_y",
1880
+ "SafeZoneYEnabled" = "#safe_zone_y_enabled",
1881
+ "SafeZoneYTextValue" = "#safe_zone_y_text_value",
1882
+ "ScreenPositionXSliderLabel" = "#screen_position_x_slider_label",
1883
+ "ScreenPositionX" = "#screen_position_x",
1884
+ "ScreenPositionXEnabled" = "#screen_position_x_enabled",
1885
+ "ScreenPositionXTextValue" = "#screen_position_x_text_value",
1886
+ "ScreenPositionYSliderLabel" = "#screen_position_y_slider_label",
1887
+ "ScreenPositionY" = "#screen_position_y",
1888
+ "ScreenPositionYEnabled" = "#screen_position_y_enabled",
1889
+ "ScreenPositionYTextValue" = "#screen_position_y_text_value",
1890
+ "FileSizeProgress" = "#file_size_progress",
1891
+ "HasFileSpaceAvailable" = "#has_file_space_available",
1892
+ "FileSizeTotal" = "#file_size_total",
1893
+ "FileSizeAvailable" = "#file_size_available",
1894
+ "SupportsAvailableSpaceQuery" = "#supports_available_space_query",
1895
+ "FileLocation" = "#file_location",
1896
+ "FileSizeNeeded" = "#file_size_needed",
1897
+ "ProgressPanelVisible" = "#progress_panel_visible",
1898
+ "TransferErrorDescription" = "#transfer_error_description",
1899
+ "PlayerScoreSidebar" = "#player_score_sidebar",
1900
+ "PlayerNameSidebar" = "#player_name_sidebar",
1901
+ "ObjectiveSidebarName" = "#objective_sidebar_name",
1902
+ "ScoreboardSidebarSize" = "#scoreboard_sidebar_size",
1903
+ "ListScoresNotEmpty" = "#list_scores_not_empty",
1904
+ "UnscoredNotEmpty" = "#unscored_not_empty",
1905
+ "PlayerListTitle" = "#player_list_title",
1906
+ "PlayerRank" = "#player_rank",
1907
+ "PlayerIcon" = "#player_icon",
1908
+ "PlayerIconFilesystem" = "#player_icon_filesystem",
1909
+ "PermissionIcon" = "#permission_icon",
1910
+ "PlayerScore" = "#player_score",
1911
+ "CanClickPlayerButton" = "#can_click_player_button",
1912
+ "UnscoredListSize" = "#unscored_list_size",
1913
+ "ScoredListSize" = "#scored_list_size",
1914
+ "ExistingWorldButtonEnabled" = "#existing_world_button_enabled",
1915
+ "ExistingWorldIcon" = "#existing_world_icon",
1916
+ "ExistingWorldIconFileSystem" = "#existing_world_icon_file_system",
1917
+ "RealmsWorldsTitleWithCount" = "#realms_worlds_title_with_count",
1918
+ "RealmsWorldItemGridDimension" = "#realms_world_item_grid_dimension",
1919
+ "LocalWorldsTitleWithCount" = "#local_worlds_title_with_count",
1920
+ "RealmsWorldTitle" = "#realms_world_title",
1921
+ "RealmsWorldDescription" = "#realms_world_description",
1922
+ "FormText" = "#form_text",
1923
+ "FormButtonLength" = "#form_button_length",
1924
+ "FormButtonTexture" = "#form_button_texture",
1925
+ "FormButtonTextureFileSystem" = "#form_button_texture_file_system",
1926
+ "FormButtonText" = "#form_button_text",
1927
+ "CustomFormLength" = "#custom_form_length",
1928
+ "SubmitText" = "#submit_text",
1929
+ "SubmitButtonVisible" = "#submit_button_visible",
1930
+ "CustomText" = "#custom_text",
1931
+ "CustomToggleState" = "#custom_toggle_state",
1932
+ "CustomToggleEnabled" = "#custom_toggle_enabled",
1933
+ "CustomSliderText" = "#custom_slider_text",
1934
+ "CustomSliderValue" = "#custom_slider_value",
1935
+ "CustomSliderTextValue" = "#custom_slider_text_value",
1936
+ "CustomSliderEnabled" = "#custom_slider_enabled",
1937
+ "CustomSliderStepText" = "#custom_slider_step_text",
1938
+ "CustomSliderStepValue" = "#custom_slider_step_value",
1939
+ "CustomSliderStepTextValue" = "#custom_slider_step_text_value",
1940
+ "CustomSliderSteps" = "#custom_slider_steps",
1941
+ "DropdownOptionText" = "#dropdown_option_text",
1942
+ "CustomDropdownLength" = "#custom_dropdown_length",
1943
+ "CustomRadioToggled" = "#custom_radio_toggled",
1944
+ "CustomRadioText" = "#custom_radio_text",
1945
+ "CustomPlaceholderText" = "#custom_placeholder_text",
1946
+ "CustomInputText" = "#custom_input_text",
1947
+ "CustomInputEnabled" = "#custom_input_enabled",
1948
+ "BindingButtonText" = "#binding_button_text",
1949
+ "BindingIconSprite" = "#binding_icon_sprite",
1950
+ "KeymappingName" = "#keymapping_name",
1951
+ "AudibleKeymappingName" = "#audible_keymapping_name",
1952
+ "KeyboardFullGridDimension" = "#keyboard_full_grid_dimension",
1953
+ "KeyboardStandardGridDimension" = "#keyboard_standard_grid_dimension",
1954
+ "KeyboardMouseSensitivitySliderLabel" = "#keyboard_mouse_sensitivity_slider_label",
1955
+ "KeyboardMouseSensitivity" = "#keyboard_mouse_sensitivity",
1956
+ "KeyboardMouseSensitivityTextValue" = "#keyboard_mouse_sensitivity_text_value",
1957
+ "KeyboardMouseSensitivityEnabled" = "#keyboard_mouse_sensitivity_enabled",
1958
+ "SpyglassMouseDampeningSliderLabel" = "#spyglass_mouse_dampening_slider_label",
1959
+ "SpyglassMouseDampening" = "#spyglass_mouse_dampening",
1960
+ "SpyglassMouseDampeningTextValue" = "#spyglass_mouse_dampening_text_value",
1961
+ "VrUiMouseSensitivitySliderLabel" = "#vr_ui_mouse_sensitivity_slider_label",
1962
+ "VrUiMouseSensitivity" = "#vr_ui_mouse_sensitivity",
1963
+ "VrUiMouseSensitivityTextValue" = "#vr_ui_mouse_sensitivity_text_value",
1964
+ "VrUiMouseSensitivityEnabled" = "#vr_ui_mouse_sensitivity_enabled",
1965
+ "KeyboardMouseInvertYAxis" = "#keyboard_mouse_invert_y_axis",
1966
+ "KeyboardMouseInvertYAxisEnabled" = "#keyboard_mouse_invert_y_axis_enabled",
1967
+ "KeyboardMouseAutojump" = "#keyboard_mouse_autojump",
1968
+ "KeyboardMouseAutojumpEnabled" = "#keyboard_mouse_autojump_enabled",
1969
+ "KeyboardMouseToggleCrouch" = "#keyboard_mouse_toggle_crouch",
1970
+ "KeyboardMouseToggleCrouchEnabled" = "#keyboard_mouse_toggle_crouch_enabled",
1971
+ "KeyboardShowFullKeyboardOptions" = "#keyboard_show_full_keyboard_options",
1972
+ "KeyboardShowFullKeyboardOptionsEnabled" = "#keyboard_show_full_keyboard_options_enabled",
1973
+ "ShowKeyboardPrompts" = "#show_keyboard_prompts",
1974
+ "HintTogglesEnabled" = "#hint_toggles_enabled",
1975
+ "ShowLearningPrompts" = "#show_learning_prompts",
1976
+ "KeyboardShowStandardKeyboardOptions" = "#keyboard_show_standard_keyboard_options",
1977
+ "ShowStandardCopyCoordinatesKeys" = "#show_standard_copy_coordinates_keys",
1978
+ "KeyboardStandardControlAltChordGridDimension" = "#keyboard_standard_control_alt_chord_grid_dimension",
1979
+ "KeyboardSmoothRotationSpeedSliderLabel" = "#keyboard_smooth_rotation_speed_slider_label",
1980
+ "KeyboardSmoothRotationSpeed" = "#keyboard_smooth_rotation_speed",
1981
+ "KeyboardSmoothRotationSpeedTextValue" = "#keyboard_smooth_rotation_speed_text_value",
1982
+ "KeyboardSmoothRotationSpeedEnabled" = "#keyboard_smooth_rotation_speed_enabled",
1983
+ "ShowFullCopyCoordinatesKeys" = "#show_full_copy_coordinates_keys",
1984
+ "KeyboardFullControlAltChordGridDimension" = "#keyboard_full_control_alt_chord_grid_dimension",
1985
+ "GamepadGridDimension" = "#gamepad_grid_dimension",
1986
+ "ControllerSensitivitySliderLabel" = "#controller_sensitivity_slider_label",
1987
+ "ControllerSensitivity" = "#controller_sensitivity",
1988
+ "ControllerSensitivityTextValue" = "#controller_sensitivity_text_value",
1989
+ "ControllerSensitivityEnabled" = "#controller_sensitivity_enabled",
1990
+ "SpyglassGamepadDampeningSliderLabel" = "#spyglass_gamepad_dampening_slider_label",
1991
+ "SpyglassGamepadDampening" = "#spyglass_gamepad_dampening",
1992
+ "SpyglassGamepadDampeningTextValue" = "#spyglass_gamepad_dampening_text_value",
1993
+ "VrSensitivitySliderLabel" = "#vr_sensitivity_slider_label",
1994
+ "VrSensitivity" = "#vr_sensitivity",
1995
+ "VrSensitivityTextValue" = "#vr_sensitivity_text_value",
1996
+ "VrSensitivityEnabled" = "#vr_sensitivity_enabled",
1997
+ "VrRollTurnSensitivitySliderLabel" = "#vr_roll_turn_sensitivity_slider_label",
1998
+ "VrRollTurnSensitivity" = "#vr_roll_turn_sensitivity",
1999
+ "VrRollTurnSensitivityTextValue" = "#vr_roll_turn_sensitivity_text_value",
2000
+ "VrRollTurnSensitivityEnabled" = "#vr_roll_turn_sensitivity_enabled",
2001
+ "VrRollTurnSensitivityVisible" = "#vr_roll_turn_sensitivity_visible",
2002
+ "ControllerInvertYAxis" = "#controller_invert_y_axis",
2003
+ "ControllerInvertYAxisEnabled" = "#controller_invert_y_axis_enabled",
2004
+ "ControllerAutojump" = "#controller_autojump",
2005
+ "ControllerAutojumpEnabled" = "#controller_autojump_enabled",
2006
+ "HideTooltips" = "#hide_tooltips",
2007
+ "HideGamepadCursor" = "#hide_gamepad_cursor",
2008
+ "HideGamepadCursorEnabled" = "#hide_gamepad_cursor_enabled",
2009
+ "ControllerClearHotbar" = "#controller_clear_hotbar",
2010
+ "ControllerClearHotbarEnabled" = "#controller_clear_hotbar_enabled",
2011
+ "SwapGamepadAb" = "#swap_gamepad_ab",
2012
+ "SwapGamepadAbButtons" = "#swap_gamepad_ab_buttons",
2013
+ "SwapGamepadAbButtonsEnabled" = "#swap_gamepad_ab_buttons_enabled",
2014
+ "SwapGamepadAbTts" = "#swap_gamepad_ab_tts",
2015
+ "SwapGamepadXy" = "#swap_gamepad_xy",
2016
+ "SwapGamepadXyButtons" = "#swap_gamepad_xy_buttons",
2017
+ "SwapGamepadXyButtonsEnabled" = "#swap_gamepad_xy_buttons_enabled",
2018
+ "SwapGamepadXyTts" = "#swap_gamepad_xy_tts",
2019
+ "GamepadCursorSensitivitySliderLabel" = "#gamepad_cursor_sensitivity_slider_label",
2020
+ "GamepadCursorSensitivity" = "#gamepad_cursor_sensitivity",
2021
+ "GamepadCursorSensitivityTextValue" = "#gamepad_cursor_sensitivity_text_value",
2022
+ "GamepadCursorSensitivityEnabled" = "#gamepad_cursor_sensitivity_enabled",
2023
+ "VrAutojump" = "#vr_autojump",
2024
+ "VrAutojumpEnabled" = "#vr_autojump_enabled",
2025
+ "ControllerToggleCrouch" = "#controller_toggle_crouch",
2026
+ "ControllerToggleCrouchEnabled" = "#controller_toggle_crouch_enabled",
2027
+ "ControllerDestroyVibration" = "#controller_destroy_vibration",
2028
+ "ControllerDestroyVibrationEnabled" = "#controller_destroy_vibration_enabled",
2029
+ "ControllerSplitVibration" = "#controller_split_vibration",
2030
+ "ControllerSplitVibrationEnabled" = "#controller_split_vibration_enabled",
2031
+ "EnableNewTouchControlSchemes" = "#enable_new_touch_control_schemes",
2032
+ "EnableNewTouchControlSchemesEnabled" = "#enable_new_touch_control_schemes_enabled",
2033
+ "NewTouchControlSchemesPreviewEnabled" = "#new_touch_control_schemes_preview_enabled",
2034
+ "TouchSelected" = "#touch_selected",
2035
+ "CrosshairSelected" = "#crosshair_selected",
2036
+ "ClassicSelected" = "#classic_selected",
2037
+ "SelectedControlScheme" = "#selected_control_scheme",
2038
+ "SelectedControlSchemeName" = "#selected_control_scheme_name",
2039
+ "NewTouchControlSchemesSettings" = "#new_touch_control_schemes_settings",
2040
+ "ResizableUi" = "#resizable_ui",
2041
+ "ResizableUiEnabled" = "#resizable_ui_enabled",
2042
+ "ModifyLayoutEnabled" = "#modify_layout_enabled",
2043
+ "ResizableUiActive" = "#resizable_ui_active",
2044
+ "TouchSensitivitySliderLabel" = "#touch_sensitivity_slider_label",
2045
+ "TouchSensitivity" = "#touch_sensitivity",
2046
+ "TouchSensitivityTextValue" = "#touch_sensitivity_text_value",
2047
+ "TouchSensitivityEnabled" = "#touch_sensitivity_enabled",
2048
+ "SpyglassTouchDampeningSliderLabel" = "#spyglass_touch_dampening_slider_label",
2049
+ "SpyglassTouchDampening" = "#spyglass_touch_dampening",
2050
+ "SpyglassTouchDampeningTextValue" = "#spyglass_touch_dampening_text_value",
2051
+ "ShowActionButton" = "#show_action_button",
2052
+ "ShowActionButtonEnabled" = "#show_action_button_enabled",
2053
+ "TouchControlsV2CrosshairMode" = "#touch_controls_v2_crosshair_mode",
2054
+ "ShowBlockSelectButton" = "#show_block_select_button",
2055
+ "ShowBlockSelectButtonEnabled" = "#show_block_select_button_enabled",
2056
+ "LeftHanded" = "#left_handed",
2057
+ "LeftHandedEnabled" = "#left_handed_enabled",
2058
+ "TouchAutojump" = "#touch_autojump",
2059
+ "TouchAutojumpEnabled" = "#touch_autojump_enabled",
2060
+ "SprintOnMovement" = "#sprint_on_movement",
2061
+ "SprintOnMovementEnabled" = "#sprint_on_movement_enabled",
2062
+ "TouchControlsV2" = "#touch_controls_v2",
2063
+ "JoystickVisibilityDropdownEnabled" = "#joystick_visibility_dropdown_enabled",
2064
+ "JoystickVisibilityDropdownToggleLabel" = "#joystick_visibility_dropdown_toggle_label",
2065
+ "ThumbstickOpacitySliderLabel" = "#thumbstick_opacity_slider_label",
2066
+ "ThumbstickOpacity" = "#thumbstick_opacity",
2067
+ "ThumbstickOpacityTextValue" = "#thumbstick_opacity_text_value",
2068
+ "ThumbstickOpacityEnabled" = "#thumbstick_opacity_enabled",
2069
+ "IsThumbstickVisible" = "#is_thumbstick_visible",
2070
+ "SneakDropdownEnabled" = "#sneak_dropdown_enabled",
2071
+ "SneakDropdownToggleLabel" = "#sneak_dropdown_toggle_label",
2072
+ "ButtonSizeSliderLabel" = "#button_size_slider_label",
2073
+ "ButtonSize" = "#button_size",
2074
+ "ButtonSizeTextValue" = "#button_size_text_value",
2075
+ "ButtonSizeEnabled" = "#button_size_enabled",
2076
+ "TouchDestroyVibration" = "#touch_destroy_vibration",
2077
+ "TouchDestroyVibrationEnabled" = "#touch_destroy_vibration_enabled",
2078
+ "TouchSplitVibration" = "#touch_split_vibration",
2079
+ "TouchSplitVibrationEnabled" = "#touch_split_vibration_enabled",
2080
+ "CreativeDelayedBlockBreaking" = "#creative_delayed_block_breaking",
2081
+ "CreativeDelayedBlockBreakingEnabled" = "#creative_delayed_block_breaking_enabled",
2082
+ "CrosshairActionButtonOn" = "#crosshair_action_button_on",
2083
+ "TouchInvertYAxis" = "#touch_invert_y_axis",
2084
+ "TouchInvertYAxisEnabled" = "#touch_invert_y_axis_enabled",
2085
+ "AlwaysHighlightHoveringBoxInCrosshair" = "#always_highlight_hovering_box_in_crosshair",
2086
+ "AlwaysHighlightHoveringBoxInCrosshairEnabled" = "#always_highlight_hovering_box_in_crosshair_enabled",
2087
+ "SplitControls" = "#split_controls",
2088
+ "SplitControlsEnabled" = "#split_controls_enabled",
2089
+ "SwapJumpAndSneak" = "#swap_jump_and_sneak",
2090
+ "SwapJumpAndSneakEnabled" = "#swap_jump_and_sneak_enabled",
2091
+ "HotbarOnlyTouch" = "#hotbar_only_touch",
2092
+ "HotbarOnlyTouchEnabled" = "#hotbar_only_touch_enabled",
2093
+ "JoystickVisibilityVisible" = "#joystick_visibility_visible",
2094
+ "JoystickVisibilityHidden" = "#joystick_visibility_hidden",
2095
+ "JoystickVisibilityHiddenWhenUnused" = "#joystick_visibility_hidden_when_unused",
2096
+ "SneakToggle" = "#sneak_toggle",
2097
+ "SneakHold" = "#sneak_hold",
2098
+ "CustomizeTooltipOptionVisible" = "#customize_tooltip_option_visible",
2099
+ "CustomizeTooltipOptionText" = "#customize_tooltip_option_text",
2100
+ "ResizableTooltipEnable" = "#resizable_tooltip_enable",
2101
+ "CrossplatformToggle" = "#crossplatform_toggle",
2102
+ "CrossplatformToggleEnabled" = "#crossplatform_toggle_enabled",
2103
+ "AllowCellularData" = "#allow_cellular_data",
2104
+ "AllowCellularDataEnabled" = "#allow_cellular_data_enabled",
2105
+ "WebsocketEncryption" = "#websocket_encryption",
2106
+ "WebsocketEncryptionEnabled" = "#websocket_encryption_enabled",
2107
+ "AutoUpdateModeDropdownToggleLabel" = "#auto_update_mode_dropdown_toggle_label",
2108
+ "AutoUpdateEnabled" = "#auto_update_enabled",
2109
+ "TutorialToggleEnabled" = "#tutorial_toggle_enabled",
2110
+ "TutorialOptionToggle" = "#tutorial_option_toggle",
2111
+ "TutorialShowAnimationsToggle" = "#tutorial_show_animations_toggle",
2112
+ "EduShowAnimationToggle" = "#edu_show_animation_toggle",
2113
+ "GametipsEnabled" = "#gametips_enabled",
2114
+ "OnlyTrustedSkinsAllowed" = "#only_trusted_skins_allowed",
2115
+ "OnlyTrustedSkinsAllowedEnabled" = "#only_trusted_skins_allowed_enabled",
2116
+ "EcomodeToggle" = "#ecomode_toggle",
2117
+ "EcomodeToggleEnabled" = "#ecomode_toggle_enabled",
2118
+ "TermsAndConditionsHyperlink" = "#terms_and_conditions_hyperlink",
2119
+ "BuildId" = "#build_id",
2120
+ "NetworkInfo" = "#network_info",
2121
+ "NetworkInfoVisible" = "#network_info_visible",
2122
+ "ProtocolVersion" = "#protocol_version",
2123
+ "TreatmentIds" = "#treatment_ids",
2124
+ "BuildDate" = "#build_date",
2125
+ "WorldConversionVersion" = "#world_conversion_version",
2126
+ "AdAccountName" = "#ad_account_name",
2127
+ "AdEduRememberMe" = "#ad_edu_remember_me",
2128
+ "CanChangeName" = "#can_change_name",
2129
+ "NotLoggedIn" = "#not_logged_in",
2130
+ "LoggedIn" = "#logged_in",
2131
+ "LoggedInNxLinkToggle" = "#logged_in_nx_link_toggle",
2132
+ "UseRemoteConnect" = "#use_remote_connect",
2133
+ "UseRemoteConnectEnabled" = "#use_remote_connect_enabled",
2134
+ "DeviceId" = "#device_id",
2135
+ "MinecraftAccountId" = "#MinecraftAccount_id",
2136
+ "PlayerNameEnabled" = "#player_name_enabled",
2137
+ "GamertagLabel" = "#gamertag_label",
2138
+ "NeedsOfflineTokenAuthorization" = "#needs_offline_token_authorization",
2139
+ "AutoUpdateModeOff" = "#auto_update_mode_off",
2140
+ "AutoUpdateModeOnWifiOnly" = "#auto_update_mode_on_wifi_only",
2141
+ "AutoUpdateModeOnWithCellular" = "#auto_update_mode_on_with_cellular",
2142
+ "CyclingIconPathGlobal" = "#cycling_icon_path_global",
2143
+ "CyclingIconZipGlobal" = "#cycling_icon_zip_global",
2144
+ "CyclingIconFileSystemGlobal" = "#cycling_icon_file_system_global",
2145
+ "SelectedPackItemsGlobal" = "#selected_pack_items_global",
2146
+ "AvailablePackItemsGlobal" = "#available_pack_items_global",
2147
+ "RealmsPackItemsGlobal" = "#realms_pack_items_global",
2148
+ "UnownedPackItemsGlobal" = "#unowned_pack_items_global",
2149
+ "SelectedGridDimensionsGlobal" = "#selected_grid_dimensions_global",
2150
+ "AvailableGridDimensionsGlobal" = "#available_grid_dimensions_global",
2151
+ "RealmsGridDimensionsGlobal" = "#realms_grid_dimensions_global",
2152
+ "UnownedGridDimensionsGlobal" = "#unowned_grid_dimensions_global",
2153
+ "UnownedVisibleGlobal" = "#unowned_visible_global",
2154
+ "PlatformLockedGlobal" = "#platform_locked_global",
2155
+ "DefaultItemTextureGlobal" = "#default_item_texture_global",
2156
+ "DefaultItemFileSystemGlobal" = "#default_item_file_system_global",
2157
+ "DefaultItemZipGlobal" = "#default_item_zip_global",
2158
+ "TotalSizeBindingGlobal" = "#total_size_binding_global",
2159
+ "InvalidPackItemsGlobal" = "#invalid_pack_items_global",
2160
+ "InvalidGridDimensionsGlobal" = "#invalid_grid_dimensions_global",
2161
+ "SuggestedOffersCollectionGlobal" = "#suggested_offers_collection_global",
2162
+ "SuggestedOffersLoadingGlobal" = "#suggested_offers_loading_global",
2163
+ "SuggestedOffersTitleGlobal" = "#suggested_offers_title_global",
2164
+ "NoAvailablePacksVisibilityGlobal" = "#no_available_packs_visibility_global",
2165
+ "NoRealmsPacksVisibilityGlobal" = "#no_realms_packs_visibility_global",
2166
+ "NoUnownedPacksVisibilityGlobal" = "#no_unowned_packs_visibility_global",
2167
+ "SuggestedContentVisibleGlobal" = "#suggested_content_visible_global",
2168
+ "ToggleEduCloudBackup" = "#toggle_edu_cloud_backup",
2169
+ "ToggleEduCloudBackupEnabled" = "#toggle_edu_cloud_backup_enabled",
2170
+ "EduCloudStorageBodyLabel" = "#edu_cloud_storage_body_label",
2171
+ "EduCloudStorageBodyLabelText" = "#edu_cloud_storage_body_label_text",
2172
+ "EditorActivityLabel" = "#editor_activity_label",
2173
+ "EditorLabel" = "#editor_label",
2174
+ "CopyCoordinateUi" = "#copy_coordinate_ui",
2175
+ "ShowKeybindsButton" = "#show_keybinds_button",
2176
+ "GoToKeybinds" = "#go_to_keybinds",
2177
+ "ScriptDebuggerOptionsEnabled" = "#script_debugger_options_enabled",
2178
+ "ServerboundClientDiagnosticsEnabled" = "#serverbound_client_diagnostics_enabled",
2179
+ "ScriptDebuggerPasscodeRequired" = "#script_debugger_passcode_required",
2180
+ "ScriptDebuggerPasscodeRequiredEnabled" = "#script_debugger_passcode_required_enabled",
2181
+ "ScriptDebuggerPasscode" = "#script_debugger_passcode",
2182
+ "ScriptDebuggerPasscodeVisible" = "#script_debugger_passcode_visible",
2183
+ "ScriptDebuggerAutoAttach" = "#script_debugger_auto_attach",
2184
+ "ScriptDebuggerAutoAttachEnabled" = "#script_debugger_auto_attach_enabled",
2185
+ "ScriptDebuggerAutoAttachOptionsVisible" = "#script_debugger_auto_attach_options_visible",
2186
+ "ScriptDebuggerAttachModeConnect" = "#script_debugger_attach_mode_connect",
2187
+ "ScriptDebuggerAttachModeListen" = "#script_debugger_attach_mode_listen",
2188
+ "ScriptDebuggerHost" = "#script_debugger_host",
2189
+ "ScriptDebuggerPort" = "#script_debugger_port",
2190
+ "ScriptDebuggerAutoAttachTimeoutSliderLabel" = "#script_debugger_auto_attach_timeout_slider_label",
2191
+ "ScriptDebuggerAutoAttachTimeout" = "#script_debugger_auto_attach_timeout",
2192
+ "ScriptDebuggerAutoAttachTimeoutTextValue" = "#script_debugger_auto_attach_timeout_text_value",
2193
+ "ScriptDebuggerAutoAttachTimeoutEnabled" = "#script_debugger_auto_attach_timeout_enabled",
2194
+ "ScriptDebuggerAutoAttachTimeoutSteps" = "#script_debugger_auto_attach_timeout_steps",
2195
+ "ScriptWatchdogOptionsEnabled" = "#script_watchdog_options_enabled",
2196
+ "ScriptWatchdogHangThresholdSliderLabel" = "#script_watchdog_hang_threshold_slider_label",
2197
+ "ScriptWatchdogHangThreshold" = "#script_watchdog_hang_threshold",
2198
+ "ScriptWatchdogHangThresholdTextValue" = "#script_watchdog_hang_threshold_text_value",
2199
+ "ScriptWatchdogHangThresholdEnabled" = "#script_watchdog_hang_threshold_enabled",
2200
+ "ScriptWatchdogHangThresholdSteps" = "#script_watchdog_hang_threshold_steps",
2201
+ "ScriptWatchdogSpikeWarning" = "#script_watchdog_spike_warning",
2202
+ "ScriptWatchdogSpikeWarningEnabled" = "#script_watchdog_spike_warning_enabled",
2203
+ "ScriptWatchdogSpikeThresholdSliderLabel" = "#script_watchdog_spike_threshold_slider_label",
2204
+ "ScriptWatchdogSpikeThreshold" = "#script_watchdog_spike_threshold",
2205
+ "ScriptWatchdogSpikeThresholdTextValue" = "#script_watchdog_spike_threshold_text_value",
2206
+ "ScriptWatchdogSpikeThresholdEnabled" = "#script_watchdog_spike_threshold_enabled",
2207
+ "ScriptWatchdogSpikeThresholdSteps" = "#script_watchdog_spike_threshold_steps",
2208
+ "ScriptWatchdogSpikeThresholdVisible" = "#script_watchdog_spike_threshold_visible",
2209
+ "ScriptWatchdogSlowWarning" = "#script_watchdog_slow_warning",
2210
+ "ScriptWatchdogSlowWarningEnabled" = "#script_watchdog_slow_warning_enabled",
2211
+ "ScriptWatchdogSlowThresholdSliderLabel" = "#script_watchdog_slow_threshold_slider_label",
2212
+ "ScriptWatchdogSlowThreshold" = "#script_watchdog_slow_threshold",
2213
+ "ScriptWatchdogSlowThresholdTextValue" = "#script_watchdog_slow_threshold_text_value",
2214
+ "ScriptWatchdogSlowThresholdEnabled" = "#script_watchdog_slow_threshold_enabled",
2215
+ "ScriptWatchdogSlowThresholdSteps" = "#script_watchdog_slow_threshold_steps",
2216
+ "ScriptWatchdogSlowThresholdVisible" = "#script_watchdog_slow_threshold_visible",
2217
+ "DeviceInfoOptionsEnabled" = "#device_info_options_enabled",
2218
+ "DeviceInfoUseMemoryTierOverride" = "#device_info_use_memory_tier_override",
2219
+ "DeviceInfoUseMemoryTierOverrideEnabled" = "#device_info_use_memory_tier_override_enabled",
2220
+ "DeviceInfoMemoryTierDropdownToggleLabel" = "#device_info_memory_tier_dropdown_toggle_label",
2221
+ "DeviceInfoMemoryTierOverrideEnabled" = "#device_info_memory_tier_override_enabled",
2222
+ "DeviceInfoMemoryTierVisible" = "#device_info_memory_tier_visible",
2223
+ "MemoryTierSuperLow" = "#memory_tier_superLow",
2224
+ "MemoryTierLow" = "#memory_tier_low",
2225
+ "MemoryTierMid" = "#memory_tier_mid",
2226
+ "MemoryTierHigh" = "#memory_tier_high",
2227
+ "MemoryTierSuperHigh" = "#memory_tier_superHigh",
2228
+ "ContentLogGuiLevelVerbose" = "#content_log_gui_level_verbose",
2229
+ "ContentLogGuiLevelInfo" = "#content_log_gui_level_info",
2230
+ "ContentLogGuiLevelWarn" = "#content_log_gui_level_warn",
2231
+ "ContentLogGuiLevelError" = "#content_log_gui_level_error",
2232
+ "ContentLogFile" = "#content_log_file",
2233
+ "ContentLogFileEnabled" = "#content_log_file_enabled",
2234
+ "ContentLogGui" = "#content_log_gui",
2235
+ "ContentLogGuiEnabled" = "#content_log_gui_enabled",
2236
+ "ContentLogGuiLevelDropdownToggleLabel" = "#content_log_gui_level_dropdown_toggle_label",
2237
+ "ContentLogGuiLevelDropdownEnabled" = "#content_log_gui_level_dropdown_enabled",
2238
+ "ContentLogGuiOptionEnabled" = "#content_log_gui_option_enabled",
2239
+ "AllowContentLogWriteToDisk" = "#allow_content_log_write_to_disk",
2240
+ "ContentLogLocationText" = "#content_log_location_text",
2241
+ "AdvancedVideoOptions" = "#advanced_video_options",
2242
+ "GammaSliderLabel" = "#gamma_slider_label",
2243
+ "Gamma" = "#gamma",
2244
+ "GammaTextValue" = "#gamma_text_value",
2245
+ "GammaEnabled" = "#gamma_enabled",
2246
+ "VrGammaSliderLabel" = "#vr_gamma_slider_label",
2247
+ "VrGamma" = "#vr_gamma",
2248
+ "VrGammaTextValue" = "#vr_gamma_text_value",
2249
+ "VrGammaEnabled" = "#vr_gamma_enabled",
2250
+ "ThirdPersonDropdownEnabled" = "#third_person_dropdown_enabled",
2251
+ "ThirdPersonDropdownToggleLabel" = "#third_person_dropdown_toggle_label",
2252
+ "FullScreen" = "#full_screen",
2253
+ "FullScreenEnabled" = "#full_screen_enabled",
2254
+ "HideHand" = "#hide_hand",
2255
+ "HideHandEnabled" = "#hide_hand_enabled",
2256
+ "VrHideHand" = "#vr_hide_hand",
2257
+ "VrHideHandEnabled" = "#vr_hide_hand_enabled",
2258
+ "HidePaperdoll" = "#hide_paperdoll",
2259
+ "HidePaperdollEnabled" = "#hide_paperdoll_enabled",
2260
+ "HideHud" = "#hide_hud",
2261
+ "HideHudEnabled" = "#hide_hud_enabled",
2262
+ "VrHideHud" = "#vr_hide_hud",
2263
+ "VrHideHudEnabled" = "#vr_hide_hud_enabled",
2264
+ "ScreenAnimations" = "#screen_animations",
2265
+ "ScreenAnimationsEnabled" = "#screen_animations_enabled",
2266
+ "ScreenAnimationsVisible" = "#screen_animations_visible",
2267
+ "InterfaceOpacitySliderLabel" = "#interface_opacity_slider_label",
2268
+ "InterfaceOpacity" = "#interface_opacity",
2269
+ "InterfaceOpacityTextValue" = "#interface_opacity_text_value",
2270
+ "InterfaceOpacityEnabled" = "#interface_opacity_enabled",
2271
+ "SplitscreenInterfaceOpacitySliderLabel" = "#splitscreen_interface_opacity_slider_label",
2272
+ "SplitscreenInterfaceOpacity" = "#splitscreen_interface_opacity",
2273
+ "SplitscreenInterfaceOpacityTextValue" = "#splitscreen_interface_opacity_text_value",
2274
+ "SplitscreenInterfaceOpacityEnabled" = "#splitscreen_interface_opacity_enabled",
2275
+ "FieldOfViewSliderLabel" = "#field_of_view_slider_label",
2276
+ "FieldOfViewTextValue" = "#field_of_view_text_value",
2277
+ "FieldOfView" = "#field_of_view",
2278
+ "FieldOfViewEnabled" = "#field_of_view_enabled",
2279
+ "SplitScreenDropdownEnabled" = "#split_screen_dropdown_enabled",
2280
+ "SplitScreenDropdownToggleLabel" = "#split_screen_dropdown_toggle_label",
2281
+ "ShowAutoSaveIcon" = "#show_auto_save_icon",
2282
+ "ShowAutoSaveIconEnabled" = "#show_auto_save_icon_enabled",
2283
+ "ClassicBoxSelection" = "#classic_box_selection",
2284
+ "ClassicBoxSelectionEnabled" = "#classic_box_selection_enabled",
2285
+ "VrClassicBoxSelection" = "#vr_classic_box_selection",
2286
+ "VrClassicBoxSelectionEnabled" = "#vr_classic_box_selection_enabled",
2287
+ "IngamePlayerNames" = "#ingame_player_names",
2288
+ "IngamePlayerNamesEnabled" = "#ingame_player_names_enabled",
2289
+ "SplitscreenIngamePlayerNames" = "#splitscreen_ingame_player_names",
2290
+ "SplitscreenIngamePlayerNamesEnabled" = "#splitscreen_ingame_player_names_enabled",
2291
+ "ViewBobbing" = "#view_bobbing",
2292
+ "ViewBobbingEnabled" = "#view_bobbing_enabled",
2293
+ "CameraShake" = "#camera_shake",
2294
+ "CameraShakeEnabled" = "#camera_shake_enabled",
2295
+ "TransparentLeaves" = "#transparent_leaves",
2296
+ "TransparentLeavesEnabled" = "#transparent_leaves_enabled",
2297
+ "VrTransparentLeaves" = "#vr_transparent_leaves",
2298
+ "VrTransparentLeavesEnabled" = "#vr_transparent_leaves_enabled",
2299
+ "BubbleParticles" = "#bubble_particles",
2300
+ "BubbleParticlesEnabled" = "#bubble_particles_enabled",
2301
+ "RenderClouds" = "#render_clouds",
2302
+ "RenderCloudsEnabled" = "#render_clouds_enabled",
2303
+ "FancySkies" = "#fancy_skies",
2304
+ "FancySkiesEnabled" = "#fancy_skies_enabled",
2305
+ "SmoothLighting" = "#smooth_lighting",
2306
+ "SmoothLightingEnabled" = "#smooth_lighting_enabled",
2307
+ "VrSmoothLighting" = "#vr_smooth_lighting",
2308
+ "VrSmoothLightingEnabled" = "#vr_smooth_lighting_enabled",
2309
+ "GraphicsToggle" = "#graphics_toggle",
2310
+ "GraphicsToggleEnabled" = "#graphics_toggle_enabled",
2311
+ "RenderingProfileSliderLabel" = "#rendering_profile_slider_label",
2312
+ "RenderingProfile" = "#rendering_profile",
2313
+ "RenderingProfileTextValue" = "#rendering_profile_text_value",
2314
+ "RenderingProfileSliderEnabled" = "#rendering_profile_slider_enabled",
2315
+ "RenderingProfileSteps" = "#rendering_profile_steps",
2316
+ "FieldOfViewToggle" = "#field_of_view_toggle",
2317
+ "FieldOfViewToggleEnabled" = "#field_of_view_toggle_enabled",
2318
+ "Atmospherics" = "#atmospherics",
2319
+ "AtmosphericsEnabled" = "#atmospherics_enabled",
2320
+ "EdgeHighlight" = "#edge_highlight",
2321
+ "EdgeHighlightEnabled" = "#edge_highlight_enabled",
2322
+ "Bloom" = "#bloom",
2323
+ "BloomEnabled" = "#bloom_enabled",
2324
+ "TerrainShadows" = "#terrain_shadows",
2325
+ "TerrainShadowsEnabled" = "#terrain_shadows_enabled",
2326
+ "SuperFancyWater" = "#super_fancy_water",
2327
+ "SuperFancyWaterEnabled" = "#super_fancy_water_enabled",
2328
+ "UiProfileDropdownEnabled" = "#ui_profile_dropdown_enabled",
2329
+ "UiProfileDropdownToggleLabel" = "#ui_profile_dropdown_toggle_label",
2330
+ "BetaNewBedScreenToggle" = "#beta_new_bed_screen_toggle",
2331
+ "BetaNewBedScreenToggleEnabled" = "#beta_new_bed_screen_toggle_enabled",
2332
+ "GuiScaleSliderLabel" = "#gui_scale_slider_label",
2333
+ "GuiScale" = "#gui_scale",
2334
+ "GuiScaleTextValue" = "#gui_scale_text_value",
2335
+ "GuiScaleEnabled" = "#gui_scale_enabled",
2336
+ "GuiScaleSteps" = "#gui_scale_steps",
2337
+ "GuiScaleVisible" = "#gui_scale_visible",
2338
+ "GuiScaleDisabledOptionVisible" = "#gui_scale_disabled_option_visible",
2339
+ "GuiScaleDisabledOptionTooltipVisible" = "#gui_scale_disabled_option_tooltip_visible",
2340
+ "GuiAccessibilityScaling" = "#gui_accessibility_scaling",
2341
+ "GuiAccessibilityScalingEnabled" = "#gui_accessibility_scaling_enabled",
2342
+ "ImprovedInputResponseOptions" = "#improved_input_response_options",
2343
+ "ImprovedInputResponseOptionsEnabled" = "#improved_input_response_options_enabled",
2344
+ "DynamicTextures" = "#dynamic_textures",
2345
+ "DynamicTexturesEnabled" = "#dynamic_textures_enabled",
2346
+ "Raytracing" = "#raytracing",
2347
+ "RaytracingEnabled" = "#raytracing_enabled",
2348
+ "RaytracingRenderDistanceSliderLabel" = "#raytracing_render_distance_slider_label",
2349
+ "RaytracingRenderDistance" = "#raytracing_render_distance",
2350
+ "RaytracingRenderDistanceTextValue" = "#raytracing_render_distance_text_value",
2351
+ "RaytracingRenderDistanceEnabled" = "#raytracing_render_distance_enabled",
2352
+ "RaytracingRenderDistanceSteps" = "#raytracing_render_distance_steps",
2353
+ "ShowRaytracingRenderDistance" = "#show_raytracing_render_distance",
2354
+ "DeferredRenderDistanceSliderLabel" = "#deferred_render_distance_slider_label",
2355
+ "DeferredRenderDistance" = "#deferred_render_distance",
2356
+ "DeferredRenderDistanceTextValue" = "#deferred_render_distance_text_value",
2357
+ "DeferredRenderDistanceEnabled" = "#deferred_render_distance_enabled",
2358
+ "DeferredRenderDistanceSteps" = "#deferred_render_distance_steps",
2359
+ "ShowDeferredRenderDistance" = "#show_deferred_render_distance",
2360
+ "RenderDistanceSliderLabel" = "#render_distance_slider_label",
2361
+ "RenderDistance" = "#render_distance",
2362
+ "RenderDistanceTextValue" = "#render_distance_text_value",
2363
+ "RenderDistanceEnabled" = "#render_distance_enabled",
2364
+ "RenderDistanceSteps" = "#render_distance_steps",
2365
+ "ShowRenderDistance" = "#show_render_distance",
2366
+ "RenderDistanceWarningVisible" = "#render_distance_warning_visible",
2367
+ "RenderDistancePerformanceTooltipText" = "#render_distance_performance_tooltip_text",
2368
+ "VrRenderDistanceSliderLabel" = "#vr_render_distance_slider_label",
2369
+ "VrRenderDistance" = "#vr_render_distance",
2370
+ "VrRenderDistanceTextValue" = "#vr_render_distance_text_value",
2371
+ "VrRenderDistanceEnabled" = "#vr_render_distance_enabled",
2372
+ "VrRenderDistanceSteps" = "#vr_render_distance_steps",
2373
+ "VrMsaaSliderLabel" = "#vr_msaa_slider_label",
2374
+ "VrMsaa" = "#vr_msaa",
2375
+ "VrMsaaTextValue" = "#vr_msaa_text_value",
2376
+ "VrMsaaEnabled" = "#vr_msaa_enabled",
2377
+ "VrMsaaSteps" = "#vr_msaa_steps",
2378
+ "ShowVrMsaa" = "#show_vr_msaa",
2379
+ "TexelAa" = "#texel_aa",
2380
+ "TexelAaEnabled" = "#texel_aa_enabled",
2381
+ "ShowTexelAa" = "#show_texel_aa",
2382
+ "Vr3dRendering" = "#vr_3d_rendering",
2383
+ "Vr3dRenderingEnabled" = "#vr_3d_rendering_enabled",
2384
+ "VrMirrorTexture" = "#vr_mirror_texture",
2385
+ "VrMirrorTextureEnabled" = "#vr_mirror_texture_enabled",
2386
+ "VrHandPointer" = "#vr_hand_pointer",
2387
+ "VrHandPointerEnabled" = "#vr_hand_pointer_enabled",
2388
+ "VrHandsVisible" = "#vr_hands_visible",
2389
+ "VrHandsVisibleEnabled" = "#vr_hands_visible_enabled",
2390
+ "GraphicsModeDropdownEnabled" = "#graphics_mode_dropdown_enabled",
2391
+ "GraphicsModeDropdownToggleLabel" = "#graphics_mode_dropdown_toggle_label",
2392
+ "AdvancedGraphicsOptionsGridVisible" = "#advanced_graphics_options_grid_visible",
2393
+ "MaxFramerateSliderLabel" = "#max_framerate_slider_label",
2394
+ "MaxFramerate" = "#max_framerate",
2395
+ "MaxFramerateTextValue" = "#max_framerate_text_value",
2396
+ "MaxFramerateEnabled" = "#max_framerate_enabled",
2397
+ "MaxFramerateSteps" = "#max_framerate_steps",
2398
+ "MsaaSliderLabel" = "#msaa_slider_label",
2399
+ "Msaa" = "#msaa",
2400
+ "MsaaTextValue" = "#msaa_text_value",
2401
+ "MsaaEnabled" = "#msaa_enabled",
2402
+ "MsaaSteps" = "#msaa_steps",
2403
+ "ShowMsaa" = "#show_msaa",
2404
+ "GraphicsUpscaling" = "#graphics_upscaling",
2405
+ "GraphicsUpscalingEnabled" = "#graphics_upscaling_enabled",
2406
+ "RtxUpscaleDisabledOptionUpsellVisible" = "#rtx_upscale_disabled_option_upsell_visible",
2407
+ "RtxUpscaleDisabledOptionUpsellTooltipVisible" = "#rtx_upscale_disabled_option_upsell_tooltip_visible",
2408
+ "NewDeathScreenToggleDisabledTooltipText" = "#new_death_screen_toggle_disabled_tooltip_text",
2409
+ "NewDeathScreenToggleDisabledVisible" = "#new_death_screen_toggle_disabled_visible",
2410
+ "NewDeathScreenToggleDisabledTooltipVisible" = "#new_death_screen_toggle_disabled_tooltip_visible",
2411
+ "BetaNewBedScreenToggleDisabledTooltipText" = "#beta_new_bed_screen_toggle_disabled_tooltip_text",
2412
+ "BetaNewBedScreenToggleDisabledVisible" = "#beta_new_bed_screen_toggle_disabled_visible",
2413
+ "BetaNewBedScreenToggleDisabledTooltipVisible" = "#beta_new_bed_screen_toggle_disabled_tooltip_visible",
2414
+ "RtxRenderDistanceWarningTooltipVisible" = "#rtx_render_distance_warning_tooltip_visible",
2415
+ "RtxRenderdistPerformanceTooltipText" = "#rtx_renderdist_performance_tooltip_text",
2416
+ "RtxRenderDistanceWarningVisible" = "#rtx_render_distance_warning_visible",
2417
+ "AccessibilityScalingOptionTooltipVisible" = "#accessibility_scaling_option_tooltip_visible",
2418
+ "AccessibilityScalingOptionTooltipText" = "#accessibility_scaling_option_tooltip_text",
2419
+ "ImprovedInputResponseOptionTooltipVisible" = "#improved_input_response_option_tooltip_visible",
2420
+ "ImprovedInputResponseOptionTooltipText" = "#improved_input_response_option_tooltip_text",
2421
+ "DynamicTexturesOptionTooltipVisible" = "#dynamic_textures_option_tooltip_visible",
2422
+ "DynamicTexturesOptionTooltipText" = "#dynamic_textures_option_tooltip_text",
2423
+ "MaxFramerateOptionTooltipVisible" = "#max_framerate_option_tooltip_visible",
2424
+ "MaxFramerateOptionTooltipText" = "#max_framerate_option_tooltip_text",
2425
+ "RtxDisabledOptionUpsellTooltipText" = "#rtx_disabled_option_upsell_tooltip_text",
2426
+ "RtxDisabledOptionUpsellVisible" = "#rtx_disabled_option_upsell_visible",
2427
+ "RtxDisabledOptionUpsellTooltipVisible" = "#rtx_disabled_option_upsell_tooltip_visible",
2428
+ "GuiScaleDisabledOptionTooltipText" = "#gui_scale_disabled_option_tooltip_text",
2429
+ "UiProfileRadioClassic" = "#ui_profile_radio_classic",
2430
+ "UiProfileRadioPocket" = "#ui_profile_radio_pocket",
2431
+ "SplitScreenRadioHorizontal" = "#split_screen_radio_horizontal",
2432
+ "SplitScreenRadioVertical" = "#split_screen_radio_vertical",
2433
+ "ThirdpersonRadioFirst" = "#thirdperson_radio_first",
2434
+ "ThirdpersonRadioThirdBack" = "#thirdperson_radio_third_back",
2435
+ "ThirdpersonRadioThirdFront" = "#thirdperson_radio_third_front",
2436
+ "NotificationDurationRadioThreeSec" = "#notification_duration_radio_ThreeSec",
2437
+ "NotificationDurationRadioTenSec" = "#notification_duration_radio_TenSec",
2438
+ "NotificationDurationRadioThirtySec" = "#notification_duration_radio_ThirtySec",
2439
+ "ChatMessageDurationRadioThreeSec" = "#chat_message_duration_radio_ThreeSec",
2440
+ "ChatMessageDurationRadioTenSec" = "#chat_message_duration_radio_TenSec",
2441
+ "ChatMessageDurationRadioThirtySec" = "#chat_message_duration_radio_ThirtySec",
2442
+ "CsbPrice" = "#csb_price",
2443
+ "RealmPriceLoaded" = "#realm_price_loaded",
2444
+ "LeftButtonVisible" = "#left_button_visible",
2445
+ "PadVisible" = "#pad_visible",
2446
+ "RightButtonVisible" = "#right_button_visible",
2447
+ "DescriptionText" = "#description_text",
2448
+ "RealmsSubscriptionText" = "#realms_subscription_text",
2449
+ "ConsumableNotExtendableVisible" = "#consumable_not_extendable_visible",
2450
+ "StoreMismatchVisible" = "#store_mismatch_visible",
2451
+ "DeviceSunsettingText" = "#device_sunsetting_text",
2452
+ "RealmsSubscriptionsLoadingFailedVisible" = "#realms_subscriptions_loading_failed_visible",
2453
+ "RealmsSubscriptionsLoadingVisible" = "#realms_subscriptions_loading_visible",
2454
+ "MySubscriptionsVisible" = "#my_subscriptions_visible",
2455
+ "RealmsPlusSubscriptionsDimensions" = "#realms_plus_subscriptions_dimensions",
2456
+ "CsbPurchasedWithCancelPanel" = "#csb_purchased_with_cancel_panel",
2457
+ "CsbPurchasedWithBuyPanel" = "#csb_purchased_with_buy_panel",
2458
+ "CsbPlatformMismatchText" = "#csb_platform_mismatch_text",
2459
+ "CsbExpiration" = "#csb_expiration",
2460
+ "ExpirationContainerVisible" = "#expiration_container_visible",
2461
+ "AdditionalRealmsSubscriptionsDimensions" = "#additional_realms_subscriptions_dimensions",
2462
+ "AvailableOrAdditionalSubscriptionsText" = "#available_or_additional_subscriptions_text",
2463
+ "CanBuyMoreSubscriptions" = "#can_buy_more_subscriptions",
2464
+ "VrLivingRoomCursorCentered" = "#vr_living_room_cursor_centered",
2465
+ "VrLivingRoomCursorCenteredEnabled" = "#vr_living_room_cursor_centered_enabled",
2466
+ "VrHmdDisplacement" = "#vr_hmd_displacement",
2467
+ "VrHmdDisplacementEnabled" = "#vr_hmd_displacement_enabled",
2468
+ "DeviceHasPositionalTracking" = "#device_has_positional_tracking",
2469
+ "VrCameraMoementDropdownEnabled" = "#vr_camera_moement_dropdown_enabled",
2470
+ "VrCameraMovementDropdownToggleLabel" = "#vr_camera_movement_dropdown_toggle_label",
2471
+ "VrSnapAngleSliderLabel" = "#vr_snap_angle_slider_label",
2472
+ "VrSnapAngle" = "#vr_snap_angle",
2473
+ "VrSnapAngleTextValue" = "#vr_snap_angle_text_value",
2474
+ "VrSnapAngleEnabled" = "#vr_snap_angle_enabled",
2475
+ "VrSnapAngleSteps" = "#vr_snap_angle_steps",
2476
+ "VrVariableSnapAngle" = "#vr_variable_snap_angle",
2477
+ "VrVariableSnapAngleEnabled" = "#vr_variable_snap_angle_enabled",
2478
+ "VrSnapSound" = "#vr_snap_sound",
2479
+ "VrSnapSoundEnabled" = "#vr_snap_sound_enabled",
2480
+ "VrMovementDropdownEnabled" = "#vr_movement_dropdown_enabled",
2481
+ "VrMovementDropdownToggleLabel" = "#vr_movement_dropdown_toggle_label",
2482
+ "VrJumpDropdownEnabled" = "#vr_jump_dropdown_enabled",
2483
+ "VrJumpDropdownToggleLabel" = "#vr_jump_dropdown_toggle_label",
2484
+ "VrHeadSteeringDropdownEnabled" = "#vr_head_steering_dropdown_enabled",
2485
+ "VrHeadSteeringDropdownToggleLabel" = "#vr_head_steering_dropdown_toggle_label",
2486
+ "VrStickyMiningDropdownEnabled" = "#vr_sticky_mining_dropdown_enabled",
2487
+ "VrStickyMiningDropdownToggleLabel" = "#vr_sticky_mining_dropdown_toggle_label",
2488
+ "VrHudPositionDropdownEnabled" = "#vr_hud_position_dropdown_enabled",
2489
+ "VrHudPositionDropdownToggleLabel" = "#vr_hud_position_dropdown_toggle_label",
2490
+ "VrHudDistanceSliderLabel" = "#vr_hud_distance_slider_label",
2491
+ "VrHudDistance" = "#vr_hud_distance",
2492
+ "VrHudDistanceTextValue" = "#vr_hud_distance_text_value",
2493
+ "VrHudDistanceEnabled" = "#vr_hud_distance_enabled",
2494
+ "VrHandControlsItem" = "#vr_hand_controls_item",
2495
+ "VrHandControlsItemEnabled" = "#vr_hand_controls_item_enabled",
2496
+ "VrCameraMovementRadioSnap" = "#vr_camera_movement_radio_snap",
2497
+ "VrCameraMovementRadioClassic" = "#vr_camera_movement_radio_classic",
2498
+ "VrCameraMovementRadioWheel" = "#vr_camera_movement_radio_wheel",
2499
+ "VrCameraMovementRadioSnapWheel" = "#vr_camera_movement_radio_snap_wheel",
2500
+ "VrMovementRadioLinear" = "#vr_movement_radio_linear",
2501
+ "VrMovementRadioClassic" = "#vr_movement_radio_classic",
2502
+ "VrJumpRadioLinear" = "#vr_jump_radio_linear",
2503
+ "VrJumpRadioClassic" = "#vr_jump_radio_classic",
2504
+ "VrHeadSteeringRadioGaze" = "#vr_head_steering_radio_gaze",
2505
+ "VrHeadSteeringRadioPlayer" = "#vr_head_steering_radio_player",
2506
+ "VrStickyMiningRadioLock" = "#vr_sticky_mining_radio_lock",
2507
+ "VrStickyMiningRadioController" = "#vr_sticky_mining_radio_controller",
2508
+ "VrStickyMiningRadioDisabled" = "#vr_sticky_mining_radio_disabled",
2509
+ "VrHudPositionRadioDrift" = "#vr_hud_position_radio_drift",
2510
+ "VrHudPositionRadioOffhand" = "#vr_hud_position_radio_offhand",
2511
+ "VrHudPositionRadioFixed" = "#vr_hud_position_radio_fixed",
2512
+ "EnableAutoTextToSpeech" = "#enable_auto_text_to_speech",
2513
+ "EnableAutoTextToSpeechEnabled" = "#enable_auto_text_to_speech_enabled",
2514
+ "EnableUiTextToSpeech" = "#enable_ui_text_to_speech",
2515
+ "EnableUiTextToSpeechEnabled" = "#enable_ui_text_to_speech_enabled",
2516
+ "EnableChatTextToSpeech" = "#enable_chat_text_to_speech",
2517
+ "EnableChatTextToSpeechEnabled" = "#enable_chat_text_to_speech_enabled",
2518
+ "NotHideChat" = "#not_hide_chat",
2519
+ "TexttospeechVolumeSliderLabel" = "#texttospeech_volume_slider_label",
2520
+ "TexttospeechVolume" = "#texttospeech_volume",
2521
+ "TexttospeechVolumeTextValue" = "#texttospeech_volume_text_value",
2522
+ "TexttospeechVolumeEnabled" = "#texttospeech_volume_enabled",
2523
+ "EnableOpenChatMessage" = "#enable_open_chat_message",
2524
+ "EnableOpenChatMessageEnabled" = "#enable_open_chat_message_enabled",
2525
+ "TextBackgroundOpacitySliderLabel" = "#text_background_opacity_slider_label",
2526
+ "TextBackgroundOpacity" = "#text_background_opacity",
2527
+ "TextBackgroundOpacityTextValue" = "#text_background_opacity_text_value",
2528
+ "TextBackgroundOpacityEnabled" = "#text_background_opacity_enabled",
2529
+ "ActionbarTextBackgroundOpacitySliderLabel" = "#actionbar_text_background_opacity_slider_label",
2530
+ "ActionbarTextBackgroundOpacity" = "#actionbar_text_background_opacity",
2531
+ "ActionbarTextBackgroundOpacityTextValue" = "#actionbar_text_background_opacity_text_value",
2532
+ "ActionbarTextBackgroundOpacityEnabled" = "#actionbar_text_background_opacity_enabled",
2533
+ "DarknessSliderLabel" = "#darkness_slider_label",
2534
+ "Darkness" = "#darkness",
2535
+ "DarknessTextValue" = "#darkness_text_value",
2536
+ "DarknessEnabled" = "#darkness_enabled",
2537
+ "GlintStrengthSliderLabel" = "#glint_strength_slider_label",
2538
+ "GlintStrength" = "#glint_strength",
2539
+ "GlintStrengthTextValue" = "#glint_strength_text_value",
2540
+ "GlintStrengthEnabled" = "#glint_strength_enabled",
2541
+ "GlintSpeedSliderLabel" = "#glint_speed_slider_label",
2542
+ "GlintSpeed" = "#glint_speed",
2543
+ "GlintSpeedTextValue" = "#glint_speed_text_value",
2544
+ "GlintSpeedEnabled" = "#glint_speed_enabled",
2545
+ "ToastNotificationDurationDropdownEnabled" = "#toast_notification_duration_dropdown_enabled",
2546
+ "ToastNotificationDurationDropdownToggleLabel" = "#toast_notification_duration_dropdown_toggle_label",
2547
+ "ChatMessageDurationDropdownEnabled" = "#chat_message_duration_dropdown_enabled",
2548
+ "ChatMessageDurationDropdownToggleLabel" = "#chat_message_duration_dropdown_toggle_label",
2549
+ "MainVolumeSliderLabel" = "#main_volume_slider_label",
2550
+ "MainVolume" = "#main_volume",
2551
+ "MainVolumeTextValue" = "#main_volume_text_value",
2552
+ "MainVolumeEnabled" = "#main_volume_enabled",
2553
+ "MusicVolumeSliderLabel" = "#music_volume_slider_label",
2554
+ "MusicVolume" = "#music_volume",
2555
+ "MusicVolumeTextValue" = "#music_volume_text_value",
2556
+ "MusicVolumeEnabled" = "#music_volume_enabled",
2557
+ "SoundVolumeSliderLabel" = "#sound_volume_slider_label",
2558
+ "SoundVolume" = "#sound_volume",
2559
+ "SoundVolumeTextValue" = "#sound_volume_text_value",
2560
+ "SoundVolumeEnabled" = "#sound_volume_enabled",
2561
+ "AmbientVolumeSliderLabel" = "#ambient_volume_slider_label",
2562
+ "AmbientVolume" = "#ambient_volume",
2563
+ "AmbientVolumeTextValue" = "#ambient_volume_text_value",
2564
+ "AmbientVolumeEnabled" = "#ambient_volume_enabled",
2565
+ "BlockVolumeSliderLabel" = "#block_volume_slider_label",
2566
+ "BlockVolume" = "#block_volume",
2567
+ "BlockVolumeTextValue" = "#block_volume_text_value",
2568
+ "BlockVolumeEnabled" = "#block_volume_enabled",
2569
+ "HostileVolumeSliderLabel" = "#hostile_volume_slider_label",
2570
+ "HostileVolume" = "#hostile_volume",
2571
+ "HostileVolumeTextValue" = "#hostile_volume_text_value",
2572
+ "HostileVolumeEnabled" = "#hostile_volume_enabled",
2573
+ "NeutralVolumeSliderLabel" = "#neutral_volume_slider_label",
2574
+ "NeutralVolume" = "#neutral_volume",
2575
+ "NeutralVolumeTextValue" = "#neutral_volume_text_value",
2576
+ "NeutralVolumeEnabled" = "#neutral_volume_enabled",
2577
+ "PlayerVolumeSliderLabel" = "#player_volume_slider_label",
2578
+ "PlayerVolume" = "#player_volume",
2579
+ "PlayerVolumeTextValue" = "#player_volume_text_value",
2580
+ "PlayerVolumeEnabled" = "#player_volume_enabled",
2581
+ "RecordVolumeSliderLabel" = "#record_volume_slider_label",
2582
+ "RecordVolume" = "#record_volume",
2583
+ "RecordVolumeTextValue" = "#record_volume_text_value",
2584
+ "RecordVolumeEnabled" = "#record_volume_enabled",
2585
+ "WeatherVolumeSliderLabel" = "#weather_volume_slider_label",
2586
+ "WeatherVolume" = "#weather_volume",
2587
+ "WeatherVolumeTextValue" = "#weather_volume_text_value",
2588
+ "WeatherVolumeEnabled" = "#weather_volume_enabled",
2589
+ "LanguageInitialSelected" = "#language_initial_selected",
2590
+ "LanguageDescription" = "#language_description",
2591
+ "LanguageGridDimension" = "#language_grid_dimension",
2592
+ "PreviewApp1ButtonText" = "#preview_app1_button_text",
2593
+ "PreviewApp2ButtonText" = "#preview_app2_button_text",
2594
+ "DevDateYearOverride" = "#dev_date_year_override",
2595
+ "DevDateMonthOverride" = "#dev_date_month_override",
2596
+ "DevDateDayOverride" = "#dev_date_day_override",
2597
+ "DevDateHourOverride" = "#dev_date_hour_override",
2598
+ "DevDateMinuteOverride" = "#dev_date_minute_override",
2599
+ "TimezonetypeRadioLocal" = "#timezonetype_radio_local",
2600
+ "TimezonetypeRadioUtc" = "#timezonetype_radio_utc",
2601
+ "DevDisplayOverrideDatetime" = "#dev_display_override_datetime",
2602
+ "DevDisplayOverrideDatetimeEnabled" = "#dev_display_override_datetime_enabled",
2603
+ "DevUseOverrideDate" = "#dev_use_override_date",
2604
+ "DevUseOverrideDateEnabled" = "#dev_use_override_date_enabled",
2605
+ "DevLoadOverrideDate" = "#dev_load_override_date",
2606
+ "DevLoadOverrideDateEnabled" = "#dev_load_override_date_enabled",
2607
+ "TimezonetypeDropdownToggleLabel" = "#timezonetype_dropdown_toggle_label",
2608
+ "TimezonetypeDropdownEnabled" = "#timezonetype_dropdown_enabled",
2609
+ "DevOverrideTimeScale" = "#dev_override_time_scale",
2610
+ "OverrideDateOptionsVisible" = "#override_date_options_visible",
2611
+ "DevOverrideXboxSandbox" = "#dev_override_xbox_sandbox",
2612
+ "DevOverrideXboxSandboxEnabled" = "#dev_override_xbox_sandbox_enabled",
2613
+ "OverrideXboxSandboxOnWindows" = "#override_xbox_sandbox_on_windows",
2614
+ "DevXboxEnvironmentDropdownToggleLabel" = "#dev_xbox_environment_dropdown_toggle_label",
2615
+ "DevXboxEnvironmentDropdownEnabled" = "#dev_xbox_environment_dropdown_enabled",
2616
+ "OverrideXboxSandboxVisible" = "#override_xbox_sandbox_visible",
2617
+ "UpdateOverrideVersionButtonVisible" = "#update_override_version_button_visible",
2618
+ "OverrideVersionOptionsVisible" = "#override_version_options_visible",
2619
+ "DevVersionMajorOverride" = "#dev_version_major_override",
2620
+ "DevVersionMinorOverride" = "#dev_version_minor_override",
2621
+ "DevVersionPatchOverride" = "#dev_version_patch_override",
2622
+ "DevShowOverrideTreatments" = "#dev_show_override_treatments",
2623
+ "DevShowOverrideTreatmentsEnabled" = "#dev_show_override_treatments_enabled",
2624
+ "DevTreatmentId" = "#dev_treatment_id",
2625
+ "DevTreatmentIdEnabled" = "#dev_treatment_id_enabled",
2626
+ "OverrideProgressionsLoadingVisible" = "#override_progressions_loading_visible",
2627
+ "TreatmentsGridDimension" = "#treatments_grid_dimension",
2628
+ "UnusedTreatmentsGridDimension" = "#unused_treatments_grid_dimension",
2629
+ "DevDisplayTreatmentsPanel" = "#dev_display_treatments_panel",
2630
+ "DevShowOverrideProgressions" = "#dev_show_override_progressions",
2631
+ "DevShowOverrideProgressionsEnabled" = "#dev_show_override_progressions_enabled",
2632
+ "DevProgressionId" = "#dev_progression_id",
2633
+ "DevProgressionIdEnabled" = "#dev_progression_id_enabled",
2634
+ "ProgressionsGridDimension" = "#progressions_grid_dimension",
2635
+ "DevDisplayProgressionsPanel" = "#dev_display_progressions_panel",
2636
+ "ProgressionId" = "#progression_id",
2637
+ "TreatmentId" = "#treatment_id",
2638
+ "UnusedTreatmentId" = "#unused_treatment_id",
2639
+ "SelectWindowsStoreVisible" = "#select_windows_store_visible",
2640
+ "WindowsStoreDropdownToggleLabel" = "#windows_store_dropdown_toggle_label",
2641
+ "ActiveStoresLabel" = "#active_stores_label",
2642
+ "WindowsStoreModeRadioAuto" = "#windows_store_mode_radio_auto",
2643
+ "WindowsStoreModeRadioV6" = "#windows_store_mode_radio_v6",
2644
+ "WindowsStoreModeRadioV8" = "#windows_store_mode_radio_v8",
2645
+ "DevDisplayMockHttpPanel" = "#dev_display_mock_http_panel",
2646
+ "DevDisplayMockHttpPanelEnabled" = "#dev_display_mock_http_panel_enabled",
2647
+ "MockHttpRuleCount" = "#mock_http_rule_count",
2648
+ "RuleDetailsLabel" = "#rule_details_label",
2649
+ "TestAssets" = "#test_assets",
2650
+ "AutomationFunctionalTestTags" = "#automation_functional_test_tags",
2651
+ "AutomationServerTestTags" = "#automation_server_test_tags",
2652
+ "AutomationUnitTestTags" = "#automation_unit_test_tags",
2653
+ "AutomationBrokenFunctionalTestTags" = "#automation_broken_functional_test_tags",
2654
+ "AutomationBrokenServerTestTags" = "#automation_broken_server_test_tags",
2655
+ "AutomationBrokenUnitTestTags" = "#automation_broken_unit_test_tags",
2656
+ "AutomationRepeatCount" = "#automation_repeat_count",
2657
+ "AutomationSoakTestDurationMinutes" = "#automation_soak_test_duration_minutes",
2658
+ "AutomationRepeatFailuresOnly" = "#automation_repeat_failures_only",
2659
+ "AutomationRunEntireServerTestGroup" = "#automation_run_entire_server_test_group",
2660
+ "AutomationTestbuildId" = "#automation_testbuild_id",
2661
+ "AutomationFunctionalTestBlockInput" = "#automation_functional_test_block_input",
2662
+ "AutomationFunctionalTestBlockInputEnabled" = "#automation_functional_test_block_input_enabled",
2663
+ "AutomationServerTestAssertOnLevelDiff" = "#automation_server_test_assert_on_level_diff",
2664
+ "AutomationServerTestAssertOnLevelDiffEnabled" = "#automation_server_test_assert_on_level_diff_enabled",
2665
+ "DevDiscoveryEnvironmentDropdownToggleLabel" = "#dev_discovery_environment_dropdown_toggle_label",
2666
+ "DevDiscoveryEnvironmentDropdownEnabled" = "#dev_discovery_environment_dropdown_enabled",
2667
+ "DevShowDiscoveryOverrides" = "#dev_show_discovery_overrides",
2668
+ "DevShowDiscoveryOverridesEnabled" = "#dev_show_discovery_overrides_enabled",
2669
+ "DevDiscoveryOverrideServiceName" = "#dev_discovery_override_service_name",
2670
+ "DevDiscoveryOverrideServiceNameEnabled" = "#dev_discovery_override_service_name_enabled",
2671
+ "DevServiceOverrideTypeDropdownToggleLabel" = "#dev_service_override_type_dropdown_toggle_label",
2672
+ "DevDiscoveryOverrideBranch" = "#dev_discovery_override_branch",
2673
+ "DevDiscoveryOverrideBranchEnabled" = "#dev_discovery_override_branch_enabled",
2674
+ "DevDiscoveryOverrideCustom" = "#dev_discovery_override_custom",
2675
+ "DevDiscoveryOverrideCustomEnabled" = "#dev_discovery_override_custom_enabled",
2676
+ "ActiveServiceOverridesLabelText" = "#active_service_overrides_label_text",
2677
+ "ShowResetAllEndpointOverridesButton" = "#show_reset_all_endpoint_overrides_button",
2678
+ "FeatureToggleState" = "#feature_toggle_state",
2679
+ "FeatureToggleEnabled" = "#feature_toggle_enabled",
2680
+ "FeatureToggleText" = "#feature_toggle_text",
2681
+ "DevShowDevConsoleButton" = "#dev_show_dev_console_button",
2682
+ "DevShowDevConsoleButtonEnabled" = "#dev_show_dev_console_button_enabled",
2683
+ "DevAssertionsDebugBreak" = "#dev_assertions_debug_break",
2684
+ "DevAssertionsDebugBreakEnabled" = "#dev_assertions_debug_break_enabled",
2685
+ "DevAssertionsShowDialog" = "#dev_assertions_show_dialog",
2686
+ "DevAssertionsShowDialogEnabled" = "#dev_assertions_show_dialog_enabled",
2687
+ "DevForceTrialMode" = "#dev_force_trial_mode",
2688
+ "DevForceTrialModeEnabled" = "#dev_force_trial_mode_enabled",
2689
+ "FeatureToggleCount" = "#feature_toggle_count",
2690
+ "DevEnableDebugUi" = "#dev_enable_debug_ui",
2691
+ "DevEnableDebugUiEnabled" = "#dev_enable_debug_ui_enabled",
2692
+ "DevActorMovementDropdownToggleLabel" = "#dev_actor_movement_dropdown_toggle_label",
2693
+ "DevActorMovementDropdownEnabled" = "#dev_actor_movement_dropdown_enabled",
2694
+ "DevNethernetLoggingVerbosityDropdownToggleLabel" = "#dev_nethernet_logging_verbosity_dropdown_toggle_label",
2695
+ "DevNethernetLoggingVerbosityDropdownEnabled" = "#dev_nethernet_logging_verbosity_dropdown_enabled",
2696
+ "RemoteImgui" = "#remote_imgui",
2697
+ "RemoteImguiEnabled" = "#remote_imgui_enabled",
2698
+ "DevDebugHudDropdownToggleLabel" = "#dev_debug_hud_dropdown_toggle_label",
2699
+ "DevDebugHudDropdownEnabled" = "#dev_debug_hud_dropdown_enabled",
2700
+ "DevShowExtraDebugHudInfo" = "#dev_show_extra_debug_hud_info",
2701
+ "DevRenderBoundingBox" = "#dev_render_bounding_box",
2702
+ "DevRenderBoundingBoxEnabled" = "#dev_render_bounding_box_enabled",
2703
+ "DevFindMobs" = "#dev_find_mobs",
2704
+ "DevFindMobsEnabled" = "#dev_find_mobs_enabled",
2705
+ "DevRenderAttachPosSliderLabel" = "#dev_render_attach_pos_slider_label",
2706
+ "DevRenderAttachPos" = "#dev_render_attach_pos",
2707
+ "DevRenderAttachPosTextValue" = "#dev_render_attach_pos_text_value",
2708
+ "DevRenderAttachPosEnabled" = "#dev_render_attach_pos_enabled",
2709
+ "DevRenderAttachPosSteps" = "#dev_render_attach_pos_steps",
2710
+ "DevRenderPaths" = "#dev_render_paths",
2711
+ "DevRenderPathsEnabled" = "#dev_render_paths_enabled",
2712
+ "DevRenderGoalState" = "#dev_render_goal_state",
2713
+ "DevRenderGoalStateEnabled" = "#dev_render_goal_state_enabled",
2714
+ "DevResetClientId" = "#dev_reset_client_id",
2715
+ "DevResetClientIdEnabled" = "#dev_reset_client_id_enabled",
2716
+ "DevShowChunkMap" = "#dev_show_chunk_map",
2717
+ "DevShowChunkMapEnabled" = "#dev_show_chunk_map_enabled",
2718
+ "DevChunkMapModeDropdownEnabled" = "#dev_chunk_map_mode_dropdown_enabled",
2719
+ "DevChunkMapModeDropdownToggleLabel" = "#dev_chunk_map_mode_dropdown_toggle_label",
2720
+ "DevRenderMobInfoState" = "#dev_render_mob_info_state",
2721
+ "DevRenderMobInfoStateEnabled" = "#dev_render_mob_info_state_enabled",
2722
+ "DevDisableRenderTerrain" = "#dev_disable_render_terrain",
2723
+ "DevDisableRenderTerrainEnabled" = "#dev_disable_render_terrain_enabled",
2724
+ "DevDisableRenderEntities" = "#dev_disable_render_entities",
2725
+ "DevDisableRenderEntitiesEnabled" = "#dev_disable_render_entities_enabled",
2726
+ "DevDisableRenderBlockentities" = "#dev_disable_render_blockentities",
2727
+ "DevDisableRenderBlockentitiesEnabled" = "#dev_disable_render_blockentities_enabled",
2728
+ "DevDisableRenderParticles" = "#dev_disable_render_particles",
2729
+ "DevDisableRenderParticlesEnabled" = "#dev_disable_render_particles_enabled",
2730
+ "DevDisableRenderSky" = "#dev_disable_render_sky",
2731
+ "DevDisableRenderSkyEnabled" = "#dev_disable_render_sky_enabled",
2732
+ "DevDisableRenderWeather" = "#dev_disable_render_weather",
2733
+ "DevDisableRenderWeatherEnabled" = "#dev_disable_render_weather_enabled",
2734
+ "DevDisableRenderHud" = "#dev_disable_render_hud",
2735
+ "DevDisableRenderHudEnabled" = "#dev_disable_render_hud_enabled",
2736
+ "DevDisableRenderItemInHand" = "#dev_disable_render_item_in_hand",
2737
+ "DevDisableRenderItemInHandEnabled" = "#dev_disable_render_item_in_hand_enabled",
2738
+ "DevDisableRenderMainMenuCubeMap" = "#dev_disable_render_main_menu_cube_map",
2739
+ "DevDisableRenderMainMenuCubeMapEnabled" = "#dev_disable_render_main_menu_cube_map_enabled",
2740
+ "DevDisableRenderMainMenuPaperdollAnimation" = "#dev_disable_render_main_menu_paperdoll_animation",
2741
+ "DevDisableRenderMainMenuPaperdollAnimationEnabled" = "#dev_disable_render_main_menu_paperdoll_animation_enabled",
2742
+ "LeakMemoryValue" = "#leak_memory_value",
2743
+ "LeakMemoryEnabled" = "#leak_memory_enabled",
2744
+ "LogAreaTextBox" = "#log_area_text_box",
2745
+ "LogPriorityTextBox" = "#log_priority_text_box",
2746
+ "DevShowBuildInfo" = "#dev_show_build_info",
2747
+ "DevShowBuildInfoEnabled" = "#dev_show_build_info_enabled",
2748
+ "PerfTurtle" = "#perf_turtle",
2749
+ "PerfTurtleEnabled" = "#perf_turtle_enabled",
2750
+ "DefaultProfilingGroupToggleLabel" = "#default_profiling_group_toggle_label",
2751
+ "DefaultProfilingGroupEnabled" = "#default_profiling_group_enabled",
2752
+ "DevEnableProfiler" = "#dev_enable_profiler",
2753
+ "DevEnableProfilerEnabled" = "#dev_enable_profiler_enabled",
2754
+ "DevAchievementsAlwaysEnabled" = "#dev_achievements_always_enabled",
2755
+ "DevAchievementsAlwaysEnabledEnabled" = "#dev_achievements_always_enabled_enabled",
2756
+ "DevGameTip" = "#dev_game_tip",
2757
+ "DevGameTipEnabled" = "#dev_game_tip_enabled",
2758
+ "DevUseIpv6Only" = "#dev_use_ipv6_only",
2759
+ "DevUseIpv6OnlyEnabled" = "#dev_use_ipv6_only_enabled",
2760
+ "DevDisableClientBlobCache" = "#dev_disable_client_blob_cache",
2761
+ "DevDisableClientBlobCacheEnabled" = "#dev_disable_client_blob_cache_enabled",
2762
+ "DevForceClientBlobCache" = "#dev_force_client_blob_cache",
2763
+ "DevForceClientBlobCacheEnabled" = "#dev_force_client_blob_cache_enabled",
2764
+ "DevConnectionQualityToggleLabel" = "#dev_connection_quality_toggle_label",
2765
+ "DevConnectionQualityEnabled" = "#dev_connection_quality_enabled",
2766
+ "DevAddHttpDelaySecondsSliderLabel" = "#dev_add_http_delay_seconds_slider_label",
2767
+ "DevAddHttpDelaySeconds" = "#dev_add_http_delay_seconds",
2768
+ "DevAddHttpDelaySecondsTextValue" = "#dev_add_http_delay_seconds_text_value",
2769
+ "DevAddHttpDelaySecondsEnabled" = "#dev_add_http_delay_seconds_enabled",
2770
+ "DevAddHttpDelaySecondsSteps" = "#dev_add_http_delay_seconds_steps",
2771
+ "DevShowLatencyGraph" = "#dev_show_latency_graph",
2772
+ "DevShowLatencyGraphEnabled" = "#dev_show_latency_graph_enabled",
2773
+ "MultithreadedRendering" = "#multithreaded_rendering",
2774
+ "MultithreadedRenderingEnabled" = "#multithreaded_rendering_enabled",
2775
+ "ShowMultithreadedRendering" = "#show_multithreaded_rendering",
2776
+ "FileWatcher" = "#file_watcher",
2777
+ "FileWatcherEnabled" = "#file_watcher_enabled",
2778
+ "EnableTextureHotReloader" = "#enable_texture_hot_reloader",
2779
+ "TextureHotReloaderEnabled" = "#texture_hot_reloader_enabled",
2780
+ "VsyncDropdownToggleLabel" = "#vsync_dropdown_toggle_label",
2781
+ "VsyncDropdownEnabled" = "#vsync_dropdown_enabled",
2782
+ "DevUseSunsetOverrides" = "#dev_use_sunset_overrides",
2783
+ "DevUseSunsetOverridesEnabled" = "#dev_use_sunset_overrides_enabled",
2784
+ "SunsettingOverrideEnabled" = "#sunsetting_override_enabled",
2785
+ "DevSunsetState" = "#dev_sunset_state",
2786
+ "DevSunsetStateEnabled" = "#dev_sunset_state_enabled",
2787
+ "DevSunsettingTierDropdownToggleLabel" = "#dev_sunsetting_tier_dropdown_toggle_label",
2788
+ "DevSunsettingTierDropdownEnabled" = "#dev_sunsetting_tier_dropdown_enabled",
2789
+ "DevRealmsEndpointPayment" = "#dev_realms_endpoint_payment",
2790
+ "DevRealmsEndpointPaymentEnabled" = "#dev_realms_endpoint_payment_enabled",
2791
+ "DevRealmsEnvironmentRadioLocal" = "#dev_realms_environment_radio_local",
2792
+ "DevRealmsRelyingParty" = "#dev_realms_relying_party",
2793
+ "DevRealmsRelyingPartyEnabled" = "#dev_realms_relying_party_enabled",
2794
+ "DevRealmsRelyingPartyPayment" = "#dev_realms_relying_party_payment",
2795
+ "DevRealmsRelyingPartyPaymentEnabled" = "#dev_realms_relying_party_payment_enabled",
2796
+ "ShadersdkServiceIp" = "#shadersdk_service_ip",
2797
+ "ShadersdkServiceIpEnabled" = "#shadersdk_service_ip_enabled",
2798
+ "ShadersdkServicePort" = "#shadersdk_service_port",
2799
+ "ShadersdkServicePortEnabled" = "#shadersdk_service_port_enabled",
2800
+ "ShadersdkTargetPort" = "#shadersdk_target_port",
2801
+ "ShadersdkTargetPortEnabled" = "#shadersdk_target_port_enabled",
2802
+ "RealmsFeatureToggleCount" = "#realms_feature_toggle_count",
2803
+ "DevCreateRealmWithoutPurchase" = "#dev_create_realm_without_purchase",
2804
+ "DevCreateRealmWithoutPurchaseEnabled" = "#dev_create_realm_without_purchase_enabled",
2805
+ "DevRealmsEnvironmentDropdownToggleLabel" = "#dev_realms_environment_dropdown_toggle_label",
2806
+ "DevRealmsEnvironmentDropdownEnabled" = "#dev_realms_environment_dropdown_enabled",
2807
+ "DevRealmsSkuDropdownToggleLabel" = "#dev_realms_sku_dropdown_toggle_label",
2808
+ "DevRealmsSkuDropdownEnabled" = "#dev_realms_sku_dropdown_enabled",
2809
+ "DevRealmsEndpoint" = "#dev_realms_endpoint",
2810
+ "DevRealmsEndpointEnabled" = "#dev_realms_endpoint_enabled",
2811
+ "MarketplaceFeatureToggleCount" = "#marketplace_feature_toggle_count",
2812
+ "PlayfabTokenRefreshThresholdSliderLabel" = "#playfab_token_refresh_threshold_slider_label",
2813
+ "PlayfabTokenRefreshThreshold" = "#playfab_token_refresh_threshold",
2814
+ "PlayfabTokenRefreshThresholdTextValue" = "#playfab_token_refresh_threshold_text_value",
2815
+ "PlayfabTokenRefreshThresholdEnabled" = "#playfab_token_refresh_threshold_enabled",
2816
+ "PlayfabTokenRefreshThresholdSteps" = "#playfab_token_refresh_threshold_steps",
2817
+ "DevDebugSkinRotationSpeedMultiplierDropdownToggleLabel" = "#dev_debug_skin_rotation_speed_multiplier_dropdown_toggle_label",
2818
+ "DevDebugSkinRotationSpeedMultiplierDropdownEnabled" = "#dev_debug_skin_rotation_speed_multiplier_dropdown_enabled",
2819
+ "DevMarketplaceToggleAllSkinsRotate" = "#dev_marketplace_toggle_all_skins_rotate",
2820
+ "DevMarketplaceToggleAllSkinsRotateEnabled" = "#dev_marketplace_toggle_all_skins_rotate_enabled",
2821
+ "DevShowDocId" = "#dev_show_doc_id",
2822
+ "DevShowDocIdEnabled" = "#dev_show_doc_id_enabled",
2823
+ "DevShowPlatformOfferCheck" = "#dev_show_platform_offer_check",
2824
+ "DevShowPlatformOfferCheckEnabled" = "#dev_show_platform_offer_check_enabled",
2825
+ "DevUseVersionOverride" = "#dev_use_version_override",
2826
+ "DevUseVersionOverrideEnabled" = "#dev_use_version_override_enabled",
2827
+ "SwitchCoinDebug" = "#switch_coin_debug",
2828
+ "SwitchCoinDebugEnabled" = "#switch_coin_debug_enabled",
2829
+ "ShowSwitchCoinDebug" = "#show_switch_coin_debug",
2830
+ "Add500Text" = "#add_500_text",
2831
+ "Add100000Text" = "#add_100000_text",
2832
+ "DevGatheringFilter" = "#dev_gathering_filter",
2833
+ "DevGatheringFilterEnabled" = "#dev_gathering_filter_enabled",
2834
+ "GatheringName" = "#gathering_name",
2835
+ "GatheringUuid" = "#gathering_uuid",
2836
+ "GatheringsGridDimension" = "#gatherings_grid_dimension",
2837
+ "InitialSelected" = "#initial_selected",
2838
+ "DevNewDeathScreenRadioEnabled" = "#dev_new_death_screen_radio_enabled",
2839
+ "DevNewBedScreenRadioEnabled" = "#dev_new_bed_screen_radio_enabled",
2840
+ "DevOreUiGameplayUiRadioEnabled" = "#dev_ore_ui_gameplay_ui_radio_enabled",
2841
+ "UiFeatureToggleCount" = "#ui_feature_toggle_count",
2842
+ "DevNewEduCreateWorldScreenRadioDimension" = "#dev_new_edu_create_world_screen_radio_dimension",
2843
+ "DevNewPlayScreenRadioDimension" = "#dev_new_play_screen_radio_dimension",
2844
+ "DevNewEditWorldScreenRadioDimension" = "#dev_new_edit_world_screen_radio_dimension",
2845
+ "DevNewTrialScreenRadioDimension" = "#dev_new_trial_screen_radio_dimension",
2846
+ "DevNewDeathScreenRadioDimension" = "#dev_new_death_screen_radio_dimension",
2847
+ "DevNewBedScreenRadioDimension" = "#dev_new_bed_screen_radio_dimension",
2848
+ "DevOreUiGameplayUiRadioDimension" = "#dev_ore_ui_gameplay_ui_radio_dimension",
2849
+ "DevToggleDefaultFontOverrides" = "#dev_toggle_default_font_overrides",
2850
+ "DevToggleDefaultFontOverridesVisible" = "#dev_toggle_default_font_overrides_visible",
2851
+ "DevShowTcuiReplacement" = "#dev_show_tcui_replacement",
2852
+ "DevShowTcuiReplacementEnabled" = "#dev_show_tcui_replacement_enabled",
2853
+ "DevAllowMobileDataBlockedModal" = "#dev_allow_mobile_data_blocked_modal",
2854
+ "DevAllowMobileDataBlockedModalEnabled" = "#dev_allow_mobile_data_blocked_modal_enabled",
2855
+ "ShowTouchControlSelectionScreen" = "#show_touch_control_selection_screen",
2856
+ "ShowTouchControlSelectionScreenEnabled" = "#show_touch_control_selection_screen_enabled",
2857
+ "ResetOnStart" = "#reset_on_start",
2858
+ "ResetOnStartEnabled" = "#reset_on_start_enabled",
2859
+ "DwellBeforeDragTimeSliderLabel" = "#dwell_before_drag_time_slider_label",
2860
+ "DwellBeforeDragTime" = "#dwell_before_drag_time",
2861
+ "DwellBeforeDragTimeTextValue" = "#dwell_before_drag_time_text_value",
2862
+ "DwellBeforeDragTimeEnabled" = "#dwell_before_drag_time_enabled",
2863
+ "StackSplittingTriggerTimeSliderLabel" = "#stack_splitting_trigger_time_slider_label",
2864
+ "StackSplittingTriggerTime" = "#stack_splitting_trigger_time",
2865
+ "StackSplittingTriggerTimeTextValue" = "#stack_splitting_trigger_time_text_value",
2866
+ "StackSplittingTriggerTimeEnabled" = "#stack_splitting_trigger_time_enabled",
2867
+ "DevEduDemo" = "#dev_edu_demo",
2868
+ "DevEduDemoEnabled" = "#dev_edu_demo_enabled",
2869
+ "DevEduCloudResumableUpload" = "#dev_edu_cloud_resumable_upload",
2870
+ "DevEduCloudResumableUploadEnabled" = "#dev_edu_cloud_resumable_upload_enabled",
2871
+ "ShowAdDebugPanelButton" = "#show_ad_debug_panel_button",
2872
+ "ShowAdDebugPanelButtonEnabled" = "#show_ad_debug_panel_button_enabled",
2873
+ "AdTokenRefreshThresholdSliderLabel" = "#ad_token_refresh_threshold_slider_label",
2874
+ "AdTokenRefreshThreshold" = "#ad_token_refresh_threshold",
2875
+ "AdTokenRefreshThresholdTextValue" = "#ad_token_refresh_threshold_text_value",
2876
+ "AdTokenRefreshThresholdEnabled" = "#ad_token_refresh_threshold_enabled",
2877
+ "AdTokenRefreshThresholdSteps" = "#ad_token_refresh_threshold_steps",
2878
+ "AdMaxSigninTokenRefreshSliderLabel" = "#ad_max_signin_token_refresh_slider_label",
2879
+ "AdMaxSigninTokenRefresh" = "#ad_max_signin_token_refresh",
2880
+ "AdMaxSigninTokenRefreshTextValue" = "#ad_max_signin_token_refresh_text_value",
2881
+ "AdMaxSigninTokenRefreshEnabled" = "#ad_max_signin_token_refresh_enabled",
2882
+ "AdMaxSigninTokenRefreshSteps" = "#ad_max_signin_token_refresh_steps",
2883
+ "AdMaxGraphTokenRefreshSliderLabel" = "#ad_max_graph_token_refresh_slider_label",
2884
+ "AdMaxGraphTokenRefresh" = "#ad_max_graph_token_refresh",
2885
+ "AdMaxGraphTokenRefreshTextValue" = "#ad_max_graph_token_refresh_text_value",
2886
+ "AdMaxGraphTokenRefreshEnabled" = "#ad_max_graph_token_refresh_enabled",
2887
+ "AdMaxGraphTokenRefreshSteps" = "#ad_max_graph_token_refresh_steps",
2888
+ "DevEducationEnvDropdownToggleLabel" = "#dev_education_env_dropdown_toggle_label",
2889
+ "DevEducationEnvDropdownEnabled" = "#dev_education_env_dropdown_enabled",
2890
+ "DevAzurenotebooksEnvDropdownToggleLabel" = "#dev_azurenotebooks_env_dropdown_toggle_label",
2891
+ "DevAzurenotebooksEnvDropdownEnabled" = "#dev_azurenotebooks_env_dropdown_enabled",
2892
+ "DevDisplayTreatmentsPanelEnabled" = "#dev_display_treatments_panel_enabled",
2893
+ "DevDisplayProgressionsPanelEnabled" = "#dev_display_progressions_panel_enabled",
2894
+ "HowToPlayGamepadHelperLabelText" = "#how_to_play_gamepad_helper_label_text",
2895
+ "HowToPlayGamepadHelperLabelVisible" = "#how_to_play_gamepad_helper_label_visible",
2896
+ "DevXboxEnvironmentRadioRetail" = "#dev_xbox_environment_radio_retail",
2897
+ "DevXboxEnvironmentRadioDev" = "#dev_xbox_environment_radio_dev",
2898
+ "DevXboxEnvironmentRadioDevAchievement" = "#dev_xbox_environment_radio_dev_achievement",
2899
+ "DevDiscoveryEnvironmentRadioProduction" = "#dev_discovery_environment_radio_production",
2900
+ "DevDiscoveryEnvironmentRadioStaging" = "#dev_discovery_environment_radio_staging",
2901
+ "DevDiscoveryEnvironmentRadioDev" = "#dev_discovery_environment_radio_dev",
2902
+ "DevDiscoveryEnvironmentRadioPerf" = "#dev_discovery_environment_radio_perf",
2903
+ "DevDiscoveryEnvironmentRadioLocal" = "#dev_discovery_environment_radio_local",
2904
+ "DevServiceOverrideTypeRadioMultibranch" = "#dev_service_override_type_radio_multibranch",
2905
+ "DevServiceOverrideTypeRadioCustom" = "#dev_service_override_type_radio_custom",
2906
+ "DevRealmsEnvironmentRadioProduction" = "#dev_realms_environment_radio_production",
2907
+ "DevRealmsEnvironmentRadioStaging" = "#dev_realms_environment_radio_staging",
2908
+ "DevRealmsEnvironmentRadioDev" = "#dev_realms_environment_radio_dev",
2909
+ "DevRealmsSkuRadioProduction" = "#dev_realms_sku_radio_production",
2910
+ "DevRealmsSkuRadioFiveday" = "#dev_realms_sku_radio_fiveday",
2911
+ "DevRealmsSkuRadioDefault" = "#dev_realms_sku_radio_default",
2912
+ "InternalProfilingBootstrap" = "#internal_profiling_bootstrap",
2913
+ "CreatorProfilingBootstrap" = "#creator_profiling_bootstrap",
2914
+ "DevActorMovementDefault" = "#dev_actor_movement_default",
2915
+ "DevActorMovementLegacyClient" = "#dev_actor_movement_legacy_client",
2916
+ "DevActorMovementClient" = "#dev_actor_movement_client",
2917
+ "DevActorMovementServer" = "#dev_actor_movement_server",
2918
+ "DevNethernetLoggingVerbosityDisabled" = "#dev_nethernet_logging_verbosity_disabled",
2919
+ "DevNethernetLoggingVerbosityCriticalonly" = "#dev_nethernet_logging_verbosity_criticalonly",
2920
+ "DevNethernetLoggingVerbosityError" = "#dev_nethernet_logging_verbosity_error",
2921
+ "DevNethernetLoggingVerbosityWarning" = "#dev_nethernet_logging_verbosity_warning",
2922
+ "DevNethernetLoggingVerbosityInformation" = "#dev_nethernet_logging_verbosity_information",
2923
+ "DevNethernetLoggingVerbosityVerbose" = "#dev_nethernet_logging_verbosity_verbose",
2924
+ "DevMarketplaceRotationSpeedMultiplierOne" = "#dev_marketplace_rotation_speed_multiplier_one",
2925
+ "DevMarketplaceRotationSpeedMultiplierTwo" = "#dev_marketplace_rotation_speed_multiplier_two",
2926
+ "DevMarketplaceRotationSpeedMultiplierThree" = "#dev_marketplace_rotation_speed_multiplier_three",
2927
+ "DevMarketplaceRotationSpeedMultiplierFour" = "#dev_marketplace_rotation_speed_multiplier_four",
2928
+ "DebugHudRadioOff" = "#debug_hud_radio_off",
2929
+ "DebugHudRadioBasic" = "#debug_hud_radio_basic",
2930
+ "DebugHudRadioImgui" = "#debug_hud_radio_imgui",
2931
+ "DebugHudRadioWorkerthreads" = "#debug_hud_radio_workerthreads",
2932
+ "DebugHudRadioRenderchunks" = "#debug_hud_radio_renderchunks",
2933
+ "DebugHudRadioProfiler" = "#debug_hud_radio_profiler",
2934
+ "DebugHudRadioTexturememory" = "#debug_hud_radio_texturememory",
2935
+ "DebugHudRadioImagememory" = "#debug_hud_radio_imagememory",
2936
+ "DebugHudRadioPerimagememory" = "#debug_hud_radio_perimagememory",
2937
+ "DebugHudRadioBufferMemory" = "#debug_hud_radio_buffer_memory",
2938
+ "DebugHudRadioMaterialMemory" = "#debug_hud_radio_material_memory",
2939
+ "DebugHudRadioCamera" = "#debug_hud_radio_camera",
2940
+ "DebugHudRadioAudio" = "#debug_hud_radio_audio",
2941
+ "DebugHudRadioClientNetwork" = "#debug_hud_radio_client_network",
2942
+ "DebugHudRadioServerNetwork" = "#debug_hud_radio_server_network",
2943
+ "DebugHudRadioClientMobPrediction" = "#debug_hud_radio_client_mob_prediction",
2944
+ "DebugHudRadioSpatialPacketOptimizations" = "#debug_hud_radio_spatial_packet_optimizations",
2945
+ "DebugHudRadioLockContention" = "#debug_hud_radio_lock_contention",
2946
+ "DebugHudRadioOreui" = "#debug_hud_radio_oreui",
2947
+ "ChunkMapModeOff" = "#chunk_map_mode_off",
2948
+ "ChunkMapModeClient" = "#chunk_map_mode_client",
2949
+ "ChunkMapModeClientMainChunksource" = "#chunk_map_mode_client_main_chunksource",
2950
+ "ChunkMapModeServerChunkState" = "#chunk_map_mode_server_chunk_state",
2951
+ "ChunkMapModeServerChunkDebugDisplayState" = "#chunk_map_mode_server_chunk_debug_display_state",
2952
+ "DevConnectionOff" = "#dev_connection_off",
2953
+ "DevConnectionNolimit" = "#dev_connection_nolimit",
2954
+ "DevConnection4g" = "#dev_connection_4g",
2955
+ "DevConnection3g" = "#dev_connection_3g",
2956
+ "DevConnectionSlow" = "#dev_connection_slow",
2957
+ "DevConnectionVeryslow" = "#dev_connection_veryslow",
2958
+ "VsyncOff" = "#vsync_off",
2959
+ "VsyncOn" = "#vsync_on",
2960
+ "VsyncAdaptive" = "#vsync_adaptive",
2961
+ "IdentityEnvironmentDev" = "#identity_environment_dev",
2962
+ "IdentityEnvironmentTest" = "#identity_environment_test",
2963
+ "IdentityEnvironmentProd" = "#identity_environment_prod",
2964
+ "EducationEnvironmentDev" = "#education_environment_dev",
2965
+ "EducationEnvironmentStaging" = "#education_environment_staging",
2966
+ "EducationEnvironmentPreprod" = "#education_environment_preprod",
2967
+ "EducationEnvironmentProd" = "#education_environment_prod",
2968
+ "EducationEnvironmentLocal" = "#education_environment_local",
2969
+ "AzureNotebooksEnvironmentStaging" = "#azure_notebooks_environment_staging",
2970
+ "AzureNotebooksEnvironmentProd" = "#azure_notebooks_environment_prod",
2971
+ "SunsettingTier1" = "#sunsetting_tier1",
2972
+ "SunsettingTier2" = "#sunsetting_tier2",
2973
+ "SunsettingTier3" = "#sunsetting_tier3",
2974
+ "SunsettingTier4" = "#sunsetting_tier4",
2975
+ "SunsettingTier5" = "#sunsetting_tier5",
2976
+ "SunsettingTier6" = "#sunsetting_tier6",
2977
+ "SunsettingNotPending" = "#sunsetting_not_pending",
2978
+ "GraphicsModeRadioSimple" = "#graphics_mode_radio_simple",
2979
+ "GraphicsModeRadioFancy" = "#graphics_mode_radio_fancy",
2980
+ "GraphicsModeRadioDeferred" = "#graphics_mode_radio_deferred",
2981
+ "GraphicsModeRadioDeferredEnabled" = "#graphics_mode_radio_deferred_enabled",
2982
+ "GraphicsModeRadioRayTraced" = "#graphics_mode_radio_ray_traced",
2983
+ "GraphicsModeRadioRayTracedEnabled" = "#graphics_mode_radio_ray_traced_enabled",
2984
+ "GraphicsModeToggleLabel" = "#graphics_mode_toggle_label",
2985
+ "GraphicsModeIsDeferred" = "#graphics_mode_is_deferred",
2986
+ "ShadowQualitySliderLabel" = "#shadow_quality_slider_label",
2987
+ "ShadowQuality" = "#shadow_quality",
2988
+ "ShadowQualityTextValue" = "#shadow_quality_text_value",
2989
+ "ShadowQualitySteps" = "#shadow_quality_steps",
2990
+ "PointLightShadowQualitySliderLabel" = "#point_light_shadow_quality_slider_label",
2991
+ "PointLightShadowQuality" = "#point_light_shadow_quality",
2992
+ "PointLightShadowQualityTextValue" = "#point_light_shadow_quality_text_value",
2993
+ "PointLightShadowQualitySteps" = "#point_light_shadow_quality_steps",
2994
+ "PointLightLodingQualitySliderLabel" = "#point_light_loding_quality_slider_label",
2995
+ "PointLightLodingQuality" = "#point_light_loding_quality",
2996
+ "PointLightLodingQualityTextValue" = "#point_light_loding_quality_text_value",
2997
+ "PointLightLodingQualitySteps" = "#point_light_loding_quality_steps",
2998
+ "VolumetricFogQualitySliderLabel" = "#volumetric_fog_quality_slider_label",
2999
+ "VolumetricFogQuality" = "#volumetric_fog_quality",
3000
+ "VolumetricFogQualityTextValue" = "#volumetric_fog_quality_text_value",
3001
+ "VolumetricFogQualitySteps" = "#volumetric_fog_quality_steps",
3002
+ "ReflectionsQualitySliderLabel" = "#reflections_quality_slider_label",
3003
+ "ReflectionsQuality" = "#reflections_quality",
3004
+ "ReflectionsQualityTextValue" = "#reflections_quality_text_value",
3005
+ "ReflectionsQualitySteps" = "#reflections_quality_steps",
3006
+ "BloomStrengthSliderLabel" = "#bloom_strength_slider_label",
3007
+ "BloomStrength" = "#bloom_strength",
3008
+ "BloomStrengthTextValue" = "#bloom_strength_text_value",
3009
+ "BloomStrengthEnabled" = "#bloom_strength_enabled",
3010
+ "GraphicsModeIsRayTraced" = "#graphics_mode_is_ray_traced",
3011
+ "UpscalingPercentageSliderLabel" = "#upscaling_percentage_slider_label",
3012
+ "UpscalingPercentage" = "#upscaling_percentage",
3013
+ "UpscalingPercentageTextValue" = "#upscaling_percentage_text_value",
3014
+ "UpscalingPercentageSteps" = "#upscaling_percentage_steps",
3015
+ "GraphicsModeIsSimpleOrFancy" = "#graphics_mode_is_simple_or_fancy",
3016
+ "RealmNameEnabled" = "#realm_name_enabled",
3017
+ "WorldName" = "#world_name",
3018
+ "RealmDescription" = "#realm_description",
3019
+ "RealmDescriptionEnabled" = "#realm_description_enabled",
3020
+ "RealmDescriptionVisible" = "#realm_description_visible",
3021
+ "DownloadButtonVisible" = "#download_button_visible",
3022
+ "ResetButtonVisible" = "#reset_button_visible",
3023
+ "ResetButtonEnabled" = "#reset_button_enabled",
3024
+ "ManageFeedButtonEnabled" = "#manage_feed_button_enabled",
3025
+ "ManageFeedButtonVisible" = "#manage_feed_button_visible",
3026
+ "ClubInfotext" = "#club_infotext",
3027
+ "ClubInfotextVisible" = "#club_infotext_visible",
3028
+ "DifficultyOptionLabel" = "#difficulty_option_label",
3029
+ "RealmsDifficultyDropdownEnabled" = "#realms_difficulty_dropdown_enabled",
3030
+ "GameModeOptionLabel" = "#gameMode_option_label",
3031
+ "RealmsGameModeDropdownEnabled" = "#realms_game_mode_dropdown_enabled",
3032
+ "AchievementWarningText" = "#achievement_warning_text",
3033
+ "AchievmentWarningVisible" = "#achievment_warning_visible",
3034
+ "HardcoreWarningText" = "#hardcore_warning_text",
3035
+ "HardcoreWarningVisible" = "#hardcore_warning_visible",
3036
+ "IsHardcore" = "#is_hardcore",
3037
+ "IsHardcoreEnabled" = "#is_hardcore_enabled",
3038
+ "Pvp" = "#pvp",
3039
+ "PvpEnabled" = "#pvp_enabled",
3040
+ "ShowCoordinates" = "#show_coordinates",
3041
+ "ShowCoordinatesEnabled" = "#show_coordinates_enabled",
3042
+ "ShowDaysPlayed" = "#show_days_played",
3043
+ "ShowDaysPlayedEnabled" = "#show_days_played_enabled",
3044
+ "FireSpreads" = "#fire_spreads",
3045
+ "FireSpreadsEnabled" = "#fire_spreads_enabled",
3046
+ "RecipesUnlock" = "#recipes_unlock",
3047
+ "RecipesUnlockEnabled" = "#recipes_unlock_enabled",
3048
+ "TntExplodes" = "#tnt_explodes",
3049
+ "TntExplodesEnabled" = "#tnt_explodes_enabled",
3050
+ "RespawnBlocksExplode" = "#respawn_blocks_explode",
3051
+ "RespawnBlocksExplodeEnabled" = "#respawn_blocks_explode_enabled",
3052
+ "MobLoot" = "#mob_loot",
3053
+ "MobLootEnabled" = "#mob_loot_enabled",
3054
+ "NaturalRegeneration" = "#natural_regeneration",
3055
+ "NaturalRegenerationEnabled" = "#natural_regeneration_enabled",
3056
+ "TileDrops" = "#tile_drops",
3057
+ "TileDropsEnabled" = "#tile_drops_enabled",
3058
+ "DoImmediateRespawn" = "#do_immediate_respawn",
3059
+ "DoImmediateRespawnEnabled" = "#do_immediate_respawn_enabled",
3060
+ "RespawnRadius" = "#respawn_radius",
3061
+ "RespawnRadiusEnabled" = "#respawn_radius_enabled",
3062
+ "AllowCheats" = "#allow_cheats",
3063
+ "AllowCheatsEnabled" = "#allow_cheats_enabled",
3064
+ "DaylightCycle" = "#daylight_cycle",
3065
+ "DaylightCycleEnabled" = "#daylight_cycle_enabled",
3066
+ "KeepInventory" = "#keep_inventory",
3067
+ "KeepInventoryEnabled" = "#keep_inventory_enabled",
3068
+ "MobSpawn" = "#mob_spawn",
3069
+ "MobSpawnEnabled" = "#mob_spawn_enabled",
3070
+ "MobGriefing" = "#mob_griefing",
3071
+ "MobGriefingEnabled" = "#mob_griefing_enabled",
3072
+ "EntitiesDropLoot" = "#entities_drop_loot",
3073
+ "EntitiesDropLootEnabled" = "#entities_drop_loot_enabled",
3074
+ "WeatherCycle" = "#weather_cycle",
3075
+ "WeatherCycleEnabled" = "#weather_cycle_enabled",
3076
+ "CommandBlocksEnabled" = "#command_blocks_enabled",
3077
+ "CommandBlocksEnabledEnabled" = "#command_blocks_enabled_enabled",
3078
+ "RandomTickSpeed" = "#random_tick_speed",
3079
+ "RandomTickSpeedEnabled" = "#random_tick_speed_enabled",
3080
+ "NotDataBound" = "#not_data_bound",
3081
+ "GameModeRadioSurvival" = "#game_mode_radio_survival",
3082
+ "GameModeRadioCreative" = "#game_mode_radio_creative",
3083
+ "WorldTextureName" = "#world_texture_name",
3084
+ "WorldTextureLocationtype" = "#world_texture_locationtype",
3085
+ "ServerSettingsVisible" = "#server_settings_visible",
3086
+ "CreateOnRealmVisible" = "#create_on_realm_visible",
3087
+ "UploadWorldVisible" = "#upload_world_visible",
3088
+ "ShouldHost" = "#should_host",
3089
+ "ServerIcon" = "#server_icon",
3090
+ "ServerIconFileSystem" = "#server_icon_file_system",
3091
+ "ServerOutlineIcon" = "#server_outline_icon",
3092
+ "ShowNewEditWorldOptIn" = "#show_new_edit_world_opt_in",
3093
+ "WorldTemplateOptionsLockWarningText" = "#world_template_options_lock_warning_text",
3094
+ "PlayerHasWorldTemplateOptionUnlockPermissions" = "#player_has_world_template_option_unlock_permissions",
3095
+ "WorldNameEnabled" = "#world_name_enabled",
3096
+ "WorldGameModeDropdownToggleLabel" = "#world_game_mode_dropdown_toggle_label",
3097
+ "WorldGameModeDropdownEnabled" = "#world_game_mode_dropdown_enabled",
3098
+ "PlayerGameModeDropdownToggleLabel" = "#player_game_mode_dropdown_toggle_label",
3099
+ "PlayerGameModeDropdownEnabled" = "#player_game_mode_dropdown_enabled",
3100
+ "PlayerGameModeDropdownVisible" = "#player_game_mode_dropdown_visible",
3101
+ "WorldDifficultyDropdownToggleLabel" = "#world_difficulty_dropdown_toggle_label",
3102
+ "WorldDifficultyDropdownEnabled" = "#world_difficulty_dropdown_enabled",
3103
+ "StartWithMap" = "#start_with_map",
3104
+ "StartWithMapEnabled" = "#start_with_map_enabled",
3105
+ "BonusChest" = "#bonus_chest",
3106
+ "BonusChestEnabled" = "#bonus_chest_enabled",
3107
+ "ShowPermissionsDropdown" = "#show_permissions_dropdown",
3108
+ "WorldTypeDropdownToggleLabel" = "#world_type_dropdown_toggle_label",
3109
+ "WorldTypeDropdownEnabled" = "#world_type_dropdown_enabled",
3110
+ "WorldSeed" = "#world_seed",
3111
+ "WorldSeedEnabled" = "#world_seed_enabled",
3112
+ "ServerSimDistanceSliderLabel" = "#server_sim_distance_slider_label",
3113
+ "ServerSimDistance" = "#server_sim_distance",
3114
+ "ServerSimDistanceEnabled" = "#server_sim_distance_enabled",
3115
+ "ServerSimDistanceTextValue" = "#server_sim_distance_text_value",
3116
+ "ServerSimDistanceSteps" = "#server_sim_distance_steps",
3117
+ "PlayerSleep" = "#player_sleep",
3118
+ "PlayerSleepEnabled" = "#player_sleep_enabled",
3119
+ "PlayerSleepPercentageSliderLabel" = "#player_sleep_percentage_slider_label",
3120
+ "PlayerSleepPercentage" = "#player_sleep_percentage",
3121
+ "PlayerSleepPercentageEnabled" = "#player_sleep_percentage_enabled",
3122
+ "PlayerSleepPercentageTextValue" = "#player_sleep_percentage_text_value",
3123
+ "PlayerSleepPercentageSteps" = "#player_sleep_percentage_steps",
3124
+ "Immediaterespawn" = "#immediaterespawn",
3125
+ "ImmediaterespawnEnabled" = "#immediaterespawn_enabled",
3126
+ "ExperimentalToggleCount" = "#experimental_toggle_count",
3127
+ "EducationToggle" = "#education_toggle",
3128
+ "EducationToggleEnabled" = "#education_toggle_enabled",
3129
+ "AlwaysDay" = "#always_day",
3130
+ "AlwaysDayEnabled" = "#always_day_enabled",
3131
+ "CommandBlocksEnabledOn" = "#command_blocks_enabled_on",
3132
+ "ShowConvertToInfiniteButton" = "#show_convert_to_infinite_button",
3133
+ "MinimumTemplateVersion" = "#minimum_template_version",
3134
+ "MinimumTemplateEnabled" = "#minimum_template_enabled",
3135
+ "LotUploadOrDownload" = "#lot_upload_or_download",
3136
+ "SlotUploadOrDownload" = "#slot_upload_or_download",
3137
+ "SlotNewWorld" = "#slot_new_world",
3138
+ "CyclingIconPathLevel" = "#cycling_icon_path_level",
3139
+ "CyclingIconZipLevel" = "#cycling_icon_zip_level",
3140
+ "CyclingIconFileSystemLevel" = "#cycling_icon_file_system_level",
3141
+ "SelectedPackItemsLevel" = "#selected_pack_items_level",
3142
+ "AvailablePackItemsLevel" = "#available_pack_items_level",
3143
+ "RealmsPackItemsLevel" = "#realms_pack_items_level",
3144
+ "UnownedPackItemsLevel" = "#unowned_pack_items_level",
3145
+ "DefaultItemTextureLevel" = "#default_item_texture_level",
3146
+ "DefaultItemFileSystemLevel" = "#default_item_file_system_level",
3147
+ "DefaultItemZipLevel" = "#default_item_zip_level",
3148
+ "SelectedGridDimensionsLevel" = "#selected_grid_dimensions_level",
3149
+ "AvailableGridDimensionsLevel" = "#available_grid_dimensions_level",
3150
+ "RealmsGridDimensionsLevel" = "#realms_grid_dimensions_level",
3151
+ "UnownedGridDimensionsLevel" = "#unowned_grid_dimensions_level",
3152
+ "UnownedVisibleLevel" = "#unowned_visible_level",
3153
+ "PlatformLockedLevel" = "#platform_locked_level",
3154
+ "TotalSizeBindingLevel" = "#total_size_binding_level",
3155
+ "InvalidPackItemsLevel" = "#invalid_pack_items_level",
3156
+ "InvalidGridDimensionsLevel" = "#invalid_grid_dimensions_level",
3157
+ "SuggestedOffersCollectionLevel" = "#suggested_offers_collection_level",
3158
+ "SuggestedOffersLoadingLevel" = "#suggested_offers_loading_level",
3159
+ "SuggestedOffersTitleLevel" = "#suggested_offers_title_level",
3160
+ "NoAvailablePacksVisibilityLevel" = "#no_available_packs_visibility_level",
3161
+ "NoRealmsPacksVisibilityLevel" = "#no_realms_packs_visibility_level",
3162
+ "NoUnownedPacksVisibilityLevel" = "#no_unowned_packs_visibility_level",
3163
+ "SuggestedContentVisibleLevel" = "#suggested_content_visible_level",
3164
+ "CyclingIconPathAddon" = "#cycling_icon_path_addon",
3165
+ "CyclingIconZipAddon" = "#cycling_icon_zip_addon",
3166
+ "CyclingIconFileSystemAddon" = "#cycling_icon_file_system_addon",
3167
+ "SelectedPackItemsAddon" = "#selected_pack_items_addon",
3168
+ "AvailablePackItemsAddon" = "#available_pack_items_addon",
3169
+ "RealmsPackItemsAddon" = "#realms_pack_items_addon",
3170
+ "UnownedPackItemsAddon" = "#unowned_pack_items_addon",
3171
+ "SelectedGridDimensionsAddon" = "#selected_grid_dimensions_addon",
3172
+ "AvailableGridDimensionsAddon" = "#available_grid_dimensions_addon",
3173
+ "RealmsGridDimensionsAddon" = "#realms_grid_dimensions_addon",
3174
+ "UnownedGridDimensionsAddon" = "#unowned_grid_dimensions_addon",
3175
+ "UnownedVisibleAddon" = "#unowned_visible_addon",
3176
+ "DefaultItemTextureAddon" = "#default_item_texture_addon",
3177
+ "DefaultItemFileSystemAddon" = "#default_item_file_system_addon",
3178
+ "DefaultItemZipAddon" = "#default_item_zip_addon",
3179
+ "PlatformLockedAddon" = "#platform_locked_addon",
3180
+ "TotalSizeBindingAddon" = "#total_size_binding_addon",
3181
+ "InvalidPackItemsAddon" = "#invalid_pack_items_addon",
3182
+ "InvalidGridDimensionsAddon" = "#invalid_grid_dimensions_addon",
3183
+ "SuggestedOffersCollectionAddon" = "#suggested_offers_collection_addon",
3184
+ "SuggestedOffersLoadingAddon" = "#suggested_offers_loading_addon",
3185
+ "SuggestedOffersTitleAddon" = "#suggested_offers_title_addon",
3186
+ "NoAvailablePacksVisibilityAddon" = "#no_available_packs_visibility_addon",
3187
+ "NoRealmsPacksVisibilityAddon" = "#no_realms_packs_visibility_addon",
3188
+ "NoUnownedPacksVisibilityAddon" = "#no_unowned_packs_visibility_addon",
3189
+ "SuggestedContentVisibleAddon" = "#suggested_content_visible_addon",
3190
+ "WorldGameModeRadioSurvival" = "#world_game_mode_radio_survival",
3191
+ "WorldGameModeRadioCreative" = "#world_game_mode_radio_creative",
3192
+ "WorldGameModeRadioAdventure" = "#world_game_mode_radio_adventure",
3193
+ "WorldGameModeRadioSpectator" = "#world_game_mode_radio_spectator",
3194
+ "WorldGameModeRadioHardcore" = "#world_game_mode_radio_hardcore",
3195
+ "XblBroadcastInviteOnly" = "#xbl_broadcast_invite_only",
3196
+ "XblBroadcastFriendsOnly" = "#xbl_broadcast_friends_only",
3197
+ "XblBroadcastFriendsOfFriends" = "#xbl_broadcast_friends_of_friends",
3198
+ "PlatformBroadcastInviteOnly" = "#platform_broadcast_invite_only",
3199
+ "PlatformToggleVisibleInviteOnly" = "#platform_toggle_visible_invite_only",
3200
+ "PlatformBroadcastFriendsOnly" = "#platform_broadcast_friends_only",
3201
+ "PlatformBroadcastFriendsOfFriends" = "#platform_broadcast_friends_of_friends",
3202
+ "PlatformToggleVisibleFriendsOfFriends" = "#platform_toggle_visible_friends_of_friends",
3203
+ "PlayerGameModeRadioDefault" = "#player_game_mode_radio_default",
3204
+ "PlayerGameModeRadioSurvival" = "#player_game_mode_radio_survival",
3205
+ "PlayerGameModeRadioCreative" = "#player_game_mode_radio_creative",
3206
+ "PlayerGameModeRadioAdventure" = "#player_game_mode_radio_adventure",
3207
+ "PlayerGameModeRadioSpectator" = "#player_game_mode_radio_spectator",
3208
+ "PlayerGameModeRadioHardcore" = "#player_game_mode_radio_hardcore",
3209
+ "WorldTypeRadioFlat" = "#world_type_radio_flat",
3210
+ "WorldTypeRadioInfinite" = "#world_type_radio_infinite",
3211
+ "WorldTypeRadioLargeBiomees" = "#world_type_radio_large_biomees",
3212
+ "WorldTypeRadioAmplified" = "#world_type_radio_amplified",
3213
+ "WorldTypeRadioOld" = "#world_type_radio_old",
3214
+ "WorldDifficultyRadioPeaceful" = "#world_difficulty_radio_peaceful",
3215
+ "WorldDifficultyRadioEasy" = "#world_difficulty_radio_easy",
3216
+ "WorldDifficultyRadioNormal" = "#world_difficulty_radio_normal",
3217
+ "WorldDifficultyRadioHard" = "#world_difficulty_radio_hard",
3218
+ "MultiplayerGame" = "#multiplayer_game",
3219
+ "MultiplayerGameEnabled" = "#multiplayer_game_enabled",
3220
+ "PlatformBroadcastDropdownToggleLabel" = "#platform_broadcast_dropdown_toggle_label",
3221
+ "PlatformBroadcastDropdownEnabled" = "#platform_broadcast_dropdown_enabled",
3222
+ "PlatformSettingsDropdownVisible" = "#platform_settings_dropdown_visible",
3223
+ "XblBroadcastDropdownToggleLabel" = "#xbl_broadcast_dropdown_toggle_label",
3224
+ "XblShowBroadcastDropdown" = "#xbl_show_broadcast_dropdown",
3225
+ "CanBeXblEnabled" = "#can_be_xbl_enabled",
3226
+ "ServerVisible" = "#server_visible",
3227
+ "ServerVisibilityEnabled" = "#server_visibility_enabled",
3228
+ "CanBeServerVisible" = "#can_be_server_visible",
3229
+ "CanBeServerEnabled" = "#can_be_server_enabled",
3230
+ "GeneralMultiplayerWarningText" = "#general_multiplayer_warning_text",
3231
+ "GeneralMultiplayerWarningLabelVisible" = "#general_multiplayer_warning_label_visible",
3232
+ "PlatformMultiplayerWarningText" = "#platform_multiplayer_warning_text",
3233
+ "PlatformMultiplayerWarningLabelVisible" = "#platform_multiplayer_warning_label_visible",
3234
+ "XblMultiplayerWarningText" = "#xbl_multiplayer_warning_text",
3235
+ "XblMultiplayerWarningLabelVisible" = "#xbl_multiplayer_warning_label_visible",
3236
+ "ExperimentalToggleValue" = "#experimental_toggle_value",
3237
+ "ExperimentalToggleEnabled" = "#experimental_toggle_enabled",
3238
+ "ShowExperimentalToggle" = "#show_experimental_toggle",
3239
+ "ExperimentalToggleText" = "#experimental_toggle_text",
3240
+ "CloudFileName" = "#cloud_file_name",
3241
+ "CloudFileNameEnabled" = "#cloud_file_name_enabled",
3242
+ "CloudFileLastChanged" = "#cloud_file_last_changed",
3243
+ "CloudFileLastChangedEnabled" = "#cloud_file_last_changed_enabled",
3244
+ "EduCloudUpload" = "#edu_cloud_upload",
3245
+ "EduCloudUploadEnabled" = "#edu_cloud_upload_enabled",
3246
+ "FlatNether" = "#flat_nether",
3247
+ "FlatNetherEnabled" = "#flat_nether_enabled",
3248
+ "GameVersionOverrideToggle" = "#game_version_override_toggle",
3249
+ "GameVersionOverrideToggleEnabled" = "#game_version_override_toggle_enabled",
3250
+ "GameVersionOverride" = "#game_version_override",
3251
+ "GameVersionOverrideEnabled" = "#game_version_override_enabled",
3252
+ "DebugSpawnDimensionDropdownToggleLabel" = "#debug_spawn_dimension_dropdown_toggle_label",
3253
+ "DebugSpawnDimensionDropdownEnabled" = "#debug_spawn_dimension_dropdown_enabled",
3254
+ "DebugSpawnBiomeDropdownToggleLabel" = "#debug_spawn_biome_dropdown_toggle_label",
3255
+ "DebugSpawnBiomeDropdownEnabled" = "#debug_spawn_biome_dropdown_enabled",
3256
+ "DebugBiomeOverrideDropdownToggleLabel" = "#debug_biome_override_dropdown_toggle_label",
3257
+ "DebugBiomeOverrideDropdownDropdownEnabled" = "#debug_biome_override_dropdown_dropdown_enabled",
3258
+ "BaseGameVersionDebugText" = "#base_game_version_debug_text",
3259
+ "DebugSpawnInOverworld" = "#debug_spawn_in_overworld",
3260
+ "DebugSpawnInNether" = "#debug_spawn_in_nether",
3261
+ "DebugSpawnInRandomBiome" = "#debug_spawn_in_random_biome",
3262
+ "DebugSpawnInBasaltDeltas" = "#debug_spawn_in_basalt_deltas",
3263
+ "DebugSpawnInSoulsandValley" = "#debug_spawn_in_soulsand_valley",
3264
+ "DebugSpawnInCrimsonForest" = "#debug_spawn_in_crimson_forest",
3265
+ "DebugSpawnInWarpedForest" = "#debug_spawn_in_warped_forest",
3266
+ "DebugSpawnInHell" = "#debug_spawn_in_hell",
3267
+ "DebugSpawnInDesert" = "#debug_spawn_in_desert",
3268
+ "DebugSpawnInExtremeHills" = "#debug_spawn_in_extreme_hills",
3269
+ "DebugSpawnInForest" = "#debug_spawn_in_forest",
3270
+ "DebugSpawnInTaiga" = "#debug_spawn_in_taiga",
3271
+ "DebugSpawnInSwampland" = "#debug_spawn_in_swampland",
3272
+ "DebugSpawnInRiver" = "#debug_spawn_in_river",
3273
+ "DebugSpawnInFrozenRiver" = "#debug_spawn_in_frozen_river",
3274
+ "DebugSpawnInIcePlains" = "#debug_spawn_in_ice_plains",
3275
+ "DebugSpawnInIceMountains" = "#debug_spawn_in_ice_mountains",
3276
+ "DebugSpawnInMushroomIsland" = "#debug_spawn_in_mushroom_island",
3277
+ "DebugSpawnInMushroomIslandShore" = "#debug_spawn_in_mushroom_island_shore",
3278
+ "DebugSpawnInBeach" = "#debug_spawn_in_beach",
3279
+ "DebugSpawnInDesertHills" = "#debug_spawn_in_desert_hills",
3280
+ "DebugSpawnInForestHills" = "#debug_spawn_in_forest_hills",
3281
+ "DebugSpawnInTaigaHills" = "#debug_spawn_in_taiga_hills",
3282
+ "DebugSpawnInExtremeHillsEdge" = "#debug_spawn_in_extreme_hills_edge",
3283
+ "DebugSpawnInJungle" = "#debug_spawn_in_jungle",
3284
+ "DebugSpawnInJungleHills" = "#debug_spawn_in_jungle_hills",
3285
+ "DebugSpawnInJungleEdge" = "#debug_spawn_in_jungle_edge",
3286
+ "DebugSpawnInStoneBeach" = "#debug_spawn_in_stone_beach",
3287
+ "DebugSpawnInColdBeach" = "#debug_spawn_in_cold_beach",
3288
+ "DebugSpawnInBirchForest" = "#debug_spawn_in_birch_forest",
3289
+ "DebugSpawnInBirchForestHills" = "#debug_spawn_in_birch_forest_hills",
3290
+ "DebugSpawnInRoofedForest" = "#debug_spawn_in_roofed_forest",
3291
+ "DebugSpawnInColdTaiga" = "#debug_spawn_in_cold_taiga",
3292
+ "DebugSpawnInColdTaigaHills" = "#debug_spawn_in_cold_taiga_hills",
3293
+ "DebugSpawnInMegaTaiga" = "#debug_spawn_in_mega_taiga",
3294
+ "DebugSpawnInMegaTaigaHills" = "#debug_spawn_in_mega_taiga_hills",
3295
+ "DebugSpawnInExtremeHillsPlusTrees" = "#debug_spawn_in_extreme_hills_plus_trees",
3296
+ "DebugSpawnInSavanna" = "#debug_spawn_in_savanna",
3297
+ "DebugSpawnInSavannaPlateau" = "#debug_spawn_in_savanna_plateau",
3298
+ "DebugSpawnInMesa" = "#debug_spawn_in_mesa",
3299
+ "DebugSpawnInMesaPlateauStone" = "#debug_spawn_in_mesa_plateau_stone",
3300
+ "DebugSpawnInMesaPlateau" = "#debug_spawn_in_mesa_plateau",
3301
+ "DebugSpawnInOcean" = "#debug_spawn_in_ocean",
3302
+ "DebugSpawnInDeepOcean" = "#debug_spawn_in_deep_ocean",
3303
+ "DebugSpawnInWarmOcean" = "#debug_spawn_in_warm_ocean",
3304
+ "DebugSpawnInDeepWarmOcean" = "#debug_spawn_in_deep_warm_ocean",
3305
+ "DebugSpawnInLukewarmOcean" = "#debug_spawn_in_lukewarm_ocean",
3306
+ "DebugSpawnInDeepLukewarmOcean" = "#debug_spawn_in_deep_lukewarm_ocean",
3307
+ "DebugSpawnInColdOcean" = "#debug_spawn_in_cold_ocean",
3308
+ "DebugSpawnInDeepColdOcean" = "#debug_spawn_in_deep_cold_ocean",
3309
+ "DebugSpawnInFrozenOcean" = "#debug_spawn_in_frozen_ocean",
3310
+ "DebugSpawnInDeepFrozenOcean" = "#debug_spawn_in_deep_frozen_ocean",
3311
+ "DebugSpawnInBambooJungle" = "#debug_spawn_in_bamboo_jungle",
3312
+ "DebugSpawnInBambooJungleHills" = "#debug_spawn_in_bamboo_jungle_hills",
3313
+ "DebugSpawnInSunflowerPlains" = "#debug_spawn_in_sunflower_plains",
3314
+ "DebugSpawnInSwamplandMutated" = "#debug_spawn_in_swampland_mutated",
3315
+ "DebugSpawnInIcePlainsSpikes" = "#debug_spawn_in_ice_plains_spikes",
3316
+ "DebugSpawnInColdTaigaMutated" = "#debug_spawn_in_cold_taiga_mutated",
3317
+ "DebugSpawnInSavannaMutated" = "#debug_spawn_in_savanna_mutated",
3318
+ "DebugSpawnInSavannaPlateauMutated" = "#debug_spawn_in_savanna_plateau_mutated",
3319
+ "DebugSpawnInRoofedForestMutated" = "#debug_spawn_in_roofed_forest_mutated",
3320
+ "DebugSpawnInDesertMutated" = "#debug_spawn_in_desert_mutated",
3321
+ "DebugSpawnInFlowerForest" = "#debug_spawn_in_flower_forest",
3322
+ "DebugSpawnInTaigaMutated" = "#debug_spawn_in_taiga_mutated",
3323
+ "DebugSpawnInJungleMutated" = "#debug_spawn_in_jungle_mutated",
3324
+ "DebugSpawnInJungleEdgeMutated" = "#debug_spawn_in_jungle_edge_mutated",
3325
+ "DebugSpawnInMesaBryce" = "#debug_spawn_in_mesa_bryce",
3326
+ "DebugSpawnInMesaPlateauStoneMutated" = "#debug_spawn_in_mesa_plateau_stone_mutated",
3327
+ "DebugSpawnInMesaPlateauMutated" = "#debug_spawn_in_mesa_plateau_mutated",
3328
+ "DebugSpawnInBirchForestMutated" = "#debug_spawn_in_birch_forest_mutated",
3329
+ "DebugSpawnInBirchForestHillsMutated" = "#debug_spawn_in_birch_forest_hills_mutated",
3330
+ "DebugSpawnInRedwoodTaigaMutated" = "#debug_spawn_in_redwood_taiga_mutated",
3331
+ "DebugSpawnInExtremeHillsMutated" = "#debug_spawn_in_extreme_hills_mutated",
3332
+ "DebugSpawnInExtremeHillsPlusTreesMutated" = "#debug_spawn_in_extreme_hills_plus_trees_mutated",
3333
+ "DebugSpawnInRedwoodTaigaHillsMutated" = "#debug_spawn_in_redwood_taiga_hills_mutated",
3334
+ "DebugSpawnInPlains" = "#debug_spawn_in_plains",
3335
+ "DebugBiomeOverrideRandomBiome" = "#debug_biome_override_random_biome",
3336
+ "DebugBiomeOverrideBasaltDeltas" = "#debug_biome_override_basalt_deltas",
3337
+ "DebugBiomeOverrideSoulsandValley" = "#debug_biome_override_soulsand_valley",
3338
+ "DebugBiomeOverrideCrimsonForest" = "#debug_biome_override_crimson_forest",
3339
+ "DebugBiomeOverrideWarpedForest" = "#debug_biome_override_warped_forest",
3340
+ "DebugBiomeOverrideHell" = "#debug_biome_override_hell",
3341
+ "DebugBiomeOverrideDesert" = "#debug_biome_override_desert",
3342
+ "DebugBiomeOverrideExtremeHills" = "#debug_biome_override_extreme_hills",
3343
+ "DebugBiomeOverrideForest" = "#debug_biome_override_forest",
3344
+ "DebugBiomeOverrideTaiga" = "#debug_biome_override_taiga",
3345
+ "DebugBiomeOverrideSwampland" = "#debug_biome_override_swampland",
3346
+ "DebugBiomeOverrideRiver" = "#debug_biome_override_river",
3347
+ "DebugBiomeOverrideFrozenRiver" = "#debug_biome_override_frozen_river",
3348
+ "DebugBiomeOverrideIcePlains" = "#debug_biome_override_ice_plains",
3349
+ "DebugBiomeOverrideIceMountains" = "#debug_biome_override_ice_mountains",
3350
+ "DebugBiomeOverrideMushroomIsland" = "#debug_biome_override_mushroom_island",
3351
+ "DebugBiomeOverrideMushroomIslandShore" = "#debug_biome_override_mushroom_island_shore",
3352
+ "DebugBiomeOverrideBeach" = "#debug_biome_override_beach",
3353
+ "DebugBiomeOverrideDesertHills" = "#debug_biome_override_desert_hills",
3354
+ "DebugBiomeOverrideForestHills" = "#debug_biome_override_forest_hills",
3355
+ "DebugBiomeOverrideTaigaHills" = "#debug_biome_override_taiga_hills",
3356
+ "DebugBiomeOverrideExtremeHillsEdge" = "#debug_biome_override_extreme_hills_edge",
3357
+ "DebugBiomeOverrideJungle" = "#debug_biome_override_jungle",
3358
+ "DebugBiomeOverrideJungleHills" = "#debug_biome_override_jungle_hills",
3359
+ "DebugBiomeOverrideJungleEdge" = "#debug_biome_override_jungle_edge",
3360
+ "DebugBiomeOverrideStoneBeach" = "#debug_biome_override_stone_beach",
3361
+ "DebugBiomeOverrideColdBeach" = "#debug_biome_override_cold_beach",
3362
+ "DebugBiomeOverrideBirchForest" = "#debug_biome_override_birch_forest",
3363
+ "DebugBiomeOverrideBirchForestHills" = "#debug_biome_override_birch_forest_hills",
3364
+ "DebugBiomeOverrideRoofedForest" = "#debug_biome_override_roofed_forest",
3365
+ "DebugBiomeOverrideColdTaiga" = "#debug_biome_override_cold_taiga",
3366
+ "DebugBiomeOverrideColdTaigaHills" = "#debug_biome_override_cold_taiga_hills",
3367
+ "DebugBiomeOverrideMegaTaiga" = "#debug_biome_override_mega_taiga",
3368
+ "DebugBiomeOverrideMegaTaigaHills" = "#debug_biome_override_mega_taiga_hills",
3369
+ "DebugBiomeOverrideExtremeHillsPlusTrees" = "#debug_biome_override_extreme_hills_plus_trees",
3370
+ "DebugBiomeOverrideSavanna" = "#debug_biome_override_savanna",
3371
+ "DebugBiomeOverrideSavannaPlateau" = "#debug_biome_override_savanna_plateau",
3372
+ "DebugBiomeOverrideMesa" = "#debug_biome_override_mesa",
3373
+ "DebugBiomeOverrideMesaPlateauStone" = "#debug_biome_override_mesa_plateau_stone",
3374
+ "DebugBiomeOverrideMesaPlateau" = "#debug_biome_override_mesa_plateau",
3375
+ "DebugBiomeOverrideOcean" = "#debug_biome_override_ocean",
3376
+ "DebugBiomeOverrideDeepOcean" = "#debug_biome_override_deep_ocean",
3377
+ "DebugBiomeOverrideWarmOcean" = "#debug_biome_override_warm_ocean",
3378
+ "DebugBiomeOverrideDeepWarmOcean" = "#debug_biome_override_deep_warm_ocean",
3379
+ "DebugBiomeOverrideLukewarmOcean" = "#debug_biome_override_lukewarm_ocean",
3380
+ "DebugBiomeOverrideDeepLukewarmOcean" = "#debug_biome_override_deep_lukewarm_ocean",
3381
+ "DebugBiomeOverrideColdOcean" = "#debug_biome_override_cold_ocean",
3382
+ "DebugBiomeOverrideDeepColdOcean" = "#debug_biome_override_deep_cold_ocean",
3383
+ "DebugBiomeOverrideFrozenOcean" = "#debug_biome_override_frozen_ocean",
3384
+ "DebugBiomeOverrideDeepFrozenOcean" = "#debug_biome_override_deep_frozen_ocean",
3385
+ "DebugBiomeOverrideBambooJungle" = "#debug_biome_override_bamboo_jungle",
3386
+ "DebugBiomeOverrideBambooJungleHills" = "#debug_biome_override_bamboo_jungle_hills",
3387
+ "DebugBiomeOverrideSunflowerPlains" = "#debug_biome_override_sunflower_plains",
3388
+ "DebugBiomeOverrideSwamplandMutated" = "#debug_biome_override_swampland_mutated",
3389
+ "DebugBiomeOverrideIcePlainsSpikes" = "#debug_biome_override_ice_plains_spikes",
3390
+ "DebugBiomeOverrideColdTaigaMutated" = "#debug_biome_override_cold_taiga_mutated",
3391
+ "DebugBiomeOverrideSavannaMutated" = "#debug_biome_override_savanna_mutated",
3392
+ "DebugBiomeOverrideSavannaPlateauMutated" = "#debug_biome_override_savanna_plateau_mutated",
3393
+ "DebugBiomeOverrideRoofedForestMutated" = "#debug_biome_override_roofed_forest_mutated",
3394
+ "DebugBiomeOverrideDesertMutated" = "#debug_biome_override_desert_mutated",
3395
+ "DebugBiomeOverrideFlowerForest" = "#debug_biome_override_flower_forest",
3396
+ "DebugBiomeOverrideTaigaMutated" = "#debug_biome_override_taiga_mutated",
3397
+ "DebugBiomeOverrideJungleMutated" = "#debug_biome_override_jungle_mutated",
3398
+ "DebugBiomeOverrideJungleEdgeMutated" = "#debug_biome_override_jungle_edge_mutated",
3399
+ "DebugBiomeOverrideMesaBryce" = "#debug_biome_override_mesa_bryce",
3400
+ "DebugBiomeOverrideMesaPlateauStoneMutated" = "#debug_biome_override_mesa_plateau_stone_mutated",
3401
+ "DebugBiomeOverrideMesaPlateauMutated" = "#debug_biome_override_mesa_plateau_mutated",
3402
+ "DebugBiomeOverrideBirchForestMutated" = "#debug_biome_override_birch_forest_mutated",
3403
+ "DebugBiomeOverrideBirchForestHillsMutated" = "#debug_biome_override_birch_forest_hills_mutated",
3404
+ "DebugBiomeOverrideRedwoodTaigaMutated" = "#debug_biome_override_redwood_taiga_mutated",
3405
+ "DebugBiomeOverrideExtremeHillsMutated" = "#debug_biome_override_extreme_hills_mutated",
3406
+ "DebugBiomeOverrideExtremeHillsPlusTreesMutated" = "#debug_biome_override_extreme_hills_plus_trees_mutated",
3407
+ "DebugBiomeOverrideRedwoodTaigaHillsMutated" = "#debug_biome_override_redwood_taiga_hills_mutated",
3408
+ "DebugBiomeOverridePlains" = "#debug_biome_override_plains",
3409
+ "SidebarNavImage" = "#sidebar_nav_image",
3410
+ "SidebarNavImageFileSystem" = "#sidebar_nav_image_file_system",
3411
+ "SidebarNavImageBilinearEnabled" = "#sidebar_nav_image_bilinear_enabled",
3412
+ "Bilinear" = "#bilinear",
3413
+ "DropdownCheckedColor" = "#dropdown_checked_color",
3414
+ "ExpandedColor" = "#expanded_color",
3415
+ "SelectedColor" = "#selected_color",
3416
+ "SidebarToggleTts" = "#sidebar_toggle_tts",
3417
+ "SimpleSidebarOptionToggleCheck" = "#simple_sidebar_option_toggle_check",
3418
+ "SidebarOptionLabel" = "#sidebar_option_label",
3419
+ "VerboseSidebarOptionToggleCheck" = "#verbose_sidebar_option_toggle_check",
3420
+ "VerboseOptionFocusId" = "#verbose_option_focus_id",
3421
+ "DropdownToggleIcon" = "#dropdown_toggle_icon",
3422
+ "DropdownToggleTexture" = "#dropdown_toggle_texture",
3423
+ "ExpandOptionFocusId" = "#expand_option_focus_id",
3424
+ "SidebarVerboseToggleCheck" = "#sidebar_verbose_toggle_check",
3425
+ "VerboseToggleTts" = "#verbose_toggle_tts",
3426
+ "SidebarOptionToggleCheck" = "#sidebar_option_toggle_check",
3427
+ "IsSimpleSidebarStateActive" = "#is_simple_sidebar_state_active",
3428
+ "SidebarScreenNavScreenButtonLabel" = "#sidebar_screen_nav_screen_button_label",
3429
+ "IsScreenNavButtonVisible" = "#is_screen_nav_button_visible",
3430
+ "IsVerboseSidebarNavButtonVisible" = "#is_verbose_sidebar_nav_button_visible",
3431
+ "IsSidebarNavReady" = "#is_sidebar_nav_ready",
3432
+ "SidebarSections" = "#sidebar_sections",
3433
+ "IsControllerCloseHoverVisible" = "#is_controller_close_hover_visible",
3434
+ "IsSidebarNavVisible" = "#is_sidebar_nav_visible",
3435
+ "SimpleSidebarFactoryCollection" = "#simple_sidebar_factory_collection",
3436
+ "VerboseSidebarFactoryCollection" = "#verbose_sidebar_factory_collection",
3437
+ "IsControllerHoverVisible" = "#is_controller_hover_visible",
3438
+ "PageLoadingFinished" = "#page_loading_finished",
3439
+ "ShowingPlatformStoreIcon" = "#showing_platform_store_icon",
3440
+ "SignTextMulti" = "#sign_text_multi",
3441
+ "SignText" = "#sign_text",
3442
+ "InProgressTitle" = "#in_progress_title",
3443
+ "InProgressTextBinding" = "#in_progress_text_binding",
3444
+ "SkinCyclePackLeftButtonEnabled" = "#skin_cycle_pack_left_button_enabled",
3445
+ "SkinCyclePackRightButtonEnabled" = "#skin_cycle_pack_right_button_enabled",
3446
+ "SkinAnimations" = "#skin_animations",
3447
+ "SkinLockVisible" = "#skin_lock_visible",
3448
+ "GridButtonFocusId" = "#grid_button_focus_id",
3449
+ "SkinButtonGamePadVisible" = "#skin_button_game_pad_visible",
3450
+ "SkinButtonVisible" = "#skin_button_visible",
3451
+ "ValidSkinOfferIndex" = "#valid_skin_offer_index",
3452
+ "IsLoadingOutlineVisible" = "#is_loading_outline_visible",
3453
+ "SkinPackLoadingProgressVisible" = "#skin_pack_loading_progress_visible",
3454
+ "IsUsingGamepadIcon" = "#is_using_gamepad_icon",
3455
+ "LeftBumper" = "#left_bumper",
3456
+ "RightBumper" = "#right_bumper",
3457
+ "ShowReloadCustomSkinButton" = "#show_reload_custom_skin_button",
3458
+ "AcceptSkinButtonText" = "#accept_skin_button_text",
3459
+ "AcceptSkinButtonEnabled" = "#accept_skin_button_enabled",
3460
+ "LimitedStatusVisible" = "#limited_status_visible",
3461
+ "AppearanceStatusBriefLabel" = "#appearance_status_brief_label",
3462
+ "IsAppearanceStatusVisible" = "#is_appearance_status_visible",
3463
+ "AppearanceStatusHoverLabel" = "#appearance_status_hover_label",
3464
+ "FocusOverrideRight" = "#focus_override_right",
3465
+ "ShowPackLocked" = "#show_pack_locked",
3466
+ "ShowPackUnlocked" = "#show_pack_unlocked",
3467
+ "PremiumSkinsGridDimensions" = "#premium_skins_grid_dimensions",
3468
+ "ShowNewPackIcon" = "#show_new_pack_icon",
3469
+ "PackLoadingNoConnectionVisible" = "#pack_loading_no_connection_visible",
3470
+ "PackLoadingProgressVisible" = "#pack_loading_progress_visible",
3471
+ "PremiumPacksGridDimensions" = "#premium_packs_grid_dimensions",
3472
+ "DefaultSkinsGridDimensions" = "#default_skins_grid_dimensions",
3473
+ "RecentSkinsGridDimensions" = "#recent_skins_grid_dimensions",
3474
+ "IsRecentGridReady" = "#is_recent_grid_ready",
3475
+ "SkinContentVisible" = "#skin_content_visible",
3476
+ "SkinSearchProgressVisible" = "#skin_search_progress_visible",
3477
+ "NoResultArrowTooltip" = "#no_result_arrow_tooltip",
3478
+ "ShowInputOverlayTemplates" = "#show_input_overlay_templates",
3479
+ "ShowInputOverlayArmorsAndTools" = "#show_input_overlay_armors_and_tools",
3480
+ "ShowInputOverlayArmors" = "#show_input_overlay_armors",
3481
+ "ShowMaterialOverlayAll" = "#show_material_overlay_all",
3482
+ "ShowMaterialOverlayIngot" = "#show_material_overlay_ingot",
3483
+ "ArmorTrimPattern" = "#armor_trim_pattern",
3484
+ "ArmorTrimMaterial" = "#armor_trim_material",
3485
+ "IsRightTabSmithingTable" = "#is_right_tab_smithing_table",
3486
+ "UnreadNotificationIcon" = "#unread_notification_icon",
3487
+ "UnreadNotificationIconVisibility" = "#unread_notification_icon_visibility",
3488
+ "EduAiLessonCrafterOn" = "#edu_ai_lesson_crafter_on",
3489
+ "EduSignedInOnlyUiVisible" = "#edu_signed_in_only_ui_visible",
3490
+ "EduDemoOnlyUiVisible" = "#edu_demo_only_ui_visible",
3491
+ "PersonaAndSkinsEnabled" = "#persona_and_skins_enabled",
3492
+ "ShowGamerpic" = "#show_gamerpic",
3493
+ "IsAppearanceVisible" = "#is_appearance_visible",
3494
+ "GatheringButtonText" = "#gathering_button_text",
3495
+ "GatheringButtonEnabled" = "#gathering_button_enabled",
3496
+ "GatheringBadge" = "#gathering_badge",
3497
+ "GatheringBadgeVisible" = "#gathering_badge_visible",
3498
+ "GatheringCountdownText" = "#gathering_countdown_text",
3499
+ "GatheringCaptionForegroundColor" = "#gathering_caption_foreground_color",
3500
+ "GatheringCaptionBackgroundColor" = "#gathering_caption_background_color",
3501
+ "UpperOnlineButtonsVisible" = "#upper_online_buttons_visible",
3502
+ "GatheringEnabled" = "#gathering_enabled",
3503
+ "PlatformSigninText" = "#platform_signin_text",
3504
+ "GamertagPicAndLabelVisible" = "#gamertag_pic_and_label_visible",
3505
+ "FeedbackVisible" = "#feedback_visible",
3506
+ "SigninginText" = "#signingin_text",
3507
+ "SigninginVisible" = "#signingin_visible",
3508
+ "AchievementsIconVisible" = "#achievements_icon_visible",
3509
+ "GetStartedButtonText" = "#get_started_button_text",
3510
+ "UnlockFullGameButtonText" = "#unlock_full_game_button_text",
3511
+ "UpdateIconVisible" = "#update_icon_visible",
3512
+ "NewOffers" = "#new_offers",
3513
+ "ShowingNewPlayerFlowButtons" = "#showing_new_player_flow_buttons",
3514
+ "RealmsPromoVisible" = "#realms_promo_visible",
3515
+ "EditionsVisible" = "#editions_visible",
3516
+ "NotRealmsPromoVisibleAndSupportsLaunchingLegacyVersion" = "#not_realms_promo_visible_and_supports_launching_legacy_version",
3517
+ "EditionsVisibleAndNotRealmsPromoVisible" = "#editions_visible_and_not_realms_promo_visible",
3518
+ "YHelperVisible" = "#y_helper_visible",
3519
+ "XHelperVisible" = "#x_helper_visible",
3520
+ "ButtonKeyboardDescription" = "#button_keyboard_description",
3521
+ "SwapVrKeyboardHelperVisible" = "#swap_vr_keyboard_helper_visible",
3522
+ "RealmsNotificationCount" = "#realms_notification_count",
3523
+ "CloudUploadDoNotShowAgain" = "#cloud_upload_do_not_show_again",
3524
+ "ScreenNeedsRebuild" = "#screen_needs_rebuild",
3525
+ "StoneCellBackgroundTexture" = "#stone_cell_background_texture",
3526
+ "ItemStackCount" = "#item_stack_count",
3527
+ "StoneSelectorTotalItems" = "#stone_selector_total_items",
3528
+ "IsRightTabStonecutter" = "#is_right_tab_stonecutter",
3529
+ "IsLeftTabStones" = "#is_left_tab_stones",
3530
+ "FileStorageLocationEnabled" = "#file_storage_location_enabled",
3531
+ "FileStorageLocationToggleLabel" = "#file_storage_location_toggle_label",
3532
+ "ScreenshotsShowcaseEnabled" = "#screenshots_showcase_enabled",
3533
+ "ScreenshotsGalleryEnabled" = "#screenshots_gallery_enabled",
3534
+ "GroupDropdown" = "#group_dropdown",
3535
+ "TextEditSelected" = "#text_edit_selected",
3536
+ "SortDropdown" = "#sort_dropdown",
3537
+ "MultiselectEnabled" = "#multiselectEnabled",
3538
+ "Sub_" = "#sub_",
3539
+ "StorageDropdown" = "#storage_dropdown",
3540
+ "CategoryPanelVisible" = "#category_panel_visible",
3541
+ "StoragePanelLength" = "#storage_panel_length",
3542
+ "LegacyWorldVisible" = "#legacy_world_visible",
3543
+ "RetailtopreviewWorldVisible" = "#retailtopreview_world_visible",
3544
+ "PackInfoTexture" = "#pack_info_texture",
3545
+ "LegacyWorldStorageDropdown" = "#legacy_world_storage_dropdown",
3546
+ "SyncLegacyWorldButtonVisible" = "#sync_legacy_world_button_visible",
3547
+ "LegacyWorldLength" = "#legacy_world_length",
3548
+ "IsLoadingLegacyWorld" = "#is_loading_legacy_world",
3549
+ "RetailtopreviewWorldStorageDropdown" = "#retailtopreview_world_storage_dropdown",
3550
+ "SyncRetailtopreviewWorldButtonVisible" = "#sync_retailtopreview_world_button_visible",
3551
+ "RetailtopreviewWorldLength" = "#retailtopreview_world_length",
3552
+ "IsLoadingRetailtopreviewWorld" = "#is_loading_retailtopreview_world",
3553
+ "ScrollbarHitBottom" = "#scrollbar_hit_bottom",
3554
+ "DependencyLabelText" = "#dependency_label_text",
3555
+ "DependentPacksLength" = "#dependent_packs_length",
3556
+ "SdlTextureComponentImagePath" = "#sdl_texture_component_image_path",
3557
+ "SdlTextureComponentImageSystem" = "#sdl_texture_component_image_system",
3558
+ "SdlTextureComponentImageVisible" = "#sdl_texture_component_image_visible",
3559
+ "SdlTextureColor" = "#sdl_texture_color",
3560
+ "SdlTextureAlpha" = "#sdl_texture_alpha",
3561
+ "TopRowFocusOverrideUp" = "#top_row_focus_override_up",
3562
+ "OfferGridItemButtonFocusId" = "#offer_grid_item_button_focus_id",
3563
+ "LastItemFocusOverrideRight" = "#last_item_focus_override_right",
3564
+ "IconOverlayPositionCollection" = "#icon_overlay_position_collection",
3565
+ "NewOfferIconVisible" = "#new_offer_icon_visible",
3566
+ "IconOverlayTextureName" = "#icon_overlay_texture_name",
3567
+ "IconOverlayLeftPaddingVisible" = "#icon_overlay_left_padding_visible",
3568
+ "IconOverlayRightPaddingVisible" = "#icon_overlay_right_padding_visible",
3569
+ "IconOverlayImageText" = "#icon_overlay_image_text",
3570
+ "IconOverlayTextColor" = "#icon_overlay_text_color",
3571
+ "IconOverlayTextAlignment" = "#icon_overlay_text_alignment",
3572
+ "IconOverlayFontScaleFactor" = "#icon_overlay_font_scale_factor",
3573
+ "IconOverlayFontType" = "#icon_overlay_font_type",
3574
+ "IconOverlayTextureFilepath" = "#icon_overlay_texture_filepath",
3575
+ "IconOverlayHeight" = "#icon_overlay_height",
3576
+ "PromptIconVisible" = "#prompt_icon_visible",
3577
+ "PromptIconTexture" = "#prompt_icon_texture",
3578
+ "ButtonBackDescription" = "#button_back_description",
3579
+ "InventoryButtonVisible" = "#inventory_button_visible",
3580
+ "StoreFailureText" = "#store_failure_text",
3581
+ "StoreFailureImage" = "#store_failure_image",
3582
+ "StoreFailureCode" = "#store_failure_code",
3583
+ "IsOfferCollectionQuery" = "#is_offer_collection_query",
3584
+ "OfferTimerLabel" = "#offer_timer_label",
3585
+ "TimerFieldCountToShow" = "#timer_field_count_to_show",
3586
+ "CsbExpirationLabel" = "#csb_expiration_label",
3587
+ "PackIconSectionContent" = "#pack_icon_section_content",
3588
+ "PackIconSaleSectionVisible" = "#pack_icon_sale_section_visible",
3589
+ "CyclePackButton" = "#cycle_pack_button",
3590
+ "IsCycleButtonFocused" = "#is_cycle_button_focused",
3591
+ "CyclePackLeftButtonEnabled" = "#cycle_pack_left_button_enabled",
3592
+ "CycleLeftButtonAccessibilityText" = "#cycle_left_button_accessibility_text",
3593
+ "CycleRightButtonAccessibilityText" = "#cycle_right_button_accessibility_text",
3594
+ "CyclePackRightButtonEnabled" = "#cycle_pack_right_button_enabled",
3595
+ "SearchHeaderBoxTextContent" = "#search_header_box_text_content",
3596
+ "SearchHeaderClearVisible" = "#search_header_clear_visible",
3597
+ "SearchHeaderVisible" = "#search_header_visible",
3598
+ "CoinPurchaseInProgress" = "#coin_purchase_in_progress",
3599
+ "AccessibilityMinecoinsAmount" = "#accessibility_minecoins_amount",
3600
+ "CoinBalance" = "#coin_balance",
3601
+ "ShowXblProfileInfo" = "#show_xbl_profile_info",
3602
+ "PurchaseWithCurrencyDisclaimer" = "#purchase_with_currency_disclaimer",
3603
+ "ThisPageSelected" = "#this_page_selected",
3604
+ "TabNameText" = "#tab_name_text",
3605
+ "PackIconSectionVisible" = "#pack_icon_section_visible",
3606
+ "RatingsVisible" = "#ratings_visible",
3607
+ "OfferFullPrice" = "#offer_full_price",
3608
+ "StarterBundleStrikethroughVisible" = "#starter_bundle_strikethrough_visible",
3609
+ "StarterBundleOfferPromptText" = "#starter_bundle_offer_prompt_text",
3610
+ "OfferPromptTextVisibility" = "#offer_prompt_text_visibility",
3611
+ "RowOutlineColor" = "#row_outline_color",
3612
+ "ShowRowOutline" = "#show_row_outline",
3613
+ "RowBgColor" = "#row_bg_color",
3614
+ "ShowRowBackground" = "#show_row_background",
3615
+ "StoreSectionContent" = "#store_section_content",
3616
+ "SubscriptionChevronVisibility" = "#subscription_chevron_visibility",
3617
+ "CsbChevronVisibility" = "#csb_chevron_visibility",
3618
+ "FirstEnabled" = "#first_enabled",
3619
+ "PaginationVisible" = "#pagination_visible",
3620
+ "OfferCollectionVisible" = "#offer_collection_visible",
3621
+ "PageNumberText" = "#page_number_text",
3622
+ "NextEnabled" = "#next_enabled",
3623
+ "IsCarouselRowVisible" = "#is_carousel_row_visible",
3624
+ "GreyBarSectionContent" = "#grey_bar_section_content",
3625
+ "TabNamesVisible" = "#tab_names_visible",
3626
+ "CarouselSectionContent" = "#carousel_section_content",
3627
+ "ScreenshotTexturePath" = "#screenshot_texture_path",
3628
+ "OfferMarkdownPercentage" = "#offer_markdown_percentage",
3629
+ "TtsOfferMarkdownPercentage" = "#tts_offer_markdown_percentage",
3630
+ "BladeMarkdownVisible" = "#blade_markdown_visible",
3631
+ "OfferButtonFocusId" = "#offer_button_focus_id",
3632
+ "HeroFeaturedPackIconSectionVisible" = "#hero_featured_pack_icon_section_visible",
3633
+ "OwnedStatusText" = "#owned_status_text",
3634
+ "OfferDownloadProgressLabel" = "#offer_download_progress_label",
3635
+ "RatingText" = "#rating_text",
3636
+ "RatingsCountText" = "#ratings_count_text",
3637
+ "SectionHeaderColor" = "#section_header_color",
3638
+ "HeaderRightPaddingVisible" = "#header_right_padding_visible",
3639
+ "HeaderLeftPaddingVisible" = "#header_left_padding_visible",
3640
+ "VerticalSectionContent" = "#vertical_section_content",
3641
+ "ShowMoreText" = "#show_more_text",
3642
+ "ShowMoreVisible" = "#show_more_visible",
3643
+ "OfferStrikethroughPriceVisible" = "#offer_strikethrough_price_visible",
3644
+ "TtsOverrrideOfferFullPrice" = "#tts_overrride_offer_full_price",
3645
+ "IsOddRow" = "#is_odd_row",
3646
+ "OfferMinecoinText" = "#offer_minecoin_text",
3647
+ "TtsOfferMinecoinText" = "#tts_offer_minecoin_text",
3648
+ "TtsOverrideControlValue" = "#tts_override_control_value",
3649
+ "IsOfferCollectionQueryAndNotSaleCollection" = "#is_offer_collection_query_and_not_sale_collection",
3650
+ "BundleOrHeroPackIconSectionVisible" = "#bundle_or_hero_pack_icon_section_visible",
3651
+ "IsCollectionQueryOnSale" = "#is_collection_query_on_sale",
3652
+ "HeaderTextColor" = "#header_text_color",
3653
+ "HeaderFontType" = "#header_font_type",
3654
+ "HeaderFontScalar" = "#header_font_scalar",
3655
+ "HeaderAlignment" = "#header_alignment",
3656
+ "OfferGridType" = "#offer_grid_type",
3657
+ "StoreOfferRowContent" = "#store_offer_row_content",
3658
+ "SdlDropdownDataRowVisible" = "#sdl_dropdown_data_row_visible",
3659
+ "HeaderBgColor" = "#header_bg_color",
3660
+ "ShowHeaderBackground" = "#show_header_background",
3661
+ "OfferCollectionReady" = "#offer_collection_ready",
3662
+ "Indent" = "#indent",
3663
+ "SizeBindingXAbsolute" = "#size_binding_x_absolute",
3664
+ "HideBanner" = "#hide_banner",
3665
+ "ShowBanner" = "#show_banner",
3666
+ "TimeRemainingLabel" = "#time_remaining_label",
3667
+ "ShowTimer" = "#show_timer",
3668
+ "CycleButtonWidth" = "#cycle_button_width",
3669
+ "CycleButtonsVisible" = "#cycle_buttons_visible",
3670
+ "FirstOfThreeVisible" = "#first_of_three_visible",
3671
+ "SecondOfThreeVisible" = "#second_of_three_visible",
3672
+ "ThirdOfThreeVisible" = "#third_of_three_visible",
3673
+ "FirstOfTwoVisible" = "#first_of_two_visible",
3674
+ "SecondOfTwoVisible" = "#second_of_two_visible",
3675
+ "SuggestedOffersCollection" = "#suggested_offers_collection",
3676
+ "OfferTypeLabel" = "#offer_type_label",
3677
+ "SuggestedOffersLoading" = "#suggested_offers_loading",
3678
+ "SearchBoxTextContent" = "#search_box_text_content",
3679
+ "PlaceHolderText" = "#place_holder_text",
3680
+ "SearchBarEnabled" = "#search_bar_enabled",
3681
+ "SearchResultsCloseFocusId" = "#search_results_close_focus_id",
3682
+ "SearchClearVisible" = "#search_clear_visible",
3683
+ "SearchSpinnerVisible" = "#search_spinner_visible",
3684
+ "SearchLabelText" = "#search_label_text",
3685
+ "SearchErrorText" = "#search_error_text",
3686
+ "SearchErrorPanelVisible" = "#search_error_panel_visible",
3687
+ "SearchResultsText" = "#search_results_text",
3688
+ "SeachResultsCloseButtonVisible" = "#seach_results_close_button_visible",
3689
+ "SearchResultsPanelVisible" = "#search_results_panel_visible",
3690
+ "FilterSelectedCount" = "#filter_selected_count",
3691
+ "SortToggleLabelTtsOverride" = "#sort_toggle_label_tts_override",
3692
+ "TtsFiltersAppliedCountText" = "#tts_filters_appliedCount_text",
3693
+ "SearchScreenEnabled" = "#search_screen_enabled",
3694
+ "IsSearchOfferListVisible" = "#is_search_offer_list_visible",
3695
+ "FilterScreenVisible" = "#filter_screen_visible",
3696
+ "SortScreenVisible" = "#sort_screen_visible",
3697
+ "IsSdlDropdownHeaderToggleSelected" = "#is_sdl_dropdown_header_toggle_selected",
3698
+ "NavButtonLabel" = "#nav_button_label",
3699
+ "NavButtonAnimation" = "#nav_button_animation",
3700
+ "NavButtonTexture" = "#nav_button_texture",
3701
+ "NavSectionContent" = "#nav_section_content",
3702
+ "ScreenHeaderTitle" = "#screen_header_title",
3703
+ "DialogButtonText" = "#dialog_button_text",
3704
+ "IsTopRowButtonFocusEnabled" = "#is_top_row_button_focus_enabled",
3705
+ "RegisterAsDressingRoomScene" = "#register_as_dressing_room_scene",
3706
+ "XBindNotOverriden" = "#x_bind_not_overriden",
3707
+ "FilterSelected_" = "#filter_selected_",
3708
+ "Filter_" = "#filter_",
3709
+ "FilterOptionVisible_" = "#filter_option_visible_",
3710
+ "AddonFilterVisible" = "#addon_filter_visible",
3711
+ "FilterSelectedOfferType" = "#filter_selected_offer_type",
3712
+ "FilterOfferTypeSelectedVisible" = "#filter_offer_type_selected_visible",
3713
+ "FilterSelectedPacktype" = "#filter_selected_packtype",
3714
+ "FilterPacktypeSelectedVisible" = "#filter_packtype_selected_visible",
3715
+ "NonDropdownFilterSectionVisible" = "#non_dropdown_filter_section_visible",
3716
+ "MainFilterSectionVisible" = "#main_filter_section_visible",
3717
+ "PackTypeFilterSectionVisible" = "#pack_type_filter_section_visible",
3718
+ "OfferTypeFilterSectionVisible" = "#offer_type_filter_section_visible",
3719
+ "MinecoinFilterSectionVisible" = "#minecoin_filter_section_visible",
3720
+ "RatingFilterSectionVisible" = "#rating_filter_section_visible",
3721
+ "CreatorFilterSectionVisible" = "#creator_filter_section_visible",
3722
+ "InstalledStateFilterSectionVisible" = "#installed_state_filter_section_visible",
3723
+ "DressingroomstyleFilterSectionVisible" = "#dressingroomstyle_filter_section_visible",
3724
+ "DressingroombodyFilterSectionVisible" = "#dressingroombody_filter_section_visible",
3725
+ "IsDressingRoomScene" = "#is_dressing_room_scene",
3726
+ "ShowSigninButton" = "#show_signin_button",
3727
+ "ShowNoXblAndLocalContentWarning" = "#show_no_xbl_and_local_content_warning",
3728
+ "ShowNoXblAndNoLocalContentWarning" = "#show_no_xbl_and_no_local_content_warning",
3729
+ "RealmsEnabled" = "#realms_enabled",
3730
+ "CollectionCount" = "#collection_count",
3731
+ "SubcategoriesVisible" = "#subcategories_visible",
3732
+ "CollectionsIconVisible" = "#collections_icon_visible",
3733
+ "AddonsCount" = "#addons_count",
3734
+ "CategoryAddonsIconVisible" = "#category_addons_icon_visible",
3735
+ "AddonsVisible" = "#addons_visible",
3736
+ "SkinsCount" = "#skins_count",
3737
+ "CategorySkinsIconVisible" = "#category_skins_icon_visible",
3738
+ "WorldsCount" = "#worlds_count",
3739
+ "CategoryWorldsIconVisible" = "#category_worlds_icon_visible",
3740
+ "TexturesCount" = "#textures_count",
3741
+ "CategoryTexturesIconVisible" = "#category_textures_icon_visible",
3742
+ "MashupsCount" = "#mashups_count",
3743
+ "CategoryMashupsIconVisible" = "#category_mashups_icon_visible",
3744
+ "MaxGridOffers" = "#max_grid_offers",
3745
+ "GridListVisible" = "#grid_list_visible",
3746
+ "InventorySectionContent" = "#inventory_section_content",
3747
+ "InventoryGridClipEvent" = "#inventory_grid_clip_event",
3748
+ "CollectionPrefix" = "#collection_prefix",
3749
+ "BannerButtonText" = "#banner_button_text",
3750
+ "BannerTitleText" = "#banner_title_text",
3751
+ "TitleTextColor" = "#title_text_color",
3752
+ "BannerTitleLeftPaddingVisible" = "#banner_title_left_padding_visible",
3753
+ "BannerTitleRightPaddingVisible" = "#banner_title_right_padding_visible",
3754
+ "BannerDescriptionText" = "#banner_description_text",
3755
+ "DescriptionTextColor" = "#description_text_color",
3756
+ "BannerDescriptionLeftPaddingVisible" = "#banner_description_left_padding_visible",
3757
+ "BannerDescriptionRightPaddingVisible" = "#banner_description_right_padding_visible",
3758
+ "BannerButtonLeftPaddingVisible" = "#banner_button_left_padding_visible",
3759
+ "BannerButtonRightPaddingVisible" = "#banner_button_right_padding_visible",
3760
+ "RowMessageText" = "#row_message_text",
3761
+ "StoreRowImageAnimationName" = "#store_row_image_animation_name",
3762
+ "StoreRowImageTextureName" = "#store_row_image_texture_name",
3763
+ "ImageIsReady" = "#image_is_ready",
3764
+ "StoreRowImageTextureFilepath" = "#store_row_image_texture_filepath",
3765
+ "LeftCornerImageTexturePath" = "#left_corner_image_texture_path",
3766
+ "LeftCornerImageTextureFileSystem" = "#left_corner_image_texture_file_system",
3767
+ "RightCornerImageTexturePath" = "#right_corner_image_texture_path",
3768
+ "RightCornerImageTextureFileSystem" = "#right_corner_image_texture_file_system",
3769
+ "CyclePromotionsLeftButtonEnabled" = "#cycle_promotions_left_button_enabled",
3770
+ "LeftCycleButtonRightFocusOverride" = "#left_cycle_button_right_focus_override",
3771
+ "CyclePromotionsRightButtonEnabled" = "#cycle_promotions_right_button_enabled",
3772
+ "RightCycleButtonLeftFocusOverride" = "#right_cycle_button_left_focus_override",
3773
+ "PromoSingleItemSelected" = "#promo_single_item_selected",
3774
+ "BackButtonVisible" = "#back_button_visible",
3775
+ "PromotionDayHeader" = "#promotion_day_header",
3776
+ "IsClaimAllEnabled" = "#is_claim_all_enabled",
3777
+ "IsClaimAllVisible" = "#is_claim_all_visible",
3778
+ "PromoGridOffers" = "#promo_grid_offers",
3779
+ "PlatformRestricted" = "#platform_restricted",
3780
+ "PromoItemIsPersona" = "#promo_item_is_persona",
3781
+ "PromotionThumbnailTexturePath" = "#promotion_thumbnail_texture_path",
3782
+ "PromotionThumbnailTextureFileSystem" = "#promotion_thumbnail_texture_file_system",
3783
+ "PromoPersonaThumbnailTexture" = "#promo_persona_thumbnail_texture",
3784
+ "PromoPersonaThumbnailFileSystem" = "#promo_persona_thumbnail_file_system",
3785
+ "PromotionOfferVisible" = "#promotion_offer_visible",
3786
+ "ItemTitleText" = "#item_title_text",
3787
+ "IsValid" = "#is_valid",
3788
+ "ThisPromoSelected" = "#this_promo_selected",
3789
+ "PromotionDayText" = "#promotion_day_text",
3790
+ "PeriodHasBeenClaimed" = "#period_has_been_claimed",
3791
+ "PromoDayToggleCheck" = "#promo_day_toggle_check",
3792
+ "PromoDayFocusOverrideRight" = "#promo_day_focus_override_right",
3793
+ "PromoTimerToolTip" = "#promo_timer_tool_tip",
3794
+ "PromoItemTimerVisible" = "#promo_item_timer_visible",
3795
+ "PromoTimerToolTipRightVisible" = "#promo_timer_tool_tip_right_visible",
3796
+ "PromoTimerToolTipLeftVisible" = "#promo_timer_tool_tip_left_visible",
3797
+ "PromoTimerToolTipNotVisible" = "#promo_timer_tool_tip_not_visible",
3798
+ "PromoItemTimerText" = "#promo_item_timer_text",
3799
+ "PromoItemTitleText" = "#promo_item_title_text",
3800
+ "PromoItemCreatorText" = "#promo_item_creator_text",
3801
+ "PromoItemSkinCountAndLabel" = "#promo_item_skin_count_and_label",
3802
+ "PromoItemSkinCountVisible" = "#promo_item_skin_count_visible",
3803
+ "PromoItemSkinCount" = "#promo_item_skin_count",
3804
+ "PromoItemWorldTemplateCountAndLabel" = "#promo_item_world_template_count_and_label",
3805
+ "PromoItemWorldTemplateCountVisible" = "#promo_item_world_template_count_visible",
3806
+ "PromoItemWorldTemplateCount" = "#promo_item_world_template_count",
3807
+ "PromoItemResourcePackCountAndLabel" = "#promo_item_resource_pack_count_and_label",
3808
+ "PromoItemResourcePackCountVisible" = "#promo_item_resource_pack_count_visible",
3809
+ "PromoItemResourcePackCount" = "#promo_item_resource_pack_count",
3810
+ "PromoKeyArtTexture" = "#promo_key_art_texture",
3811
+ "PromoKeyArtFileSystem" = "#promo_key_art_file_system",
3812
+ "PromoButtonText" = "#promo_button_text",
3813
+ "ItemIsNotOwned" = "#item_is_not_owned",
3814
+ "PromoItemFullPrice" = "#promo_item_full_price",
3815
+ "PlatformRestrictedItem" = "#platform_restricted_item",
3816
+ "PromoItemActionButtonText" = "#promo_item_action_button_text",
3817
+ "WorldDownloadInfoVisible" = "#world_download_info_visible",
3818
+ "WorldDownloadProgressBarPercentage" = "#world_download_progress_bar_percentage",
3819
+ "PromoDescriptionLabel" = "#promo_description_label",
3820
+ "HasPromoItemDescription" = "#has_promo_item_description",
3821
+ "PromoActionButtonVisible" = "#promo_action_button_visible",
3822
+ "PromoBottomButtonFocusOverrideDown" = "#promo_bottom_button_focus_override_down",
3823
+ "PromoScreenshotTexture" = "#promo_screenshot_texture",
3824
+ "PromoScreenshotLocation" = "#promo_screenshot_location",
3825
+ "ThisPromoScreenshotSelected" = "#this_promo_screenshot_selected",
3826
+ "PromoScreenshotCollectionLength" = "#promo_screenshot_collection_length",
3827
+ "PreviewPromoPersonaItem" = "#preview_promo_persona_item",
3828
+ "PromoItemIsWorld" = "#promo_item_is_world",
3829
+ "PromoItemIsSkin" = "#promo_item_is_skin",
3830
+ "CharacterLoadingInProgress" = "#character_loading_in_progress",
3831
+ "IsSalesGridVisible" = "#is_sales_grid_visible",
3832
+ "SalesHeaderText" = "#sales_header_text",
3833
+ "ShowSalesBanner" = "#show_sales_banner",
3834
+ "SalesGridItemCount" = "#sales_grid_item_count",
3835
+ "IsStoreOfferGridPanelVisible" = "#is_store_offer_grid_panel_visible",
3836
+ "TrendingRowName" = "#trending_row_name",
3837
+ "TrendingOffersDimensions" = "#trending_offers_dimensions",
3838
+ "TrendingRowsDimensions" = "#trending_rows_dimensions",
3839
+ "TrendingRowsVisible" = "#trending_rows_visible",
3840
+ "TrendingPageLoadingVisible" = "#trending_page_loading_visible",
3841
+ "SortToggleLabel" = "#sort_toggle_label",
3842
+ "SortTypeText" = "#sort_type_text",
3843
+ "RelevanceToggleVisible" = "#relevance_toggle_visible",
3844
+ "3dExportEnabled" = "#3d_export_enabled",
3845
+ "SaveEnabled" = "#save_enabled",
3846
+ "ExportEnabled" = "#export_enabled",
3847
+ "LoadEnabled" = "#load_enabled",
3848
+ "ImportEnabled" = "#import_enabled",
3849
+ "IncludeEntitiesBindingName" = "#include_entities_binding_name",
3850
+ "IncludeEntitiesEnabled" = "#include_entities_enabled",
3851
+ "IncludeEntitiesToggle" = "#include_entities_toggle",
3852
+ "IncludeEntitiesToggleOff" = "#include_entities_toggle_off",
3853
+ "IncludeEntitiesToggleOn" = "#include_entities_toggle_on",
3854
+ "WaterlogBlocksBindingName" = "#waterlog_blocks_binding_name",
3855
+ "WaterlogBlocksOn" = "#waterlog_blocks_on",
3856
+ "WaterlogBlocksToggle" = "#waterlog_blocks_toggle",
3857
+ "WaterlogBlocksToggleOff" = "#waterlog_blocks_toggle_off",
3858
+ "WaterlogBlocksToggleOn" = "#waterlog_blocks_toggle_on",
3859
+ "BoundingToggleVisible" = "#bounding_toggle_visible",
3860
+ "ShowBoundingBoxBindingName" = "#show_bounding_box_binding_name",
3861
+ "ShowBoundingBoxEnabled" = "#show_bounding_box_enabled",
3862
+ "ShowBoundingBoxToggle" = "#show_bounding_box_toggle",
3863
+ "ShowBoundingBoxToggleOff" = "#show_bounding_box_toggle_off",
3864
+ "ShowBoundingBoxToggleOn" = "#show_bounding_box_toggle_on",
3865
+ "IncludePlayersBindingName" = "#include_players_binding_name",
3866
+ "IncludePlayersEnabled" = "#include_players_enabled",
3867
+ "IncludePlayersToggle" = "#include_players_toggle",
3868
+ "IncludePlayersToggleOff" = "#include_players_toggle_off",
3869
+ "IncludePlayersToggleOn" = "#include_players_toggle_on",
3870
+ "RemoveBlocksBindingName" = "#remove_blocks_binding_name",
3871
+ "RemoveBlocksEnabled" = "#remove_blocks_enabled",
3872
+ "RemoveBlocksToggle" = "#remove_blocks_toggle",
3873
+ "RemoveBlocksToggleOff" = "#remove_blocks_toggle_off",
3874
+ "RemoveBlocksToggleOn" = "#remove_blocks_toggle_on",
3875
+ "3dExportModePanelVisible" = "#3d_export_mode_panel_visible",
3876
+ "ExportSizeEditBox" = "#export_size_edit_box",
3877
+ "ExportOffsetEditBox" = "#export_offset_edit_box",
3878
+ "SaveModePanelVisible" = "#save_mode_panel_visible",
3879
+ "SaveSizeEditBox" = "#save_size_edit_box",
3880
+ "SaveOffsetEditBox" = "#save_offset_edit_box",
3881
+ "MirrorX" = "#mirror_x",
3882
+ "MirrorXEnabled" = "#mirror_x_enabled",
3883
+ "MirrorZ" = "#mirror_z",
3884
+ "MirrorZEnabled" = "#mirror_z_enabled",
3885
+ "LoadModePanelVisible" = "#load_mode_panel_visible",
3886
+ "LoadOffsetEditBox" = "#load_offset_edit_box",
3887
+ "IntegrityField" = "#integrity_field",
3888
+ "IntegrityContentEditBox" = "#integrity_content_edit_box",
3889
+ "SeedField" = "#seed_field",
3890
+ "SeedContentEditBox" = "#seed_content_edit_box",
3891
+ "RotationSliderLabel" = "#rotation_slider_label",
3892
+ "Rotation" = "#rotation",
3893
+ "RotationEnabled" = "#rotation_enabled",
3894
+ "RotationSteps" = "#rotation_steps",
3895
+ "RotationTextValue" = "#rotation_text_value",
3896
+ "AnimationTimeField" = "#animation_time_field",
3897
+ "AnimationTimeContentEditBox" = "#animation_time_content_edit_box",
3898
+ "DataModePanelVisible" = "#data_mode_panel_visible",
3899
+ "DataField" = "#data_field",
3900
+ "DataContentEditBox" = "#data_content_edit_box",
3901
+ "CornerModePanelVisible" = "#corner_mode_panel_visible",
3902
+ "SaveVisible" = "#save_visible",
3903
+ "LoadVisible" = "#load_visible",
3904
+ "3dExportVisible" = "#3d_export_visible",
3905
+ "StructureRedstoneMemory" = "#structure_redstone_memory",
3906
+ "StructureRedstoneDisk" = "#structure_redstone_disk",
3907
+ "StructureAnimationNone" = "#structure_animation_none",
3908
+ "StructureAnimationLayers" = "#structure_animation_layers",
3909
+ "StructureAnimationBlocks" = "#structure_animation_blocks",
3910
+ "AnimationModeDropdownEnabled" = "#animation_mode_dropdown_enabled",
3911
+ "AnimationModeDropdownToggleLabel" = "#animation_mode_dropdown_toggle_label",
3912
+ "StructureName" = "#structure_name",
3913
+ "StructureNameContentBindingName" = "#structure_name_content_binding_name",
3914
+ "NameBoxColor" = "#name_box_color",
3915
+ "StructureSaveMode" = "#structure_save_mode",
3916
+ "StructureLoadMode" = "#structure_load_mode",
3917
+ "StructureDataMode" = "#structure_data_mode",
3918
+ "StructureCornerMode" = "#structure_corner_mode",
3919
+ "Structure3dExportMode" = "#structure_3d_export_mode",
3920
+ "ModeDropdownEnabled" = "#mode_dropdown_enabled",
3921
+ "ModeDropdownToggleLabel" = "#mode_dropdown_toggle_label",
3922
+ "ExportDisabledVisible" = "#export_disabled_visible",
3923
+ "HasFocus" = "#has_focus",
3924
+ "CornerTextVisible" = "#corner_text_visible",
3925
+ "StructureRendererVisible" = "#structure_renderer_visible",
3926
+ "BlockPosition" = "#block_position",
3927
+ "BottomLeftBlock" = "#bottom_left_block",
3928
+ "TopRightBlock" = "#top_right_block",
3929
+ "IncludeEntities" = "#include_entities",
3930
+ "RemoveBlocks" = "#remove_blocks",
3931
+ "IncludePlayers" = "#include_players",
3932
+ "GestureMouseDeltaY" = "#gesture_mouse_delta_y",
3933
+ "RotationArrowsVisible" = "#rotation_arrows_visible",
3934
+ "HasFeedbackText" = "#has_feedback_text",
3935
+ "WriteFeedbackTextbox" = "#write_feedback_textbox",
3936
+ "RemainingCharactersCount" = "#remaining_characters_count",
3937
+ "ShowSubmitFeedbackScreen" = "#show_submit_feedback_screen",
3938
+ "SubmitFeedbackInProgress" = "#submit_feedback_in_progress",
3939
+ "ToastIconSectionContent" = "#toast_icon_section_content",
3940
+ "TextPaddingVisible" = "#text_padding_visible",
3941
+ "RecipeUnlocked" = "#recipe_unlocked",
3942
+ "IsAchievement" = "#is_achievement",
3943
+ "ToastSubtitleVisible" = "#toast_subtitle_visible",
3944
+ "ToastSubtitle" = "#toast_subtitle",
3945
+ "ToastFontType" = "#toast_font_type",
3946
+ "ControllerStartIcon" = "#controller_start_icon",
3947
+ "LeftButtonEnabled" = "#left_button_enabled",
3948
+ "RightButtonEnabled" = "#right_button_enabled",
3949
+ "TradeItemFocusOverrideLeft" = "#trade_item_focus_override_left",
3950
+ "TradeItemFocusOverrideRight" = "#trade_item_focus_override_right",
3951
+ "ShowSecondTradeSlot" = "#show_second_trade_slot",
3952
+ "ItemGrayedOut" = "#item_grayed_out",
3953
+ "SellItemName" = "#sell_item_name",
3954
+ "TradeCellBackgroundTexture" = "#trade_cell_background_texture",
3955
+ "TradeItemCount" = "#trade_item_count",
3956
+ "SingleSlashVisible" = "#single_slash_visible",
3957
+ "DoubleSlashVisible" = "#double_slash_visible",
3958
+ "SecondTradeItemCount" = "#second_trade_item_count",
3959
+ "ItemPickupTime" = "#item_pickup_time",
3960
+ "TradePriceDifferent" = "#trade_price_different",
3961
+ "TradeToggleEnabled" = "#trade_toggle_enabled",
3962
+ "TradeCrossOutVisible" = "#trade_cross_out_visible",
3963
+ "PaddingAroundSellItem" = "#padding_around_sell_item",
3964
+ "TradePossible" = "#trade_possible",
3965
+ "TradeToggleState" = "#trade_toggle_state",
3966
+ "TradeTierTotal" = "#trade_tier_total",
3967
+ "TierName" = "#tier_name",
3968
+ "IsTierUnlocked" = "#is_tier_unlocked",
3969
+ "ShowLevel" = "#show_level",
3970
+ "TierVisible" = "#tier_visible",
3971
+ "TradeSelectorTotal" = "#trade_selector_total",
3972
+ "ExpBarVisible" = "#exp_bar_visible",
3973
+ "ExpPossibleProgress" = "#exp_possible_progress",
3974
+ "SelectedHoverText" = "#selected_hover_text",
3975
+ "TradeDetailsButton1Visible" = "#trade_details_button_1_visible",
3976
+ "TradeDetailsButton2Visible" = "#trade_details_button_2_visible",
3977
+ "EnchantmentDetailsButtonVisible" = "#enchantment_details_button_visible",
3978
+ "ItemValid" = "#item_valid",
3979
+ "TradeButtonEnabled" = "#trade_button_enabled",
3980
+ "NameLabel" = "#name_label",
3981
+ "IsLeftTabTrade" = "#is_left_tab_trade",
3982
+ "HasSecondBuyItem" = "#has_second_buy_item",
3983
+ "TrialUpsellContinueButton" = "#trial_upsell_continue_button",
3984
+ "TrialUpsellBuyButton" = "#trial_upsell_buy_button",
3985
+ "TrialUpsellUpdatedDescription" = "#trial_upsell_updatedDescription",
3986
+ "TrialUpsellExpiredUpdatedDescription" = "#trial_upsell_expired_updatedDescription",
3987
+ "TextureLocationtype" = "#texture_locationtype",
3988
+ "SearchBoxBinding" = "#search_box_binding",
3989
+ "SearchBoxName" = "#search_box_name",
3990
+ "UgcMaxGridItems" = "#ugc_max_grid_items",
3991
+ "ToggleEnabled" = "#toggle_enabled",
3992
+ "SliderValue" = "#slider_value",
3993
+ "SliderSteps" = "#slider_steps",
3994
+ "SliderEnabled" = "#slider_enabled",
3995
+ "IsDropdown" = "#is_dropdown",
3996
+ "NewlineRefresh" = "#newline_refresh",
3997
+ "TextBoxName" = "#text_box_name",
3998
+ "EditBoxTextColor" = "#edit_box_text_color",
3999
+ "TextBoxEnabled" = "#text_box_enabled",
4000
+ "CanBeDeselected" = "#can_be_deselected",
4001
+ "TextEditBoxFocusable" = "#text_edit_box_focusable",
4002
+ "TextEditBoxVisible" = "#text_edit_box_visible",
4003
+ "ShowClearTextButton" = "#show_clear_text_button",
4004
+ "BarColor" = "#bar_color",
4005
+ "GamepadHelperIconDescription" = "#gamepad_helper_icon_description",
4006
+ "ButtonStartDescription" = "#button_start_description",
4007
+ "ControllerFaceDownIcon" = "#controller_face_down_icon",
4008
+ "ButtonADescription" = "#button_a_description",
4009
+ "ControllerFaceDownIcon14" = "#controller_face_down_icon_14",
4010
+ "ControllerFaceRightIcon" = "#controller_face_right_icon",
4011
+ "ButtonBDescription" = "#button_b_description",
4012
+ "ControllerFaceRightIcon14" = "#controller_face_right_icon_14",
4013
+ "ControllerFaceLeftIcon" = "#controller_face_left_icon",
4014
+ "ButtonXDescription" = "#button_x_description",
4015
+ "ControllerFaceLeftIcon14" = "#controller_face_left_icon_14",
4016
+ "ControllerFaceUpIcon" = "#controller_face_up_icon",
4017
+ "ButtonYDescription" = "#button_y_description",
4018
+ "ControllerFaceUpIcon14" = "#controller_face_up_icon_14",
4019
+ "ControllerLeftTrigger" = "#controller_left_trigger",
4020
+ "ControllerLeftTriggerDescription" = "#controller_left_trigger_description",
4021
+ "ControllerRightTrigger" = "#controller_right_trigger",
4022
+ "ControllerRightTriggerDescription" = "#controller_right_trigger_description",
4023
+ "KeyboardLeftTriggerDescription" = "#keyboard_left_trigger_description",
4024
+ "KeyboardRightTriggerDescription" = "#keyboard_right_trigger_description",
4025
+ "ButtonDpadDescription" = "#button_dpad_description",
4026
+ "ControllerDpadDownIcon" = "#controller_dpad_down_icon",
4027
+ "ButtonDpadDownDescription" = "#button_dpad_down_description",
4028
+ "ControllerDpadLeftIcon" = "#controller_dpad_left_icon",
4029
+ "ButtonDpadLeftDescription" = "#button_dpad_left_description",
4030
+ "ControllerDpadRightIcon" = "#controller_dpad_right_icon",
4031
+ "ButtonDpadRightDescription" = "#button_dpad_right_description",
4032
+ "ControllerDpadUpIcon" = "#controller_dpad_up_icon",
4033
+ "ButtonDpadUpDescription" = "#button_dpad_up_description",
4034
+ "ButtonThumbstickDescription" = "#button_thumbstick_description",
4035
+ "ControllerRightStickIcon" = "#controller_right_stick_icon",
4036
+ "ButtonThumbstickRightDescription" = "#button_thumbstick_right_description",
4037
+ "ControllerLeftStickIcon" = "#controller_left_stick_icon",
4038
+ "ButtonThumbstickLeftDescription" = "#button_thumbstick_left_description",
4039
+ "ControllerLeftBumperIcon" = "#controller_left_bumper_icon",
4040
+ "ControllerLeftBumperDescription" = "#controller_left_bumper_description",
4041
+ "ControllerRightBumperIcon" = "#controller_right_bumper_icon",
4042
+ "ControllerRightBumperDescription" = "#controller_right_bumper_description",
4043
+ "IsSelectedSlot" = "#is_selected_slot",
4044
+ "ProgressiveSelectBarRatio" = "#progressive_select_bar_ratio",
4045
+ "ProgressiveSelectText" = "#progressive_select_text",
4046
+ "ClassicStackSplittingOverlayVisible" = "#classic_stack_splitting_overlay_visible",
4047
+ "PocketStackSplittingOverlayVisible" = "#pocket_stack_splitting_overlay_visible",
4048
+ "ProgressiveSelectDownVisible" = "#progressive_select_down_visible",
4049
+ "ProgressiveSelectUpVisible" = "#progressive_select_up_visible",
4050
+ "ProgressiveSelectLeftSideVisible" = "#progressive_select_left_side_visible",
4051
+ "ProgressiveSelectRightSideVisible" = "#progressive_select_right_side_visible",
4052
+ "StackSplittingBarOffsetX" = "#stack_splitting_bar_offset_x",
4053
+ "StackSplittingBarOffsetY" = "#stack_splitting_bar_offset_y",
4054
+ "StackSplittingBarVisible" = "#stack_splitting_bar_visible",
4055
+ "ItemDurabilityVisible" = "#item_durability_visible",
4056
+ "ItemDurabilityTotalAmount" = "#item_durability_total_amount",
4057
+ "ItemDurabilityCurrentAmount" = "#item_durability_current_amount",
4058
+ "SelectedItemDurabilityVisible" = "#selected_item_durability_visible",
4059
+ "SelectedItemDurabilityTotalAmount" = "#selected_item_durability_total_amount",
4060
+ "SelectedItemDurabilityCurrentAmount" = "#selected_item_durability_current_amount",
4061
+ "ItemStorageVisible" = "#item_storage_visible",
4062
+ "ProgressBarVisible" = "#progress_bar_visible",
4063
+ "ItemStorageTotalAmount" = "#item_storage_total_amount",
4064
+ "ItemStorageCurrentAmount" = "#item_storage_current_amount",
4065
+ "SelectedItemStorageVisible" = "#selected_item_storage_visible",
4066
+ "SelectedItemStorageTotalAmount" = "#selected_item_storage_total_amount",
4067
+ "SelectedItemStorageCurrentAmount" = "#selected_item_storage_current_amount",
4068
+ "ItemRendererData" = "#item_renderer_data",
4069
+ "InactiveItem" = "#inactive_item",
4070
+ "GroupItemGroupName" = "#group_item_group_name",
4071
+ "FadeInIconTimeSeconds" = "#fade_in_icon_time_seconds",
4072
+ "ChargedItem" = "#charged_item",
4073
+ "ShieldBaseColorHovered" = "#shield_base_color_hovered",
4074
+ "ItemLodestoneTrackingHandle" = "#item_lodestone_tracking_handle",
4075
+ "FlyingItemRenderer" = "#flying_item_renderer",
4076
+ "RecipeDetailsLabel" = "#recipe_details_label",
4077
+ "NotificationText" = "#notification_text",
4078
+ "FocusForTtsEnabledBinding" = "#focus_for_tts_enabled_binding",
4079
+ "GestureControlEnabled" = "#gesture_control_enabled",
4080
+ "ShowHoveredSelectedInventorySlot" = "#show_hovered_selected_inventory_slot",
4081
+ "ItemLockInInventory" = "#item_lock_in_inventory",
4082
+ "ItemLockInSlot" = "#item_lock_in_slot",
4083
+ "ItemLock" = "#item_lock",
4084
+ "CollectionTotalItems" = "#collection_total_items",
4085
+ "InventorySelectedItem" = "#inventory_selected_item",
4086
+ "InventorySelectedItemChargedItem" = "#inventory_selected_item_charged_item",
4087
+ "InventorySelectedItemColor" = "#inventory_selected_item_color",
4088
+ "InventorySelectedArmorTrimMaterial" = "#inventory_selected_armor_trim_material",
4089
+ "InventorySelectedBannerPatterns" = "#inventory_selected_banner_patterns",
4090
+ "InventorySelectedBannerColors" = "#inventory_selected_banner_colors",
4091
+ "InventorySelectedBannerType" = "#inventory_selected_banner_type",
4092
+ "InventorySelectedDecoratedPotSherds" = "#inventory_selected_decorated_pot_sherds",
4093
+ "InventorySelectedItemStackCount" = "#inventory_selected_item_stack_count",
4094
+ "InventorySelectedItemLockInInventory" = "#inventory_selected_item_lock_in_inventory",
4095
+ "InventorySelectedItemLockInSlot" = "#inventory_selected_item_lock_in_slot",
4096
+ "GamepadCursorVisible" = "#gamepad_cursor_visible",
4097
+ "SafezoneOuterTop" = "#safezone_outer_top",
4098
+ "SafezoneInnerTop" = "#safezone_inner_top",
4099
+ "SafezoneInnerBottom" = "#safezone_inner_bottom",
4100
+ "SafezoneOuterBottom" = "#safezone_outer_bottom",
4101
+ "SafezoneOuterLeft" = "#safezone_outer_left",
4102
+ "SafezoneInnerLeft" = "#safezone_inner_left",
4103
+ "SafezoneInnerRight" = "#safezone_inner_right",
4104
+ "SafezoneOuterRight" = "#safezone_outer_right",
4105
+ "IsContainerScreen" = "#is_container_screen",
4106
+ "TooltipText" = "#tooltip_text",
4107
+ "ImageName" = "#image_name",
4108
+ "ServiceImageTextureFilename" = "#service_image_texture_filename",
4109
+ "ServiceImageTextureLocation" = "#service_image_texture_location",
4110
+ "ServiceImageRepoReady" = "#service_image_repo_ready",
4111
+ "NotBound" = "#not_bound",
4112
+ "IsDownloadInProgress" = "#is_download_in_progress",
4113
+ "IsLoadingInProgress" = "#is_loading_in_progress",
4114
+ "Textbox" = "#textbox",
4115
+ "HasResourceUriError" = "#has_resource_uri_error",
4116
+ "ResourceUriDoneEnabled" = "#resource_uri_done_enabled",
4117
+ "HasEduExternalLink" = "#has_edu_external_link",
4118
+ "IsAddingResource" = "#is_adding_resource",
4119
+ "ShareLink" = "#share_link",
4120
+ "HotbarHintBoundKey" = "#hotbar_hint_bound_key",
4121
+ "HotbarHintBoundKeyGlyphVisible" = "#hotbar_hint_bound_key_glyph_visible",
4122
+ "HotbarHintVisible" = "#hotbar_hint_visible",
4123
+ "EduCloudConflictResolutionDescription" = "#edu_cloud_conflict_resolution_description",
4124
+ "EduCloudConflictResolutionLocalName" = "#edu_cloud_conflict_resolution_local_name",
4125
+ "EduCloudConflictResolutionLocalDate" = "#edu_cloud_conflict_resolution_local_date",
4126
+ "EduCloudConflictResolutionCloudName" = "#edu_cloud_conflict_resolution_cloud_name",
4127
+ "EduCloudConflictResolutionCloudDate" = "#edu_cloud_conflict_resolution_cloud_date",
4128
+ "ScreenshotTextureName" = "#screenshot_texture_name",
4129
+ "GridButtonOverrideRight" = "#grid_button_override_right",
4130
+ "GridButtonOverrideLeft" = "#grid_button_override_left",
4131
+ "GridButtonOverrideUp" = "#grid_button_override_up",
4132
+ "ScreenshotsGridDimensions" = "#screenshots_grid_dimensions",
4133
+ "ZoomedTextureName" = "#zoomed_texture_name",
4134
+ "ZoomedTextureFileSystem" = "#zoomed_texture_file_system",
4135
+ "OfferTextureName" = "#offer_texture_name",
4136
+ "OfferTextureFileSystem" = "#offer_texture_file_system",
4137
+ "DynamicTooltipNotificationVisibilityBindingName" = "#dynamic_tooltip_notification_visibility_binding_name",
4138
+ "ContentToggleLabel" = "#content_toggle_label",
4139
+ "FillTogglePropertyBag" = "#fill_toggle_property_bag",
4140
+ "FocusOverrideLeft" = "#focus_override_left",
4141
+ "UpdateDimensionsMakeBackup" = "#update_dimensions_make_backup",
4142
+ "UpdateScreenTitle" = "#update_screen_title",
4143
+ "UpdateScreenPatchNotes" = "#update_screen_patch_notes",
4144
+ "UpdateScreenDescription" = "#update_screen_description",
4145
+ "RecoveryText" = "#recovery_text",
4146
+ "GenerateRandomButtonText" = "#generate_random_button_text",
4147
+ "GenerateRandomButtonEnabled" = "#generate_random_button_enabled",
4148
+ "GenerateRandomButtonVisible" = "#generate_random_button_visible",
4149
+ "RealmsInfoText" = "#realms_info_text",
4150
+ "RealmsInfoVisible" = "#realms_info_visible",
4151
+ "WorldTemplateName" = "#world_template_name",
4152
+ "WorldTemplateDescription" = "#world_template_description",
4153
+ "WorldTemplateVersion" = "#world_template_version",
4154
+ "TemplateDownloadText" = "#template_download_text",
4155
+ "CsbExpirationVisible" = "#csb_expiration_visible",
4156
+ "WorldTemplateItemGridDimension" = "#world_template_item_grid_dimension",
4157
+ "TemplateListVisible" = "#template_list_visible",
4158
+ "CreatedByLabel" = "#created_by_label",
4159
+ "SuggestedTemplateFactoryCollection" = "#suggested_template_factory_collection",
4160
+ "RealmsPlusListVisible" = "#realms_plus_list_visible",
4161
+ "RealmsPlusTemplateFactoryCollection" = "#realms_plus_template_factory_collection",
4162
+ "WorldTemplateInventoryFactoryCollection" = "#world_template_inventory_factory_collection",
4163
+ "CustomTemplateListVisible" = "#custom_template_list_visible",
4164
+ "CustomWorldTemplateFactoryCollection" = "#custom_world_template_factory_collection",
4165
+ "CustomWorldTemplateItemGridDimension" = "#custom_world_template_item_grid_dimension",
4166
+ "AreWorldListGridsReady" = "#are_world_list_grids_ready",
4167
+ "SubscriptionWorldTemplateText" = "#subscription_world_template_text",
4168
+ "SuggestedContentVisible" = "#suggested_content_visible",
4169
+ "QrCodeContent" = "#qr_code_content",
4170
+ "Url" = "#url",
4171
+ "Code" = "#code",
4172
+ "Ps4WarningMessageVisible" = "#ps4_warning_message_visible",
4173
+ "IsNewAccount" = "#is_new_account",
4174
+ "WelcomeMessage" = "#welcome_message",
4175
+ "Message" = "#message",
4176
+ "PackTexture" = "#pack_texture",
4177
+ "TitleName" = "#title_name",
4178
+ "StarterGridDimension" = "#starter_grid_dimension",
4179
+ "MasterGridDimension" = "#master_grid_dimension"
4180
+ }