效果图
点击图标会显示对应的名称
代码
typescript
// entry/src/main/ets/pages/Index.ets
// import { Home } from './home/Index'
import { Sys } from './sys/Index'
// import { Mine } from './mine/Index'
@Entry
@Component
struct Index {
// 路由栈
@Provide('pathInfos') pathInfos: NavPathStack = new NavPathStack()
build() {
Navigation(this.pathInfos) {
Tabs({ barPosition: BarPosition.End }) { // 页签位于容器底部。
// TabContent() { Home() }.tabBar('首页')
TabContent() { Sys() }.tabBar('资源')
// TabContent() { Mine() }.tabBar("我的")
}
.scrollable(false) // 设置是否可以通过滑动页面进行页面切换。
}
.hideToolBar(true) // 设置是否隐藏工具栏。
.backgroundColor($r('sys.color.comp_background_gray')) // 灰色背景
}
}
typescript
// entry/src/main/ets/pages/sys/Index.ets
import { color, float, string, media, symbol} from './sys'
@Component
export struct Sys {
@State color: string[] = color;
@State media: string[] = media;
@State symbol: string[] = symbol;
@State name: string = '';
build() {
Tabs() {
TabContent() {
List({ space: 12 }) {
ForEach(this.color, (item: string) => {
ListItem({ style: ListItemStyle.CARD }) {
Row() {
Blank()
.width(30)
.height(30)
.borderWidth(2)
.borderColor(Color.Black)
.backgroundColor($r(`sys.color.${item.split(':')[0]}`))
Blank()
.width(12)
Text(item.split(':')[0]).width('calc(100% - 42vp)')
}
.width('100%')
}
}, (item: string) => item)
}
.padding(12)
.height('100%')
}.tabBar('color')
TabContent() {
Column() {
List() {
ListItem({ style: ListItemStyle.CARD }) {
Text(this.name).textAlign(TextAlign.Center).width('100%')
}
}
.padding({ left: 12, right: 12 })
List({ space: 12 }) {
ForEach(this.media, (item: string) => {
ListItem({ style: ListItemStyle.CARD }) {
Image($r(`sys.media.${item.split(':')[0]}`))
.width(30)
.height(30)
}
.onClick(() => {
this.name = item.split(':')[0]
})
}, (item: string) => item)
}
.lanes(6, 12)
.padding(12)
.height('calc(100% - 60vp)')
}
}.tabBar('media')
TabContent() {
Column() {
List() {
ListItem({ style: ListItemStyle.CARD }) {
Text(this.name).textAlign(TextAlign.Center).width('100%')
}
}
.padding({ left: 12, right: 12 })
List({ space: 12 }) {
ForEach(this.symbol, (item: string) => {
ListItem({ style: ListItemStyle.CARD }) {
SymbolGlyph($r(`sys.symbol.${item.split(':')[0]}`)).fontSize(30)
}
.onClick(() => {
this.name = item.split(':')[0]
})
}, (item: string) => item)
}
.lanes(6, 12)
.padding(12)
.height('calc(100% - 60vp)')
}
}.tabBar('symbol')
}
.scrollable(false)
}
}
数据来源:/Applications/DevEco-Studio.app/Contents/sdk/default/openharmony/ets/build-tools/ets-loader/sysResource.js数据获取日期为2025年4月,后续可通过代码跳转到sysResource.js文件,处理成下方结构。
typescript
// entry/src/main/ets/pages/sys/sys.ets
export const color: string[] = ["ohos_id_color_foreground: 125829120","ohos_id_color_foreground_dark: 125829121","ohos_id_color_foreground_transparent: 125829122","ohos_id_color_foreground_contrary: 125829123","ohos_id_color_foreground_contrary_dark: 125829124","ohos_id_color_foreground_contrary_transparent: 125829125","ohos_id_color_foreground_contrary_disable: 125829126","ohos_id_color_foreground_contrary_disable_dark: 125829127","ohos_id_color_foreground_contrary_disable_transparent: 125829128","ohos_id_color_background: 125829129","ohos_id_color_background_dark: 125829130","ohos_id_color_background_transparent: 125829131","ohos_id_color_sub_background: 125829132","ohos_id_color_sub_background_dark: 125829133","ohos_id_color_sub_background_transparent: 125829134","ohos_id_color_emphasize: 125829135","ohos_id_color_emphasize_dark: 125829136","ohos_id_color_emphasize_transparent: 125829137","ohos_id_color_emphasize_contrary: 125829138","ohos_id_color_emphasize_contrary_dark: 125829139","ohos_id_color_emphasize_contrary_transparent: 125829140","ohos_id_color_warning: 125829141","ohos_id_color_warning_dark: 125829142","ohos_id_color_warning_transparent: 125829143","ohos_id_color_alert: 125829144","ohos_id_color_alert_dark: 125829145","ohos_id_color_alert_transparent: 125829146","ohos_id_color_handup: 125829147","ohos_id_color_handup_dark: 125829148","ohos_id_color_handup_transparent: 125829149","ohos_id_color_connected: 125829150","ohos_id_color_connected_dark: 125829151","ohos_id_color_connected_transparent: 125829152","ohos_id_color_component_activated: 125829153","ohos_id_color_component_activated_dark: 125829154","ohos_id_color_component_activated_transparent: 125829155","ohos_id_color_component_normal: 125829156","ohos_id_color_component_normal_dark: 125829157","ohos_id_color_component_normal_transparent: 125829158","ohos_id_color_list_separator: 125829159","ohos_id_color_list_separator_dark: 125829160","ohos_id_color_list_separator_transparent: 125829161","ohos_id_color_subheading_separator: 125829162","ohos_id_color_subheading_separator_dark: 125829163","ohos_id_color_subheading_separator_transparent: 125829164","ohos_id_color_click_effect: 125829165","ohos_id_color_click_effect_dark: 125829166","ohos_id_color_click_effect_transparent: 125829167","ohos_id_color_hover: 125829168","ohos_id_color_hover_dark: 125829169","ohos_id_color_hover_transparent: 125829170","ohos_id_color_focused_content_primary: 125829171","ohos_id_color_focused_content_primary_dark: 125829172","ohos_id_color_focused_content_primary_transparent: 125829173","ohos_id_color_focused_content_second: 125829174","ohos_id_color_focused_content_second_dark: 125829175","ohos_id_color_focused_content_second_transparent: 125829176","ohos_id_color_focused_content_tertiary: 125829177","ohos_id_color_focused_content_tertiary_dark: 125829178","ohos_id_color_focused_content_tertiary_transparent: 125829179","ohos_id_color_focused_outline: 125829180","ohos_id_color_focused_outline_dark: 125829181","ohos_id_color_focused_outline_transparent: 125829182","ohos_id_color_focused_bg: 125829183","ohos_id_color_focused_bg_dark: 125829184","ohos_id_color_focused_bg_transparent: 125829185","ohos_id_color_primary: 125829186","ohos_id_color_primary_dark: 125829187","ohos_id_color_primary_transparent: 125829188","ohos_id_color_primary_contrary: 125829189","ohos_id_color_primary_contrary_dark: 125829190","ohos_id_color_primary_contrary_transparent: 125829191","ohos_id_color_secondary: 125829192","ohos_id_color_secondary_dark: 125829193","ohos_id_color_secondary_transparent: 125829194","ohos_id_color_tertiary: 125829195","ohos_id_color_tertiary_dark: 125829196","ohos_id_color_tertiary_transparent: 125829197","ohos_id_color_fourth: 125829198","ohos_id_color_fourth_dark: 125829199","ohos_id_color_fourth_transparent: 125829200","ohos_id_color_activated: 125829201","ohos_id_color_activated_dark: 125829202","ohos_id_color_activated_transparent: 125829203","ohos_id_color_activated_start: 125829204","ohos_id_color_activated_start_dark: 125829205","ohos_id_color_activated_start_transparent: 125829206","ohos_id_color_activated_end: 125829207","ohos_id_color_activated_end_dark: 125829208","ohos_id_color_activated_end_transparent: 125829209","ohos_id_color_text_primary: 125829210","ohos_id_color_text_primary_dark: 125829211","ohos_id_color_text_primary_transparent: 125829212","ohos_id_color_text_primary_contrary: 125829213","ohos_id_color_text_primary_contrary_dark: 125829214","ohos_id_color_text_primary_contrary_transparent: 125829215","ohos_id_color_text_secondary: 125829216","ohos_id_color_text_secondary_dark: 125829217","ohos_id_color_text_secondary_transparent: 125829218","ohos_id_color_text_secondary_contrary: 125829219","ohos_id_color_text_secondary_contrary_dark: 125829220","ohos_id_color_text_secondary_contrary_transparent: 125829221","ohos_id_color_text_tertiary: 125829222","ohos_id_color_text_tertiary_dark: 125829223","ohos_id_color_text_tertiary_transparent: 125829224","ohos_id_color_text_tertiary_contrary: 125829225","ohos_id_color_text_tertiary_contrary_dark: 125829226","ohos_id_color_text_tertiary_contrary_transparent: 125829227","ohos_dialog_text_alert: 125829228","ohos_dialog_text_alert_dark: 125829229","ohos_dialog_text_alert_transparent: 125829230","ohos_id_color_text_primary_activated: 125829231","ohos_id_color_text_primary_activated_dark: 125829232","ohos_id_color_text_primary_activated_transparent: 125829233","ohos_id_color_text_secondary_activated: 125829234","ohos_id_color_text_secondary_activated_dark: 125829235","ohos_id_color_text_secondary_activated_transparent: 125829236","ohos_id_color_text_search_url: 125829237","ohos_id_color_text_search_url_dark: 125829238","ohos_id_color_text_search_url_transparent: 125829239","ohos_id_color_text_hint: 125829240","ohos_id_color_text_hint_dark: 125829241","ohos_id_color_text_hint_transparent: 125829242","ohos_id_color_text_hint_contrary: 125829243","ohos_id_color_text_hint_contrary_dark: 125829244","ohos_id_color_text_hint_contrary_transparent: 125829245","ohos_id_color_text_hyperlink: 125829246","ohos_id_color_text_hyperlink_dark: 125829247","ohos_id_color_text_hyperlink_transparent: 125829248","ohos_id_color_text_hyperlink_contrary: 125829249","ohos_id_color_text_hyperlink_contrary_dark: 125829250","ohos_id_color_text_hyperlink_contrary_transparent: 125829251","ohos_id_color_text_highlight_bg: 125829252","ohos_id_color_text_highlight_bg_dark: 125829253","ohos_id_color_text_highlight_bg_transparent: 125829254","ohos_id_color_text_highlight_bg_contrary: 125829255","ohos_id_color_text_highlight_bg_contrary_dark: 125829256","ohos_id_color_text_highlight_bg_contrary_transparent: 125829257","ohos_id_color_palette1: 125829258","ohos_id_color_palette1_dark: 125829259","ohos_id_color_palette1_transparent: 125829260","ohos_id_color_palette2: 125829261","ohos_id_color_palette2_dark: 125829262","ohos_id_color_palette2_transparent: 125829263","ohos_id_color_palette3: 125829264","ohos_id_color_palette3_dark: 125829265","ohos_id_color_palette3_transparent: 125829266","ohos_id_color_palette4: 125829267","ohos_id_color_palette4_dark: 125829268","ohos_id_color_palette4_transparent: 125829269","ohos_id_color_palette5: 125829270","ohos_id_color_palette5_dark: 125829271","ohos_id_color_palette5_transparent: 125829272","ohos_id_color_palette6: 125829273","ohos_id_color_palette6_dark: 125829274","ohos_id_color_palette6_transparent: 125829275","ohos_id_color_palette7: 125829276","ohos_id_color_palette7_dark: 125829277","ohos_id_color_palette7_transparent: 125829278","ohos_id_color_palette8: 125829279","ohos_id_color_palette8_dark: 125829280","ohos_id_color_palette8_transparent: 125829281","ohos_id_color_palette9: 125829282","ohos_id_color_palette9_dark: 125829283","ohos_id_color_palette9_transparent: 125829284","ohos_id_color_palette10: 125829285","ohos_id_color_palette10_dark: 125829286","ohos_id_color_palette10_transparent: 125829287","ohos_id_color_palette11: 125829288","ohos_id_color_palette11_dark: 125829289","ohos_id_color_palette11_transparent: 125829290","ohos_id_color_palette_aux1: 125829291","ohos_id_color_palette_aux1_dark: 125829292","ohos_id_color_palette_aux1_transparent: 125829293","ohos_id_color_palette_aux2: 125829294","ohos_id_color_palette_aux2_dark: 125829295","ohos_id_color_palette_aux2_transparent: 125829296","ohos_id_color_palette_aux3: 125829297","ohos_id_color_palette_aux3_dark: 125829298","ohos_id_color_palette_aux3_transparent: 125829299","ohos_id_color_palette_aux4: 125829300","ohos_id_color_palette_aux4_dark: 125829301","ohos_id_color_palette_aux4_transparent: 125829302","ohos_id_color_palette_aux5: 125829303","ohos_id_color_palette_aux5_dark: 125829304","ohos_id_color_palette_aux5_transparent: 125829305","ohos_id_color_palette_aux6: 125829306","ohos_id_color_palette_aux6_dark: 125829307","ohos_id_color_palette_aux6_transparent: 125829308","ohos_id_color_palette_aux7: 125829309","ohos_id_color_palette_aux7_dark: 125829310","ohos_id_color_palette_aux7_transparent: 125829311","ohos_id_color_palette_aux8: 125829312","ohos_id_color_palette_aux8_dark: 125829313","ohos_id_color_palette_aux8_transparent: 125829314","ohos_id_color_palette_aux9: 125829315","ohos_id_color_palette_aux9_dark: 125829316","ohos_id_color_palette_aux9_transparent: 125829317","ohos_id_color_palette_aux10: 125829318","ohos_id_color_palette_aux10_dark: 125829319","ohos_id_color_palette_aux10_transparent: 125829320","ohos_id_color_palette_aux11: 125829321","ohos_id_color_palette_aux11_dark: 125829322","ohos_id_color_palette_aux11_transparent: 125829323","ohos_id_color_special1: 125829324","ohos_id_color_special1_dark: 125829325","ohos_id_color_special1_transparent: 125829326","ohos_id_color_special2: 125829327","ohos_id_color_special2_dark: 125829328","ohos_id_color_special2_transparent: 125829329","ohos_id_color_special3: 125829330","ohos_id_color_special3_dark: 125829331","ohos_id_color_special3_transparent: 125829332","ohos_id_color_special4: 125829333","ohos_id_color_special4_dark: 125829334","ohos_id_color_special4_transparent: 125829335","ohos_id_color_special5: 125829336","ohos_id_color_special5_dark: 125829337","ohos_id_color_special5_transparent: 125829338","ohos_id_color_special6: 125829339","ohos_id_color_special6_dark: 125829340","ohos_id_color_special6_transparent: 125829341","ohos_id_color_special7: 125829342","ohos_id_color_special7_dark: 125829343","ohos_id_color_special7_transparent: 125829344","ohos_id_color_special8: 125829345","ohos_id_color_special8_dark: 125829346","ohos_id_color_special8_transparent: 125829347","ohos_id_color_special9: 125829348","ohos_id_color_special9_dark: 125829349","ohos_id_color_special9_transparent: 125829350","ohos_id_color_special10: 125829351","ohos_id_color_special10_dark: 125829352","ohos_id_color_special10_transparent: 125829353","ohos_id_color_special11: 125829354","ohos_id_color_special11_dark: 125829355","ohos_id_color_special11_transparent: 125829356","ohos_id_color_mask_thin: 125829357","ohos_id_color_mask_thin_dark: 125829358","ohos_id_color_mask_thin_transparent: 125829359","ohos_id_color_mask_light: 125829360","ohos_id_color_mask_light_dark: 125829361","ohos_id_color_mask_light_transparent: 125829362","ohos_id_color_mask_regular: 125829363","ohos_id_color_mask_regular_dark: 125829364","ohos_id_color_mask_regular_transparent: 125829365","ohos_id_color_mask_thick: 125829366","ohos_id_color_mask_thick_dark: 125829367","ohos_id_color_mask_thick_transparent: 125829368","ohos_id_color_statusbar_bg: 125829396","ohos_id_color_statusbar_bg_dark: 125829397","ohos_id_color_statusbar_bg_transparent: 125829398","ohos_id_color_navigationbar_bg: 125829399","ohos_id_color_navigationbar_bg_dark: 125829400","ohos_id_color_navigationbar_bg_transparent: 125829401","ohos_id_color_titlebar_icon: 125829402","ohos_id_color_titlebar_icon_dark: 125829403","ohos_id_color_titlebar_icon_transparent: 125829404","ohos_id_color_titlebar_icon_pressed: 125829405","ohos_id_color_titlebar_icon_pressed_dark: 125829406","ohos_id_color_titlebar_icon_pressed_transparent: 125829407","ohos_id_color_titlebar_text: 125829408","ohos_id_color_titlebar_text_dark: 125829409","ohos_id_color_titlebar_text_transparent: 125829410","ohos_id_color_titlebar_text_off: 125829411","ohos_id_color_titlebar_text_off_dark: 125829412","ohos_id_color_titlebar_text_off_transparent: 125829413","ohos_id_color_titlebar_subtitle_text: 125829414","ohos_id_color_titlebar_subtitle_text_dark: 125829415","ohos_id_color_titlebar_subtitle_text_transparent: 125829416","ohos_id_color_titlebar_bg: 125829417","ohos_id_color_titlebar_bg_dark: 125829418","ohos_id_color_titlebar_bg_transparent: 125829419","ohos_id_color_titlebar_sub_bg: 125829420","ohos_id_color_titlebar_sub_bg_dark: 125829421","ohos_id_color_titlebar_sub_bg_transparent: 125829422","ohos_id_color_bottom_tab_icon: 125829423","ohos_id_color_bottom_tab_icon_dark: 125829424","ohos_id_color_bottom_tab_icon_transparent: 125829425","ohos_id_color_bottom_tab_icon_off: 125829426","ohos_id_color_bottom_tab_icon_off_dark: 125829427","ohos_id_color_bottom_tab_icon_off_transparent: 125829428","ohos_id_color_bottom_tab_icon_auxcolor01: 125829429","ohos_id_color_bottom_tab_icon_auxcolor01_dark: 125829430","ohos_id_color_bottom_tab_icon_auxcolor01_transparent: 125829431","ohos_id_color_bottom_tab_icon_auxcolor_off01: 125829432","ohos_id_color_bottom_tab_icon_auxcolor_off01_dark: 125829433","ohos_id_color_bottom_tab_icon_auxcolor_off01_transparent: 125829434","ohos_id_color_bottom_tab_icon_auxcolor02: 125829435","ohos_id_color_bottom_tab_icon_auxcolor02_dark: 125829436","ohos_id_color_bottom_tab_icon_auxcolor02_transparent: 125829437","ohos_id_color_bottom_tab_icon_auxcolor_off02: 125829438","ohos_id_color_bottom_tab_icon_auxcolor_off02_dark: 125829439","ohos_id_color_bottom_tab_icon_auxcolor_off02_transparent: 125829440","ohos_id_color_bottom_tab_text_on: 125829441","ohos_id_color_bottom_tab_text_on_dark: 125829442","ohos_id_color_bottom_tab_text_on_transparent: 125829443","ohos_id_color_bottom_tab_text_off: 125829444","ohos_id_color_bottom_tab_text_off_dark: 125829445","ohos_id_color_bottom_tab_text_off_transparent: 125829446","ohos_id_color_bottom_tab_bg: 125829447","ohos_id_color_bottom_tab_bg_dark: 125829448","ohos_id_color_bottom_tab_bg_transparent: 125829449","ohos_id_color_bottom_tab_bg_blur: 125829450","ohos_id_color_bottom_tab_bg_blur_dark: 125829451","ohos_id_color_bottom_tab_bg_blur_transparent: 125829452","ohos_id_color_bottom_tab_sub_bg: 125829453","ohos_id_color_bottom_tab_sub_bg_dark: 125829454","ohos_id_color_bottom_tab_sub_bg_transparent: 125829455","ohos_id_color_bottom_tab_sub_bg_blur: 125829456","ohos_id_color_bottom_tab_sub_bg_blur_dark: 125829457","ohos_id_color_bottom_tab_sub_bg_blur_transparent: 125829458","ohos_id_color_subtab_text_on: 125829459","ohos_id_color_subtab_text_on_dark: 125829460","ohos_id_color_subtab_text_on_transparent: 125829461","ohos_id_color_subtab_text_off: 125829462","ohos_id_color_subtab_text_off_dark: 125829463","ohos_id_color_subtab_text_off_transparent: 125829464","ohos_id_color_subtab_line_on: 125829465","ohos_id_color_subtab_line_on_dark: 125829466","ohos_id_color_subtab_line_on_transparent: 125829467","ohos_id_color_subtab_bg: 125829468","ohos_id_color_subtab_bg_dark: 125829469","ohos_id_color_subtab_bg_transparent: 125829470","ohos_id_color_toolbar_icon: 125829471","ohos_id_color_toolbar_icon_dark: 125829472","ohos_id_color_toolbar_icon_transparent: 125829473","ohos_id_color_toolbar_icon_actived: 125829474","ohos_id_color_toolbar_icon_actived_dark: 125829475","ohos_id_color_toolbar_icon_actived_transparent: 125829476","ohos_id_color_toolbar_text: 125829477","ohos_id_color_toolbar_text_dark: 125829478","ohos_id_color_toolbar_text_transparent: 125829479","ohos_id_color_toolbar_text_actived: 125829480","ohos_id_color_toolbar_text_actived_dark: 125829481","ohos_id_color_toolbar_text_actived_transparent: 125829482","ohos_id_color_toolbar_bg: 125829483","ohos_id_color_toolbar_bg_dark: 125829484","ohos_id_color_toolbar_bg_transparent: 125829485","ohos_id_color_toolbar_sub_bg: 125829486","ohos_id_color_toolbar_sub_bg_dark: 125829487","ohos_id_color_toolbar_sub_bg_transparent: 125829488","ohos_id_color_text_field_bg: 125829489","ohos_id_color_text_field_bg_dark: 125829490","ohos_id_color_text_field_bg_transparent: 125829491","ohos_id_color_text_field_sub_bg: 125829492","ohos_id_color_text_field_sub_bg_dark: 125829493","ohos_id_color_text_field_sub_bg_transparent: 125829494","ohos_id_color_progress: 125829495","ohos_id_color_progress_dark: 125829496","ohos_id_color_progress_transparent: 125829497","ohos_id_color_spinner_icon: 125829498","ohos_id_color_spinner_icon_dark: 125829499","ohos_id_color_spinner_icon_transparent: 125829500","ohos_id_color_badge: 125829501","ohos_id_color_badge_dark: 125829502","ohos_id_color_badge_transparent: 125829503","ohos_id_color_badge_red: 125829504","ohos_id_color_badge_red_dark: 125829505","ohos_id_color_badge_red_transparent: 125829506","ohos_id_color_dialog_bg: 125829507","ohos_id_color_dialog_bg_dark: 125829508","ohos_id_color_dialog_bg_transparent: 125829509","ohos_id_color_button_normal: 125829510","ohos_id_color_button_normal_dark: 125829511","ohos_id_color_button_normal_transparent: 125829512","ohos_id_color_switch_outline_off: 125829513","ohos_id_color_switch_outline_off_dark: 125829514","ohos_id_color_switch_outline_off_transparent: 125829515","ohos_id_color_switch_bg_off: 125829516","ohos_id_color_switch_bg_off_dark: 125829517","ohos_id_color_switch_bg_off_transparent: 125829518","ohos_id_color_floating_button_icon: 125829519","ohos_id_color_floating_button_icon_dark: 125829520","ohos_id_color_floating_button_icon_transparent: 125829521","ohos_id_color_floating_button_icon_start: 125829522","ohos_id_color_floating_button_icon_start_dark: 125829523","ohos_id_color_floating_button_icon_start_transparent: 125829524","ohos_id_color_floating_button_icon_end: 125829525","ohos_id_color_floating_button_icon_end_dark: 125829526","ohos_id_color_floating_button_icon_end_transparent: 125829527","ohos_id_color_floating_button_bg_normal: 125829528","ohos_id_color_floating_button_bg_normal_dark: 125829529","ohos_id_color_floating_button_bg_normal_transparent: 125829530","ohos_id_color_floating_button_start: 125829531","ohos_id_color_floating_button_start_dark: 125829532","ohos_id_color_floating_button_start_transparent: 125829533","ohos_id_color_floating_button_center: 125829534","ohos_id_color_floating_button_center_dark: 125829535","ohos_id_color_floating_button_center_transparent: 125829536","ohos_id_color_floating_button_end: 125829537","ohos_id_color_floating_button_end_dark: 125829538","ohos_id_color_floating_button_end_transparent: 125829539","ohos_id_color_floating_button_shadow_start: 125829540","ohos_id_color_floating_button_shadow_start_dark: 125829541","ohos_id_color_floating_button_shadow_start_transparent: 125829542","ohos_id_color_floating_button_shadow_end: 125829543","ohos_id_color_floating_button_shadow_end_dark: 125829544","ohos_id_color_floating_button_shadow_end_transparent: 125829545","ohos_id_color_floating_button_bg_pressed: 125829546","ohos_id_color_floating_button_bg_pressed_dark: 125829547","ohos_id_color_floating_button_bg_pressed_transparent: 125829548","ohos_id_color_instant_tip_bg: 125829549","ohos_id_color_instant_tip_bg_dark: 125829550","ohos_id_color_instant_tip_bg_transparent: 125829551","ohos_id_color_panel_bg: 125829552","ohos_id_color_panel_bg_dark: 125829553","ohos_id_color_panel_bg_transparent: 125829554","ohos_id_color_card_bg: 125829555","ohos_id_color_card_bg_dark: 125829556","ohos_id_color_card_bg_transparent: 125829557","ohos_id_color_list_card_bg: 125829558","ohos_id_color_list_card_bg_dark: 125829559","ohos_id_color_list_card_bg_transparent: 125829560","ohos_id_color_tooltip_foreground: 125829561","ohos_id_color_tooltip_foreground_dark: 125829562","ohos_id_color_tooltip_foreground_transparent: 125829563","ohos_id_color_tooltip_background: 125829564","ohos_id_color_tooltip_background_dark: 125829565","ohos_id_color_tooltip_background_transparent: 125829566","ohos_toggle_bg: 125829567","ohos_toggle_bg_dark: 125829568","ohos_toggle_bg_transparent: 125829569","ohos_id_color_help_tip_bg: 125829570","ohos_id_color_help_tip_bg_dark: 125829571","ohos_id_color_help_tip_bg_transparent: 125829572","ohos_fa_foreground: 125829573","ohos_fa_foreground_dark: 125829574","ohos_fa_foreground_contrary: 125829575","ohos_fa_foreground_contrary_dark: 125829576","ohos_fa_emphasize: 125829577","ohos_fa_emphasize_dark: 125829578","ohos_fa_emphasize_outline: 125829579","ohos_fa_emphasize_outline_dark: 125829580","ohos_fa_alert: 125829581","ohos_fa_alert_dark: 125829582","ohos_fa_warning: 125829583","ohos_fa_warning_dark: 125829584","ohos_fa_handup: 125829585","ohos_fa_handup_dark: 125829586","ohos_fa_connected: 125829587","ohos_fa_connected_dark: 125829588","ohos_fa_component_normal: 125829589","ohos_fa_component_normal_dark: 125829590","ohos_fa_click_effect: 125829591","ohos_fa_click_effect_dark: 125829592","ohos_fa_list_separator: 125829593","ohos_fa_list_separator_dark: 125829594","ohos_fa_list_card_bg_blur: 125829595","ohos_fa_list_card_bg_blur_dark: 125829596","ohos_fa_list_card_bg: 125829597","ohos_fa_list_card_bg_dark: 125829598","ohos_fa_background_blur: 125829599","ohos_fa_background_blur_dark: 125829600","ohos_fa_background: 125829601","ohos_fa_background_dark: 125829602","ohos_fa_sub_background: 125829603","ohos_fa_sub_background_dark: 125829604","ohos_fa_text_primary: 125829605","ohos_fa_text_primary_dark: 125829606","ohos_fa_text_secondary: 125829607","ohos_fa_text_secondary_dark: 125829608","ohos_fa_text_tertiary: 125829609","ohos_fa_text_tertiary_dark: 125829610","ohos_fa_text_fourth: 125829611","ohos_fa_text_fourth_dark: 125829612","ohos_fa_text_contrary: 125829613","ohos_fa_text_contrary_dark: 125829614","ohos_fa_text_activated: 125829615","ohos_fa_text_activated_dark: 125829616","ohos_fa_icon_primary: 125829617","ohos_fa_icon_primary_dark: 125829618","ohos_fa_icon_secondary: 125829619","ohos_fa_icon_secondary_dark: 125829620","ohos_fa_icon_tertiary: 125829621","ohos_fa_icon_tertiary_dark: 125829622","ohos_fa_icon_fourth: 125829623","ohos_fa_icon_fourth_dark: 125829624","ohos_fa_icon_contrary: 125829625","ohos_fa_icon_contrary_dark: 125829626","ohos_fa_activated: 125829627","ohos_fa_activated_dark: 125829628","ohos_fa_palette1: 125829629","ohos_fa_palette1_dark: 125829630","ohos_fa_palette2: 125829631","ohos_fa_palette2_dark: 125829632","ohos_fa_palette3: 125829633","ohos_fa_palette3_dark: 125829634","ohos_fa_palette4: 125829635","ohos_fa_palette4_dark: 125829636","ohos_fa_palette5: 125829637","ohos_fa_palette5_dark: 125829638","ohos_fa_palette6: 125829639","ohos_fa_palette6_dark: 125829640","ohos_fa_palette7: 125829641","ohos_fa_palette7_dark: 125829642","ohos_fa_palette8: 125829643","ohos_fa_palette8_dark: 125829644","ohos_fa_palette9: 125829645","ohos_fa_palette9_dark: 125829646","ohos_fa_palette10: 125829647","ohos_fa_palette10_dark: 125829648","ohos_fa_palette11: 125829649","ohos_fa_palette11_dark: 125829650","ohos_fa_palette12: 125829651","ohos_fa_palette12_dark: 125829652","ohos_id_color_datapanel_color1_start: 125830004","ohos_id_color_datapanel_color2_start: 125830005","ohos_id_color_datapanel_color3_start: 125830006","ohos_id_color_datapanel_color4_start: 125830007","ohos_id_color_datapanel_color5_start: 125830008","ohos_id_color_datapanel_color6_start: 125830009","ohos_id_color_datapanel_color7_start: 125830010","ohos_id_color_datapanel_color8_start: 125830011","ohos_id_color_datapanel_color9_start: 125830012","ohos_id_color_datapanel_color1_end: 125830013","ohos_id_color_datapanel_color2_end: 125830014","ohos_id_color_datapanel_color3_end: 125830015","ohos_id_color_datapanel_color4_end: 125830016","ohos_id_color_datapanel_color5_end: 125830017","ohos_id_color_datapanel_color6_end: 125830018","ohos_id_color_datapanel_color7_end: 125830019","ohos_id_color_datapanel_color8_end: 125830020","ohos_id_color_datapanel_color9_end: 125830021","ohos_id_color_datapanel_bg: 125830022","ohos_id_color_ring_progress_end: 125830054","ohos_id_color_ring_progress_begin: 125830055","ohos_id_color_calendar_week: 125830056","ohos_id_color_calendar_day: 125830057","ohos_id_color_calendar_lunar: 125830058","ohos_id_color_calendar_weekend_day: 125830059","ohos_id_color_calendar_weekend_lunar: 125830060","ohos_id_color_calendar_today_day_focus: 125830061","ohos_id_color_calendar_today_lunar_focus: 125830062","ohos_id_color_calendar_today_day_unfocus: 125830063","ohos_id_color_calendar_today_lunar_unfocus: 125830064","ohos_id_color_calendar_work_mark: 125830065","ohos_id_color_calendar_off_mark: 125830066","ohos_id_color_calendar_non_current_month_work_mark: 125830067","ohos_id_color_calendar_non_current_month_off_mark: 125830068","ohos_id_color_calendar_non_current_month_day: 125830069","ohos_id_color_calendar_non_current_month_lunar: 125830070","ohos_id_color_calendar_focus_area_background: 125830071","ohos_id_color_calendar_blur_area_background: 125830072","ohos_id_video_control_bar_text_color: 125830140","ohos_id_video_control_bar_background_color: 125830142","ohos_id_color_button_divider: 125830219","ohos_id_color_dialog_default_bg: 125830234","ohos_id_navigation_group_color: 125830240","ohos_id_button_bg_focus_color: 125830244","ohos_id_button_text_focus_color: 125830245","ohos_id_button_progress_focus_color: 125830261","ohos_id_focus_color: 125830265","ohos_id_video_control_bar_error_text_color: 125830266","ohos_id_counter_title_font_color: 125830268","ohos_id_counter_title_background_color: 125830269","ohos_id_section_unfocus_color: 125830274","ohos_id_picker_focus_option_text_color: 125830278","ohos_id_picker_title_text_color: 125830281","ohos_id_picker_button_text_color: 125830283","ohos_id_picker_focus_color: 125830289","ohos_id_picker_select_option_back_color: 125830297","ohos_id_picker_focus_option_back_color: 125830299","ohos_id_picker_dialog_mask_color: 125830305","ohos_id_picker_select_divider_color: 125830308","ohos_id_picker_press_color: 125830311","ohos_id_checkbox_shadow_color: 125830321","ohos_id_switch_shadow_color: 125830333","ohos_id_radio_shadow_color: 125830342","ohos_id_color_help_tip_light_bg: 125830344","ohos_id_navigation_bar_button_normal_color: 125830355","ohos_id_marquee_text_color: 125830374","ohos_id_popup_mask_color: 125830375","ohos_id_popup_text_color: 125830376","ohos_id_scroll_bar_background_color: 125830436","ohos_id_text_overlay_menu_border_color: 125830468","ohos_id_dialog_mask_color_start: 125830497","ohos_id_dialog_mask_color_end: 125830498","ohos_id_select_color_text_primary: 125830513","ohos_id_select_selected_color: 125830514","ohos_id_select_font_color: 125830515","ohos_id_select_option_disable_color: 125830526","ohos_id_select_option_focused_disable_color: 125830527","ohos_id_select_option_focused_disable_text_color: 125830528","ohos_id_list_background_color: 125830554","ohos_id_divider_color: 125830556","ohos_id_calendar_touch_color: 125830598","ohos_id_card_bg_color: 125830611","ohos_id_icon_color_active: 125830613","ohos_id_icon_color_active_secondary: 125830614","ohos_id_text_color_active: 125830615","ohos_id_container_color_active: 125830616","ohos_id_container_color: 125830617","ohos_id_background_secondary: 125830618","ohos_id_popup_outer_border_color: 125830620","ohos_id_popup_inner_border_color: 125830621","ohos_id_toolbar_item_focus_color: 125830676","ohos_id_toolbar_item_hover_color: 125830677","ohos_id_toolbar_control_normal: 125830678","ohos_id_menu_blur_effect_color: 125830683","ohos_id_menu_outer_border_color: 125830687","ohos_id_menu_inner_border_color: 125830690","ohos_id_blur_style_thin_color: 125830695","ohos_id_blur_style_thin_color_dark: 125830699","ohos_id_blur_style_regular_color: 125830703","ohos_id_blur_style_regular_color_dark: 125830707","ohos_id_blur_style_thick_color: 125830711","ohos_id_blur_style_thick_color_dark: 125830715","ohos_id_blur_style_background_thin_color: 125830719","ohos_id_blur_style_background_thin_color_dark: 125830723","ohos_id_blur_style_background_regular_color: 125830727","ohos_id_blur_style_background_regular_color_dark: 125830731","ohos_id_blur_style_background_thick_color: 125830735","ohos_id_blur_style_background_thick_color_dark: 125830739","ohos_id_blur_style_background_ultra_thick_color: 125830743","ohos_id_blur_style_background_ultra_thick_color_dark: 125830747","ohos_id_blur_style_component_ultra_thin_color: 125830751","ohos_id_blur_style_component_ultra_thin_color_dark: 125830755","ohos_id_blur_style_component_thin_color: 125830759","ohos_id_blur_style_component_thin_color_dark: 125830763","ohos_id_blur_style_component_regular_color: 125830767","ohos_id_blur_style_component_regular_color_dark: 125830771","ohos_id_blur_style_component_thick_color: 125830775","ohos_id_blur_style_component_thick_color_dark: 125830779","ohos_id_blur_style_component_ultra_thick_color: 125830783","ohos_id_blur_style_component_ultra_thick_color_dark: 125830787","ohos_id_shadow_default_xs: 125830789","ohos_id_shadow_default_sm: 125830790","ohos_id_shadow_default_md: 125830791","ohos_id_shadow_default_lg: 125830792","ohos_id_shadow_floating_sm: 125830793","ohos_id_shadow_floating_md: 125830794","ohos_id_shadow_default_xs_dark: 125830795","ohos_id_shadow_default_sm_dark: 125830796","ohos_id_shadow_default_md_dark: 125830797","ohos_id_shadow_default_lg_dark: 125830798","ohos_id_shadow_floating_sm_dark: 125830799","ohos_id_shadow_floating_md_dark: 125830800","ohos_id_color_navigation_background_blur: 125830853","multi_color_aux_01: 125830900","multi_color_aux_02: 125830901","multi_color_aux_03: 125830902","multi_color_aux_04: 125830903","multi_color_aux_05: 125830904","brand: 125830976","brand_font: 125830977","brand_font_contrary: 125830978","warning: 125830979","alert: 125830980","confirm: 125830981","font_primary: 125830982","font_secondary: 125830983","font_tertiary: 125830984","font_fourth: 125830985","font_emphasize: 125830986","font_on_primary: 125830987","font_on_secondary: 125830988","font_on_tertiary: 125830989","font_on_fourth: 125830990","icon_primary: 125830991","icon_secondary: 125830992","icon_tertiary: 125830993","icon_fourth: 125830994","icon_emphasize: 125830995","icon_sub_emphasize: 125830996","mask_primary: 125830997","mask_secondary: 125830998","mask_tertiary: 125830999","mask_fourth: 125831000","mask_fifth: 125831001","mask_sixth: 125831002","comp_foreground_primary: 125831003","comp_background_primary: 125831004","comp_background_primary_contrary: 125831005","comp_background_gray: 125831006","comp_background_secondary: 125831007","comp_background_tertiary: 125831008","comp_background_emphasize: 125831009","multi_color_aux_06: 125831010","comp_emphasize_secondary: 125831011","comp_emphasize_tertiary: 125831012","comp_divider: 125831013","comp_common_contrary: 125831014","comp_background_focus: 125831015","comp_focused_primary: 125831016","comp_focused_secondary: 125831017","comp_focused_tertiary: 125831018","interactive_hover: 125831019","interactive_pressed: 125831020","interactive_focus: 125831021","interactive_active: 125831022","interactive_select: 125831023","interactive_click: 125831024","black: 125831025","white: 125831026","gray_01: 125831027","gray_02: 125831028","gray_03: 125831029","gray_04: 125831030","multi_color_01: 125831031","multi_color_02: 125831032","multi_color_03: 125831033","multi_color_04: 125831034","multi_color_05: 125831035","multi_color_06: 125831036","multi_color_07: 125831037","multi_color_08: 125831038","multi_color_09: 125831039","multi_color_10: 125831040","multi_color_11: 125831041","icon_on_primary: 125831057","icon_on_secondary: 125831058","icon_on_tertiary: 125831059","icon_on_fourth: 125831060","background_primary: 125831061","background_secondary: 125831062","background_tertiary: 125831063","background_fourth: 125831064","background_emphasize: 125831065","neutral: 125831066","multi_color_aux_07: 125831068","multi_color_aux_08: 125831069","multi_color_aux_09: 125831070","multi_color_aux_10: 125831071","multi_color_aux_11: 125831072","font: 125831073","font_on: 125831074","icon: 125831075","icon_on: 125831076","alert_divider_color: 125831083","titlebar_subheader_color: 125831088","titlebar_icon_color: 125831089","titlebar_icon_background_color: 125831090","titlebar_icon_background_hover_color: 125831091","titlebar_icon_background_pressed_color: 125831092","titlebar_icon_background_focus_outline_color: 125831113","titlebar_title_tertiary_color: 125831119","comp_background_list_card: 125831127","ohos_id_color_border_button: 125831141","ohos_id_shadow_focus_button: 125831142","ohos_id_color_focus_bg_text_button: 125831149","container_modal_background: 125832716","container_modal_unfocus_background: 125832717","ohos_id_normalbtn_unfocus_bg: 125832718","ohos_id_closebtn_unfocus_bg: 125832719","ohos_id_normalbtn_bg: 125832720","ohos_id_normalbtn_hover_bg: 125832721","ohos_id_closebtn_color_warning: 125832722","ohos_id_closebtn_focus_bg: 125832723","ohos_id_closebtn_press_bg: 125832724","ohos_id_normalbtn_press_bg: 125832725","ohos_id_swiper_dot_active_color: 125832760","ohos_id_swiper_dot_color: 125832761","ohos_id_swiper_mask_color_start: 125832762","ohos_id_swiper_mask_color_end: 125832763","ohos_id_swiper_container_color: 125832764","dataPanel_color_subheading_separator: 125833505","color_sidebarcontainer_sub_bg: 125833506","comp_background_warning_secondary: 125833518","dialog_outer_border_color: 125833688","dialog_inner_border_color: 125833690","toast_outer_border_color: 125833696","toast_inner_border_color: 125833698","indexer_pressed_bg_color: 125833722","indexer_selected_bg_color: 125833723","glass_material_outline_primary: 125833938","glass_material_outline_secondary: 125833939","glass_material_mask_primary: 125833940","glass_material_mask_secondary: 125833941","button_background_color_transparent: 125834003","window_outline_color: 125834007","window_border_color: 125834008","comp_outline_color: 125834009","comp_border_color: 125834010","ohos_id_dialog_mask_color_end_dark: 125834222","navigation_drag_bar_item_default: 125834256","navigation_drag_bar_active: 125834257","navigation_divider_light_blue_active: 125834258","navigation_divider_dark_blue_active: 125834259","ohos_id_blur_style_component_ultra_thick_window_color: 125834277","ohos_id_blur_style_component_ultra_thick_window_color_dark: 125834278"]
export const float: string[] = ["ohos_id_alpha_content_primary: 125829369","ohos_id_alpha_content_primary_dark: 125829370","ohos_id_alpha_content_primary_transparent: 125829371","ohos_id_alpha_content_secondary: 125829372","ohos_id_alpha_content_secondary_dark: 125829373","ohos_id_alpha_content_secondary_transparent: 125829374","ohos_id_alpha_content_tertiary: 125829375","ohos_id_alpha_content_tertiary_dark: 125829376","ohos_id_alpha_content_tertiary_transparent: 125829377","ohos_id_alpha_content_fourth: 125829378","ohos_id_alpha_content_fourth_dark: 125829379","ohos_id_alpha_content_fourth_transparent: 125829380","ohos_id_alpha_disabled: 125829381","ohos_id_alpha_disabled_dark: 125829382","ohos_id_alpha_disabled_transparent: 125829383","ohos_id_alpha_highlight_bg: 125829384","ohos_id_alpha_highlight_bg_dark: 125829385","ohos_id_alpha_highlight_bg_transparent: 125829386","ohos_id_alpha_normal_bg: 125829387","ohos_id_alpha_normal_bg_dark: 125829388","ohos_id_alpha_normal_bg_transparent: 125829389","ohos_id_alpha_inapptip_bg: 125829390","ohos_id_alpha_inapptip_bg_dark: 125829391","ohos_id_alpha_inapptip_bg_transparent: 125829392","ohos_id_alpha_separator_line: 125829393","ohos_id_alpha_separator_line_dark: 125829394","ohos_id_alpha_separator_line_transparent: 125829395","ohos_fa_alpha_content_primary: 125829653","ohos_fa_alpha_content_primary_dark: 125829654","ohos_fa_alpha_content_secondary: 125829655","ohos_fa_alpha_content_secondary_dark: 125829656","ohos_fa_alpha_content_tertiary: 125829657","ohos_fa_alpha_content_tertiary_dark: 125829658","ohos_fa_alpha_content_fourth: 125829659","ohos_fa_alpha_content_fourth_dark: 125829660","ohos_fa_alpha_disabled: 125829661","ohos_fa_alpha_disabled_dark: 125829662","ohos_fa_alpha_highlight_bg: 125829663","ohos_fa_alpha_highlight_bg_dark: 125829664","ohos_fa_corner_radius_card: 125829665","ohos_fa_corner_radius_list_card_bg: 125829666","ohos_fa_corner_radius_default_s: 125829667","ohos_fa_corner_radius_default_xs: 125829668","ohos_id_text_size_headline1: 125829669","ohos_id_text_size_headline2: 125829670","ohos_id_text_size_headline3: 125829671","ohos_id_text_size_headline4: 125829672","ohos_id_text_size_headline5: 125829673","ohos_id_text_size_headline6: 125829674","ohos_id_text_size_headline7: 125829675","ohos_id_text_size_headline8: 125829676","ohos_id_text_size_headline9: 125829677","ohos_id_text_size_sub_title1: 125829678","ohos_id_text_size_sub_title2: 125829679","ohos_id_text_size_sub_title3: 125829680","ohos_id_text_size_button1: 125829681","ohos_id_text_size_button2: 125829682","ohos_id_text_size_button3: 125829683","ohos_id_text_size_body1: 125829684","ohos_id_text_size_body2: 125829685","ohos_id_text_size_body3: 125829686","ohos_id_text_size_caption: 125829687","ohos_id_text_size_caption1: 125829688","ohos_id_text_size_chart1: 125829689","ohos_id_text_size_chart2: 125829690","ohos_id_text_size_over_line: 125829691","ohos_id_text_size_dialog_tittle: 125829692","ohos_text_size_toggle: 125829693","ohos_id_corner_radius_tips_instant_tip: 125829696","ohos_id_corner_radius_tips_badge: 125829697","ohos_id_corner_radius_tips_tips: 125829698","ohos_id_corner_radius_toggle_button: 125829699","ohos_id_corner_radius_switch: 125829700","ohos_id_corner_radius_piece: 125829701","ohos_id_corner_radius_button: 125829702","ohos_id_corner_radius_small_button: 125829703","ohos_id_corner_radius_mark: 125829704","ohos_id_corner_radius_subtab: 125829705","ohos_id_corner_radius_clicked: 125829706","ohos_id_corner_radius_panel: 125829707","ohos_id_corner_radius_notification: 125829708","ohos_id_corner_radius_card: 125829709","ohos_id_corner_radius_progress_bar: 125829710","ohos_id_corner_radius_dialog: 125829711","ohos_id_corner_radius_grid: 125829712","ohos_id_corner_radius_check_box: 125829713","ohos_id_corner_radius_menu: 125829714","ohos_id_corner_radius_banner: 125829715","ohos_id_corner_radius_icon: 125829716","ohos_id_corner_radius_text_field: 125829717","ohos_id_corner_radius_default_xl: 125829718","ohos_id_corner_radius_default_l: 125829719","ohos_id_corner_radius_default_m: 125829720","ohos_id_corner_radius_default_s: 125829721","ohos_id_corner_radius_default_xs: 125829722","ohos_id_default_padding_start: 125829723","ohos_id_max_padding_start: 125829724","ohos_id_default_padding_end: 125829725","ohos_id_max_padding_end: 125829726","ohos_id_default_padding_top: 125829727","ohos_id_default_padding_bottom_flexible: 125829728","ohos_id_default_padding_bottom_fixed: 125829729","ohos_id_dialog_margin_start: 125829730","ohos_id_dialog_margin_end: 125829731","ohos_id_dialog_margin_bottom: 125829732","ohos_id_notification_margin_start: 125829733","ohos_id_notification_margin_end: 125829734","ohos_id_card_margin_start: 125829735","ohos_id_card_margin_end: 125829736","ohos_id_card_margin_middle: 125829737","ohos_id_text_margin_vertical: 125829738","ohos_id_text_margin_horizontal: 125829739","ohos_id_text_paragraph_margin_xl: 125829740","ohos_id_text_paragraph_margin_l: 125829741","ohos_id_text_paragraph_margin_m: 125829742","ohos_id_text_paragraph_margin_s: 125829743","ohos_id_text_paragraph_margin_xs: 125829744","ohos_id_elements_margin_vertical_l: 125829745","ohos_id_elements_margin_vertical_m: 125829746","ohos_id_elements_margin_horizontal_l: 125829747","ohos_id_elements_margin_horizontal_m: 125829748","ohos_id_text_line_space_s: 125829749","ohos_id_text_line_space_l: 125829750","ohos_fa_margin_normal_left: 125829859","ohos_fa_margin_normal_top: 125829860","ohos_fa_margin_normal_right: 125829861","ohos_fa_margin_normal_bottom: 125829862","ohos_fa_margin_small_left: 125829863","ohos_fa_margin_small_top: 125829864","ohos_fa_margin_small_right: 125829865","ohos_fa_margin_small_bottom: 125829866","ohos_fa_text_size_caption: 125829867","ohos_fa_text_size_body: 125829868","ohos_fa_text_size_headline: 125829869","ohos_fa_text_size_headline_large: 125829870","ohos_fa_text_size_huge: 125829871","ohos_id_checkbox_focus_paint_padding: 125829986","ohos_id_radio_focus_paint_padding: 125829987","ohos_id_search_divider_side_space: 125829988","ohos_id_search_icon_height: 125829989","ohos_id_search_icon_left_space: 125829990","ohos_id_search_icon_right_space: 125829991","ohos_id_search_button_space: 125829992","ohos_id_subtab_line_height: 125829994","ohos_id_subtab_line_gap: 125829995","ohos_id_subtab_horizontal_padding: 125829996","ohos_id_subtab_top_padding: 125829997","ohos_id_subtab_bottom_padding: 125829998","ohos_id_checkbox_focus_radius: 125829999","ohos_id_search_button_text_padding: 125830000","ohos_id_search_height: 125830023","ohos_id_picker_padding_horizontal: 125830026","ohos_id_picker_content_margin_vertical: 125830027","ohos_id_picker_divider_thickness: 125830028","ohos_id_picker_focus_border_width: 125830029","ohos_id_picker_focus_border_margin: 125830030","ohos_id_datapanel_circle_thickness: 125830031","ohos_id_elements_margin_horizontal_s: 125830032","ohos_id_slider_bubble_to_circle_center_distance: 125830033","ohos_id_slider_measure_content_default_width: 125830034","ohos_id_slider_outset_hot_block_shadow_width: 125830035","ohos_id_slider_inset_hot_block_shadow_width: 125830036","ohos_id_slider_focus_side_distance: 125830037","ohos_id_text_overlay_outer_handle_diameter: 125830039","ohos_id_text_overlay_inner_handle_diameter: 125830040","ohos_id_hover_animation_duration_default: 125830043","ohos_id_hover_to_press_animation_duration_default: 125830044","ohos_id_press_animation_duration_default: 125830045","ohos_id_tab_bar_shadow_margin_default: 125830046","ohos_id_tab_bar_gradient_width_default: 125830047","ohos_id_float_progress_border_width: 125830048","ohos_id_badge_border_width: 125830049","ohos_id_menu_title_height: 125830050","ohos_id_calendar_top_padding: 125830099","ohos_id_calendar_column_space: 125830100","ohos_id_calendar_week_height: 125830101","ohos_id_calendar_day_height: 125830102","ohos_id_calendar_week_width: 125830103","ohos_id_calendar_day_width: 125830104","ohos_id_calendar_week_and_day_space: 125830105","ohos_id_calendar_five_row_space: 125830106","ohos_id_calendar_six_row_space: 125830107","ohos_id_calendar_gregorian_height: 125830108","ohos_id_calendar_work_state_width: 125830109","ohos_id_video_control_bar_play_width: 125830110","ohos_id_video_control_bar_play_height: 125830111","ohos_id_video_control_bar_play_padding_left: 125830112","ohos_id_video_control_bar_play_padding_top: 125830113","ohos_id_video_control_bar_play_padding_right: 125830114","ohos_id_video_control_bar_play_padding_bottom: 125830115","ohos_id_video_control_bar_current_time_width: 125830116","ohos_id_video_control_bar_current_time_height: 125830117","ohos_id_video_control_bar_current_time_padding_left: 125830118","ohos_id_video_control_bar_current_time_padding_top: 125830119","ohos_id_video_control_bar_current_time_padding_right: 125830120","ohos_id_video_control_bar_current_time_padding_bottom: 125830121","ohos_id_video_control_bar_progress_width: 125830122","ohos_id_video_control_bar_progress_height: 125830123","ohos_id_video_control_bar_progress_padding_left: 125830124","ohos_id_video_control_bar_progress_padding_top: 125830125","ohos_id_video_control_bar_progress_padding_right: 125830126","ohos_id_video_control_bar_progress_padding_bottom: 125830127","ohos_id_video_control_bar_total_time_width: 125830128","ohos_id_video_control_bar_total_time_height: 125830129","ohos_id_video_control_bar_total_time_padding_left: 125830130","ohos_id_video_control_bar_total_time_padding_top: 125830131","ohos_id_video_control_bar_total_time_padding_right: 125830132","ohos_id_video_control_bar_total_time_padding_bottom: 125830133","ohos_id_video_control_bar_full_screen_width: 125830134","ohos_id_video_control_bar_full_screen_height: 125830135","ohos_id_video_control_bar_full_screen_padding_left: 125830136","ohos_id_video_control_bar_full_screen_padding_top: 125830137","ohos_id_video_control_bar_full_screen_padding_right: 125830138","ohos_id_video_control_bar_full_screen_padding_bottom: 125830139","ohos_id_video_control_bar_text_font_size: 125830141","ohos_id_dialog_button_padding_bottom: 125830220","ohos_id_dialog_single_button_padding_start: 125830221","ohos_id_dialog_single_button_padding_end: 125830222","ohos_id_dialog_muti_button_padding_start: 125830223","ohos_id_dialog_muti_button_padding_end: 125830224","ohos_id_dialog_muti_button_padding_horizontal: 125830225","ohos_id_dialog_muti_button_padding_vertical: 125830226","ohos_id_password_style_height: 125830231","ohos_id_button_corner_radius: 125830243","ohos_id_button_font_size: 125830246","ohos_id_button_font_weight: 125830247","ohos_id_button_min_width: 125830248","ohos_id_button_height: 125830249","ohos_id_button_download_height: 125830250","ohos_id_button_horizontal_padding: 125830251","ohos_id_button_vertical_padding: 125830252","ohos_id_button_min_font_size: 125830253","ohos_id_button_text_max_lines: 125830254","ohos_id_min_circle_button_diameter: 125830255","ohos_id_min_circle_button_icon_size: 125830256","ohos_id_min_circle_button_padding: 125830257","ohos_id_max_circle_button_diameter: 125830258","ohos_id_max_circle_button_icon_size: 125830259","ohos_id_max_circle_button_padding: 125830260","ohos_id_button_download_font_size: 125830262","ohos_id_button_progress_diameter: 125830263","ohos_id_button_inner_padding: 125830264","ohos_id_video_control_bar_background_alpha: 125830267","ohos_id_counter_title_font_size: 125830270","ohos_id_camera_buffer_width: 125830271","ohos_id_camera_buffer_height: 125830272","ohos_id_picker_select_option_min_font_size: 125830275","ohos_id_picker_normal_option_min_font_size: 125830276","ohos_id_picker_focus_option_font_size: 125830277","ohos_id_picker_focus_option_weight: 125830279","ohos_id_picker_title_font_size: 125830280","ohos_id_picker_button_font_size: 125830282","ohos_id_picker_popup_radius: 125830284","ohos_id_picker_popup_padding: 125830285","ohos_id_picker_popup_padding_bottom: 125830286","ohos_id_picker_show_option_count: 125830287","ohos_id_picker_show_buttons: 125830288","ohos_id_picker_focus_radius: 125830290","ohos_id_picker_option_width: 125830291","ohos_id_picker_select_option_height: 125830292","ohos_id_picker_normal_option_height: 125830293","ohos_id_picker_option_padding: 125830294","ohos_id_picker_jump_interval: 125830295","ohos_id_picker_column_margin: 125830296","ohos_id_picker_select_option_radius: 125830298","ohos_id_picker_focus_option_radius: 125830300","ohos_id_picker_button_width: 125830301","ohos_id_picker_button_height: 125830302","ohos_id_picker_button_top_padding: 125830303","ohos_id_picker_title_bottom_padding: 125830304","ohos_id_picker_time_splitter: 125830306","ohos_id_picker_select_divider_spacing: 125830307","ohos_id_picker_select_gradient_height: 125830309","ohos_id_picker_column_fixed_width: 125830310","ohos_id_checkbox_size: 125830314","ohos_id_checkbox_hotzone_padding: 125830315","ohos_id_checkbox_default_size: 125830316","ohos_id_checkbox_need_focus: 125830317","ohos_id_checkbox_inactive_background_solid: 125830318","ohos_id_checkbox_border_width: 125830319","ohos_id_checkbox_stroke_width: 125830320","ohos_id_checkbox_shadow_width: 125830322","ohos_id_switch_pattern_width: 125830323","ohos_id_switch_pattern_height: 125830324","ohos_id_switch_hotzone_horizontal_padding: 125830325","ohos_id_switch_hotzone_vertical_padding: 125830326","ohos_id_switch_aspect_ratio: 125830327","ohos_id_switch_inactive_background_solid: 125830328","ohos_id_switch_default_width: 125830329","ohos_id_switch_default_height: 125830330","ohos_id_switch_need_focus: 125830331","ohos_id_switch_border_width: 125830332","ohos_id_switch_pattern_shadow_width: 125830334","ohos_id_radio_size: 125830335","ohos_id_radio_hotzone_padding: 125830336","ohos_id_radio_default_size: 125830337","ohos_id_radio_inner_size_ratio: 125830338","ohos_id_radio_need_focus: 125830339","ohos_id_radio_inactive_background_solid: 125830340","ohos_id_radio_border_width: 125830341","ohos_id_radio_shadow_width: 125830343","ohos_id_dialog_buttonwithcontent_padding: 125830345","ohos_id_navigation_bar_height: 125830350","ohos_id_navigation_bar_height_emphasize: 125830351","ohos_id_navigation_bar_menu_zone_size: 125830352","ohos_id_navigation_bar_menu_icon_size: 125830353","ohos_id_navigation_bar_logo_icon_size: 125830354","ohos_id_navigation_bar_default_padding_end: 125830356","ohos_id_navigation_bar_menu_item_padding: 125830357","ohos_id_navigation_bar_title_min_padding: 125830358","ohos_id_navigation_bar_most_menu_item_count_in_bar: 125830359","ohos_id_swiper_indicator_size: 125830360","ohos_id_swiper_indicator_selected_size: 125830361","ohos_id_swiper_indicator_mask: 125830362","ohos_id_swiper_indicator_point_padding: 125830363","ohos_id_swiper_indicator_start_end_padding: 125830364","ohos_id_swiper_indicator_press_padding: 125830365","ohos_id_swiper_indicator_press_point_padding: 125830366","ohos_id_swiper_indicator_press_size: 125830367","ohos_id_swiper_indicator_hover_size: 125830368","ohos_id_swiper_indicator_hotzone_size: 125830369","ohos_id_swiper_indicator_disabled: 125830370","ohos_id_swiper_animation_curve: 125830371","ohos_id_swiper_animation_opacity: 125830372","ohos_id_marquee_font_size: 125830373","ohos_id_popup_text_font_size: 125830377","ohos_id_progress_thickness: 125830378","ohos_id_progress_default_width: 125830379","ohos_id_progress_ring_thickness: 125830380","ohos_id_progress_default_diameter: 125830381","ohos_id_progress_scale_number: 125830382","ohos_id_progress_scale_width: 125830383","ohos_id_progress_stroke_width: 125830384","ohos_id_progress_scale_default_diameter: 125830385","ohos_id_progress_moon_diameter: 125830386","ohos_id_progress_loading_move_ratio: 125830387","ohos_id_progress_loading_ring_radius: 125830388","ohos_id_progress_loading_orbit_radius: 125830389","ohos_id_progress_loading_comet_tail_len: 125830390","ohos_id_progress_bubble_radius: 125830391","ohos_id_progress_bubble_diameter: 125830392","ohos_id_progress_button_download_height: 125830393","ohos_id_toast_padding_horizontal: 125830407","ohos_id_toast_padding_vertical: 125830408","ohos_id_toast_content_max_width: 125830409","ohos_id_toast_content_min_width: 125830410","ohos_id_toast_content_min_height: 125830411","ohos_id_toast_text_font_weight: 125830412","ohos_id_toast_bottom: 125830413","ohos_id_toast_margin: 125830414","ohos_id_toast_text_min_font_size: 125830415","ohos_id_toast_text_max_lines: 125830416","ohos_id_text_font_size: 125830417","ohos_id_rating_start_num: 125830418","ohos_id_rating_score: 125830419","ohos_id_rating_mini_score: 125830420","ohos_id_rating_step_size: 125830421","ohos_id_rating_padding_vertical: 125830422","ohos_id_rating_big_width: 125830423","ohos_id_rating_big_height: 125830424","ohos_id_rating_mini_width: 125830425","ohos_id_rating_mini_height: 125830426","ohos_id_rating_designed_start_aspect_ratio: 125830427","ohos_id_rating_focus_border_width: 125830428","ohos_id_scroll_bar_shape_mode: 125830429","ohos_id_scroll_bar_normal_width: 125830430","ohos_id_scroll_bar_active_width: 125830431","ohos_id_scroll_bar_min_height: 125830432","ohos_id_scroll_bar_min_dynamic_height: 125830433","ohos_id_scroll_bar_reserved_height: 125830434","ohos_id_scroll_bar_touch_width: 125830435","ohos_id_dialog_padding_actions_left: 125830437","ohos_id_dialog_padding_actions_top: 125830438","ohos_id_dialog_padding_actions_right: 125830439","ohos_id_dialog_padding_actions_bottom: 125830440","ohos_id_textfield_padding_horizontal: 125830441","ohos_id_textfield_padding_vertical: 125830442","ohos_id_textfield_height: 125830443","ohos_id_textfield_font_weight: 125830444","ohos_id_textfield_border_radius: 125830445","ohos_id_textfield_disable_opacity_ratio: 125830446","ohos_id_textfield_over_hide_length: 125830447","ohos_id_textfield_cursor_radius: 125830448","ohos_id_textfield_need_fade: 125830449","ohos_id_textfield_icon_size: 125830450","ohos_id_textfield_icon_hot_zone_size: 125830451","ohos_id_textfield_show_ellipsis: 125830452","ohos_id_textfield_error_spacing: 125830453","ohos_id_textfield_error_is_inner: 125830454","ohos_id_textfield_error_border_width: 125830455","ohos_id_textfield_error_font_weight: 125830456","ohos_id_textfield_count_font_weight: 125830457","ohos_id_textfield_over_count_font_weight: 125830458","ohos_id_search_default_height: 125830459","ohos_id_search_icon_size: 125830460","ohos_id_search_close_icon_size: 125830461","ohos_id_search_close_icon_hot_zone_horizontal: 125830462","ohos_id_search_text_field_padding_left: 125830463","ohos_id_search_text_field_padding_right: 125830464","ohos_id_search_font_weight: 125830465","ohos_id_search_text_field_border_radius: 125830466","ohos_id_search_block_right_shade: 125830467","ohos_id_text_overlay_menu_border_width: 125830469","ohos_id_text_overlay_menu_border_style: 125830470","ohos_id_text_overlay_menu_padding_left: 125830471","ohos_id_text_overlay_menu_padding_top: 125830472","ohos_id_text_overlay_menu_padding_right: 125830473","ohos_id_text_overlay_menu_padding_bottom: 125830474","ohos_id_text_overlay_menu_spacing_with_text: 125830475","ohos_id_text_overlay_menu_button_width: 125830476","ohos_id_text_overlay_menu_button_height: 125830477","ohos_id_text_overlay_button_text_font_weight: 125830478","ohos_id_text_overlay_menu_button_padding_left: 125830479","ohos_id_text_overlay_menu_button_padding_top: 125830480","ohos_id_text_overlay_menu_button_padding_right: 125830481","ohos_id_text_overlay_menu_button_padding_bottom: 125830482","ohos_id_dialog_padding_min: 125830489","ohos_id_dialog_padding_mid: 125830490","ohos_id_dialog_frame_start: 125830491","ohos_id_dialog_frame_end: 125830492","ohos_id_dialog_scale_start: 125830493","ohos_id_dialog_scale_end: 125830494","ohos_id_dialog_opacity_start: 125830495","ohos_id_dialog_opacity_end: 125830496","ohos_id_dialog_animation_duration_in: 125830499","ohos_id_dialog_animation_duration_out: 125830500","ohos_id_dialog_translate: 125830501","ohos_id_dialog_divider_width: 125830502","ohos_id_dialog_divider_height: 125830503","ohos_id_dialog_divider_padding_horizon: 125830504","ohos_id_dialog_divider_padding_vertical: 125830505","ohos_id_dialog_padding_left_adjust: 125830508","ohos_id_dialog_padding_bottom_adjust: 125830509","ohos_id_button_title_padding_vertical: 125830510","ohos_id_dialog_title_text_max_lines: 125830511","ohos_id_dialog_title_text_font_size_min: 125830512","ohos_id_select_option_show_count: 125830516","ohos_id_select_itself_rrect_size: 125830517","ohos_id_select_popup_border_width: 125830518","ohos_id_select_popup_shadow_width: 125830519","ohos_id_select_popup_rrect_size: 125830520","ohos_id_select_popup_min_width: 125830521","ohos_id_select_is_tv: 125830522","ohos_id_select_popup_spacing_horizontal: 125830523","ohos_id_select_popup_spacing_vertical: 125830524","ohos_id_select_popup_spacing_content: 125830525","ohos_id_outset_block_size: 125830529","ohos_id_outset_block_hot_region_size: 125830530","ohos_id_outset_track_thickness: 125830531","ohos_id_inset_track_thickness: 125830532","ohos_id_inset_block_size: 125830533","ohos_id_inset_block_hot_region_size: 125830534","ohos_id_marker_size: 125830535","ohos_id_tip_font_size: 125830536","ohos_id_tip_text_padding_size: 125830537","ohos_id_label_padding: 125830538","ohos_id_tab_padding: 125830539","ohos_id_tab_gradient_width: 125830540","ohos_id_tab_default_height: 125830541","ohos_id_tab_default_width: 125830542","ohos_id_active_indicator_width: 125830543","ohos_id_active_indicator_min_width: 125830544","ohos_id_active_indicator_padding: 125830545","ohos_id_focus_indicator_padding: 125830546","ohos_id_default_loading_distance: 125830547","ohos_id_default_refreshing_distance: 125830548","ohos_id_default_max_distance: 125830549","ohos_id_default_progress_diameter: 125830550","ohos_id_default_showtime_distance: 125830551","ohos_id_card_border_radius: 125830552","ohos_id_gradient_width: 125830553","ohos_id_scroll_distance: 125830555","ohos_id_chain_min_space: 125830557","ohos_id_chain_max_space: 125830558","ohos_id_chain_conductivity: 125830559","ohos_id_chain_intensity: 125830560","ohos_id_chain_stiffness: 125830561","ohos_id_chain_damping: 125830562","ohos_id_click_alpha_begin: 125830563","ohos_id_click_alpha_end: 125830564","ohos_id_click_scale: 125830565","ohos_id_focus_scale: 125830566","ohos_id_focus_scale_large: 125830567","ohos_id_focus_scale_middle: 125830568","ohos_id_focus_scale_little: 125830569","ohos_id_focus_opacity_large: 125830570","ohos_id_focus_opacity_middle: 125830571","ohos_id_focus_opacity_little: 125830572","ohos_id_focus_animation_duration: 125830573","ohos_id_click_animation_duration: 125830574","ohos_id_item_size: 125830575","ohos_id_padding_in_percent: 125830576","ohos_id_group_image_size: 125830577","ohos_id_calendar_focused_area_radius: 125830578","ohos_id_work_state_horizontal_moving_distance: 125830579","ohos_id_work_state_vertical_moving_distance: 125830580","ohos_id_work_state_center_adjustment: 125830583","ohos_id_day_yaxis_offset: 125830584","ohos_id_lunar_day_yaxis_offset: 125830585","ohos_id_underscore_xaxis_offset: 125830586","ohos_id_underscore_yaxis_offset: 125830587","ohos_id_schedule_marker_xaxis_offset: 125830588","ohos_id_schedule_marker_yaxis_offset: 125830589","ohos_id_touch_circle_stroke_width: 125830590","ohos_id_lunar_height: 125830591","ohos_id_underscore_width: 125830592","ohos_id_underscore_length: 125830593","ohos_id_schedule_marker_radius: 125830594","ohos_id_arrow_height_width: 125830595","ohos_id_card_calendar_button_height_width: 125830596","ohos_id_card_calendar_title_font_size: 125830597","ohos_id_card_calendar_top_padding: 125830599","ohos_id_card_calendar_week_height: 125830600","ohos_id_card_calendar_week_day_height_width: 125830601","ohos_id_card_calendar_focus_area_radius: 125830602","ohos_id_card_calendar_week_font_size: 125830603","ohos_id_card_calendar_day_font_size: 125830604","ohos_id_card_calendar_gregorian_height: 125830605","ohos_id_card_calendar_lunar_font_size: 125830606","ohos_id_card_calendar_week_day_row_space: 125830607","ohos_id_card_calendar_daily_five_row_space: 125830608","ohos_id_boundary_col_offset: 125830609","ohos_id_card_blur_radius: 125830612","ohos_id_toggle_text_font_size: 125830622","ohos_id_toggle_text_font_weight: 125830623","ohos_id_toggle_height: 125830624","ohos_id_toggle_padding_horizontal: 125830625","ohos_id_toggle_padding_vertical: 125830626","ohos_id_toggle_disable_alpha: 125830627","ohos_id_clock_default_size: 125830628","ohos_id_datapanel_thickness: 125830629","ohos_id_datapanel_height: 125830630","ohos_id_datapanel_width: 125830631","ohos_id_datapanel_trackshadow_offsetx: 125830632","ohos_id_datapanel_trackshadow_offsety: 125830633","ohos_id_badge_message_count: 125830634","ohos_id_badge_position: 125830635","ohos_id_badge_show_message: 125830636","ohos_id_piece_height: 125830637","ohos_id_piece_text_lines: 125830638","ohos_id_piece_font_weight: 125830639","ohos_id_piece_padding_horizontal: 125830640","ohos_id_piece_padding_vertical: 125830641","ohos_id_piece_icon_size: 125830642","ohos_id_piece_interval: 125830643","ohos_id_calendar_lunar_font_size: 125830652","ohos_id_qrcode_type: 125830653","ohos_id_qrcode_size: 125830654","ohos_id_stepper_text_fontweight: 125830655","ohos_id_stepper_text_fontsize_min: 125830656","ohos_id_stepper_text_max_lines: 125830657","ohos_id_stepper_progress_diameter: 125830658","ohos_id_stepper_arrow_width_diameter: 125830659","ohos_id_stepper_arrow_height_diameter: 125830660","ohos_id_stepper_button_pressed_height: 125830661","ohos_id_stepper_control_height: 125830662","ohos_id_stepper_control_padding: 125830663","ohos_id_toolbar_text_fontsize: 125830664","ohos_id_toolbar_text_min_fontsize: 125830665","ohos_id_toolbar_item_icon_size: 125830666","ohos_id_toolbar_item_padding_icon_left: 125830667","ohos_id_toolbar_item_padding_icon_top: 125830668","ohos_id_toolbar_item_padding_icon_right: 125830669","ohos_id_toolbar_item_padding_icon_bottom: 125830670","ohos_id_toolbar_item_padding_text_left: 125830671","ohos_id_toolbar_item_padding_text_top: 125830672","ohos_id_toolbar_item_padding_text_right: 125830673","ohos_id_toolbar_item_padding_text_bottom: 125830674","ohos_id_toolbar_item_radius: 125830675","ohos_id_menu_blur_effect_saturation: 125830680","ohos_id_menu_blur_effect_brightness: 125830681","ohos_id_menu_blur_effect_radius: 125830682","ohos_id_menu_outer_border_width: 125830685","ohos_id_menu_outer_border_radius: 125830686","ohos_id_menu_inner_border_width: 125830688","ohos_id_menu_inner_border_radius: 125830689","ohos_id_blur_style_thin_radius: 125830692","ohos_id_blur_style_thin_saturation: 125830693","ohos_id_blur_style_thin_brightness: 125830694","ohos_id_blur_style_thin_radius_dark: 125830696","ohos_id_blur_style_thin_saturation_dark: 125830697","ohos_id_blur_style_thin_brightness_dark: 125830698","ohos_id_blur_style_regular_radius: 125830700","ohos_id_blur_style_regular_saturation: 125830701","ohos_id_blur_style_regular_brightness: 125830702","ohos_id_blur_style_regular_radius_dark: 125830704","ohos_id_blur_style_regular_saturation_dark: 125830705","ohos_id_blur_style_regular_brightness_dark: 125830706","ohos_id_blur_style_thick_radius: 125830708","ohos_id_blur_style_thick_saturation: 125830709","ohos_id_blur_style_thick_brightness: 125830710","ohos_id_blur_style_thick_radius_dark: 125830712","ohos_id_blur_style_thick_saturation_dark: 125830713","ohos_id_blur_style_thick_brightness_dark: 125830714","ohos_id_blur_style_background_thin_radius: 125830716","ohos_id_blur_style_background_thin_saturation: 125830717","ohos_id_blur_style_background_thin_brightness: 125830718","ohos_id_blur_style_background_thin_radius_dark: 125830720","ohos_id_blur_style_background_thin_saturation_dark: 125830721","ohos_id_blur_style_background_thin_brightness_dark: 125830722","ohos_id_blur_style_background_regular_radius: 125830724","ohos_id_blur_style_background_regular_saturation: 125830725","ohos_id_blur_style_background_regular_brightness: 125830726","ohos_id_blur_style_background_regular_radius_dark: 125830728","ohos_id_blur_style_background_regular_saturation_dark: 125830729","ohos_id_blur_style_background_regular_brightness_dark: 125830730","ohos_id_blur_style_background_thick_radius: 125830732","ohos_id_blur_style_background_thick_saturation: 125830733","ohos_id_blur_style_background_thick_brightness: 125830734","ohos_id_blur_style_background_thick_radius_dark: 125830736","ohos_id_blur_style_background_thick_saturation_dark: 125830737","ohos_id_blur_style_background_thick_brightness_dark: 125830738","ohos_id_blur_style_background_ultra_thick_radius: 125830740","ohos_id_blur_style_background_ultra_thick_saturation: 125830741","ohos_id_blur_style_background_ultra_thick_brightness: 125830742","ohos_id_blur_style_background_ultra_thick_radius_dark: 125830744","ohos_id_blur_style_background_ultra_thick_saturation_dark: 125830745","ohos_id_blur_style_background_ultra_thick_brightness_dark: 125830746","ohos_id_blur_style_component_ultra_thin_radius: 125830748","ohos_id_blur_style_component_ultra_thin_saturation: 125830749","ohos_id_blur_style_component_ultra_thin_brightness: 125830750","ohos_id_blur_style_component_ultra_thin_radius_dark: 125830752","ohos_id_blur_style_component_ultra_thin_saturation_dark: 125830753","ohos_id_blur_style_component_ultra_thin_brightness_dark: 125830754","ohos_id_blur_style_component_thin_radius: 125830756","ohos_id_blur_style_component_thin_saturation: 125830757","ohos_id_blur_style_component_thin_brightness: 125830758","ohos_id_blur_style_component_thin_radius_dark: 125830760","ohos_id_blur_style_component_thin_saturation_dark: 125830761","ohos_id_blur_style_component_thin_brightness_dark: 125830762","ohos_id_blur_style_component_regular_radius: 125830764","ohos_id_blur_style_component_regular_saturation: 125830765","ohos_id_blur_style_component_regular_brightness: 125830766","ohos_id_blur_style_component_regular_radius_dark: 125830768","ohos_id_blur_style_component_regular_saturation_dark: 125830769","ohos_id_blur_style_component_regular_brightness_dark: 125830770","ohos_id_blur_style_component_thick_radius: 125830772","ohos_id_blur_style_component_thick_saturation: 125830773","ohos_id_blur_style_component_thick_brightness: 125830774","ohos_id_blur_style_component_thick_radius_dark: 125830776","ohos_id_blur_style_component_thick_saturation_dark: 125830777","ohos_id_blur_style_component_thick_brightness_dark: 125830778","ohos_id_blur_style_component_ultra_thick_radius: 125830780","ohos_id_blur_style_component_ultra_thick_saturation: 125830781","ohos_id_blur_style_component_ultra_thick_brightness: 125830782","ohos_id_blur_style_component_ultra_thick_radius_dark: 125830784","ohos_id_blur_style_component_ultra_thick_saturation_dark: 125830785","ohos_id_blur_style_component_ultra_thick_brightness_dark: 125830786","ohos_id_shadow_default_xs_shadow: 125830801","ohos_id_shadow_default_xs_offset_x: 125830802","ohos_id_shadow_default_xs_offset_y: 125830803","ohos_id_shadow_default_sm_shadow: 125830804","ohos_id_shadow_default_sm_offset_x: 125830805","ohos_id_shadow_default_sm_offset_y: 125830806","ohos_id_shadow_default_md_shadow: 125830807","ohos_id_shadow_default_md_offset_x: 125830808","ohos_id_shadow_default_md_offset_y: 125830809","ohos_id_shadow_default_lg_shadow: 125830810","ohos_id_shadow_default_lg_offset_x: 125830811","ohos_id_shadow_default_lg_offset_y: 125830812","ohos_id_shadow_floating_sm_shadow: 125830813","ohos_id_shadow_floating_sm_offset_x: 125830814","ohos_id_shadow_floating_sm_offset_y: 125830815","ohos_id_shadow_floating_md_shadow: 125830816","ohos_id_shadow_floating_md_offset_x: 125830817","ohos_id_shadow_floating_md_offset_y: 125830818","ohos_id_shadow_default_xs_shadow_dark: 125830819","ohos_id_shadow_default_xs_offset_x_dark: 125830820","ohos_id_shadow_default_xs_offset_y_dark: 125830821","ohos_id_shadow_default_sm_shadow_dark: 125830822","ohos_id_shadow_default_sm_offset_x_dark: 125830823","ohos_id_shadow_default_sm_offset_y_dark: 125830824","ohos_id_shadow_default_md_shadow_dark: 125830825","ohos_id_shadow_default_md_offset_x_dark: 125830826","ohos_id_shadow_default_md_offset_y_dark: 125830827","ohos_id_shadow_default_lg_shadow_dark: 125830828","ohos_id_shadow_default_lg_offset_x_dark: 125830829","ohos_id_shadow_default_lg_offset_y_dark: 125830830","ohos_id_shadow_floating_sm_shadow_dark: 125830831","ohos_id_shadow_floating_sm_offset_x_dark: 125830832","ohos_id_shadow_floating_sm_offset_y_dark: 125830833","ohos_id_shadow_floating_md_shadow_dark: 125830834","ohos_id_shadow_floating_md_offset_x_dark: 125830835","ohos_id_shadow_floating_md_offset_y_dark: 125830836","alpha_primary: 125830887","alpha_secondary: 125830888","alpha_tertiary: 125830889","alpha_fourth: 125830890","alpha_fifth: 125830891","alpha_sixth: 125830892","alpha_disable: 125830893","alpha_90: 125830894","alpha_60: 125830895","alpha_40: 125830896","alpha_20: 125830897","alpha_10: 125830898","alpha_05: 125830899","corner_radius_none: 125830905","corner_radius_level1: 125830906","corner_radius_level2: 125830907","corner_radius_level3: 125830908","corner_radius_level4: 125830909","corner_radius_level5: 125830910","corner_radius_level6: 125830911","corner_radius_level7: 125830912","corner_radius_level8: 125830913","corner_radius_level9: 125830914","corner_radius_level10: 125830915","corner_radius_level11: 125830916","corner_radius_level12: 125830917","corner_radius_level16: 125830918","padding_level0: 125830919","padding_level1: 125830920","padding_level2: 125830921","padding_level3: 125830922","padding_level4: 125830923","padding_level5: 125830924","padding_level6: 125830925","padding_level7: 125830926","padding_level8: 125830927","padding_level9: 125830928","padding_level10: 125830929","padding_level11: 125830930","padding_level12: 125830931","padding_level16: 125830932","padding_level24: 125830933","padding_level32: 125830934","padding_level36: 125830935","margin_left: 125830936","margin_right: 125830937","margin_left_none: 125830938","margin_right_none: 125830939","border_none: 125830940","border_extra_small: 125830941","border_small: 125830942","border_medium: 125830943","border_larger: 125830944","border_extra_larger: 125830945","outline_none: 125830946","outline_extra_small: 125830947","outline_small: 125830948","outline_medium: 125830949","outline_larger: 125830950","outline_extra_larger: 125830951","font_weight_thin: 125830952","font_weight_ultralight: 125830953","font_weight_light: 125830954","font_weight_regular: 125830955","font_weight_medium: 125830956","font_weight_semibold: 125830957","font_weight_bold: 125830958","font_weight_heavy: 125830959","font_weight_black: 125830960","Display_L: 125830961","Display_M: 125830962","Display_S: 125830963","Title_L: 125830964","Title_M: 125830965","Title_S: 125830966","Subtitle_L: 125830967","Subtitle_M: 125830968","Subtitle_S: 125830969","Body_L: 125830970","Body_M: 125830971","Body_S: 125830972","Caption_L: 125830973","Caption_M: 125830974","Caption_S: 125830975","alert_container_max_width: 125831042","alert_container_shape: 125831043","alert_container_border_width: 125831044","alert_title_primary_height: 125831045","alert_title_padding_left: 125831046","alert_title_padding_top: 125831047","alert_title_padding_right: 125831048","alert_title_padding_bottom: 125831049","alert_title_secondary_height: 125831050","alert_button_horizontal_space: 125831051","alert_button_vertical_space: 125831052","alert_left_padding_horizontal: 125831053","alert_right_padding_horizontal: 125831054","alert_left_padding_vertical: 125831055","alert_right_padding_vertical: 125831056","interactive_disable: 125831067","alert_button_top_padding: 125831077","alert_button_bottom_padding_horizontal: 125831078","alert_button_bottom_padding_vertical: 125831079","alert_content_default_padding: 125831080","alert_divider_height: 125831081","alert_divider_width: 125831082","alert_button_style: 125831085","titlebar_title_primary_size: 125831093","titlebar_title_secondary_size: 125831094","titlebar_title_tertiary_size: 125831095","titlebar_title_tertiary_weight: 125831096","titlebar_subheader_size: 125831097","titlebar_subheader_weight: 125831098","titlebar_padding_left: 125831099","titlebar_padding_top: 125831100","titlebar_padding_right: 125831101","titlebar_padding_bottom: 125831102","titlebar_icon_background_space_horizontal: 125831103","titlebar_icon_padding_horizontal: 125831104","titlebar_title_margin_left: 125831105","titlebar_title_margin_right: 125831106","titlebar_icon_width: 125831107","titlebar_icon_height: 125831108","titlebar_icon_disable_alpha: 125831109","titlebar_icon_background_height: 125831110","titlebar_icon_background_width: 125831111","titlebar_icon_background_shape: 125831112","titlebar_icon_background_disable_alpha: 125831114","titlebar_default_height: 125831115","titlebar_emphasize_height: 125831116","titlebar_emphasize_twolines_height: 125831117","titlebar_icon_background_focus_outline_weight: 125831118","alignment_start: 125831122","alignment_center: 125831123","alignment_end: 125831124","alignment_justify: 125831125","alert_title_alignment: 125831126","ohos_id_none_block_hot_region_size: 125831128","ohos_id_none_track_thickness: 125831129","ohos_id_bottomtab_height: 125831140","ohos_id_width_border_small_button: 125831143","ohos_id_shadow_default_button: 125831145","ohos_id_shadow_focus_button: 125831146","ohos_id_scale_focus_button: 125831147","ohos_id_width_border_button: 125831148","ohos_id_textfield_underline_padding_horizontal: 125831168","ohos_id_textfield_underline_padding_vertical: 125831169","ohos_id_textfield_content_height: 125831170","ohos_id_default_shadow_none: 125831177","ohos_id_default_shadow_xs: 125831178","ohos_id_default_shadow_s: 125831179","ohos_id_default_shadow_m: 125831180","ohos_id_default_shadow_l: 125831181","ohos_id_floating_shadow_s: 125831182","ohos_id_floating_shadow_m: 125831183","ohos_id_dialog_background_shadow_on: 125831184","ohos_id_dialog_background_shadow_off: 125831185","dialog_divider_show: 125831202","ohos_id_dialog_maxsize_scale_landscape: 125831217","ohos_id_dialog_maxsize_scale_portrait: 125831218","ohos_id_dialog_scroll_flex_align: 125831219","ohos_id_dialog_column_measure_type: 125831220","ohos_id_picker_show_count_landscape: 125831221","ohos_id_picker_show_count_portrait: 125831222","ohos_id_dialog_alignment: 125831223","ohos_id_toast_content_limit_max_width: 125832714","ohos_min_edge_antialiasing: 125832727","ohos_id_badge_text_age_font_size: 125832732","ohos_id_badge_age_size: 125832733","ohos_id_badge_age_add_padding: 125832734","ohos_id_subtab_item_padding: 125832735","margin_level1: 125832739","margin_level2: 125832740","margin_level3: 125832741","ohos_id_big_font_size_scale: 125832742","ohos_id_large_font_size_scale: 125832743","ohos_id_max_font_size_scale: 125832744","ohos_id_big_dialog_width: 125832745","ohos_id_max_dialog_width: 125832746","ohos_id_ideal_size: 125832747","ohos_id_dialog_property_top: 125832748","ohos_id_dialog_property_bottom: 125832749","ohos_id_text_property_left: 125832750","ohos_id_text_property_bottom: 125832751","ohos_id_text_property_right: 125832752","ohos_id_progress_aging_font_scale: 125832757","ohos_id_progress_aging_padding_height: 125832758","breakpoint_horizontal_s: 125832765","breakpoint_horizontal_m: 125832766","button_aging_normal_padding: 125832770","button_aging_small_padding: 125832771","control_button_margin_top_small: 125832772","control_button_width_small: 125832773","control_button_height_small: 125832774","dialog_font_size: 125832776","button_aging_text_max_lines: 125833499","sidebarcontainer_width: 125833507","dialog_title_max_scale_aging: 125833508","dialog_default_scale_aging: 125833509","dialog_content_max_scale_aging: 125833520","dialog_content_landscape_max_scale_aging: 125833521","dialog_button_max_scale_aging: 125833522","dialog_button_landscape_max_scale_aging: 125833523","ohos_id_normal_font_size_scale: 125833524","option_min_height: 125833525","dialog_min_scale_aging: 125833528","dialog_landscape_boundary_aging: 125833529","sub_tab_bar_big_font_size_scale: 125833530","sub_tab_bar_large_font_size_scale: 125833531","sub_tab_bar_max_font_size_scale: 125833532","sub_tab_bar_origin_font_size_scale: 125833684","sub_tab_bar_left_right_margin: 125833685","sub_tab_bar_indicatorstyle_margin_top: 125833686","dialog_double_border_enable: 125833687","dialog_outer_border_width: 125833689","dialog_inner_border_width: 125833691","popup_outer_border_width: 125833692","popup_inner_border_width: 125833693","popup_border_radius: 125833694","toast_double_border_enable: 125833695","toast_outer_border_width: 125833697","toast_inner_border_width: 125833699","toast_padding_new: 125833700","toast_padding_old: 125833701","toast_border_radius_new: 125833702","toast_border_radius_old: 125833703","ohos_id_radius_default_lg_shadow: 125833724","ohos_id_radius_floating_sm_shadow: 125833725","ohos_id_radius_floating_md_shadow: 125833726","ohos_id_radius_default_lg_shadow_dark: 125833727","ohos_id_radius_floating_sm_shadow_dark: 125833728","ohos_id_radius_floating_md_shadow_dark: 125833729","ohos_id_radius_default_xs_shadow_dark: 125833730","ohos_id_radius_default_sm_shadow_dark: 125833731","ohos_id_radius_default_md_shadow_dark: 125833732","menu_item_child_min_height_token: 125833734","menu_item_vertical_padding_token: 125833735","menu_item_group_title_text_font_size_token: 125833736","menu_default_radius_token: 125833737","menu_border_radius_token: 125833738","inner_border_radius_token: 125833739","sub_tab_bar_third_large_font_size_scale: 125833933","window_radius_small: 125834002","window_shadow_config: 125834004","window_outline_width: 125834005","window_border_width: 125834006","button_container_border_radius_small: 125834232","button_container_border_radius_normal: 125834233","window_close_icon_width: 125834266","sheet_title_text_horizontal_margin: 125834267","window_close_radius: 125834268","ohos_id_blur_style_component_ultra_thick_window_radius: 125834271","ohos_id_blur_style_component_ultra_thick_window_saturation: 125834272","ohos_id_blur_style_component_ultra_thick_window_brightness: 125834273","ohos_id_blur_style_component_ultra_thick_window_radius_dark: 125834274","ohos_id_blur_style_component_ultra_thick_window_saturation_dark: 125834275","ohos_id_blur_style_component_ultra_thick_window_brightness_dark: 125834276","text_overlay_menu_show_shortcut: 125834813","page_transition_amplitude_ratio: 125834824"]
export const string: string[] = ["ohos_id_text_font_family_regular: 125829694","ohos_id_text_font_family_medium: 125829695","ohos_lab_answer_call: 125829751","ohos_desc_answer_call: 125829752","ohos_lab_internet: 125829753","ohos_desc_internet: 125829754","ohos_lab_modify_audio_settings: 125829755","ohos_desc_modify_audio_settings: 125829756","ohos_lab_read_calendar: 125829757","ohos_desc_read_calendar: 125829758","ohos_lab_read_call_log: 125829759","ohos_desc_read_call_log: 125829760","ohos_lab_read_cell_messages: 125829761","ohos_desc_read_cell_messages: 125829762","ohos_lab_read_contacts: 125829763","ohos_desc_read_contacts: 125829764","ohos_lab_get_telephony_state: 125829765","ohos_desc_get_telephony_state: 125829766","ohos_lab_read_messages: 125829767","ohos_desc_read_messages: 125829768","ohos_lab_receive_mms: 125829769","ohos_desc_receive_mms: 125829770","ohos_lab_receive_sms: 125829771","ohos_desc_receive_sms: 125829772","ohos_lab_receive_wap_messages: 125829773","ohos_desc_receive_wap_messages: 125829774","ohos_lab_microphone: 125829775","ohos_desc_microphone: 125829776","ohos_lab_send_messages: 125829777","ohos_desc_send_messages: 125829778","ohos_lab_write_calendar: 125829779","ohos_desc_write_calendar: 125829780","ohos_lab_write_call_log: 125829781","ohos_desc_write_call_log: 125829782","ohos_lab_write_contacts: 125829783","ohos_desc_write_contacts: 125829784","ohos_lab_distributed_datasync: 125829785","ohos_desc_distributed_datasync: 125829786","ohos_lab_manage_voicemail: 125829787","ohos_desc_manage_voicemail: 125829788","ohos_lab_location_in_background: 125829789","ohos_desc_location_in_background: 125829790","ohos_lab_location: 125829791","ohos_desc_location: 125829792","ohos_lab_media_location: 125829793","ohos_desc_media_location: 125829794","ohos_lab_get_network_info: 125829795","ohos_desc_get_network_info: 125829796","ohos_lab_place_call: 125829797","ohos_desc_place_call: 125829798","ohos_lab_camera: 125829799","ohos_desc_camera: 125829800","ohos_lab_set_network_info: 125829801","ohos_desc_set_network_info: 125829802","ohos_lab_read_media: 125829803","ohos_desc_read_media: 125829804","ohos_lab_write_media: 125829805","ohos_desc_write_media: 125829806","ohos_lab_distributed_virtualdevice: 125829807","ohos_desc_distributed_virtualdevice: 125829808","ohos_lab_enroll_biometric: 125829809","ohos_desc_enroll_biometric: 125829810","ohos_lab_access_biometric: 125829811","ohos_desc_access_biometric: 125829812","ohos_lab_access_biometric_internal: 125829813","ohos_desc_access_biometric_internal: 125829814","ohos_lab_reset_biometric_lockout: 125829815","ohos_desc_reset_biometric_lockout: 125829816","ohos_lab_set_time: 125829817","ohos_desc_set_time: 125829818","ohos_lab_set_time_zone: 125829819","ohos_desc_set_time_zone: 125829820","ohos_lab_download_session_manager: 125829821","ohos_desc_download_session_manager: 125829822","ohos_lab_commonevent_sticky: 125829823","ohos_desc_commonevent_sticky: 125829824","ohos_lab_manage_local_accounts: 125829825","ohos_desc_manage_local_accounts: 125829826","ohos_lab_interact_across_local_accounts: 125829827","ohos_desc_interact_across_local_accounts: 125829828","ohos_lab_vibrate: 125829829","ohos_desc_vibrate: 125829830","ohos_lab_activity_motion: 125829831","ohos_desc_activity_motion: 125829832","ohos_lab_read_health_data: 125829833","ohos_desc_read_health_data: 125829834","ohos_lab_connect_ime_ability: 125829835","ohos_desc_connect_ime_ability: 125829836","ohos_lab_set_wallpaper: 125829837","ohos_desc_set_wallpaper: 125829838","ohos_lab_get_wallpaper: 125829839","ohos_desc_get_wallpaper: 125829840","ohos_lab_interact_across_local_accounts_extension: 125829841","ohos_desc_interact_across_local_accounts_extension: 125829842","ohos_lab_accelerometer: 125829843","ohos_desc_accelerometer: 125829844","ohos_lab_gyroscope: 125829845","ohos_desc_gyroscope: 125829846","ohos_lab_set_telephony_state: 125829847","ohos_desc_set_telephony_state: 125829848","ohos_lab_bundle_active_info: 125829849","ohos_desc_bundle_active_info: 125829850","ohos_lab_publish_agent_reminder: 125829851","ohos_desc_publish_agent_reminder: 125829852","ohos_lab_control_task_sync_animator: 125829853","ohos_desc_control_task_sync_animator: 125829854","ohos_lab_notification_controller: 125829855","ohos_desc_notification_controller: 125829856","ohos_app_name: 125829857","ohos_lab_approximately_location: 125829966","ohos_desc_approximately_location: 125829967","ohos_lab_read_imagevideo: 125829968","ohos_desc_read_imagevideo: 125829969","ohos_lab_read_audio: 125829970","ohos_desc_read_audio: 125829971","ohos_lab_read_document: 125829972","ohos_desc_read_document: 125829973","ohos_lab_write_imagevideo: 125829974","ohos_desc_write_imagevideo: 125829975","ohos_lab_write_audio: 125829976","ohos_desc_write_audio: 125829977","ohos_lab_write_document: 125829978","ohos_desc_write_document: 125829979","ohos_lab_read_whole_calendar: 125829980","ohos_desc_read_whole_calendar: 125829981","ohos_lab_write_whole_calendar: 125829982","ohos_desc_write_whole_calendar: 125829983","ohos_lab_app_tracking_consent: 125830024","ohos_desc_app_tracking_consent: 125830025","ohos_lab_get_installed_bundle_list: 125830052","ohos_desc_get_installed_bundle_list: 125830053","ohos_id_text_location_button_description_current_location: 125830076","ohos_id_text_location_button_description_add_location: 125830077","ohos_id_text_location_button_description_select_location: 125830078","ohos_id_text_location_button_description_share_location: 125830079","ohos_id_text_location_button_description_send_location: 125830080","ohos_id_text_location_button_description_locating: 125830081","ohos_id_text_location_button_description_location: 125830082","ohos_id_text_location_button_description_send_current_location: 125830083","ohos_id_text_location_button_description_relocation: 125830084","ohos_id_text_location_button_description_punch_in: 125830085","ohos_id_text_location_button_description_current_position: 125830086","ohos_id_text_paste_button_description_paste: 125830156","ohos_id_text_save_button_description_download: 125830157","ohos_id_text_save_button_description_download_file: 125830158","ohos_id_text_save_button_description_save: 125830159","ohos_id_text_save_button_description_save_image: 125830160","ohos_id_text_save_button_description_save_file: 125830161","ohos_id_text_save_button_description_download_and_share: 125830162","ohos_id_text_save_button_description_receive: 125830163","ohos_id_text_save_button_description_continue_to_receive: 125830164","ohos_lab_access_bluetooth: 125830206","ohos_desc_access_bluetooth: 125830207","ohos_id_draggable_default: 125830214","ohos_lab_get_phone_numbers: 125830227","ohos_desc_get_phone_numbers: 125830228","ohos_id_input_method_settings: 125830236","ohos_lab_read_pasteboard: 125830237","ohos_desc_read_pasteboard: 125830238","ohos_id_divider_shadow_enable_default: 125830239","ohos_id_text_camera_input: 125830241","ohos_id_section_unfocus_effect_enable_default: 125830273","ohos_id_sheet_type: 125830312","ohos_id_multiple_dialog_display: 125830313","ohos_id_expand_display: 125830346","ohos_lab_read_write_download_directory: 125830483","ohos_desc_read_write_download_directory: 125830484","ohos_lab_read_write_documents_directory: 125830485","ohos_desc_read_write_documents_directory: 125830486","ohos_lab_read_write_desktop_directory: 125830487","ohos_desc_read_write_desktop_directory: 125830488","ohos_id_day_font_weight: 125830581","ohos_id_work_state_font_weight: 125830582","ohos_id_popup_double_border_enable_default: 125830619","ohos_id_menu_bg_blur_effect_enable_default: 125830679","ohos_id_menu_double_border_enable_default: 125830684","ohos_grid_edit_title_edit: 125830843","ohos_grid_edit_title_chanel: 125830844","ohos_grid_edit_subtitle_sort: 125830845","ohos_grid_edit_subtitle_add: 125830846","ohos_network_not_connected: 125830847","ohos_network_connected_unstable: 125830848","ohos_unstable_connect_server: 125830849","ohos_custom_network_tips_left: 125830850","ohos_set_network: 125830851","ohos_lab_access_nearlink: 125830884","ohos_desc_access_nearlink: 125830885","ohos_show_password_directly: 125831086","ohos_id_text_fadeout_enable_default: 125831120","ohos_id_list_fadeout_enable_default: 125831121","ohos_textfield_show_handle: 125831139","ohos_id_text_save_button_description_save_to_gallery: 125831203","ohos_add_form_to_desktop: 125832726","ohos_id_sheet_bottom: 125832738","ohos_id_calendar_picker_dialog_button_transparent: 125832753","ohos_id_calendar_picker_dialog_divider_transparent: 125832754","ohos_id_menu_has_filter: 125832755","icon_back: 125832767","icon_cancel: 125832768","icon_save: 125832769","menu_normal_layout: 125833495","menu_normal_placement: 125833496","menu_back_blur: 125833497","form_disable_time_limit: 125833498","textfield_accessibility_property_clear: 125833510","textfield_accessibility_show_password: 125833526","textfield_accessibility_hide_password: 125833527","ohos_toolbar_more: 125833704","slider_accessibility_selected: 125833934","slider_accessibility_unselected: 125833935","slider_accessibility_unselectedDesc: 125833936","slider_accessibility_disabledDesc: 125833937","general_confirm: 125833942","general_last_step: 125833943","general_next_step: 125833944","last_updated_time: 125833945","general_refresh: 125833946","general_copy: 125833947","general_cut: 125833948","general_select_all: 125833949","general_translate: 125833950","general_share: 125833951","general_search: 125833952","general_open: 125833953","general_close: 125833954","general_start: 125833955","general_skip: 125833956","general_maximized_display: 125833957","general_exit_maximized_display: 125833958","general_full_screen_display: 125833959","general_exit_full_screen_display: 125833960","general_window_left_screen: 125833961","general_window_right_screen: 125833962","general_text_clock_week: 125833963","general_display_lunar_calendar: 125833964","general_calendar_week: 125833965","general_year: 125833966","general_month: 125833967","general_day: 125833968","general_pre_month: 125833969","general_pre_year: 125833970","general_next_year: 125833971","general_next_month: 125833972","general_today: 125833973","pass_point: 125833974","general_paste: 125833975","general_cancel: 125833976","general_more: 125833977","stepper_back: 125833978","stepper_next: 125833979","res_writting_tool_bundle_name: 125833980","res_writting_tool_ability_name: 125833981","textfield_show_password: 125833988","textfield_hide_password: 125833989","textfield_show_password_button: 125833990","textfield_hide_password_button: 125833991","textfield_has_showed_password: 125833992","textfield_has_hidden_password: 125833993","ai_write_menu_name: 125833994","calendar_picker_mon: 125833995","calendar_picker_tue: 125833996","calendar_picker_wed: 125833997","calendar_picker_thu: 125833998","calendar_picker_fri: 125833999","calendar_picker_sat: 125834000","calendar_picker_sun: 125834001","save_button_description_export_to_gallery: 125834011","save_button_description_quick_save_to_gallery: 125834012","save_button_description_quick_resave_to_gallery: 125834013","textfield_accessibility_clear: 125834014","ohos_lab_short_term_write_imagevideo: 125834220","ohos_desc_short_term_write_imagevideo: 125834221","ohos_id_notification_restore_volume_tittle: 125834223","ohos_id_notification_restore_volume_context: 125834224","ohos_id_notification_restore_volume_button: 125834225","ohos_id_notification_increase_volume_tittle: 125834226","ohos_id_notification_increase_volume_context: 125834227","ohos_id_notification_increase_volume_button: 125834228","res_writting_tool_is_support: 125834230","delete_used_for_accessibility_text: 125834251","request_agent_download_success: 125834260","request_agent_download_fail: 125834261","request_agent_upload_file: 125834262","request_agent_upload_success: 125834263","request_agent_upload_fail: 125834264","ohos_lab_custom_screen_capture: 125834269","ohos_desc_custom_screen_capture: 125834270","request_agent_download_file: 125834287","text_overlay_menu_copy: 125834814","text_overlay_menu_paste: 125834815","text_overlay_menu_select_all: 125834816","text_overlay_menu_cut: 125834817","res_menu_translate_is_support: 125834867","open_beauty: 125834887","close_beauty: 125834888","title_adjust_beauty: 125834889","summary_closed_beauty: 125834890","summary_opened_beauty: 125834891","camera_device_eject_lab: 125835150","camera_device_eject_desc: 125835151","camera_device_block_confirm: 125835152","camera_device_block_lab: 125835153","camera_device_block_desc: 125835154","camera_use_continue: 125835155"]
export const media: string[] = ["ohos_app_icon: 125829858","ohos_ic_back: 125829938","ohos_ic_public_ok: 125830038","ohos_ic_public_arrow_left: 125830087","ohos_ic_public_arrow_right: 125830088","ohos_ic_public_arrow_up: 125830089","ohos_ic_public_arrow_down: 125830090","ohos_ic_public_cut: 125830091","ohos_ic_public_copy: 125830092","ohos_ic_public_paste: 125830093","ohos_ic_public_select_all: 125830094","ohos_ic_public_share: 125830095","ohos_ic_public_translate_c2e: 125830096","ohos_ic_public_search_filled: 125830097","ohos_save_button_filled: 125830154","ohos_save_button_line: 125830155","ohos_ic_bottomsheet_close: 125830167","ohos_ic_public_clock: 125830169","ohos_ic_public_email: 125830170","ohos_ic_public_express: 125830171","ohos_ic_public_flight: 125830172","ohos_ic_public_location: 125830173","ohos_ic_public_phone: 125830174","ohos_ic_public_text: 125830175","ohos_ic_public_web: 125830176","ohos_ic_public_device_matebook: 125830208","ohos_ic_public_device_pad: 125830209","ohos_ic_public_device_smartscreen: 125830210","ohos_ic_public_device_watch: 125830211","ohos_ic_public_device_phone: 125830212","ohos_ic_eco_hop: 125830213","ohos_ic_public_more: 125830217","ohos_ic_public_add: 125830229","ohos_ic_public_minus: 125830230","ohos_ic_public_cast_stream: 125830232","ohos_ic_public_cast_mirror: 125830233","ohos_ic_public_camera: 125830242","ohos_ic_public_cancel: 125830347","ohos_ic_public_hang_up: 125830395","ohos_ic_public_pause: 125830396","ohos_ic_public_play_last: 125830397","ohos_ic_public_play_next: 125830398","ohos_ic_public_play: 125830399","ohos_ic_public_restore: 125830400","ohos_ic_public_sound_off: 125830401","ohos_ic_public_sound: 125830402","ohos_ic_public_video_off: 125830403","ohos_ic_public_video: 125830404","ohos_ic_public_voice_off: 125830405","ohos_ic_public_voice: 125830406","ohos_ic_public_albums: 125830650","ohos_ic_public_scan: 125830651","ohos_ic_public_add_norm_filled: 125830839","ohos_ic_public_remove_filled: 125830840","ohos_ic_public_edit: 125830841","ohos_ic_public_fail: 125830842","ohos_ic_public_close: 125830852","ohos_ic_compnent_titlebar_back: 125830859","ohos_ic_compnent_titlebar_back_filled: 125830860","ohos_ic_public_cancel_filled: 125830861","ohos_ic_public_drawer_close: 125830862","ohos_ic_public_drawer_close_filled: 125830863","ohos_ic_public_drawer_open: 125830864","ohos_ic_public_drawer_open_filled: 125830865","ohos_ic_public_input_cancel: 125830866","ohos_ic_normal_white_grid_zip: 125830867","ohos_ic_normal_white_grid_xml: 125830868","ohos_ic_normal_white_grid_xls: 125830869","ohos_ic_normal_white_grid_wma: 125830870","ohos_ic_normal_white_grid_wav: 125830871","ohos_ic_normal_white_grid_video: 125830872","ohos_ic_normal_white_grid_txt: 125830873","ohos_ic_normal_white_grid_pdf: 125830874","ohos_ic_normal_white_grid_mp3: 125830875","ohos_ic_normal_white_grid_image: 125830876","ohos_ic_normal_white_grid_html: 125830877","ohos_ic_normal_white_grid_folder: 125830878","ohos_ic_normal_white_grid_flac: 125830879","ohos_ic_normal_white_grid_doc: 125830880","ohos_ic_normal_white_grid_compress: 125830881","ohos_ic_normal_white_grid_calendar: 125830882","ohos_ic_normal_white_grid_audio: 125830883","ohos_icon_mask_svg: 125830886","ohos_ic_public_remove: 125831084","ohos_user_auth_icon_face: 125831150","ohos_user_auth_icon_fingerprint: 125831151","ohos_ic_public_device_bluetooth_filled: 125831209","ohos_ic_public_device_earphone_filled: 125831210","ohos_ic_public_device_earpiece_filled: 125831211","ohos_ic_public_device_speaker_filled: 125831212","ohos_ic_public_device_sound_filled: 125831213","ohos_ic_public_device_soundx_filled: 125831214","ohos_ic_public_device_smartscreen_filled: 125831215","ohos_ic_public_ok_filled: 125831216","save_button_picture: 125833494","clone_app_badge_1: 125833500","clone_app_badge_2: 125833501","clone_app_badge_3: 125833502","clone_app_badge_4: 125833503","clone_app_badge_5: 125833504","ic_public_worldclock_filled: 125833519","ic_public_ai_write: 125833982","Copy_Drag: 125833983","Copy_One_Drag: 125833984","Forbid_Drag: 125833985","Forbid_One_Drag: 125833986","Move_Drag: 125833987","safe_volume_notification_icon: 125834229","ic_public_camera_beauty: 125834892"]
export const symbol: string[] = ["ohos_wifi: 125830644","ohos_trash: 125830645","ohos_trash_circle: 125830646","ohos_photo: 125830647","ohos_folder_badge_plus: 125830648","ohos_lungs: 125830649","ohos_mic: 125830854","ohos_circle: 125830855","ohos_lock: 125830856","ohos_star: 125830857","ohos_arrow_up: 125830858","heart_slash: 125831130","speaker_slash: 125831131","repeat_1: 125831132","checkmark_circle: 125831133","play_circle_fill: 125831134","speaker_plus: 125831135","speaker_wave_3: 125831136","rays: 125831171","kidswatch_fill: 125831172","play_circle: 125831173","pause_circle: 125831174","play_fill: 125831175","pause: 125831176","doc_plaintext_fill_1: 125831243","checkmark_circle_fill_1: 125831244","alarm_fill_1: 125831245","stopwatch_2: 125831246","worldclock_fill_2: 125831247","timer_circle_fill: 125831248","house_fill_1: 125831249","person_crop_circle_fill_1: 125831250","auditorium: 125831251","ranking_fill: 125831252","slider_horizontal_2_1: 125831253","indent_right: 125831254","indentation_left: 125831255","frame_overlay_rectify: 125831256","sdcard_fill: 125831257","sdcard_1: 125831258","simcard_fill: 125831259","simcard_3: 125831260","checkmark_square_fill: 125831261","search_things: 125831262","circle_and_arrow_down: 125831263","circle_and_arrow_down_fill: 125831264","undo: 125831265","redo: 125831266","histogram: 125831267","ranking: 125831268","arrowshape_right_fill: 125831269","card: 125831270","lightbulb_1: 125831271","onehand: 125831272","organ_donors: 125831273","switch_majuscule_fill: 125831274","switch_majuscule: 125831275","lock_filled_arrow_counterclockwise: 125831276","skip_silence_fill: 125831277","skip_silence: 125831278","arrow_triangle_merge: 125831279","alarm_1: 125831280","calendar_1: 125831281","download: 125831282","upload: 125831283","worldclock_fill_1: 125831284","a_4d_vibration: 125831285","drop_bottomrighthalf_inset_filled_1: 125831286","square_and_square: 125831287","square_and_arrow_down_1: 125831288","arrow_down_circle_badge_vip_circle_filled: 125831289","download_1: 125831290","warning: 125831291","line_below_arrowtriangle_up_circle_fill: 125831292","line_below_arrowtriangle_up_fill: 125831293","stopwatch_fill_1: 125831294","stopwatch_1: 125831295","arrow_left_arrow_right: 125831296","arrow_uturn_down: 125831297","artistic_virtualization: 125831298","camera_AF: 125831299","camera_portrait_efferts: 125831300","checkered_magnifyingglass: 125831301","chevron_up_circle: 125831302","circle_grid_2x2: 125831303","crop_video_fill: 125831304","cut_in: 125831305","peripheral_device: 125831306","dot: 125831307","efficient_video_format: 125831308","exclamationmark_shield_fill: 125831309","fingerjoint_screenshot_slash: 125831310","hand_raised_hexagon_fill: 125831311","hdr: 125831312","lock_text_rectangle_portrait: 125831313","celiakeyboard_elevate: 125831314","fuzzy_input: 125831315","input_mode: 125831316","square_stack_3d_fill: 125831317","intelligent: 125831318","key_induction: 125831319","puzzle: 125831320","resolution_video: 125831321","sd_card: 125831322","shutter_photo: 125831323","sport: 125831324","puzzle_fill: 125831325","lock_badge_child: 125831326","main_auxiliary_screen_slash: 125831327","main_auxiliary_screen: 125831328","master_ai: 125831329","motion_stabilization_slash: 125831330","motion_stabilization: 125831331","movie_fill: 125831332","movie_slash: 125831333","movie: 125831334","network_acceleration: 125831335","performance: 125831336","person_shield_1: 125831337","plus_shield_badge_1: 125831338","plus_shield_badge_2: 125831339","arrowshape_3_triangle_path: 125831340","template_fill: 125831341","template: 125831342","time_lapse: 125831343","video_speed: 125831344","visibility: 125831345","visual_accessibility: 125831346","watermark_font: 125831347","hash: 125831348","heart_square_stack_fill: 125831349","beidou_satellite_circle_fill: 125831350","multiscreen_collaboration: 125831351","frozen_rain: 125831352","hidisk: 125831353","harassment_interception: 125831354","vertically: 125831355","ellipsis_message_1: 125831356","clipboard_sharing: 125831357","hand_point_up_tap_fill_1: 125831358","triangleshape_left: 125831359","circle_2: 125831360","square_1: 125831361","phone_badge_satellite_fill: 125831362","circle_on_circle_fill: 125831363","rectangle_split_3x1: 125831364","service_management: 125831365","square_link_square: 125831366","highlighter_line: 125831367","ad_rectangle_fill: 125831368","adjustment: 125831369","AI_best_expression: 125831370","AI_expand: 125831371","AI_flower: 125831372","AI_retouch: 125831373","AI_straighten: 125831374","AI: 125831375","architecture: 125831376","architecture_filled: 125831377","basket: 125831378","blur_bar: 125831379","shutter_photo_1: 125831380","arrow_left_and_arrow_left: 125831381","car_filled_below_drop_3: 125831382","Celia: 125831383","message_badge_checkmark_fill: 125831384","delete_left_fill: 125831385","cloud_snow: 125831386","dot_grid_1x2_circle: 125831387","xmark_circle_video: 125831388","fade: 125831389","envelope_badge_adiowaves_fill: 125831390","flame_fill_1: 125831391","full_screen_fill: 125831392","hi_vison: 125831393","ballpointpen_tip_crop_circle_fill: 125831394","ballpointpen_tip_crop_circle: 125831395","dot_radiowaves_left_and_right_badge_person_filled: 125831396","emergency_shelter: 125831397","circle_circle_badge_checkmark_shield_filled: 125831398","compass: 125831399","page_turning: 125831400","rectangle_3_group: 125831401","square_2_below_rectangle: 125831402","doc_rectify: 125831403","photo_self_portrait: 125831404","telephoto_macro: 125831405","partial_screenshot: 125831406","screen_share_fill: 125831407","screen_share: 125831408","signal_check: 125831409","statusbar_cast: 125831410","icing_and_snow_road: 125831411","icing_road: 125831412","Interconnection_ic_multiscreen_collaboration: 125831413","layout_left_right: 125831414","layout_up_down: 125831415","line_message_fill: 125831416","merges: 125831417","message_badge_gearshape: 125831418","message_badge_plus_fill: 125831419","mic_circle_fill: 125831420","mic_circle_filled: 125831421","mobiledata_and_cloud: 125831422","moon_circle_fill: 125831423","moon_slash_circle: 125831424","more: 125831425","multiscreen: 125831426","paperplan_right_2: 125831427","pc_ic_tab_index: 125831428","person_badge_checkmark: 125831429","person_badge_envelope: 125831430","person_badge_nosign_fill: 125831431","person_badge_nosign: 125831432","person_filled_viewfinder: 125831433","person_square_fill: 125831434","phone_badge_video: 125831435","picture_on_square: 125831436","pin_vertical_fill: 125831437","power_circle_fill: 125831438","line_below_T: 125831439","sort: 125831440","rainfall_circle_fill: 125831441","red_packets_fill: 125831442","red_packets: 125831443","screen_rotation: 125831444","scroll_horizontally: 125831445","scroll_vertical: 125831446","simcard_fill_1_and_simcard_fill_2: 125831447","snapshot_fill: 125831448","snapshot: 125831449","space_enlarge: 125831450","space_reduction: 125831451","speaker_wave_3_slash: 125831452","square_stack_3d: 125831453","staroflife: 125831454","stickers: 125831455","sunprotection: 125831456","sunsetglow_fill: 125831457","templates: 125831458","text_and_t: 125831459","thumbnails: 125831460","typhoon_fill: 125831461","telescope_fill: 125831462","UV_sun_max: 125831463","video_badge_adiowaves_message_fill: 125831464","virtual_background: 125831465","wand_and_stars_fill: 125831466","water_waves: 125831467","wave_3_left: 125831468","wechat: 125831469","wireless_projection_1: 125831470","X_bottom: 125831471","yuansign_moneybag: 125831472","doc_text_badge_clock: 125831473","fullscreen: 125831474","doc_text_badge_person: 125831475","portrait_3_fill: 125831476","portrait_fill: 125831477","portrait: 125831478","capture_smiles: 125831479","guardian: 125831480","plus: 125831481","plus_circle: 125831482","plus_circle_fill: 125831483","minus: 125831484","minus_circle: 125831485","minus_circle_fill: 125831486","xmark: 125831487","xmark_circle: 125831488","xmark_circle_fill: 125831489","checkmark: 125831490","checkmark_square: 125831491","checkmark_circle_fill: 125831492","gearshape: 125831493","gearshape_fill: 125831494","sun_min: 125831495","sun_max: 125831496","sun_max_fill: 125831497","sun_circle: 125831498","share: 125831499","magnifyingglass: 125831500","curve_magnifyingglass: 125831501","exclamationmark_magnifyingglass: 125831502","speaker: 125831503","speaker_fill: 125831504","speaker_slash_fill: 125831505","speaker_badge_exclamationmark_fill: 125831506","speaker_wave_1: 125831507","speaker_wave_1_fill: 125831508","speaker_wave_2: 125831509","speaker_wave_2_fill: 125831510","speaker_wave_3_fill: 125831511","speaker_minus: 125831512","bell: 125831513","bell_fill: 125831514","bell_slash: 125831515","bell_slash_fill: 125831516","bell_badge_local: 125831517","bell_badge_clock: 125831518","mic_filled_and_mic: 125831519","star: 125831520","star_fill: 125831521","star_circle: 125831522","star_circle_fill: 125831523","star_badge_list: 125831524","star_badge_clock: 125831525","flashlight_off: 125831526","flashlight_off_fill: 125831527","flashlight_on: 125831528","flashlight_on_fill: 125831529","light_flashlight_on_fill: 125831530","airplane: 125831531","airplane_fill: 125831532","house: 125831533","house_fill: 125831534","paperplane: 125831535","paperplane_fill: 125831536","brush: 125831537","brush_fill: 125831538","shirt: 125831539","moon: 125831540","moon_fill: 125831541","trash: 125831542","trash_fill: 125831543","heart: 125831544","heart_fill: 125831545","heart_circle_fill: 125831546","pin: 125831547","pin_fill: 125831548","pin_slash: 125831549","funnel: 125831550","arrow_clockwise: 125831551","arrow_clockwise_circle_fill: 125831552","arrow_2_circlepath: 125831553","arrow_counterclockwise_clock: 125831554","rectangle_portrait_rotate: 125831555","rectangle_portrait_wave_2: 125831556","dock_rectangle_portrait: 125831557","square_grid_2x2: 125831558","square_fill_grid_2x2: 125831559","square_grid_2x2_checkmark_topleft_filled: 125831560","battery: 125831561","battery_fill: 125831562","rectangle_and_line_horizontal_and_rectangle_filled: 125831563","rectangle_filled_and_line_horizontal_and_rectangle: 125831564","rectangle_portrait_on_rectangle_portrait_filled: 125831565","rectangle_portrait_filled_on_rectangle_portrait: 125831566","rectangle_and_square: 125831567","rectangle_grid_2x1: 125831568","rectangle_stack: 125831569","uiwindow_split_2x1_fill: 125831570","uiwindow_split_1x2: 125831571","rectangle_lefthalf_inset_filled: 125831572","rectangle_righthalf_inset_filled: 125831573","rectangle_inset_filled: 125831574","rectangle_dowmhalf_inset_filled: 125831575","rectangle_uphalf_inset_filled: 125831576","rotate_left: 125831577","rectangle_4_group_fill: 125831578","home_key: 125831579","power: 125831580","slider_horizontal_2: 125831581","externaldrive: 125831582","externaldrive_fill: 125831583","externaldrive_3: 125831584","externaldrive_fill_3: 125831585","save: 125831586","save_fill: 125831587","checkmark_square_on_square: 125831588","checkmark_square_on_square_fill: 125831589","tv_and_rectangle_portrait: 125831590","magnifyingglass_tv: 125831591","TV_tv: 125831592","TV_tv_fill: 125831593","flag: 125831594","flag_fill: 125831595","barcode_viewfinder: 125831596","line_viewfinder: 125831597","circle_viewfinder: 125831598","chevron_down_2_viewfinder: 125831599","qrcode: 125831600","clean: 125831601","clean_fill: 125831602","fast: 125831603","fast_fill: 125831604","bookmark: 125831605","bookmark_fill: 125831606","star_bookmark_fill: 125831607","bookmark_on_bookmark: 125831608","circle_filled_and_circle: 125831609","circle_on_circle: 125831610","circle_on_circle_filled: 125831611","go: 125831612","globe_badge_message: 125831613","discover: 125831614","discover_fill: 125831615","discover_circle_fill: 125831616","plus_square_on_square: 125831617","plus_square_on_square_fill: 125831618","plus_square_dashed_on_square: 125831619","cut: 125831620","rectangle_and_cut: 125831621","eraser_line: 125831622","eraser_line_fill: 125831623","square_and_pencil: 125831624","square_and_pencil_fill: 125831625","rectangle_portrait_badge_plus: 125831626","character: 125831627","a_square_fill: 125831628","character_and_list: 125831629","character_viewfinder: 125831630","character_arrow_clockwise: 125831631","underline: 125831632","italic: 125831633","bold: 125831634","textformat: 125831635","h1_square: 125831636","t_square_dashed: 125831637","character_textbox: 125831638","t_circle: 125831639","paintbrush_pointed: 125831640","paintbrush_pointed_filled_circle: 125831641","paintbrush_pointed_circle_fill: 125831642","paintbrush_pointed_waveform: 125831643","paintbrush_pointed_arrow_right: 125831644","paintbrush_pointed_line: 125831645","paintbrush_pointed_square: 125831646","paintbrush_pointed_circle: 125831647","pencil_waveform: 125831648","pencil_line: 125831649","list_bullet: 125831650","list_square: 125831651","list_number: 125831652","list_letter: 125831653","list_checkmask: 125831654","text_and_plus: 125831655","text_and_clock: 125831656","text_and_arrow_down: 125831657","text_and_arrow_up: 125831658","textstyle: 125831659","text_alignleft: 125831660","text_aligncenter: 125831661","text_alignright: 125831662","line: 125831663","line_2_horizontal: 125831664","line_3_horizontal: 125831665","line_4_horizontal: 125831666","circle_on_square: 125831667","triangleshape: 125831668","triangleshape_fill: 125831669","square: 125831670","rectangle: 125831671","smallcircle: 125831672","circle: 125831673","oval: 125831674","custom_shape: 125831675","smallcircle_filled_circle: 125831676","waveform: 125831677","drop: 125831678","drop_fill: 125831679","crop_rotate: 125831680","dot_circle: 125831681","circle_circle: 125831682","circle_lefthalf_inset_filled: 125831683","circle_righthalf_inset_filled: 125831684","drop_bottomrighthalf_inset_filled: 125831685","circle_square: 125831686","hand_stars: 125831687","hand_draw: 125831688","hand_slash: 125831689","hand_scribble: 125831690","cloud_and_stars: 125831691","pen_tip: 125831692","ballpointpen_tip: 125831693","pencil_tip: 125831694","marker_tip: 125831695","highlighter_tip: 125831696","graffiti_tip_crop_circle: 125831697","Laserpen: 125831698","scribble: 125831699","wand_and_stars: 125831700","circle_dashed: 125831701","square_square: 125831702","circle_inset_filled: 125831703","water_waves_slash: 125831704","line_arrowtriangle_2_inward: 125831705","trapezoid_and_line_horizontal: 125831706","trapezoid_and_line_vertical: 125831707","arrow_up_and_down_square_portrait: 125831708","aspectratio: 125831709","paintpalette: 125831710","paintpalette_fill: 125831711","plus_magnifyingglass: 125831712","dot_grid_1x2: 125831713","dot_grid_2x2: 125831714","rectangle_ratio_9_to_16: 125831715","rectangle_ratio_9_to_21: 125831716","rectangle_ratio_2_to_3: 125831717","rectangle_ratio_3_to_4: 125831718","rectangle_ratio_1_to_1: 125831719","rectangle_ratio_4_to_3: 125831720","rectangle_ratio_3_to_2: 125831721","rectangle_ratio_21_to_9: 125831722","rectangle_ratio_16_to_9: 125831723","voice_convert_text: 125831724","ai_edit: 125831725","translate: 125831726","textformat_size_square: 125831727","textformat_size_square_fill: 125831728","line_below_character: 125831729","line_below_character_slash: 125831730","character_shadow: 125831731","line_below_seal: 125831732","rename: 125831733","camera_badge_adiowaves: 125831734","camera_badge_adiowaves_fill: 125831735","video_badge_adiowaves: 125831736","video_badge_adiowaves_fill: 125831737","video: 125831738","video_fill: 125831739","dot_video: 125831740","dot_video_fill: 125831741","arrow_down_left_video_fill: 125831742","arrow_up_right_video_fill: 125831743","video_missed: 125831744","xmark_video: 125831745","envelope: 125831746","envelope_fill: 125831747","envelope_badge_adiowaves: 125831748","envelope_open: 125831749","envelope_open_fill: 125831750","envelope_badge_dot: 125831751","envelope_badge_arrow_left: 125831752","envelope_badge_arrow_right: 125831753","envelope_on_envelope_badge_arrow_left: 125831754","recordingtape: 125831755","recordingtape_rectangle: 125831756","recordingtape_rectangle_fill: 125831757","mic: 125831758","mic_fill: 125831759","mic_slash_fill: 125831760","mic_badge_recordingtape: 125831761","mic_badge_xmark: 125831762","mic_badge_exclamationmark: 125831763","mic_circle: 125831764","waveform_circle: 125831765","message: 125831766","message_fill: 125831767","wave_3_right_message: 125831768","dot_2_message: 125831769","line_message: 125831770","ellipsis_message: 125831771","ellipsis_message_fill: 125831772","message_on_message: 125831773","message_on_message_fill: 125831774","star_message: 125831775","exclamationmark_message: 125831776","exclamationmark_message_middle_bottom: 125831777","waveform_bubble: 125831778","ellipsis_bubble: 125831779","satellite: 125831780","phone_doc: 125831781","phone_arrow_down_left_fill: 125831782","phone_arrow_up_right_fill: 125831783","phone_missed: 125831784","phone_below_xmark: 125831785","phone_badge_nosign: 125831786","phone_down_fill: 125831787","phone: 125831788","phone_fill: 125831789","phone_badge_waveform_1: 125831790","phone_badge_waveform_2: 125831791","phone_badge_waveform_2_fill: 125831792","phone_badge_waveform_3: 125831793","phone_badge_1: 125831794","phone_badge_1_fill: 125831795","phone_list: 125831796","phone_list_fill: 125831797","phone_badge_ai: 125831798","phone_badge_ai_fill: 125831799","phone_shield: 125831800","phone_shield_fill: 125831801","phone_badge_video_fill: 125831802","phone_badge_shield_checkered: 125831803","phone_badge_shield_checkered_fill: 125831804","phone_badge_2: 125831805","phone_badge_2_fill: 125831806","a_5G: 125831807","simcard: 125831808","simcard_1: 125831809","simcard_2: 125831810","exclamationmark_simcard: 125831811","sdcard: 125831812","rcs_below_arrow_down_left: 125831813","rcs_below_arrow_up_right: 125831814","rcs_below_missed: 125831815","rcs_below_xmark: 125831816","at: 125831817","dial: 125831818","keyboard_circle: 125831819","list_bullet_circle: 125831820","info_rectangle_portrait: 125831821","hi_waveform_2: 125831822","hi_waveform_2_square_fill: 125831823","pause_circle_fill: 125831824","play: 125831825","play_square: 125831826","play_circle_badge_bolt: 125831827","playpause_fill: 125831828","backward_end_fill: 125831829","forward_end_fill: 125831830","gobackward_10: 125831831","goforward_10: 125831832","gobackward_15: 125831833","goforward_15: 125831834","gobackward_30: 125831835","goforward_30: 125831836","shuffle: 125831837","repeat: 125831838","list_xmark: 125831839","text_badge_repeat: 125831840","text_badge_repeat_1: 125831841","text_badge_shuffle: 125831842","person_wave_3: 125831843","person_line_2: 125831844","person_badge_waveform: 125831845","person_xmark: 125831846","person_plus_wave_2: 125831847","person_plus_wave_2_fill: 125831848","music: 125831849","music_fill: 125831850","music_badge_wave_2: 125831851","slider_vertical_3_1: 125831852","record_circle: 125831853","music_note_radiowaves_left_and_right: 125831854","music_note_list: 125831855","music_note_list_fill: 125831856","music_note_list_square: 125831857","music_note_circle: 125831858","music_note_phone: 125831859","music_note_icolud: 125831860","music_note_mic: 125831861","music_note_badge_wave_2_phone: 125831862","play_circle_badge_music_note: 125831863","waveform_1: 125831864","waveform_cut: 125831865","waveform_arrow_2_circlepath: 125831866","waveform_tv: 125831867","play_gobackward: 125831868","mic_filled_and_circle: 125831869","opticaldisc: 125831870","opticaldisc_badge_heart: 125831871","opticaldisc_badge_diamond: 125831872","service: 125831873","headphones: 125831874","waveform_headphones: 125831875","waveform_headphone_slash: 125831876","waveform_path_circle: 125831877","music_mic_stars: 125831878","music_mic: 125831879","calendar_badge_play: 125831880","sq_circle: 125831881","order_play: 125831882","reverse_order: 125831883","identify_song: 125831884","add_songlist: 125831885","remove_songlist: 125831886","list_interrupt: 125831887","local_song: 125831888","songbook: 125831889","speed_multiple: 125831890","speed_50percent: 125831891","speed_75percent: 125831892","speed_100percent: 125831893","speed_125percent: 125831894","speed_150percent: 125831895","speed_200percent: 125831896","folder: 125831897","folder_fill: 125831898","folder_circle: 125831899","arrow_right_folder_circle: 125831900","arrow_right_folder_fill: 125831901","waveform_folder_fill: 125831902","folder_badge_eye: 125831903","folder_badge_plus: 125831904","folder_badge_arrow_left: 125831905","doc_plaintext_and_folder: 125831906","form: 125831907","form_fill: 125831908","doc: 125831909","doc_text: 125831910","doc_text_fill: 125831911","doc_text_on_doc_text: 125831912","doc_plaintext: 125831913","doc_plaintext_fill: 125831914","doc_text_badge_nosign: 125831915","doc_text_badge_magnifyingglass: 125831916","doc_text_badge_checkmark: 125831917","doc_text_magnifyingglass_fill: 125831918","doc_text_badge_rectangle_portrait: 125831919","text_below_photo_rectangle_portrait: 125831920","rectangle_text_rectangle_portrait: 125831921","doc_text_badge_arrow_up: 125831922","checkmark_clipboard: 125831923","checkmark_clipboard_fill: 125831924","text_clipboard: 125831925","list_bullet_square: 125831926","list_bullet_square_fill: 125831927","printer: 125831928","quill: 125831929","doc_zipper: 125831930","doc_zipper_fill: 125831931","slider_vertical_3: 125831932","swap: 125831933","paperclip: 125831934","book: 125831935","book_pages: 125831936","book_pages_fill: 125831937","bookmark_book_fill: 125831938","text_book_closed: 125831939","bookmark_book_closed: 125831940","bookmark_notepad: 125831941","bookmark_notepad_fill: 125831942","notepad_badge_heart: 125831943","notepad_badge_plus: 125831944","book_badge_speaker: 125831945","doc_plaintext_and_checkmark: 125831946","doc_plaintext_doc_plaintext_and_checkmark: 125831947","doc_plaintext_and_pencil: 125831948","doc_plaintext_and_pencil_star: 125831949","calendar_and_pencil: 125831950","en_doc_fill: 125831951","doc_filled_on_doc: 125831952","desktop: 125831953","desktop_fill: 125831954","text_dot_rectangle: 125831955","text_dot_rectangle_fill: 125831956","text_speaker_wave_rectangle: 125831957","square_text_rectangle: 125831958","list_square_bill: 125831959","pencil_rectangle_portrait_on_text: 125831960","foldline_screen: 125831961","book_closed_right_left: 125831962","book_closed_right_left_badge_plus: 125831963","book_closed_right_left_badge_checkmark: 125831964","eyes_glasses_below_hat: 125831965","eyes_glasses_below_hat_filled: 125831966","glasses_below_hat: 125831967","glasses_below_hat_filled: 125831968","dot_circle_on_line: 125831969","dot_circle_on_line_fill: 125831970","bluetooth: 125831971","bluetooth_slash: 125831972","bluetooth_arrowtriangle_2_inward: 125831973","bolt_waves_left_and_right: 125831974","dot_radiowaves_left_and_right: 125831975","link: 125831976","link_slash: 125831977","nfc: 125831978","nfc_fill: 125831979","bolt_1: 125831980","bolt_2: 125831981","bolt_3: 125831982","bolt_1_wave_2: 125831983","bolt_2_wave_2: 125831984","bolt_3_wave_2: 125831985","icloud_badge_arrow_2_circlepath: 125831986","line_below_icloud: 125831987","cloud_and_arrow_down: 125831988","arrow_up_icloud: 125831989","arrow_up_icloud_fill: 125831990","icloud: 125831991","icloud_slash: 125831992","icloud_slash_fill: 125831993","arrow_up_house: 125831994","arrow_up_house_fill: 125831995","headphones_badge_checkmark_shield_filled: 125831996","headphones_badge_checkmark_shield_filled_battery_filled: 125831997","headphones_battery_filled: 125831998","bluetooth_arrow_right_battery_filled: 125831999","mobiledata: 125832000","mobiledata_circle: 125832001","mobiledata_circle_fill: 125832002","hd_square_fill: 125832003","satellite_1: 125832004","signal_4g: 125832005","signal_5g: 125832006","hotspot: 125832007","airplayaudio: 125832008","airplayaudio_fill: 125832009","radiostation: 125832010","shareplay: 125832011","magnetic_sensor: 125832012","communicationsharing: 125832013","gyroscope: 125832014","superdevice: 125832015","superdevice_camera: 125832016","nearby_devices: 125832017","scanninglocal: 125832018","area: 125832019","disconnect: 125832020","screen_witching: 125832021","connection: 125832022","unconnection: 125832023","pad_and_iphone: 125832024","application_projection: 125832025","application_projection_fill: 125832026","wireless_projection: 125832027","mirror_projection: 125832028","phone_2: 125832029","phone_transmission_phone: 125832030","wifi_router: 125832031","wifi_router_fill: 125832032","wifi: 125832033","phone_1: 125832034","phone_fill_1: 125832035","pad: 125832036","matebook: 125832037","smartscreen: 125832038","pc: 125832039","foldablescreen: 125832040","smart_speaker: 125832041","smart_speaker_fill: 125832042","sound: 125832043","radiostation_1: 125832044","soundx: 125832045","soundx_2: 125832046","soundai: 125832047","soundai_2: 125832048","sound_cm530: 125832049","sound_cm530_2: 125832050","sound_cm510: 125832051","sound_cm510_2: 125832052","egretta: 125832053","skylark: 125832054","skylark_2: 125832055","earphone_case_01: 125832056","earphone_case_02: 125832057","earphone_case_03: 125832058","earphone_case_04: 125832059","earphone_case_05: 125832060","kidswatch: 125832061","watch: 125832062","watch_fit: 125832063","device_band: 125832064","glass: 125832065","battery_glass_fill: 125832066","earphone_roc: 125832067","earphone: 125832068","bluetooth_earphone: 125832069","mouse: 125832070","l_circle_fill: 125832071","r_circle_fill: 125832072","earphone_saga: 125832073","earphone_saga_circle: 125832074","earphone_mermaid: 125832075","earphone_mermaid_left: 125832076","earphone_mermaid_right: 125832077","earphone_otter: 125832078","earphone_otter_left: 125832079","earphone_otter_right: 125832080","earphone_shark: 125832081","earphone_shark_left: 125832082","earphone_shark_right: 125832083","earphone_h2: 125832084","earphone_h2_left: 125832085","earphone_h2_right: 125832086","earphone_hero: 125832087","earphone_hero_left: 125832088","earphone_hero_right: 125832089","earphone_walrus: 125832090","earphone_walrus_left: 125832091","earphone_walrus_right: 125832092","earphone_nile: 125832093","earphone_nile_fill: 125832094","gamecontroller: 125832095","radio: 125832096","hardware: 125832097","audiphonen: 125832098","keyboard: 125832099","keyboard_fill: 125832100","keyboard_square: 125832101","delete_left: 125832102","space_1: 125832103","keyboard_onehanded_left: 125832104","keyboard_onehanded_right: 125832105","keyboard_chevron_compact_up: 125832106","globe_and_keyboard: 125832107","globe_filled_and_keyboard: 125832108","translation: 125832109","translate_c2e: 125832110","translate_e2c: 125832111","keyboard_thumbmode: 125832112","keyboard_badge_gearshape: 125832113","keyboard_badge_globe: 125832114","keyboard_badge_handwritten: 125832115","keyboard_badge_zhuyin: 125832116","keyboard_badge_spell: 125832117","keyboard_badge_bihua: 125832118","keyboard_badge_wubi: 125832119","keyboard_badge_cangjie: 125832120","asterisk_rectangle_badge_handwritten: 125832121","plus_viewfinder: 125832122","traditional_square: 125832123","selector: 125832124","waveform_left_speaker_waveform_right: 125832125","text_bubble_left_2: 125832126","square_and_cut: 125832127","reverse_order_square: 125832128","swipeup_input: 125832129","unfold_reverse: 125832130","celiakeyboard_mechanical: 125832131","celiakeyboard_menu_icon_size: 125832132","magnify: 125832133","move: 125832134","person: 125832135","person_fill: 125832136","person_crop_circle_fill: 125832137","person_square: 125832138","person_badge_plus: 125832139","person_filled_badge_plus: 125832140","person_badge_heart: 125832141","person_badge_heart_fill: 125832142","person_2: 125832143","person_2_fill: 125832144","person_filled_2_badge_plus: 125832145","person_filled_2_badge_plus_fill: 125832146","hand_thumbsup: 125832147","hand_thumbsup_fill: 125832148","hand_thumbsdown: 125832149","hand_thumbsdown_fill: 125832150","hand_point_up_tap_fill: 125832151","hand_tap: 125832152","hand_tap_fill: 125832153","person_text_rectangle: 125832154","person_text_rectangle_fill: 125832155","person_line_turn_down_right_person: 125832156","person_line_turn_down_right_person_fill: 125832157","figure_arms_open: 125832158","figure_circle: 125832159","figure_run_viewfinder: 125832160","figure_figure_dress: 125832161","ear: 125832162","phone_and_hand: 125832163","face: 125832164","face_fill: 125832165","face_smiling: 125832166","face_smiling_fill: 125832167","face_sading: 125832168","face_sleeping: 125832169","face_sculpt: 125832170","local_and_figure_run: 125832171","local_and_figure_run_leave: 125832172","person_line_shield: 125832173","location_up: 125832174","location_up_fill: 125832175","location_north_up_right: 125832176","location_north_up_left: 125832177","location_north_up_right_and_circle: 125832178","location_north_up_right_and_circle_dotted: 125832179","local: 125832180","local_fill: 125832181","local_and_rectangle: 125832182","local_badge_plus: 125832183","local_badge_plus_fill: 125832184","local_badge_arrow_down: 125832185","local_badge_arrow_bolt: 125832186","plus_local: 125832187","map: 125832188","map_slash: 125832189","map_badge_local: 125832190","map_badge_plus: 125832191","doc_text_badge_local: 125832192","airplane_1: 125832193","airplane_fill_1: 125832194","flag_checkered: 125832195","parkingsign: 125832196","parkingsign_circle: 125832197","parkingsign_circle_badge_a: 125832198","etc_circle: 125832199","trafficlight: 125832200","signallamp: 125832201","position: 125832202","position_badge_exclamationmark: 125832203","mappin_and_rectangle: 125832204","latitude: 125832205","figure_walk: 125832206","figure_ride: 125832207","figure_roll: 125832208","figure_and_taxi: 125832209","person_2_badge_arrow_2_circlepath: 125832210","person_2_badge_flag: 125832211","tire: 125832212","road_lanes_badge_minus: 125832213","arrow_triangle_turn_up_right_diamond_fil: 125832214","point_bottomleft_forward_to_point_topright_scurvepath: 125832215","ferry_badge_minus: 125832216","ferry_fill: 125832217","tram_fill: 125832218","tram_badge_bell: 125832219","subway: 125832220","subway_fill: 125832221","monorail_fill: 125832222","bus_fill: 125832223","tollgate_fill: 125832224","bus_doubledecker: 125832225","subway_badge_coins: 125832226","umbrella_loungechair: 125832227","camp: 125832228","car: 125832229","car_fill: 125832230","car_badge_clock: 125832231","exchange_car_fill: 125832232","drop_car_fill: 125832233","hand_below_star: 125832234","fuelpump: 125832235","fuelpump_fill: 125832236","electric_vehicle_charger: 125832237","electric_vehicle_charger_fill: 125832238","airplane_shield: 125832239","train_airplane: 125832240","highway: 125832241","highway_circle_slash: 125832242","road: 125832243","car_2_circle_slash: 125832244","circle_below_small_triangle: 125832245","seal_shield_fill: 125832246","house_and_briefcase: 125832247","map_badge_cloud_slash_fill: 125832248","lock_open: 125832249","lock_open_fill: 125832250","lock_open_badge_child: 125832251","lock: 125832252","lock_fill: 125832253","key: 125832254","key_fill: 125832255","key_circle_fill: 125832256","key_horizontal: 125832257","touchid: 125832258","touchid_circle: 125832259","checkmark_shield: 125832260","checkmark_shield_fill: 125832261","shield_badge_magnifyingglass: 125832262","person_shield: 125832263","person_shield_fill: 125832264","person_filled_shield_slash: 125832265","plus_shield: 125832266","key_shield: 125832267","key_shield_fill: 125832268","person_shield_badge_checkered: 125832269","shield_badge_circle_dot: 125832270","eye: 125832271","eye_slash: 125832272","hand_raised_filled_hexagon: 125832273","shield_checkered: 125832274","shield_checkered_1: 125832275","shield_checkered_2: 125832276","mask_badge_nosign: 125832277","staroflife_rectangle: 125832278","cross_filled_drop: 125832279","cross_filled_square: 125832280","heart_1: 125832281","heart_badge_plus: 125832282","waveform_path_ecg_heart: 125832283","waveform_path_ecg_heart_fill: 125832284","waveform_path_ecg_heart_viewfinder: 125832285","waveform_path_ecg_heart_filled_viewfinder: 125832286","waveform_path_ecg_square: 125832287","drug: 125832288","stethoscope: 125832289","hospital: 125832290","cross_text_clipboard: 125832291","cross_case: 125832292","syringe_badge_clock: 125832293","bolt_clipboard: 125832294","cross: 125832295","cross_shield_badge_trend: 125832296","cross_store: 125832297","waveform_path_ecg_magnifyingglass: 125832298","cross_vial: 125832299","alarm: 125832300","alarm_fill: 125832301","clock: 125832302","clock_fill: 125832303","timer: 125832304","stopwatch: 125832305","stopwatch_fill: 125832306","worldclock: 125832307","worldclock_fill: 125832308","time_inerval: 125832309","hourglass: 125832310","hourglass_bottomhalf_filled: 125832311","calendar: 125832312","calendar_fill: 125832313","calendar_badge_clock: 125832314","calendar_badge_checkmark: 125832315","checkmark_calendar: 125832316","dumbbell_calendar: 125832317","creditcard: 125832318","creditcard_fill: 125832319","bag: 125832320","bag_fill: 125832321","jd_bag: 125832322","cart: 125832323","checkmark_cart: 125832324","archivebox: 125832325","archivebox_fill: 125832326","wallet: 125832327","wallet_fill: 125832328","redenvelope: 125832329","yuansign_circle: 125832330","line_below_yuansign_circle: 125832331","yuansign_arrow_2_circlepath: 125832332","yuansign_shield: 125832333","yuansign_heart: 125832334","yuansign_circle_and_hand: 125832335","yuansign_circle_and_hand_fill: 125832336","yuansign_arrow_2_squarepath: 125832337","yuansign_car: 125832338","yuansign_house_fill: 125832339","yuansign_rectangle_portrait_fill: 125832340","moneybag: 125832341","yuansign_trophy: 125832342","star_trophy: 125832343","medal: 125832344","rosette: 125832345","star_rosette: 125832346","star_rosette_fill: 125832347","star_hexagon: 125832348","star_hexagon_fill: 125832349","star_shield: 125832350","gift: 125832351","gift_fill: 125832352","coins: 125832353","coins_circle: 125832354","clipboard_badge_coins: 125832355","crown: 125832356","c_circle: 125832357","free_circle: 125832358","award_circle: 125832359","percent_magnifyingglass: 125832360","label: 125832361","company: 125832362","company_fill: 125832363","vip_hand: 125832364","vip_rectangle: 125832365","vip_rectangle_fill: 125832366","diamond: 125832367","v_diamond: 125832368","v_diamond_fill: 125832369","coupon: 125832370","percent_coupon: 125832371","yuansign_coupon: 125832372","line_coupon: 125832373","plus_dot_1x2_coupon: 125832374","swipe: 125832375","star_card: 125832376","card_badge_shield: 125832377","card_badge_goldcoin: 125832378","pencil_and_card: 125832379","star_badge_arrow_down: 125832380","mobiledata_phone: 125832381","star_line_doc: 125832382","goldcoin: 125832383","clock_arrow_2_circlepath: 125832384","lamp_ceiling_light: 125832385","lamp_ceiling: 125832386","air_fill: 125832387","air_open: 125832388","air_open_fill: 125832389","chair_lounge: 125832390","charg_cable: 125832391","eco_hop: 125832392","ac_adapter: 125832393","cheers: 125832394","powercord_fill: 125832395","powercord_up: 125832396","balloon_2: 125832397","pendant: 125832398","cake: 125832399","cake_fill: 125832400","fork_knife: 125832401","fork_knife_fill: 125832402","cup: 125832403","cup_fill: 125832404","return_home_fill: 125832405","leave_home_fill: 125832406","balloon_fill: 125832407","hobbyhorse_fill: 125832408","hanger_and_towels: 125832409","trunk: 125832410","skincare: 125832411","shoe: 125832412","clothing: 125832413","rectangle_below_heat_waves: 125832414","lightbulb: 125832415","lightbulb_max: 125832416","checkmark_lightbulb_max: 125832417","lightbulb_max_fill: 125832418","lightbulb_max_slash: 125832419","bolt_lightbulb_max: 125832420","camera: 125832421","camera_fill: 125832422","camera_badge_plus: 125832423","camera_2: 125832424","arrow_triangle_2_circlepath_camera: 125832425","bolt_camera: 125832426","camera_audionote: 125832427","camera_audionote_slash: 125832428","switch_camera: 125832429","picture: 125832430","picture_fill: 125832431","picture_circle_fill: 125832432","picture_slash: 125832433","picture_slash_fill: 125832434","picture_damage: 125832435","picture_2: 125832436","picture_badge_waveform: 125832437","bookmark_picture: 125832438","rectangle_and_rectangle: 125832439","rectangle_on_rectangle: 125832440","rectangle_on_rectangle_fill: 125832441","arrow_up_and_rectangle_on_rectangle: 125832442","arrow_down_and_rectangle_on_rectangle: 125832443","mosaic_square: 125832444","mosaic: 125832445","camera_panorama: 125832446","album_compose: 125832447","square_slash: 125832448","switch_square: 125832449","switch_square_lefthalf_filled: 125832450","camera_aperture: 125832451","camera_aperture_fill: 125832452","camera_aperture_fill_circle: 125832453","wallpaper_scrollable: 125832454","wallpaper_scrollable_fill: 125832455","leica_effect: 125832456","leica_effect_fill: 125832457","film: 125832458","lightbulb_slash: 125832459","a_lightbulb: 125832460","camera_metering_center_weighted: 125832461","camera_metering_field: 125832462","camera_metering_spot: 125832463","play_video: 125832464","exclamationmark_video: 125832465","wave_video: 125832466","dot_video_1: 125832467","dot_video_slash: 125832468","dot_3_viewfinder: 125832469","dot_3_viewfinder_slash: 125832470","camera_mode_slow: 125832471","eye_viewfinder: 125832472","eye_viewfinder_slash: 125832473","gif: 125832474","gif_slash: 125832475","livephoto: 125832476","livephoto_slash: 125832477","drop_halffull: 125832478","camera_flash: 125832479","camera_flash_slash: 125832480","camera_flash_1: 125832481","camera_flash_auto: 125832482","camera_flash_auto_5: 125832483","camera_flash_auto_10: 125832484","camera_flash_auto_15: 125832485","hand_raised_fingers_spread: 125832486","hand_point_up_tap: 125832487","camera_macro_circle_fill: 125832488","camera_macro_slash_circle: 125832489","camera_foot_circle_fill: 125832490","camera_foot_slash_circle: 125832491","camera_filters: 125832492","camera_filters_slash: 125832493","camera_assistive_grid: 125832494","camera_assistive_grid_slash: 125832495","camera_mode_dualview: 125832496","camera_mode_underwater: 125832497","seal: 125832498","camera_panover_vertical: 125832499","camera_panopor_horizontal: 125832500","scope: 125832501","scope_slash: 125832502","phone_arrow_left: 125832503","dual_view_PIP: 125832504","viewfinder_square: 125832505","aspect_ratio: 125832506","rectangle_split_2x1: 125832507","horizontal_level: 125832508","lapse_speed: 125832509","play_arrow_triangle_2_circlepath: 125832510","fluorescent: 125832511","Incandescent_lamp: 125832512","sun: 125832513","color_temperature: 125832514","cloud: 125832515","bicycle: 125832516","ar_lens: 125832517","jpg: 125832518","camera_master_ai: 125832519","camera_master_ai_slash: 125832520","camera_master_ai_fill: 125832521","a_3d_square_fill: 125832522","thinbody: 125832523","portrait_contour: 125832524","thinface: 125832525","light_painting: 125832526","soften: 125832527","star_2_moon: 125832528","loading: 125832529","plus_sun: 125832530","minus_sun: 125832531","nosign: 125832532","circle_circle_2: 125832533","lr: 125832534","a_3fingers_slash: 125832535","moon_and_message_fill: 125832536","moon_and_phone_circle_fill: 125832537","moon_and_minus_fill: 125832538","picture_badge_arrowshape_turn_right_up: 125832539","sun_badge_lock_fill: 125832540","camera_s: 125832541","camera_wb: 125832542","camera_ev: 125832543","camera_iso: 125832544","enhance_eyes: 125832545","brighten_eyes: 125832546","darkcircles: 125832547","whiten_teeth: 125832548","skin_tone: 125832549","beauty: 125832550","smooth: 125832551","highlights: 125832552","bright: 125832553","dark: 125832554","particle: 125832555","blemishes: 125832556","deflash: 125832557","shadow: 125832558","leaveshadow: 125832559","contrast: 125832560","toning: 125832561","brighten: 125832562","exposure: 125832563","brightness: 125832564","drop_1: 125832565","drop_2_fill: 125832566","snowflake: 125832567","wind: 125832568","wind_sand: 125832569","sand_storm: 125832570","car_below_drop_3: 125832571","fish: 125832572","fish_fill: 125832573","fish_circle_2: 125832574","cat_fill: 125832575","panda_fill: 125832576","dog_fill: 125832577","pawprint: 125832578","pawprint_fill: 125832579","night_fill: 125832580","night_badge_clock: 125832581","moon_z_fill: 125832582","sunset: 125832583","cloud_and_sun_filled: 125832584","cloud_and_sun_fill: 125832585","sunsetglow: 125832586","typhoon: 125832587","cloud_2: 125832588","cloud_2_fill: 125832589","compass_circle: 125832590","telescope: 125832591","flag_circle: 125832592","umbrella: 125832593","uv: 125832594","sunrise_fill: 125832595","sunset_fill: 125832596","sun_max_fill_1: 125832597","thermometer_sun_fill: 125832598","thermometer_snowflake: 125832599","haze: 125832600","questionmark_cloud_fill: 125832601","bolt_2_fill: 125832602","moon_1: 125832603","cloud_moon_fill: 125832604","cloud_sun_fill: 125832605","lightsnow: 125832606","moderatesnow: 125832607","heavysnow: 125832608","snowstorm: 125832609","exclamationmark_cloud_fill: 125832610","cloud_fill: 125832611","light_rain: 125832612","moderate_rain: 125832613","heavy_rain: 125832614","storm: 125832615","cloud_heavy_storm: 125832616","heavy_storm: 125832617","severe_storm: 125832618","showers: 125832619","hail: 125832620","foggy: 125832621","lightning: 125832622","sleet: 125832623","thermometer_medium: 125832624","thermometer_medium_fill: 125832625","tropicaltrees_and_sand: 125832626","leaf: 125832627","leaf_fill: 125832628","leaf_2_fill: 125832629","mapleleave: 125832630","mapleleave_fill: 125832631","flower: 125832632","camera_macro: 125832633","sakura: 125832634","raditionalbuilding: 125832635","mountain_2_fill: 125832636","line_2_below_mountain_2_fill: 125832637","waterfall: 125832638","stage: 125832639","firework: 125832640","pressure: 125832641","thermometer: 125832642","thermometer_circle: 125832643","questionmark_circle: 125832644","questionmark_circle_fill: 125832645","info_circle: 125832646","info_circle_fill: 125832647","info_shield: 125832648","exclamationmark: 125832649","exclamationmark_circle: 125832650","exclamationmark_circle_fill: 125832651","exclamationmark_triangle: 125832652","nosign_fill: 125832653","bolt_filled_on_circle: 125832654","bolt: 125832655","bolt_circle: 125832656","bolt_filled_circle: 125832657","bolt_circle_fill: 125832658","flame: 125832659","flame_fill: 125832660","eight_diagram: 125832661","eight_diagram_fill: 125832662","chevron_left: 125832663","chevron_right: 125832664","chevron_up: 125832665","chevron_down: 125832666","line_below_chevron_up: 125832667","line_below_chevron_down: 125832668","arrowtriangle_up_fill: 125832669","arrowtriangle_down_fill: 125832670","arrow_up: 125832671","arrow_up_circle: 125832672","arrow_up_circle_fill: 125832673","cloud_and_arrow_up: 125832674","arrow_down: 125832675","arrow_down_square: 125832676","square_and_arrow_down: 125832677","arrow_up_left: 125832678","arrow_left: 125832679","arrow_right: 125832680","arrow_up_to_line: 125832681","arrow_left_to_line: 125832682","arrow_right_to_line: 125832683","arrow_down_and_rectangle: 125832684","arrow_down_to_line_circle_fill: 125832685","arrowshape_down_to_line_fill: 125832686","arrowshape_down_to_line_circle_fill: 125832687","arrowshape_up_circle_fill: 125832688","arrowshape_up_to_line: 125832689","arrowshape_up_to_line_fill: 125832690","arrowshape_up_to_line_slash_fill: 125832691","arrowshape_up_frame: 125832692","arrowshape_up_frame_fill: 125832693","arrowshape_up: 125832694","arrowshape_up_fill: 125832695","square_and_arrow_down_badge_vip: 125832696","square_and_arrow_down_badge_checkmark: 125832697","arrowshape_turn_up_left: 125832698","arrowshape_turn_up_left_circle_fill: 125832699","arrow_up_left_and_arrow_down_right: 125832700","arrow_down_right_and_arrow_up_left: 125832701","arrow_counterclockwise: 125832702","return_down_left: 125832703","return_left_up: 125832704","rectangle_and_arrowshape_turn_up_right: 125832705","rectangle_and_arrowshape_turn_up_right_fill: 125832706","square_dashed_and_arrow_turn_up_right: 125832707","arrow_right_up_and_square: 125832708","arrow_left_arrow_right_and_rectangle_portrait: 125832709","arrowshape_left: 125832710","arrowshape_right: 125832711","trash_circle: 125832712","lung: 125832713","a_6_pointed_star: 125832777","AI_screenshot: 125832778","bending_transformation: 125832779","blur_direction: 125832780","car_side_rear: 125832781","car_window_close_1: 125832782","car_window_open_1: 125832783","character_arrow_2_circlepath: 125832784","character_square: 125832785","color_deepening: 125832786","color_fading: 125832787","color_fill: 125832788","combine: 125832789","dark_color: 125832790","difference: 125832791","equal_size: 125832792","eraser_scribble: 125832793","eyedropper: 125832794","filter_color: 125832795","four_quadrants: 125832796","free_transformation: 125832797","symmetry: 125832798","granule: 125832799","headlight_high_beam: 125832800","highlighter_tip_1: 125832801","horizontal_flip: 125832802","Inverse_selection: 125832803","layer_fill: 125832804","layer: 125832805","light_color: 125832806","light: 125832807","linear_deepening: 125832808","linear_dilution: 125832809","linear_light: 125832810","liquefying_clockwise: 125832811","liquefying_counterclockwise: 125832812","liquefying_expand: 125832813","liquefying_pinching: 125832814","liquefying_push: 125832815","minus_square_fill: 125832816","mixed_humidity: 125832817","multiply_square_fill: 125832818","normal_square_fill: 125832819","painting_assistance: 125832820","partition_square_fill: 125832821","pencil_line_1: 125832822","pencil_waveform_fill: 125832823","perspective: 125832824","plus_square_fill: 125832825","radial: 125832826","rendering: 125832827","single_page_flipping: 125832828","smart_selection_area: 125832829","smearing_fill: 125832830","smearing: 125832831","soft_light: 125832832","solid_color_mixing: 125832833","spot_light: 125832834","strikethrough: 125832835","stroke_path: 125832836","strong_light: 125832837","subtract_layer: 125832838","transformation_fill: 125832839","transformation: 125832840","transparency_lock: 125832841","twist_transformation: 125832842","vertical_flip: 125832843","wavyline_below_character: 125832844","ambient_wall_light: 125832845","bed_double_fill: 125832846","blind_curtain_close: 125832847","cooking: 125832848","chandelier: 125832849","chef_hat: 125832850","clothing_fill: 125832851","curtain_open: 125832852","decorative_lamp_fill: 125832853","dome_light_fill: 125832854","dream_curtain_close: 125832855","dream_curtain_open: 125832856","fan_fill_1: 125832857","fan_slash_fill: 125832858","floor_lamp_fill: 125832859","house_default: 125832860","house_setting: 125832861","laboratories: 125832862","lamp_desk_fill: 125832863","overhead_light_fill: 125832864","scenes: 125832865","sofa_fill: 125832866","spanner: 125832867","toilet: 125832868","wall_lamp_fill: 125832869","adapt_window_width: 125832870","battery_75percent: 125832871","bookmark_filled_on_bookmark: 125832872","books_vertical_fill: 125832873","bookshelf_badge_checkmark_fill: 125832874","bookshelf_badge_plus_fill: 125832875","bookshelf: 125832876","briefcase: 125832877","case_fill: 125832878","Celia_fill: 125832879","character_book: 125832880","children: 125832881","continuous_rolling: 125832882","course_badge_minus: 125832883","course: 125832884","cube_and_arrow_down: 125832885","doc_plaintext_and_pencil_fill: 125832886","doc_text_2: 125832887","fast_forward: 125832888","figure_leave: 125832889","flipping_page_fill: 125832890","flipping_page: 125832891","foldline_screen_circle: 125832892","grid: 125832893","hand_point_up_tap_fill_slash: 125832894","headphones_fill: 125832895","hidisk_fill: 125832896","hitouch_cutout: 125832897","house_circle: 125832898","inbox: 125832899","infotainment_fold_fill: 125832900","infotainment: 125832901","line_3_horizontal_circle: 125832902","lock_open_filled_arrow_counterclockwise: 125832903","magnifyingglass_circle: 125832904","media_center: 125832905","media_sound: 125832906","mental_arithmetic_practice: 125832907","mic_sound: 125832908","minus_magnifyingglass: 125832909","music_note_circle_fill: 125832910","music_slash_fill: 125832911","notepad_fill: 125832912","notepad: 125832913","nurse: 125832914","ok_circle: 125832915","parental_protection: 125832916","pdf_doc: 125832917","privilege_effect: 125832918","AI_read_aloud: 125832919","reports: 125832920","rhythm: 125832921","smal_window_playback: 125832922","space_audio: 125832923","AI_subtitles: 125832924","wifi_slash: 125832925","word_book: 125832926","wrench_and_screwdriver: 125832927","xmark_book: 125832928","ad_circle_slash_fill: 125832929","data_proportion: 125832930","graduationcap_fill: 125832931","store: 125832932","target_ceremony: 125832933","action_guidance: 125832934","adapt_window_height: 125832935","altitude: 125832936","arrow_down_left_video_badge_phone_fill: 125832937","arrow_down_left_video_badge_phone_filled: 125832938","arrow_left_circle: 125832939","arrow_right_circle: 125832940","arrow_triangle_divide: 125832941","average_decline: 125832942","average_depth: 125832943","maximum_depth: 125832944","average_increase: 125832945","average_pace_fill: 125832946","average_pace: 125832947","average_speed_fill: 125832948","average_speed: 125832949","average_step_frequency: 125832950","basketball_fill: 125832951","basketball: 125832952","beidou_satellite_fill: 125832953","bird_ball: 125832954","blood_glucose_difference: 125832955","blood_glucose: 125832956","blood_oxygen_meter_fill: 125832957","blood_oxygen_meter: 125832958","blood_oxygen_saturation: 125832959","blood_pressure: 125832960","bloodpressure_meter_fill: 125832961","bloodpressure_meter: 125832962","BMI_circle: 125832963","body_fat_scale_fill: 125832964","body_fat_scale: 125832965","bone_salt_content: 125832966","bounce_count: 125832967","breathing: 125832968","cadence_fill: 125832969","cadence: 125832970","ash_haze: 125832971","chevron_down_2_circle: 125832972","chevron_down_circle: 125832973","chevron_left_2: 125832974","chevron_left_circle: 125832975","chevron_right_circle: 125832976","chevron_up_2_circle: 125832977","chevron_up_2: 125832978","circle_below_local_filled: 125832979","circle_below_plus_shield: 125832980","compass_circle_fill: 125832981","cross_fit: 125832982","cross_square_fill: 125832983","dart_target: 125832984","device_trajectory: 125832985","directional_offroad: 125832986","distance_fill: 125832987","distance: 125832988","diving_frequency: 125832989","diving_time: 125832990","dumbbell: 125832991","eagle_ball: 125832992","ellipticals_fill: 125832993","ellipticals: 125832994","exclamationmark_triangle_fill: 125832995","fat_percentage: 125832996","female_symbols: 125832997","figure_archery: 125832998","figure_badminton: 125832999","figure_ballet: 125833000","figure_baseball: 125833001","figure_beach_soccer: 125833002","figure_beach_volleyball: 125833003","figure_belly_dance: 125833004","figure_bicycle_motocross: 125833005","figure_billiard: 125833006","figure_bowling: 125833007","figure_boxing: 125833008","figure_bungee: 125833009","figure_canoeing: 125833010","figure_climbing: 125833011","figure_cooldown: 125833012","figure_cricket: 125833013","figure_curling: 125833014","figure_dance: 125833015","figure_disc_sports: 125833016","figure_dodgeball: 125833017","figure_dragon_boat: 125833018","figure_drifting: 125833019","figure_ellipticals: 125833020","figure_equestrian_sports: 125833021","figure_fencing: 125833022","figure_fishing: 125833023","figure_free_combat: 125833024","figure_free_diving: 125833025","figure_goalball: 125833026","figure_golf: 125833027","figure_handball: 125833028","figure_highintensity_intervaltraining: 125833029","figure_hiking: 125833030","figure_hockey: 125833031","figure_horizontal_bar: 125833032","figure_hulahoop: 125833033","figure_hunting: 125833034","figure_ice_hockey: 125833035","figure_indoor_bicycle: 125833036","figure_Jazz: 125833037","figure_jumprope: 125833038","figure_karate: 125833039","figure_kendo: 125833040","figure_kickboxing: 125833041","figure_kiteflying: 125833042","figure_latin_dance: 125833043","figure_martial_arts: 125833044","figure_mixed_cardio: 125833045","figure_motorboat: 125833046","figure_mountaineering: 125833047","figure_open_water_swim: 125833048","figure_outdoor_cycle: 125833049","figure_paddle_surfing: 125833050","figure_parachute: 125833051","figure_parallel_bars: 125833052","figure_parkour: 125833053","figure_pilates: 125833054","figure_pool_swim: 125833055","figure_pulley: 125833056","figure_recreational_diving: 125833057","figure_rolling: 125833058","figure_rowing: 125833059","figure_rugby: 125833060","figure_run_crosscountry: 125833061","figure_run_treadmill: 125833062","figure_run: 125833063","figure_sailboat: 125833064","figure_sepaktakraw: 125833065","figure_shuttlecock: 125833066","figure_skating: 125833067","figure_skiing_crosscountry: 125833068","figure_skiing_downhill: 125833069","figure_skiing: 125833070","figure_slalom: 125833071","figure_sled: 125833072","figure_sleidge: 125833073","figure_snowboarding: 125833074","figure_softball: 125833075","figure_square_dancing: 125833076","figure_squash: 125833077","figure_stair: 125833078","figure_stepper: 125833079","figure_street_dance: 125833080","figure_surfing: 125833081","figure_swing: 125833082","figure_table_tennis: 125833083","figure_taekwondo: 125833084","figure_taichi: 125833085","figure_technical_diving: 125833086","figure_tennis: 125833087","figure_tugofwar: 125833088","figure_volleyball: 125833089","figure_winter_biathlon: 125833090","figure_yoga: 125833091","flag_checkered_2_crossed: 125833092","free_training: 125833093","functional_training: 125833094","gas: 125833095","golf_hole_locations: 125833096","golfclub_ball: 125833097","ground_air_ratio: 125833098","ground_contact_peak: 125833099","group_gymnastics: 125833100","hand_raised_hexagon: 125833101","heartrate_band_fill: 125833102","heartrate_band: 125833103","height: 125833104","hold_breath_test: 125833105","hold_breath: 125833106","input_source: 125833107","instrument_diving: 125833108","intelligent_companion_run: 125833109","intelligent_coach: 125833110","KM_slash: 125833111","KM: 125833112","landing_impact: 125833113","left_right_touchdown_balance: 125833114","max_water_temperature: 125833115","message_badge_gearshape_1: 125833116","ball_fill: 125833117","mic_slash: 125833118","min_water_temperature: 125833119","moisture: 125833120","muscle_mass: 125833121","nearlink: 125833122","outward_curvature: 125833123","oximeter_fill: 125833124","oximeter: 125833125","oxygen_uptake: 125833126","person_badge_lock_fill: 125833127","person_height: 125833128","phone_arrow_down_left_circle_fill: 125833129","phone_badge_plus: 125833130","phone_badge_wifi: 125833131","phone_filled_badge_hd: 125833132","phone_wave_2_down_fill: 125833133","pollen_club: 125833134","pool_width: 125833135","protein: 125833136","pulp_frequency: 125833137","push_rod: 125833138","RAI_circle: 125833139","repeat_track: 125833140","rescue: 125833141","rope_skipping_fill: 125833142","rope_skipping: 125833143","rowing_machine_fill: 125833144","rowing_machine: 125833145","satellite_map_fill: 125833146","satellite_map: 125833147","simcard_fill_2_and_simcard_fill_1: 125833148","sleep_fill: 125833149","sleep: 125833150","soaring_time: 125833151","spin_bike_fill: 125833152","spin_bike: 125833153","sporadic_naps: 125833154","staircase: 125833155","steps_fill: 125833156","steps: 125833157","streak_jump: 125833158","strength_training: 125833159","strolling_machine: 125833160","sun_figure_walk: 125833161","swimming_trips: 125833162","swinging_angle: 125833163","touchdown_time: 125833164","transfer_station_fill: 125833165","transfer_station: 125833166","treadmill_fill: 125833167","treadmill: 125833168","upper_lane_rate: 125833169","vertical_amplitude_ratio: 125833170","vertical_amplitude: 125833171","visceral_fat: 125833172","vpn_key: 125833173","warning_frequency: 125833174","warning_switch: 125833175","water_type: 125833176","weight_unit: 125833177","whistle: 125833178","workout_swim_frequency: 125833179","workout_swolf: 125833180","concentrated_floating_dust: 125833181","drought: 125833182","dry_hot_air: 125833183","flash_flood_disaster: 125833184","gale: 125833185","geologic_hazard: 125833186","leaf_circle_fill: 125833187","mask_fill: 125833188","minors_mode: 125833189","ozone: 125833190","sea_fog: 125833191","sea_lightning: 125833192","sea_strong_winds: 125833193","sea_thunder_and_strong_winds: 125833194","sea_typhoon: 125833195","thunder: 125833196","thunderbolt_and_strong_wind: 125833197","tornado: 125833198","trunk_fill: 125833199","AI_phone_doc: 125833200","AI_phone: 125833201","battery_bolt: 125833202","cold_wave: 125833203","cooling: 125833204","dust_storm: 125833205","forest_and_grassland_fire_insurance: 125833206","frost: 125833207","frozen: 125833208","heavy_pollution: 125833209","heavy_rainfall: 125833210","hitouch_read_aloud: 125833211","low_temperature_freezing_damage: 125833212","low_temperature_rain_snow_and_freezing: 125833213","low_temperature: 125833214","person_badge_nosign_fill_1: 125833215","proportional_transformation: 125833216","rainstorm: 125833217","rectangle_split_1x2: 125833218","severe_cold: 125833219","snow_disaster: 125833220","star_2_moon_fill: 125833221","strong_convection: 125833222","strong_cooling: 125833223","thunder_storm: 125833224","thunderstorm: 125833225","yuansign_arrow_counterclockwise: 125833226","access_card: 125833227","AI_pause: 125833228","AI_play: 125833229","AI_translate: 125833230","book_open_fill: 125833231","book_1: 125833232","boutique_book_fill: 125833233","boutique_book: 125833234","buzzer_detection: 125833235","car_maintain: 125833236","circle_filled_dash_circle: 125833237","contacts_book_fill: 125833238","contrastive_translation: 125833239","dynamic: 125833240","endurance: 125833241","exercise_records: 125833242","figure_running: 125833243","horizontal_symmetry: 125833244","infotainment_fill: 125833245","knowing_everything: 125833246","lyrics_square: 125833247","MCN_agency: 125833248","my_plans: 125833249","page_flipping: 125833250","paintbrush_fill: 125833251","paintbrush: 125833252","play_round_rectangle: 125833253","play_round_triangle_fill: 125833254","private_browsing_mode: 125833255","quick_help: 125833256","recharge_cashback: 125833257","route_plan: 125833258","rush_pipe: 125833259","slider_horizontal_2_square: 125833260","square_dashed: 125833261","Synchronics: 125833262","training_index: 125833263","vertica_symmetry: 125833264","action_shooting: 125833265","AI_lightbulb_max: 125833266","robot: 125833267","arrowshape_up_left_and_arrowshape_down_right: 125833268","battery_bolt_fill: 125833269","board_game: 125833270","bolt_shield_fill: 125833271","camera_flash_auto_1: 125833272","camera_flash_auto_2: 125833273","camera_flash_auto_3: 125833274","camera_flash_auto_4: 125833275","camera_flash_auto_6: 125833276","camera_flash_auto_7: 125833277","camera_flash_auto_8: 125833278","camera_flash_auto_9: 125833279","camera_flash_auto_11: 125833280","camera_flash_auto_12: 125833281","camera_flash_auto_13: 125833282","camera_flash_auto_14: 125833283","cinema: 125833284","custom_brush: 125833285","desktop_site: 125833286","distance_sensing: 125833287","equals: 125833288","except: 125833289","express_delivery: 125833290","heat_generation: 125833291","home_button: 125833292","Huawei_logo: 125833293","leisure_puzzle: 125833294","lightbulb_circle_fill: 125833295","lightbulb_fill: 125833296","lightbulb_slash_fill: 125833297","local_badge_hd_fill: 125833298","location_north_up_right_circle_fill: 125833299","meta_service: 125833300","multiply: 125833301","navigation: 125833302","operation_strategy: 125833303","planets: 125833304","play_hexagon_fill: 125833305","play_round_rectangle_fill: 125833306","podcast: 125833307","quick_app: 125833308","road_rescue: 125833309","role_play: 125833310","screen_witching_fill: 125833311","short_vertical_line: 125833312","sports_racing: 125833313","square_filled_on_square: 125833314","tracking_cookie_interception: 125833315","train_ticket: 125833316","truck_box_fill: 125833317","wifi_badge_minus: 125833318","xmark_picture_fill: 125833319","zeroing: 125833320","AI_circle_viewfinder: 125833321","AI_playing: 125833322","AI_search: 125833323","auto_circle_fill: 125833324","battery_75percent_vertical: 125833325","blind_curtain: 125833326","calculator_fill: 125833327","calculator: 125833328","camera_beautify_fill: 125833329","camera_filters_fill: 125833330","cloth_curtain: 125833331","computer_fill: 125833332","computer: 125833333","curtains_fill: 125833334","curtains_slash_fill: 125833335","dream_curtain: 125833336","dual_phone_pairing: 125833337","roller_shutters: 125833338","eviction: 125833339","root: 125833340","Interval_swing: 125833341","magnifyingglass_car: 125833342","matebook_fill: 125833343","multi_screen_collaboration: 125833344","pad_fill: 125833345","phone_card_slot: 125833346","printer_fill: 125833347","silent_writing_practice: 125833348","stereoscopic_flash_lamp: 125833349","super_privacy_mini_fold: 125833350","video_slasj_fill: 125833351","xmark_picture: 125833352","switch_camera_fill: 125833353","earphone_13568_fill: 125833354","earphone_16643_fill: 125833355","earphone_16643_left_fill: 125833356","earphone_16643_right_fill: 125833357","earphone_16644_fill: 125833358","earphone_16644_left_fill: 125833359","earphone_16644_right_fill: 125833360","earphone_16646_fill: 125833361","earphone_16646_left_fill: 125833362","earphone_16646_right_fill: 125833363","earphone_16660_fill: 125833364","earphone_16660_left_fill: 125833365","earphone_16660_left: 125833366","earphone_16660_right_fill: 125833367","earphone_16660_right: 125833368","earphone_16660: 125833369","earphone_16896_fill: 125833370","earphone_16896_left_fill: 125833371","earphone_16896_left: 125833372","earphone_bluetooth_fill: 125833373","dynamic_bicycles: 125833374","figure_rowing_machine: 125833375","lactate_threshold: 125833376","medium_shot: 125833377","smart_data_saver: 125833378","AI_keyboard: 125833379","application_relay: 125833380","calculator_1: 125833381","divide_square_fill: 125833382","foldline_screen_fill: 125833383","horizontal: 125833384","house_equipment: 125833385","keymouse_sharing: 125833386","nearby_devices_badge_lock: 125833387","service_interoperability: 125833388","wireless_projection_fill: 125833389","AI_translation: 125833390","edit_colour: 125833391","horizontal_fill_window: 125833392","pause_round_triangle_fill: 125833393","vertically_fill_window: 125833394","earphone_5888: 125833395","earphone_5888_fill: 125833396","earphone_7425: 125833397","earphone_7425_fill: 125833398","earphone_16640_fill: 125833399","earphone_16640_left_fill: 125833400","earphone_16640_left: 125833401","earphone_16640_right_fill: 125833402","earphone_16640_right: 125833403","earphone_16640: 125833404","earphone_16647_fill: 125833405","earphone_16647_left_fill: 125833406","earphone_16647_left: 125833407","earphone_16647_right_fill: 125833408","earphone_16647_right: 125833409","earphone_16647: 125833410","earphone_16650_fill: 125833411","earphone_16650_left_fill: 125833412","earphone_16650_left: 125833413","earphone_16650_right_fill: 125833414","earphone_16650_right: 125833415","earphone_16650: 125833416","earphone_16659_fill: 125833417","earphone_16659_left_fill: 125833418","earphone_16659_left: 125833419","earphone_16659_right_fill: 125833420","earphone_16659_right: 125833421","earphone_16659: 125833422","earphone_16896_right: 125833423","earphone_16896_right_fill: 125833424","earphone_16896: 125833425","earphone_bluetooth_left_fill: 125833426","earphone_bluetooth_left: 125833427","earphone_bluetooth_right_fill: 125833428","earphone_bluetooth_right: 125833429","earphone_case_16640: 125833430","earphone_case_16643: 125833431","earphone_case_16644: 125833432","earphone_case_16646: 125833433","earphone_case_16647: 125833434","earphone_case_16650: 125833435","earphone_case_16659: 125833436","earphone_case_16660: 125833437","earphone_case_16896: 125833438","earphone_case_bluetooth: 125833439","AI_panels: 125833440","AI_picture_on_square: 125833441","AI_wand_stars_and_cloud: 125833442","arrow_down_circle: 125833443","bell_badge_gearshape: 125833444","close_sidebar: 125833445","cold: 125833446","computer_badge_star: 125833447","device_2: 125833448","heart_bookmark: 125833449","ios: 125833450","multiple_square_root: 125833451","open_sidebar: 125833452","paperplane_right_fill: 125833453","pc_and_phone_fill: 125833454","picture_on_square_1: 125833455","pin_fill_1: 125833456","play_video_fill: 125833457","rectangle_rotate: 125833458","square_root: 125833459","sunscreen: 125833460","thunderstorm_and_gale: 125833461","touchpad: 125833462","volume_based_package: 125833463","worldclock_badge_checkmark: 125833464","wifi_badge_lock: 125833465","wifi_badge_exclamationmark: 125833466","wifi_6plus: 125833467","wifi_6plus_badge_lock: 125833468","wifi_6plus_badge_exclamationmark: 125833469","wifi_6: 125833470","wifi_6_badge_lock: 125833471","wifi_6_badge_exclamationmark: 125833472","minors_mode_fill: 125833473","art_gallery: 125833474","hotel: 125833475","book_pages_fill_1: 125833476","performance_1: 125833477","wavy_line_fill: 125833478","arrowshape_turn_up_right_fill: 125833479","plus_square: 125833480","earphone_bluetooth: 125833481","earphone_13568: 125833482","earphone_16644: 125833483","earphone_16644_left: 125833484","earphone_16644_right: 125833485","earphone_16643: 125833486","earphone_16643_left: 125833487","earphone_16643_right: 125833488","earphone_16646: 125833489","earphone_16646_left: 125833490","earphone_16646_right: 125833491","earphone_15616_fill: 125833492","earphone_15616: 125833493","chevron_forward: 125833533","chevron_backward: 125833534","a_12_rectangle_portrait: 125833535","a_16_rectangle_portrait: 125833536","a_18_rectangle_portrait: 125833537","a_3_rectangle_portrait: 125833538","a_7_rectangle_portrait: 125833539","animal_head: 125833540","balloon_2_fill: 125833541","bath_badge_clock: 125833542","bath: 125833543","board_games: 125833544","card_migration: 125833545","card_package_badge_gearshape: 125833546","card_package: 125833547","casing_detection: 125833548","coins_badge_diamond_fill: 125833549","cooking_badge_clock: 125833550","copper_coin_and_hand: 125833551","credit_card_repayment: 125833552","data: 125833553","drop_slash_fill: 125833554","elevation_gain: 125833555","financial_management: 125833556","find_watch: 125833557","flower_coin: 125833558","front_facing_camera: 125833559","gamecontroller_fill: 125833560","golf_club_and_ball: 125833561","hamburgers: 125833562","haze_warn: 125833563","Investment_stable_value_add: 125833564","K_points: 125833565","laundry_badge_clock: 125833566","laundry: 125833567","leisure_puzzle_1: 125833568","life_payment: 125833569","mall: 125833570","person_rectangle_portrait: 125833571","phone_badge_star: 125833572","printer_badge_exclamationmark_fill: 125833573","rear_facing_camera: 125833574","role_play_fill: 125833575","route: 125833576","ruler: 125833577","saga_tap_detection: 125833578","saga_watch_hardware: 125833579","sleep_breathing_awareness: 125833580","swap_coupon: 125833581","table_tennis_bat: 125833582","thermometer_fill: 125833583","ticket_fill: 125833584","today_circle_fill: 125833585","total_descent: 125833586","unknown_device_fill: 125833587","unknown_device: 125833588","v_mall_fill: 125833589","v_mall: 125833590","watch_badge_nosign: 125833591","watch_badge_yuansign: 125833592","alive_light: 125833593","arrow_down_circle_badge_checkmark: 125833594","arrowshape_turn_up_left_2: 125833595","arrowshape_turn_up_right: 125833596","bar_light: 125833597","bathing_light: 125833598","beauty_light: 125833599","blind_curtain_open: 125833600","gas_fee_fill: 125833601","bolt_fill: 125833602","bookshelf_badge_checkmark: 125833603","bookshelf_badge_plus: 125833604","candle_light: 125833605","car_side_rear_open_1: 125833606","clean_light: 125833607","copper_coin_and_hand_fill: 125833608","credit_card_repayment_fill: 125833609","decompress: 125833610","dinner_light: 125833611","envelope_badge_arrowshape_turn_up_right: 125833612","focus_light: 125833613","fund_fill: 125833614","fund: 125833615","gas_fee: 125833616","getup_night_light: 125833617","guest_light: 125833618","hd_plus_rectangle: 125833619","heating_fee_fill: 125833620","icloud_fill: 125833621","ink_splash: 125833622","life_payment_fill: 125833623","movie_light: 125833624","new_movie: 125833625","paperclip_badge_arrowshape_turn_up_left_2: 125833626","paperclip_badge_arrowshape_turn_up_left: 125833627","phone_recharge: 125833628","prepare_for_dinner_light: 125833629","property_fee_fill: 125833630","rapid_purification_fill: 125833631","resolution_video_fill: 125833632","return_home_light: 125833633","rhythmic_light: 125833634","romantic_light: 125833635","safe_box: 125833636","sleep_light: 125833637","snowflake_circle_fill: 125833638","wash_light: 125833639","arrow_up_to_line_slash: 125833640","briefcase_fill: 125833641","camera_far: 125833642","camera_slash_fill: 125833643","checkmark_message_fill: 125833644","pc_fill: 125833645","circle_on_square_fill: 125833646","drop_and_wave_2_fill: 125833647","ellipsis_message_badge_circle_fill: 125833648","fan_blade_3_pcs: 125833649","fan_blade_4_pcs: 125833650","fan_blade_5_pcs: 125833651","fan_blade_6_pcs: 125833652","fan_blade_7_pcs: 125833653","fan_blade_8_pcs: 125833654","foldablescreen_fill: 125833655","forum_fill: 125833656","game_fill: 125833657","game: 125833658","handwriting_set: 125833659","heart_square_stack: 125833660","icloud_badge_doc_plaintext: 125833661","input_set: 125833662","local_slash_fill: 125833663","monitor_fill: 125833664","pencil_crcle_fill: 125833665","phone_fill_slash: 125833666","purification_fill: 125833667","smartscreen_fill: 125833668","soundai_fill: 125833669","key_shield_slash_fill: 125833670","speaker_wave_3_circle_fill: 125833671","square_fill_grid_2x2_badge_adiowaves: 125833672","study_smartscreen_fill: 125833673","watch_fill: 125833674","small_triangle_arrow_down_right_fill: 125833675","air_conditioning_purification_fill: 125833676","air_conditioning_purification_open_fill: 125833677","pencil_tip_fill: 125833678","pen_tip_fill: 125833679","ballpointpen_tip_fill: 125833680","marker_tip_fill: 125833681","highlighter_tip_fill: 125833682","Laserpen_fill: 125833683","folder_badge_ellipsis: 125833740","battery_leaf_fill: 125833741","arrow_right_and_square: 125833742","a_10k_rectangle: 125833743","a_360_degree_rotation: 125833744","doc_text_badge_clock_fill: 125833745","a_3k_rectangle: 125833746","hobbyhorse: 125833747","notice_fill: 125833748","heart_house_fill: 125833749","graduationcap: 125833750","ellipsis_circle: 125833751","calendar_01: 125833752","calendar_02: 125833753","calendar_03: 125833754","calendar_04: 125833755","calendar_05: 125833756","calendar_06: 125833757","calendar_07: 125833758","calendar_08: 125833759","calendar_09: 125833760","calendar_10: 125833761","calendar_11: 125833762","calendar_12: 125833763","calendar_13: 125833764","calendar_14: 125833765","calendar_15: 125833766","calendar_16: 125833767","calendar_17: 125833768","calendar_18: 125833769","calendar_19: 125833770","calendar_20: 125833771","calendar_21: 125833772","calendar_22: 125833773","calendar_23: 125833774","calendar_24: 125833775","calendar_25: 125833776","calendar_26: 125833777","calendar_27: 125833778","calendar_28: 125833779","calendar_29: 125833780","calendar_30: 125833781","calendar_31: 125833782","lactate_threshold_1: 125833783","watch_badge_card: 125833784","car_key: 125833785","spare_1: 125833786","spare_2: 125833787","spare_3: 125833788","spare_4: 125833789","spare_5: 125833790","spare_6: 125833791","spare_7: 125833792","spare_8: 125833793","calendar_badge_clock_fill: 125833794","spare_9: 125833795","a_5k_rectangle: 125833796","ebook: 125833797","background_blurred: 125833798","background_blurred_slash: 125833799","background_color_removal: 125833800","background_color_removal_slash: 125833801","color_temperature_1: 125833802","color_temperature_slash: 125833803","adjustment_slash: 125833804","highlights_slash: 125833805","shadow_slash: 125833806","toning_slash: 125833807","bright_slash: 125833808","contrast_slash: 125833809","dark_slash: 125833810","saturation_slash: 125833811","natural_saturation_slash: 125833812","paintpalette_slash: 125833813","triangleshape_slash: 125833814","circle_square_slash: 125833815","fade_slash: 125833816","exposure_slash: 125833817","particle_slash: 125833818","stop_circle_fill: 125833819","align_left: 125833820","align_center: 125833821","align_right: 125833822","align_top: 125833823","align_middle: 125833824","align_bottom: 125833825","download_fill: 125833826","envelope_badge_dot_fill: 125833827","keymouse_sharing_fill: 125833828","matebook_and_phone_fill: 125833829","multi_screen_collaboration_fill: 125833830","picture_2_fill: 125833831","keyboard_badge_combination: 125833832","person_badge_checkmark_fill: 125833833","coins_badge_coin: 125833834","law: 125833835","science_technology: 125833836","star_square_stack_fill: 125833837","board_game_fill: 125833838","chicken_leg_fill: 125833839","chicken_leg: 125833840","cross_case_fill: 125833841","leisure_puzzle_fill: 125833842","tennis_ball_fill: 125833843","tennis_ball: 125833844","volleyball_fill: 125833845","volleyball: 125833846","action_shooting_fill: 125833847","exponentiation: 125833848","wired_projection: 125833849","mic_badge_star: 125833850","albatross_ball: 125833851","AR_share: 125833852","arrow_bounce_right: 125833853","arrow_right_and_square_shield_fill: 125833854","arrowshape_up_to_line_slash: 125833855","backward_fill: 125833856","bag_badge_plus: 125833857","balloon: 125833858","barrage_off: 125833859","barrage_on: 125833860","barrage_setting: 125833861","barrage_simple: 125833862","doc_text_badge_arrow_right: 125833863","car_badge_minus: 125833864","cart_fill: 125833865","charge_badge_minus_fill: 125833866","charge_head: 125833867","children_1: 125833868","classify: 125833869","daren_college: 125833870","device_bolt: 125833871","display_products: 125833872","display_products_slash: 125833873","distance_unit: 125833874","dot_radiowaves_message: 125833875","dot_radiowaves_message_fill: 125833876","figure_run_1: 125833877","earphone_5888_slash: 125833878","enlarge_window: 125833879","exchange_product: 125833880","face_laughing: 125833881","ferry_badge_minus_fill: 125833882","figure_arms_open_1: 125833883","figure_arms_open_filled_viewfinder: 125833884","flexible_screen: 125833885","full_rectangle: 125833886","group: 125833887","half_rectangle: 125833888","house_shield_fill: 125833889","info_rectangle_portrait_fill: 125833890","kunlun_glass: 125833891","leave_home_shield_fill: 125833892","line_below_AWB: 125833893","location_right_fill: 125833894","mainboard_fault: 125833895","messenger: 125833896","mouse_fill: 125833897","music_house_fill: 125833898","navigation_1: 125833899","notice: 125833900","notice_1: 125833901","passport: 125833902","personalized_sticker: 125833903","pollen_club_fill: 125833904","rear_cover_fault: 125833905","replace_device: 125833906","reposition: 125833907","road_lanes_badge_minus_fill: 125833908","robots_fill: 125833909","route_plan_fill: 125833910","ruler_measure: 125833911","ruler_measure_slash: 125833912","service_fill: 125833913","short_distance: 125833914","start_to_end_distance: 125833915","start_to_end_distance_fill: 125833916","store_fill: 125833917","switch_compass: 125833918","switch_leveler: 125833919","switch_reality: 125833920","text_badge_questionmark: 125833921","text_clipboard_fill: 125833922","topic: 125833923","topic_message_fill: 125833924","touchscreen_fault: 125833925","vip_purchasing_code: 125833926","volume_based_package_1: 125833927","waveform_path_ecg_magnifyingglass_fill: 125833928","whatsapp: 125833929","wisdom_house: 125833930","wrench_rectangle_portrait_fill: 125833931","arrowshape_turn_up_left_fill: 125833932","abilityform: 125834015","ad_circle_slash: 125834016","after_sales_shield: 125834017","AI_doc_plaintext: 125834018","AI_phone_fill: 125834019","AI_sound: 125834020","AI_spell_suggest: 125834021","AI_word_suggest: 125834022","air: 125834023","altitude_fill: 125834024","archivebox_badge_clock: 125834025","arrow_down_shield: 125834026","audio_theatre: 125834027","auto_camera: 125834028","auto_camera_slash: 125834029","average_step_frequency_fill: 125834030","awareness: 125834031","bag_fill_1: 125834032","battery_100percent: 125834033","battery_10percent: 125834034","battery_15percent: 125834035","battery_20percent: 125834036","battery_30percent: 125834037","battery_40percent: 125834038","battery_50percent: 125834039","battery_5percent: 125834040","battery_60percent: 125834041","battery_70percent: 125834042","battery_80percent: 125834043","battery_90percent: 125834044","battery_95percent: 125834045","battery_bolt_arrow_2_circlepath: 125834046","bed_and_figure_walk: 125834047","bed_badge_clock_fill: 125834048","bed_badge_exclamationmark_fill: 125834049","beidou_satellite: 125834050","bolt_shield: 125834051","bone_voice_ID: 125834052","broken_screen: 125834053","camera_circle_fill: 125834054","card_badge_yuansign_arrow_counterclockwise: 125834055","card_writer: 125834056","cervical_vertebra: 125834057","cinemagraph: 125834058","classify_1: 125834059","cutlery_notepad: 125834060","doc_plaintext_and_compass: 125834061","doors_and_windows_closed: 125834062","doors_and_windows_open: 125834063","egretta_fill: 125834064","electric_install: 125834065","elevation_gain_fill: 125834066","ellipsis_message_slash: 125834067","envelope_badge_xmark_fill: 125834068","figure_badge_arrow_up: 125834069","figure_badge_exclamationmark: 125834070","figure_basketball: 125834071","figure_fall_down: 125834072","figure_fall_down_badge_questionmark: 125834073","figure_falling_bed: 125834074","figure_falling_bed_badge_questionmark: 125834075","figure_football: 125834076","figure_sleeping_badge_exclamationmark: 125834077","figure_walk_arrival: 125834078","figure_walk_badge_arrow_right: 125834079","figure_walk_badge_clock: 125834080","figure_walk_badge_exclamationmark: 125834081","find_device_fill: 125834082","game_icloud_fill: 125834083","gif_video: 125834084","glass_repair: 125834085","globe_badge_heart: 125834086","ground_air_ratio_fill: 125834087","ground_contact_peak_fill: 125834088","hammer_fill: 125834089","handshake: 125834090","HarmonyOS_Connect: 125834091","HarmonyOS_Next: 125834092","headset_missing: 125834093","highlighter_fill: 125834094","HQ_recording: 125834095","huawei_sound: 125834096","huawei_wallet: 125834097","install: 125834098","key_horizontal_fill: 125834099","keyboard_badge_mic: 125834100","kunlun_glass_rectangle_portrait: 125834101","L_and_R_fill: 125834102","landing_mode_fill: 125834103","Language_arrow_2_circlepath: 125834104","local_circle_fill: 125834105","long_exposure: 125834106","lossless: 125834107","magnifyingglass_house: 125834108","menu_TV: 125834109","mic_arrow_2_circlepath: 125834110","moon_music: 125834111","moon_z: 125834112","moon_z_fill_1: 125834113","more_fill: 125834114","move_1: 125834115","multiple_exposure: 125834116","music_square_stack_fill: 125834117","noise_canceling: 125834118","noise_reduction_slash: 125834119","outward_curvature_fill: 125834120","pause_round_triangle: 125834121","person_badge_clock_fill: 125834122","person_badge_phone_fill: 125834123","person_badge_questionmark_fill: 125834124","phone_and_chevron_forward: 125834125","phone_recharge_1: 125834126","picture_badge_arrow_down: 125834127","play_round_triangle: 125834128","playing_back_and_forth: 125834129","quick_reminders: 125834130","rectangle_4_group_1: 125834131","rectangle_4_group_fill_1: 125834132","rectangle_portrait_badge_hourglass: 125834133","rectangle_portrait_wave_2_fill: 125834134","repeat_play: 125834135","role_trading: 125834136","seal_slash: 125834137","service_card: 125834138","service_card_badge_plus: 125834139","service_card_fill: 125834140","shock_load_rate_fill: 125834141","signal: 125834142","skylark_fill: 125834143","slider_horizontal_2_square_fill: 125834144","smart_screen_warranty: 125834145","smart_wear_detection: 125834146","smoke_fill: 125834147","soaring_time_fill: 125834148","sort_1: 125834149","soundx_fill: 125834150","spatial_fix: 125834151","spatial_off: 125834152","sq_circle_fill: 125834153","star_bookmark: 125834154","star_calendar: 125834155","stop_circle: 125834156","sweep_left_and_right: 125834157","sweeping_up_and_down: 125834158","swinging_angle_fill: 125834159","switch_TV: 125834160","text_and_arrow_up_and_down: 125834161","tip_fit_test: 125834162","total_descent_fill: 125834163","touchdown_time_fill: 125834164","touchid_badge_exclamationmark: 125834165","transfer: 125834166","translate_square: 125834167","valves_open: 125834168","valves_slash: 125834169","video_star: 125834170","video_star_fill: 125834171","vr: 125834172","vrglass: 125834173","vrglass_fill: 125834174","wechat_fill: 125834175","wind_direction: 125834176","wind_speed: 125834177","xmark_message_fill: 125834178","yuan_banknote_inlet: 125834179","yuansign_coupon_fill: 125834180","z_alarm_fill: 125834181","arrow_up_right: 125834182","blood_oxygen_saturation_fill: 125834183","calendar_badge_plus: 125834184","calendar_badge_plus_fill: 125834185","checkmark_circle_on_circle: 125834186","checkmark_circle_on_circle_fill: 125834187","edit_badge_star: 125834188","FA: 125834189","list_bullet_square_fill_1: 125834190","pause_fill: 125834191","pause_round_triangle_fill_1: 125834192","thumbnails_1: 125834193","intelligent_lock_key: 125834194","countdown: 125834195","a_10_to_the_x_power: 125834196","cos: 125834197","cos_1: 125834198","Deg: 125834199","e: 125834200","e_to_the_x_power: 125834201","left_parenthesis: 125834202","ln: 125834203","lnv: 125834204","log: 125834205","M_: 125834206","memory_plus: 125834207","MC: 125834208","MR: 125834209","Rad: 125834210","right_parenthesis: 125834211","sin: 125834212","sin_1: 125834213","tan: 125834214","tan_1: 125834215","factorial: 125834216","x_to_the_second_power: 125834217","x_to_the_third_power: 125834218","Pi: 125834219","earphone_16661_left: 125834308","earphone_16661_right: 125834309","earphone_16661: 125834310","earphone_16661_left_fill: 125834311","earphone_16661_right_fill: 125834312","earphone_16661_fill: 125834313","earphone_case_16661: 125834314","lock_shield_fill: 125834947"]