From 180445e8c51cfe669c4b8e4872d725dbe0c615b4 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 13:29:15 +1100 Subject: [PATCH 1/9] temporary css-class-migration programs --- .gitignore | 3 ++ css-class-migration/Makefile | 16 +++++++ css-class-migration/gen-check.lua | 42 ++++++++++++++++++ css-class-migration/gen-glyphs.lua | 64 +++++++++++++++++++++++++++ css-class-migration/gen-icons.lua | 48 ++++++++++++++++++++ css-class-migration/glyphnames.json | 1 + css-class-migration/icons-default.lua | 1 + 7 files changed, 175 insertions(+) create mode 100644 css-class-migration/Makefile create mode 100644 css-class-migration/gen-check.lua create mode 100644 css-class-migration/gen-glyphs.lua create mode 100644 css-class-migration/gen-icons.lua create mode 100644 css-class-migration/glyphnames.json create mode 120000 css-class-migration/icons-default.lua diff --git a/.gitignore b/.gitignore index df266259a..e2f180ac7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ .lua .luarocks /vim-colortemplate/ +/css-class-migration/glyphs-by-*.lua +/css-class-migration/icons-by-*.lua +/css-class-migration/glyphnames.lua diff --git a/css-class-migration/Makefile b/css-class-migration/Makefile new file mode 100644 index 000000000..b79ebfae7 --- /dev/null +++ b/css-class-migration/Makefile @@ -0,0 +1,16 @@ +check: icons + lua gen-check.lua +icons: glyphs + lua gen-icons.lua + +glyphs: glyphnames.lua + lua gen-glyphs.lua + +glyphnames.lua: glyphnames.json + yq '.METADATA' glyphnames.json -oy + yq 'del(.METADATA)' glyphnames.json -ol > glyphnames.lua + +clean: + rm -f glyphnames.lua glyphs-by*.lua icons-by*.lua + +.PHONY: icons glyphs clean diff --git a/css-class-migration/gen-check.lua b/css-class-migration/gen-check.lua new file mode 100644 index 000000000..710f1f095 --- /dev/null +++ b/css-class-migration/gen-check.lua @@ -0,0 +1,42 @@ +--- one off task to check icons-by-*.lua from original icons-default.lua + +local inspect = require "inspect" + +local SOURCES = { + icons_by_filename = "name", + icons_by_file_extension = "ext", + icons_by_operating_system = "os", +} + +local fail = false + +-- process all "by" +for var, typ in pairs(SOURCES) do + print(string.format("icons-default.lua[%s] <-> icons-by-%s.lua", var, typ)) + + -- original source + local froms = require("icons-default")[var] + local tos = require("icons-by-" .. typ) + + -- size + if #froms ~= #tos then + io.stderr:write(string.format("ERR: %d ~= %d\n", #froms, #tos)) + os.exit(1) + end + + for k, from in pairs(froms) do + local to = tos[k] + + if not to then + fail = true + io.stderr:write(string.format("ERR: icons-by-%s.lua missing %s\n", typ, k)) + elseif from.color ~= to.color or from.icon ~= to.icon or from.name ~= to.name then + fail = true + io.stderr:write(string.format("ERR: %s ~= %s\n", inspect(from), inspect(to))) + end + end +end + +if fail then + os.exit(1) +end diff --git a/css-class-migration/gen-glyphs.lua b/css-class-migration/gen-glyphs.lua new file mode 100644 index 000000000..3ed3fa1fa --- /dev/null +++ b/css-class-migration/gen-glyphs.lua @@ -0,0 +1,64 @@ +--- one off task to generate glyphs-by-*.lua from original icons-default.lua + +local inspect = require "inspect" +local glyphnames = require "glyphnames" + +local SOURCES = { + icons_by_filename = "name", + icons_by_file_extension = "ext", + icons_by_operating_system = "os", +} + +-- map name by codepoint value +local names_by_codepoint = {} +for name, data in pairs(glyphnames) do + if name and data and data.code then + local code = tonumber(data.code, 16) + if not names_by_codepoint[code] then + names_by_codepoint[code] = {} + end + table.insert(names_by_codepoint[code], name) + end +end + +-- generate all "by" +for var, typ in pairs(SOURCES) do + print(string.format("icons-default.lua[%s] -> icons-by-%s.lua", var, typ)) + + -- generate classy glyphs from original + local glyphs = {} + for key, icon in pairs(require("icons-default")[var]) do + local cp = utf8.codepoint(icon.icon) + local names = names_by_codepoint[cp] + + local class + if not names then + local err = string.format("ERR: %-25s no class for %s", key, icon.icon) + class = err + io.stderr:write(err .. "\n") + elseif #names ~= 1 then + local err = string.format("ERR: %-25s too many classes for %s %s", key, icon.icon, inspect(names)) + class = err + io.stderr:write(err .. "\n") + else + class = names[1] + end + + glyphs[key] = { + class = class, + color = icon.color, + name = icon.name, + } + end + + -- output as lua + local name = string.format("glyphs-by-%s.lua", typ) + os.remove(name) + local file = io.open(name, "a") + if file then + io.output(file) + io.write "return " + io.write(inspect(glyphs)) + io.close(file) + end +end diff --git a/css-class-migration/gen-icons.lua b/css-class-migration/gen-icons.lua new file mode 100644 index 000000000..6744ed01d --- /dev/null +++ b/css-class-migration/gen-icons.lua @@ -0,0 +1,48 @@ +--- generate icons-by-*.lua from glyphs-by-*.lua + +local inspect = require "inspect" +local glyphnames = require "glyphnames" + +local SOURCES = { + "name", + "ext", + "os", +} + +-- generate all "by" +for _, typ in pairs(SOURCES) do + print(string.format("glyphs-by-%s.lua -> icons-by-%s.lua", typ, typ)) + + -- generate populated icons + local icons = {} + for key, glyph in pairs(require("glyphs-by-" .. typ)) do + local icon + + local glyphname = glyphnames[glyph.class] + if not glyphname then + local err = string.format("ERR: %-25s no icon for class %s", key, glyph.class) + icon = err + io.stderr:write(err .. "\n") + else + icon = glyphname.char + end + + icons[key] = { + icon = icon, + class = glyph.class, + color = glyph.color, + name = glyph.name, + } + end + + -- output as lua + local name = string.format("icons-by-%s.lua", typ) + os.remove(name) + local file = io.open(name, "a") + if file then + io.output(file) + io.write "return " + io.write(inspect(icons)) + io.close(file) + end +end diff --git a/css-class-migration/glyphnames.json b/css-class-migration/glyphnames.json new file mode 100644 index 000000000..ac80d0c2d --- /dev/null +++ b/css-class-migration/glyphnames.json @@ -0,0 +1 @@ +{"METADATA":{"website":"https://www.nerdfonts.com","development-website":"https://github.com/ryanoasis/nerd-fonts","version":"3.1.1","date":"2023-11-26 17:57:31+00:00"},"cod-account":{"char":"","code":"eb99"},"cod-activate_breakpoints":{"char":"","code":"ea97"},"cod-add":{"char":"","code":"ea60"},"cod-archive":{"char":"","code":"ea98"},"cod-arrow_both":{"char":"","code":"ea99"},"cod-arrow_down":{"char":"","code":"ea9a"},"cod-arrow_left":{"char":"","code":"ea9b"},"cod-arrow_right":{"char":"","code":"ea9c"},"cod-arrow_small_down":{"char":"","code":"ea9d"},"cod-arrow_small_left":{"char":"","code":"ea9e"},"cod-arrow_small_right":{"char":"","code":"ea9f"},"cod-arrow_small_up":{"char":"","code":"eaa0"},"cod-arrow_swap":{"char":"","code":"ebcb"},"cod-arrow_up":{"char":"","code":"eaa1"},"cod-azure":{"char":"","code":"ebd8"},"cod-azure_devops":{"char":"","code":"ebe8"},"cod-beaker":{"char":"","code":"ea79"},"cod-beaker_stop":{"char":"","code":"ebe1"},"cod-bell":{"char":"","code":"eaa2"},"cod-bell_dot":{"char":"","code":"eb9a"},"cod-bold":{"char":"","code":"eaa3"},"cod-book":{"char":"","code":"eaa4"},"cod-bookmark":{"char":"","code":"eaa5"},"cod-bracket_dot":{"char":"","code":"ebe5"},"cod-bracket_error":{"char":"","code":"ebe6"},"cod-briefcase":{"char":"","code":"eaac"},"cod-broadcast":{"char":"","code":"eaad"},"cod-browser":{"char":"","code":"eaae"},"cod-bug":{"char":"","code":"eaaf"},"cod-calendar":{"char":"","code":"eab0"},"cod-call_incoming":{"char":"","code":"eb92"},"cod-call_outgoing":{"char":"","code":"eb93"},"cod-case_sensitive":{"char":"","code":"eab1"},"cod-check":{"char":"","code":"eab2"},"cod-check_all":{"char":"","code":"ebb1"},"cod-checklist":{"char":"","code":"eab3"},"cod-chevron_down":{"char":"","code":"eab4"},"cod-chevron_left":{"char":"","code":"eab5"},"cod-chevron_right":{"char":"","code":"eab6"},"cod-chevron_up":{"char":"","code":"eab7"},"cod-chrome_close":{"char":"","code":"eab8"},"cod-chrome_maximize":{"char":"","code":"eab9"},"cod-chrome_minimize":{"char":"","code":"eaba"},"cod-chrome_restore":{"char":"","code":"eabb"},"cod-circle":{"char":"","code":"eabc"},"cod-circle_filled":{"char":"","code":"ea71"},"cod-circle_large":{"char":"","code":"ebb5"},"cod-circle_large_filled":{"char":"","code":"ebb4"},"cod-circle_slash":{"char":"","code":"eabd"},"cod-circle_small_filled":{"char":"","code":"eb8a"},"cod-circuit_board":{"char":"","code":"eabe"},"cod-clear_all":{"char":"","code":"eabf"},"cod-clippy":{"char":"","code":"eac0"},"cod-close":{"char":"","code":"ea76"},"cod-close_all":{"char":"","code":"eac1"},"cod-cloud":{"char":"","code":"ebaa"},"cod-cloud_download":{"char":"","code":"eac2"},"cod-cloud_upload":{"char":"","code":"eac3"},"cod-code":{"char":"","code":"eac4"},"cod-collapse_all":{"char":"","code":"eac5"},"cod-color_mode":{"char":"","code":"eac6"},"cod-combine":{"char":"","code":"ebb6"},"cod-comment":{"char":"","code":"ea6b"},"cod-comment_discussion":{"char":"","code":"eac7"},"cod-compass":{"char":"","code":"ebd5"},"cod-compass_active":{"char":"","code":"ebd7"},"cod-compass_dot":{"char":"","code":"ebd6"},"cod-copy":{"char":"","code":"ebcc"},"cod-credit_card":{"char":"","code":"eac9"},"cod-dash":{"char":"","code":"eacc"},"cod-dashboard":{"char":"","code":"eacd"},"cod-database":{"char":"","code":"eace"},"cod-debug":{"char":"","code":"ead8"},"cod-debug_all":{"char":"","code":"ebdc"},"cod-debug_alt":{"char":"","code":"eb91"},"cod-debug_alt_small":{"char":"","code":"eba8"},"cod-debug_breakpoint_conditional":{"char":"","code":"eaa7"},"cod-debug_breakpoint_conditional_unverified":{"char":"","code":"eaa6"},"cod-debug_breakpoint_data":{"char":"","code":"eaa9"},"cod-debug_breakpoint_data_unverified":{"char":"","code":"eaa8"},"cod-debug_breakpoint_function":{"char":"","code":"eb88"},"cod-debug_breakpoint_function_unverified":{"char":"","code":"eb87"},"cod-debug_breakpoint_log":{"char":"","code":"eaab"},"cod-debug_breakpoint_log_unverified":{"char":"","code":"eaaa"},"cod-debug_breakpoint_unsupported":{"char":"","code":"eb8c"},"cod-debug_console":{"char":"","code":"eb9b"},"cod-debug_continue":{"char":"","code":"eacf"},"cod-debug_continue_small":{"char":"","code":"ebe0"},"cod-debug_coverage":{"char":"","code":"ebdd"},"cod-debug_disconnect":{"char":"","code":"ead0"},"cod-debug_line_by_line":{"char":"","code":"ebd0"},"cod-debug_pause":{"char":"","code":"ead1"},"cod-debug_rerun":{"char":"","code":"ebc0"},"cod-debug_restart":{"char":"","code":"ead2"},"cod-debug_restart_frame":{"char":"","code":"eb90"},"cod-debug_reverse_continue":{"char":"","code":"eb8e"},"cod-debug_stackframe":{"char":"","code":"eb8b"},"cod-debug_stackframe_active":{"char":"","code":"eb89"},"cod-debug_start":{"char":"","code":"ead3"},"cod-debug_step_back":{"char":"","code":"eb8f"},"cod-debug_step_into":{"char":"","code":"ead4"},"cod-debug_step_out":{"char":"","code":"ead5"},"cod-debug_step_over":{"char":"","code":"ead6"},"cod-debug_stop":{"char":"","code":"ead7"},"cod-desktop_download":{"char":"","code":"ea78"},"cod-device_camera":{"char":"","code":"eada"},"cod-device_camera_video":{"char":"","code":"ead9"},"cod-device_mobile":{"char":"","code":"eadb"},"cod-diff":{"char":"","code":"eae1"},"cod-diff_added":{"char":"","code":"eadc"},"cod-diff_ignored":{"char":"","code":"eadd"},"cod-diff_modified":{"char":"","code":"eade"},"cod-diff_removed":{"char":"","code":"eadf"},"cod-diff_renamed":{"char":"","code":"eae0"},"cod-discard":{"char":"","code":"eae2"},"cod-edit":{"char":"","code":"ea73"},"cod-editor_layout":{"char":"","code":"eae3"},"cod-ellipsis":{"char":"","code":"ea7c"},"cod-empty_window":{"char":"","code":"eae4"},"cod-error":{"char":"","code":"ea87"},"cod-exclude":{"char":"","code":"eae5"},"cod-expand_all":{"char":"","code":"eb95"},"cod-export":{"char":"","code":"ebac"},"cod-extensions":{"char":"","code":"eae6"},"cod-eye":{"char":"","code":"ea70"},"cod-eye_closed":{"char":"","code":"eae7"},"cod-feedback":{"char":"","code":"eb96"},"cod-file":{"char":"","code":"ea7b"},"cod-file_binary":{"char":"","code":"eae8"},"cod-file_code":{"char":"","code":"eae9"},"cod-file_media":{"char":"","code":"eaea"},"cod-file_pdf":{"char":"","code":"eaeb"},"cod-file_submodule":{"char":"","code":"eaec"},"cod-file_symlink_directory":{"char":"","code":"eaed"},"cod-file_symlink_file":{"char":"","code":"eaee"},"cod-file_zip":{"char":"","code":"eaef"},"cod-files":{"char":"","code":"eaf0"},"cod-filter":{"char":"","code":"eaf1"},"cod-filter_filled":{"char":"","code":"ebce"},"cod-flame":{"char":"","code":"eaf2"},"cod-fold":{"char":"","code":"eaf5"},"cod-fold_down":{"char":"","code":"eaf3"},"cod-fold_up":{"char":"","code":"eaf4"},"cod-folder":{"char":"","code":"ea83"},"cod-folder_active":{"char":"","code":"eaf6"},"cod-folder_library":{"char":"","code":"ebdf"},"cod-folder_opened":{"char":"","code":"eaf7"},"cod-gear":{"char":"","code":"eaf8"},"cod-gift":{"char":"","code":"eaf9"},"cod-gist_secret":{"char":"","code":"eafa"},"cod-git_commit":{"char":"","code":"eafc"},"cod-git_compare":{"char":"","code":"eafd"},"cod-git_merge":{"char":"","code":"eafe"},"cod-git_pull_request":{"char":"","code":"ea64"},"cod-git_pull_request_closed":{"char":"","code":"ebda"},"cod-git_pull_request_create":{"char":"","code":"ebbc"},"cod-git_pull_request_draft":{"char":"","code":"ebdb"},"cod-github":{"char":"","code":"ea84"},"cod-github_action":{"char":"","code":"eaff"},"cod-github_alt":{"char":"","code":"eb00"},"cod-github_inverted":{"char":"","code":"eba1"},"cod-globe":{"char":"","code":"eb01"},"cod-go_to_file":{"char":"","code":"ea94"},"cod-grabber":{"char":"","code":"eb02"},"cod-graph":{"char":"","code":"eb03"},"cod-graph_left":{"char":"","code":"ebad"},"cod-graph_line":{"char":"","code":"ebe2"},"cod-graph_scatter":{"char":"","code":"ebe3"},"cod-gripper":{"char":"","code":"eb04"},"cod-group_by_ref_type":{"char":"","code":"eb97"},"cod-heart":{"char":"","code":"eb05"},"cod-history":{"char":"","code":"ea82"},"cod-home":{"char":"","code":"eb06"},"cod-horizontal_rule":{"char":"","code":"eb07"},"cod-hubot":{"char":"","code":"eb08"},"cod-inbox":{"char":"","code":"eb09"},"cod-info":{"char":"","code":"ea74"},"cod-inspect":{"char":"","code":"ebd1"},"cod-issue_draft":{"char":"","code":"ebd9"},"cod-issue_reopened":{"char":"","code":"eb0b"},"cod-issues":{"char":"","code":"eb0c"},"cod-italic":{"char":"","code":"eb0d"},"cod-jersey":{"char":"","code":"eb0e"},"cod-json":{"char":"","code":"eb0f"},"cod-kebab_vertical":{"char":"","code":"eb10"},"cod-key":{"char":"","code":"eb11"},"cod-law":{"char":"","code":"eb12"},"cod-layers":{"char":"","code":"ebd2"},"cod-layers_active":{"char":"","code":"ebd4"},"cod-layers_dot":{"char":"","code":"ebd3"},"cod-layout":{"char":"","code":"ebeb"},"cod-library":{"char":"","code":"eb9c"},"cod-lightbulb":{"char":"","code":"ea61"},"cod-lightbulb_autofix":{"char":"","code":"eb13"},"cod-link":{"char":"","code":"eb15"},"cod-link_external":{"char":"","code":"eb14"},"cod-list_filter":{"char":"","code":"eb83"},"cod-list_flat":{"char":"","code":"eb84"},"cod-list_ordered":{"char":"","code":"eb16"},"cod-list_selection":{"char":"","code":"eb85"},"cod-list_tree":{"char":"","code":"eb86"},"cod-list_unordered":{"char":"","code":"eb17"},"cod-live_share":{"char":"","code":"eb18"},"cod-loading":{"char":"","code":"eb19"},"cod-location":{"char":"","code":"eb1a"},"cod-lock":{"char":"","code":"ea75"},"cod-lock_small":{"char":"","code":"ebe7"},"cod-magnet":{"char":"","code":"ebae"},"cod-mail":{"char":"","code":"eb1c"},"cod-mail_read":{"char":"","code":"eb1b"},"cod-markdown":{"char":"","code":"eb1d"},"cod-megaphone":{"char":"","code":"eb1e"},"cod-mention":{"char":"","code":"eb1f"},"cod-menu":{"char":"","code":"eb94"},"cod-merge":{"char":"","code":"ebab"},"cod-milestone":{"char":"","code":"eb20"},"cod-mirror":{"char":"","code":"ea69"},"cod-mortar_board":{"char":"","code":"eb21"},"cod-move":{"char":"","code":"eb22"},"cod-multiple_windows":{"char":"","code":"eb23"},"cod-mute":{"char":"","code":"eb24"},"cod-new_file":{"char":"","code":"ea7f"},"cod-new_folder":{"char":"","code":"ea80"},"cod-newline":{"char":"","code":"ebea"},"cod-no_newline":{"char":"","code":"eb25"},"cod-note":{"char":"","code":"eb26"},"cod-notebook":{"char":"","code":"ebaf"},"cod-notebook_template":{"char":"","code":"ebbf"},"cod-octoface":{"char":"","code":"eb27"},"cod-open_preview":{"char":"","code":"eb28"},"cod-organization":{"char":"","code":"ea7e"},"cod-output":{"char":"","code":"eb9d"},"cod-package":{"char":"","code":"eb29"},"cod-paintcan":{"char":"","code":"eb2a"},"cod-pass":{"char":"","code":"eba4"},"cod-pass_filled":{"char":"","code":"ebb3"},"cod-person":{"char":"","code":"ea67"},"cod-person_add":{"char":"","code":"ebcd"},"cod-pie_chart":{"char":"","code":"ebe4"},"cod-pin":{"char":"","code":"eb2b"},"cod-pinned":{"char":"","code":"eba0"},"cod-pinned_dirty":{"char":"","code":"ebb2"},"cod-play":{"char":"","code":"eb2c"},"cod-play_circle":{"char":"","code":"eba6"},"cod-plug":{"char":"","code":"eb2d"},"cod-preserve_case":{"char":"","code":"eb2e"},"cod-preview":{"char":"","code":"eb2f"},"cod-primitive_square":{"char":"","code":"ea72"},"cod-project":{"char":"","code":"eb30"},"cod-pulse":{"char":"","code":"eb31"},"cod-question":{"char":"","code":"eb32"},"cod-quote":{"char":"","code":"eb33"},"cod-radio_tower":{"char":"","code":"eb34"},"cod-reactions":{"char":"","code":"eb35"},"cod-record":{"char":"","code":"eba7"},"cod-record_keys":{"char":"","code":"ea65"},"cod-redo":{"char":"","code":"ebb0"},"cod-references":{"char":"","code":"eb36"},"cod-refresh":{"char":"","code":"eb37"},"cod-regex":{"char":"","code":"eb38"},"cod-remote":{"char":"","code":"eb3a"},"cod-remote_explorer":{"char":"","code":"eb39"},"cod-remove":{"char":"","code":"eb3b"},"cod-replace":{"char":"","code":"eb3d"},"cod-replace_all":{"char":"","code":"eb3c"},"cod-reply":{"char":"","code":"ea7d"},"cod-repo":{"char":"","code":"ea62"},"cod-repo_clone":{"char":"","code":"eb3e"},"cod-repo_force_push":{"char":"","code":"eb3f"},"cod-repo_forked":{"char":"","code":"ea63"},"cod-repo_pull":{"char":"","code":"eb40"},"cod-repo_push":{"char":"","code":"eb41"},"cod-report":{"char":"","code":"eb42"},"cod-request_changes":{"char":"","code":"eb43"},"cod-rocket":{"char":"","code":"eb44"},"cod-root_folder":{"char":"","code":"eb46"},"cod-root_folder_opened":{"char":"","code":"eb45"},"cod-rss":{"char":"","code":"eb47"},"cod-ruby":{"char":"","code":"eb48"},"cod-run_above":{"char":"","code":"ebbd"},"cod-run_all":{"char":"","code":"eb9e"},"cod-run_below":{"char":"","code":"ebbe"},"cod-run_errors":{"char":"","code":"ebde"},"cod-save":{"char":"","code":"eb4b"},"cod-save_all":{"char":"","code":"eb49"},"cod-save_as":{"char":"","code":"eb4a"},"cod-screen_full":{"char":"","code":"eb4c"},"cod-screen_normal":{"char":"","code":"eb4d"},"cod-search":{"char":"","code":"ea6d"},"cod-search_stop":{"char":"","code":"eb4e"},"cod-server":{"char":"","code":"eb50"},"cod-server_environment":{"char":"","code":"eba3"},"cod-server_process":{"char":"","code":"eba2"},"cod-settings":{"char":"","code":"eb52"},"cod-settings_gear":{"char":"","code":"eb51"},"cod-shield":{"char":"","code":"eb53"},"cod-sign_in":{"char":"","code":"ea6f"},"cod-sign_out":{"char":"","code":"ea6e"},"cod-smiley":{"char":"","code":"eb54"},"cod-sort_precedence":{"char":"","code":"eb55"},"cod-source_control":{"char":"","code":"ea68"},"cod-split_horizontal":{"char":"","code":"eb56"},"cod-split_vertical":{"char":"","code":"eb57"},"cod-squirrel":{"char":"","code":"eb58"},"cod-star_empty":{"char":"","code":"ea6a"},"cod-star_full":{"char":"","code":"eb59"},"cod-star_half":{"char":"","code":"eb5a"},"cod-stop_circle":{"char":"","code":"eba5"},"cod-symbol_array":{"char":"","code":"ea8a"},"cod-symbol_boolean":{"char":"","code":"ea8f"},"cod-symbol_class":{"char":"","code":"eb5b"},"cod-symbol_color":{"char":"","code":"eb5c"},"cod-symbol_constant":{"char":"","code":"eb5d"},"cod-symbol_enum":{"char":"","code":"ea95"},"cod-symbol_enum_member":{"char":"","code":"eb5e"},"cod-symbol_event":{"char":"","code":"ea86"},"cod-symbol_field":{"char":"","code":"eb5f"},"cod-symbol_file":{"char":"","code":"eb60"},"cod-symbol_interface":{"char":"","code":"eb61"},"cod-symbol_key":{"char":"","code":"ea93"},"cod-symbol_keyword":{"char":"","code":"eb62"},"cod-symbol_method":{"char":"","code":"ea8c"},"cod-symbol_misc":{"char":"","code":"eb63"},"cod-symbol_namespace":{"char":"","code":"ea8b"},"cod-symbol_numeric":{"char":"","code":"ea90"},"cod-symbol_operator":{"char":"","code":"eb64"},"cod-symbol_parameter":{"char":"","code":"ea92"},"cod-symbol_property":{"char":"","code":"eb65"},"cod-symbol_ruler":{"char":"","code":"ea96"},"cod-symbol_snippet":{"char":"","code":"eb66"},"cod-symbol_string":{"char":"","code":"eb8d"},"cod-symbol_structure":{"char":"","code":"ea91"},"cod-symbol_variable":{"char":"","code":"ea88"},"cod-sync":{"char":"","code":"ea77"},"cod-sync_ignored":{"char":"","code":"eb9f"},"cod-table":{"char":"","code":"ebb7"},"cod-tag":{"char":"","code":"ea66"},"cod-tasklist":{"char":"","code":"eb67"},"cod-telescope":{"char":"","code":"eb68"},"cod-terminal":{"char":"","code":"ea85"},"cod-terminal_bash":{"char":"","code":"ebca"},"cod-terminal_cmd":{"char":"","code":"ebc4"},"cod-terminal_debian":{"char":"","code":"ebc5"},"cod-terminal_linux":{"char":"","code":"ebc6"},"cod-terminal_powershell":{"char":"","code":"ebc7"},"cod-terminal_tmux":{"char":"","code":"ebc8"},"cod-terminal_ubuntu":{"char":"","code":"ebc9"},"cod-text_size":{"char":"","code":"eb69"},"cod-three_bars":{"char":"","code":"eb6a"},"cod-thumbsdown":{"char":"","code":"eb6b"},"cod-thumbsup":{"char":"","code":"eb6c"},"cod-tools":{"char":"","code":"eb6d"},"cod-trash":{"char":"","code":"ea81"},"cod-triangle_down":{"char":"","code":"eb6e"},"cod-triangle_left":{"char":"","code":"eb6f"},"cod-triangle_right":{"char":"","code":"eb70"},"cod-triangle_up":{"char":"","code":"eb71"},"cod-twitter":{"char":"","code":"eb72"},"cod-type_hierarchy":{"char":"","code":"ebb9"},"cod-type_hierarchy_sub":{"char":"","code":"ebba"},"cod-type_hierarchy_super":{"char":"","code":"ebbb"},"cod-unfold":{"char":"","code":"eb73"},"cod-ungroup_by_ref_type":{"char":"","code":"eb98"},"cod-unlock":{"char":"","code":"eb74"},"cod-unmute":{"char":"","code":"eb75"},"cod-unverified":{"char":"","code":"eb76"},"cod-variable_group":{"char":"","code":"ebb8"},"cod-verified":{"char":"","code":"eb77"},"cod-verified_filled":{"char":"","code":"ebe9"},"cod-versions":{"char":"","code":"eb78"},"cod-vm":{"char":"","code":"ea7a"},"cod-vm_active":{"char":"","code":"eb79"},"cod-vm_connect":{"char":"","code":"eba9"},"cod-vm_outline":{"char":"","code":"eb7a"},"cod-vm_running":{"char":"","code":"eb7b"},"cod-wand":{"char":"","code":"ebcf"},"cod-warning":{"char":"","code":"ea6c"},"cod-watch":{"char":"","code":"eb7c"},"cod-whitespace":{"char":"","code":"eb7d"},"cod-whole_word":{"char":"","code":"eb7e"},"cod-window":{"char":"","code":"eb7f"},"cod-word_wrap":{"char":"","code":"eb80"},"cod-workspace_trusted":{"char":"","code":"ebc1"},"cod-workspace_unknown":{"char":"","code":"ebc3"},"cod-workspace_untrusted":{"char":"","code":"ebc2"},"cod-zoom_in":{"char":"","code":"eb81"},"cod-zoom_out":{"char":"","code":"eb82"},"custom-asm":{"char":"","code":"e6ab"},"custom-c":{"char":"","code":"e61e"},"custom-common_lisp":{"char":"","code":"e6b0"},"custom-cpp":{"char":"","code":"e61d"},"custom-crystal":{"char":"","code":"e62f"},"custom-default":{"char":"","code":"e612"},"custom-electron":{"char":"","code":"e62e"},"custom-elixir":{"char":"","code":"e62d"},"custom-elm":{"char":"","code":"e62c"},"custom-emacs":{"char":"","code":"e632"},"custom-fennel":{"char":"","code":"e6af"},"custom-folder":{"char":"","code":"e5ff"},"custom-folder_config":{"char":"","code":"e5fc"},"custom-folder_git":{"char":"","code":"e5fb"},"custom-folder_git_branch":{"char":"","code":"e5fb"},"custom-folder_github":{"char":"","code":"e5fd"},"custom-folder_npm":{"char":"","code":"e5fa"},"custom-folder_oct":{"char":"","code":"e6ad"},"custom-folder_open":{"char":"","code":"e5fe"},"custom-go":{"char":"","code":"e626"},"custom-home":{"char":"","code":"e617"},"custom-kotlin":{"char":"","code":"e634"},"custom-msdos":{"char":"","code":"e629"},"custom-neovim":{"char":"","code":"e6ae"},"custom-orgmode":{"char":"","code":"e633"},"custom-play_arrow":{"char":"","code":"e602"},"custom-puppet":{"char":"","code":"e631"},"custom-purescript":{"char":"","code":"e630"},"custom-scheme":{"char":"","code":"e6b1"},"custom-toml":{"char":"","code":"e6b2"},"custom-v_lang":{"char":"","code":"e6ac"},"custom-vim":{"char":"","code":"e62b"},"custom-windows":{"char":"","code":"e62a"},"dev-android":{"char":"","code":"e70e"},"dev-angular":{"char":"","code":"e753"},"dev-appcelerator":{"char":"","code":"e7ab"},"dev-apple":{"char":"","code":"e711"},"dev-appstore":{"char":"","code":"e713"},"dev-aptana":{"char":"","code":"e799"},"dev-asterisk":{"char":"","code":"e7ac"},"dev-atlassian":{"char":"","code":"e75b"},"dev-atom":{"char":"","code":"e764"},"dev-aws":{"char":"","code":"e7ad"},"dev-backbone":{"char":"","code":"e752"},"dev-bing_small":{"char":"","code":"e700"},"dev-bintray":{"char":"","code":"e794"},"dev-bitbucket":{"char":"","code":"e703"},"dev-blackberry":{"char":"","code":"e723"},"dev-bootstrap":{"char":"","code":"e747"},"dev-bower":{"char":"","code":"e74d"},"dev-brackets":{"char":"","code":"e79d"},"dev-bugsense":{"char":"","code":"e78d"},"dev-celluloid":{"char":"","code":"e76b"},"dev-chart":{"char":"","code":"e760"},"dev-chrome":{"char":"","code":"e743"},"dev-cisco":{"char":"","code":"e765"},"dev-clojure":{"char":"","code":"e768"},"dev-clojure_alt":{"char":"","code":"e76a"},"dev-cloud9":{"char":"","code":"e79f"},"dev-coda":{"char":"","code":"e793"},"dev-code":{"char":"","code":"e796"},"dev-code_badge":{"char":"","code":"e7a3"},"dev-codeigniter":{"char":"","code":"e780"},"dev-codepen":{"char":"","code":"e716"},"dev-codrops":{"char":"","code":"e72f"},"dev-coffeescript":{"char":"","code":"e751"},"dev-compass":{"char":"","code":"e761"},"dev-composer":{"char":"","code":"e783"},"dev-creativecommons":{"char":"","code":"e789"},"dev-creativecommons_badge":{"char":"","code":"e78a"},"dev-css3":{"char":"","code":"e749"},"dev-css3_full":{"char":"","code":"e74a"},"dev-css_tricks":{"char":"","code":"e701"},"dev-cssdeck":{"char":"","code":"e72a"},"dev-dart":{"char":"","code":"e798"},"dev-database":{"char":"","code":"e706"},"dev-debian":{"char":"","code":"e77d"},"dev-digital_ocean":{"char":"","code":"e7ae"},"dev-django":{"char":"","code":"e71d"},"dev-dlang":{"char":"","code":"e7af"},"dev-docker":{"char":"","code":"e7b0"},"dev-doctrine":{"char":"","code":"e774"},"dev-dojo":{"char":"","code":"e71c"},"dev-dotnet":{"char":"","code":"e77f"},"dev-dreamweaver":{"char":"","code":"e79c"},"dev-dropbox":{"char":"","code":"e707"},"dev-drupal":{"char":"","code":"e742"},"dev-eclipse":{"char":"","code":"e79e"},"dev-ember":{"char":"","code":"e71b"},"dev-envato":{"char":"","code":"e75d"},"dev-erlang":{"char":"","code":"e7b1"},"dev-extjs":{"char":"","code":"e78e"},"dev-firebase":{"char":"","code":"e787"},"dev-firefox":{"char":"","code":"e745"},"dev-fsharp":{"char":"","code":"e7a7"},"dev-ghost":{"char":"","code":"e71f"},"dev-ghost_small":{"char":"","code":"e714"},"dev-git":{"char":"","code":"e702"},"dev-git_branch":{"char":"","code":"e725"},"dev-git_commit":{"char":"","code":"e729"},"dev-git_compare":{"char":"","code":"e728"},"dev-git_merge":{"char":"","code":"e727"},"dev-git_pull_request":{"char":"","code":"e726"},"dev-github":{"char":"","code":"e70a"},"dev-github_alt":{"char":"","code":"e708"},"dev-github_badge":{"char":"","code":"e709"},"dev-github_full":{"char":"","code":"e717"},"dev-gnu":{"char":"","code":"e779"},"dev-go":{"char":"","code":"e724"},"dev-google_cloud_platform":{"char":"","code":"e7b2"},"dev-google_drive":{"char":"","code":"e731"},"dev-grails":{"char":"","code":"e7b3"},"dev-groovy":{"char":"","code":"e775"},"dev-grunt":{"char":"","code":"e74c"},"dev-gulp":{"char":"","code":"e763"},"dev-hackernews":{"char":"","code":"e71a"},"dev-haskell":{"char":"","code":"e777"},"dev-heroku":{"char":"","code":"e77b"},"dev-html5":{"char":"","code":"e736"},"dev-html5_3d_effects":{"char":"","code":"e735"},"dev-html5_connectivity":{"char":"","code":"e734"},"dev-html5_device_access":{"char":"","code":"e733"},"dev-html5_multimedia":{"char":"","code":"e732"},"dev-ie":{"char":"","code":"e744"},"dev-illustrator":{"char":"","code":"e7b4"},"dev-intellij":{"char":"","code":"e7b5"},"dev-ionic":{"char":"","code":"e7a9"},"dev-java":{"char":"","code":"e738"},"dev-javascript":{"char":"","code":"e74e"},"dev-javascript_badge":{"char":"","code":"e781"},"dev-javascript_shield":{"char":"","code":"e74f"},"dev-jekyll_small":{"char":"","code":"e70d"},"dev-jenkins":{"char":"","code":"e767"},"dev-jira":{"char":"","code":"e75c"},"dev-joomla":{"char":"","code":"e741"},"dev-jquery":{"char":"","code":"e750"},"dev-jquery_ui":{"char":"","code":"e754"},"dev-komodo":{"char":"","code":"e792"},"dev-krakenjs":{"char":"","code":"e785"},"dev-krakenjs_badge":{"char":"","code":"e784"},"dev-laravel":{"char":"","code":"e73f"},"dev-less":{"char":"","code":"e758"},"dev-linux":{"char":"","code":"e712"},"dev-magento":{"char":"","code":"e740"},"dev-mailchimp":{"char":"","code":"e79a"},"dev-markdown":{"char":"","code":"e73e"},"dev-materializecss":{"char":"","code":"e7b6"},"dev-meteor":{"char":"","code":"e7a5"},"dev-meteorfull":{"char":"","code":"e7a6"},"dev-mitlicence":{"char":"","code":"e78b"},"dev-modernizr":{"char":"","code":"e720"},"dev-mongodb":{"char":"","code":"e7a4"},"dev-mootools":{"char":"","code":"e790"},"dev-mootools_badge":{"char":"","code":"e78f"},"dev-mozilla":{"char":"","code":"e786"},"dev-msql_server":{"char":"","code":"e77c"},"dev-mysql":{"char":"","code":"e704"},"dev-nancy":{"char":"","code":"e766"},"dev-netbeans":{"char":"","code":"e79b"},"dev-netmagazine":{"char":"","code":"e72e"},"dev-nginx":{"char":"","code":"e776"},"dev-nodejs":{"char":"","code":"e719"},"dev-nodejs_small":{"char":"","code":"e718"},"dev-npm":{"char":"","code":"e71e"},"dev-onedrive":{"char":"","code":"e762"},"dev-openshift":{"char":"","code":"e7b7"},"dev-opensource":{"char":"","code":"e771"},"dev-opera":{"char":"","code":"e746"},"dev-perl":{"char":"","code":"e769"},"dev-phonegap":{"char":"","code":"e730"},"dev-photoshop":{"char":"","code":"e7b8"},"dev-php":{"char":"","code":"e73d"},"dev-postgresql":{"char":"","code":"e76e"},"dev-prolog":{"char":"","code":"e7a1"},"dev-python":{"char":"","code":"e73c"},"dev-rackspace":{"char":"","code":"e7b9"},"dev-raphael":{"char":"","code":"e75f"},"dev-rasberry_pi":{"char":"","code":"e722"},"dev-react":{"char":"","code":"e7ba"},"dev-redhat":{"char":"","code":"e7bb"},"dev-redis":{"char":"","code":"e76d"},"dev-requirejs":{"char":"","code":"e770"},"dev-responsive":{"char":"","code":"e797"},"dev-ruby":{"char":"","code":"e739"},"dev-ruby_on_rails":{"char":"","code":"e73b"},"dev-ruby_rough":{"char":"","code":"e791"},"dev-rust":{"char":"","code":"e7a8"},"dev-safari":{"char":"","code":"e748"},"dev-sass":{"char":"","code":"e74b"},"dev-scala":{"char":"","code":"e737"},"dev-scriptcs":{"char":"","code":"e7bc"},"dev-scrum":{"char":"","code":"e7a0"},"dev-senchatouch":{"char":"","code":"e78c"},"dev-sizzlejs":{"char":"","code":"e788"},"dev-smashing_magazine":{"char":"","code":"e72d"},"dev-snap_svg":{"char":"","code":"e75e"},"dev-sqllite":{"char":"","code":"e7c4"},"dev-stackoverflow":{"char":"","code":"e710"},"dev-streamline":{"char":"","code":"e705"},"dev-stylus":{"char":"","code":"e759"},"dev-sublime":{"char":"","code":"e7aa"},"dev-swift":{"char":"","code":"e755"},"dev-symfony":{"char":"","code":"e756"},"dev-symfony_badge":{"char":"","code":"e757"},"dev-techcrunch":{"char":"","code":"e72c"},"dev-terminal":{"char":"","code":"e795"},"dev-terminal_badge":{"char":"","code":"e7a2"},"dev-travis":{"char":"","code":"e77e"},"dev-trello":{"char":"","code":"e75a"},"dev-typo3":{"char":"","code":"e772"},"dev-ubuntu":{"char":"","code":"e73a"},"dev-uikit":{"char":"","code":"e773"},"dev-unity_small":{"char":"","code":"e721"},"dev-vim":{"char":"","code":"e7c5"},"dev-visualstudio":{"char":"","code":"e70c"},"dev-w3c":{"char":"","code":"e76c"},"dev-webplatform":{"char":"","code":"e76f"},"dev-windows":{"char":"","code":"e70f"},"dev-wordpress":{"char":"","code":"e70b"},"dev-yahoo":{"char":"","code":"e715"},"dev-yahoo_small":{"char":"","code":"e72b"},"dev-yeoman":{"char":"","code":"e77a"},"dev-yii":{"char":"","code":"e782"},"dev-zend":{"char":"","code":"e778"},"fa-500px":{"char":"","code":"f26e"},"fa-address_book":{"char":"","code":"f2b9"},"fa-address_book_o":{"char":"","code":"f2ba"},"fa-address_card":{"char":"","code":"f2bb"},"fa-address_card_o":{"char":"","code":"f2bc"},"fa-adjust":{"char":"","code":"f042"},"fa-adn":{"char":"","code":"f170"},"fa-align_center":{"char":"","code":"f037"},"fa-align_justify":{"char":"","code":"f039"},"fa-align_left":{"char":"","code":"f036"},"fa-align_right":{"char":"","code":"f038"},"fa-amazon":{"char":"","code":"f270"},"fa-ambulance":{"char":"","code":"f0f9"},"fa-american_sign_language_interpreting":{"char":"","code":"f2a3"},"fa-anchor":{"char":"","code":"f13d"},"fa-android":{"char":"","code":"f17b"},"fa-angellist":{"char":"","code":"f209"},"fa-angle_double_down":{"char":"","code":"f103"},"fa-angle_double_left":{"char":"","code":"f100"},"fa-angle_double_right":{"char":"","code":"f101"},"fa-angle_double_up":{"char":"","code":"f102"},"fa-angle_down":{"char":"","code":"f107"},"fa-angle_left":{"char":"","code":"f104"},"fa-angle_right":{"char":"","code":"f105"},"fa-angle_up":{"char":"","code":"f106"},"fa-apple":{"char":"","code":"f179"},"fa-archive":{"char":"","code":"f187"},"fa-area_chart":{"char":"","code":"f1fe"},"fa-arrow_circle_down":{"char":"","code":"f0ab"},"fa-arrow_circle_left":{"char":"","code":"f0a8"},"fa-arrow_circle_o_down":{"char":"","code":"f01a"},"fa-arrow_circle_o_left":{"char":"","code":"f190"},"fa-arrow_circle_o_right":{"char":"","code":"f18e"},"fa-arrow_circle_o_up":{"char":"","code":"f01b"},"fa-arrow_circle_right":{"char":"","code":"f0a9"},"fa-arrow_circle_up":{"char":"","code":"f0aa"},"fa-arrow_down":{"char":"","code":"f063"},"fa-arrow_left":{"char":"","code":"f060"},"fa-arrow_right":{"char":"","code":"f061"},"fa-arrow_up":{"char":"","code":"f062"},"fa-arrows":{"char":"","code":"f047"},"fa-arrows_alt":{"char":"","code":"f0b2"},"fa-arrows_h":{"char":"","code":"f07e"},"fa-arrows_v":{"char":"","code":"f07d"},"fa-asl_interpreting":{"char":"","code":"f2a3"},"fa-assistive_listening_systems":{"char":"","code":"f2a2"},"fa-asterisk":{"char":"","code":"f069"},"fa-at":{"char":"","code":"f1fa"},"fa-audio_description":{"char":"","code":"f29e"},"fa-automobile":{"char":"","code":"f1b9"},"fa-backward":{"char":"","code":"f04a"},"fa-balance_scale":{"char":"","code":"f24e"},"fa-ban":{"char":"","code":"f05e"},"fa-bandcamp":{"char":"","code":"f2d5"},"fa-bank":{"char":"","code":"f19c"},"fa-bar_chart":{"char":"","code":"f080"},"fa-bar_chart_o":{"char":"","code":"f080"},"fa-barcode":{"char":"","code":"f02a"},"fa-bars":{"char":"","code":"f0c9"},"fa-bath":{"char":"","code":"f2cd"},"fa-bathtub":{"char":"","code":"f2cd"},"fa-battery":{"char":"","code":"f240"},"fa-battery_0":{"char":"","code":"f244"},"fa-battery_1":{"char":"","code":"f243"},"fa-battery_2":{"char":"","code":"f242"},"fa-battery_3":{"char":"","code":"f241"},"fa-battery_4":{"char":"","code":"f240"},"fa-battery_empty":{"char":"","code":"f244"},"fa-battery_full":{"char":"","code":"f240"},"fa-battery_half":{"char":"","code":"f242"},"fa-battery_quarter":{"char":"","code":"f243"},"fa-battery_three_quarters":{"char":"","code":"f241"},"fa-bed":{"char":"","code":"f236"},"fa-beer":{"char":"","code":"f0fc"},"fa-behance":{"char":"","code":"f1b4"},"fa-behance_square":{"char":"","code":"f1b5"},"fa-bell":{"char":"","code":"f0f3"},"fa-bell_o":{"char":"","code":"f0a2"},"fa-bell_slash":{"char":"","code":"f1f6"},"fa-bell_slash_o":{"char":"","code":"f1f7"},"fa-bicycle":{"char":"","code":"f206"},"fa-binoculars":{"char":"","code":"f1e5"},"fa-birthday_cake":{"char":"","code":"f1fd"},"fa-bitbucket":{"char":"","code":"f171"},"fa-bitbucket_square":{"char":"","code":"f172"},"fa-bitcoin":{"char":"","code":"f15a"},"fa-black_tie":{"char":"","code":"f27e"},"fa-blind":{"char":"","code":"f29d"},"fa-bluetooth":{"char":"","code":"f293"},"fa-bluetooth_b":{"char":"","code":"f294"},"fa-bold":{"char":"","code":"f032"},"fa-bolt":{"char":"","code":"f0e7"},"fa-bomb":{"char":"","code":"f1e2"},"fa-book":{"char":"","code":"f02d"},"fa-bookmark":{"char":"","code":"f02e"},"fa-bookmark_o":{"char":"","code":"f097"},"fa-braille":{"char":"","code":"f2a1"},"fa-briefcase":{"char":"","code":"f0b1"},"fa-btc":{"char":"","code":"f15a"},"fa-bug":{"char":"","code":"f188"},"fa-building":{"char":"","code":"f1ad"},"fa-building_o":{"char":"","code":"f0f7"},"fa-bullhorn":{"char":"","code":"f0a1"},"fa-bullseye":{"char":"","code":"f140"},"fa-bus":{"char":"","code":"f207"},"fa-buysellads":{"char":"","code":"f20d"},"fa-cab":{"char":"","code":"f1ba"},"fa-calculator":{"char":"","code":"f1ec"},"fa-calendar":{"char":"","code":"f073"},"fa-calendar_check_o":{"char":"","code":"f274"},"fa-calendar_minus_o":{"char":"","code":"f272"},"fa-calendar_o":{"char":"","code":"f133"},"fa-calendar_plus_o":{"char":"","code":"f271"},"fa-calendar_times_o":{"char":"","code":"f273"},"fa-camera":{"char":"","code":"f030"},"fa-camera_retro":{"char":"","code":"f083"},"fa-car":{"char":"","code":"f1b9"},"fa-caret_down":{"char":"","code":"f0d7"},"fa-caret_left":{"char":"","code":"f0d9"},"fa-caret_right":{"char":"","code":"f0da"},"fa-caret_square_o_down":{"char":"","code":"f150"},"fa-caret_square_o_left":{"char":"","code":"f191"},"fa-caret_square_o_right":{"char":"","code":"f152"},"fa-caret_square_o_up":{"char":"","code":"f151"},"fa-caret_up":{"char":"","code":"f0d8"},"fa-cart_arrow_down":{"char":"","code":"f218"},"fa-cart_plus":{"char":"","code":"f217"},"fa-cc":{"char":"","code":"f20a"},"fa-cc_amex":{"char":"","code":"f1f3"},"fa-cc_diners_club":{"char":"","code":"f24c"},"fa-cc_discover":{"char":"","code":"f1f2"},"fa-cc_jcb":{"char":"","code":"f24b"},"fa-cc_mastercard":{"char":"","code":"f1f1"},"fa-cc_paypal":{"char":"","code":"f1f4"},"fa-cc_stripe":{"char":"","code":"f1f5"},"fa-cc_visa":{"char":"","code":"f1f0"},"fa-certificate":{"char":"","code":"f0a3"},"fa-chain":{"char":"","code":"f0c1"},"fa-chain_broken":{"char":"","code":"f127"},"fa-check":{"char":"","code":"f00c"},"fa-check_circle":{"char":"","code":"f058"},"fa-check_circle_o":{"char":"","code":"f05d"},"fa-check_square":{"char":"","code":"f14a"},"fa-check_square_o":{"char":"","code":"f046"},"fa-chevron_circle_down":{"char":"","code":"f13a"},"fa-chevron_circle_left":{"char":"","code":"f137"},"fa-chevron_circle_right":{"char":"","code":"f138"},"fa-chevron_circle_up":{"char":"","code":"f139"},"fa-chevron_down":{"char":"","code":"f078"},"fa-chevron_left":{"char":"","code":"f053"},"fa-chevron_right":{"char":"","code":"f054"},"fa-chevron_up":{"char":"","code":"f077"},"fa-child":{"char":"","code":"f1ae"},"fa-chrome":{"char":"","code":"f268"},"fa-circle":{"char":"","code":"f111"},"fa-circle_o":{"char":"","code":"f10c"},"fa-circle_o_notch":{"char":"","code":"f1ce"},"fa-circle_thin":{"char":"","code":"f1db"},"fa-clipboard":{"char":"","code":"f0ea"},"fa-clock_o":{"char":"","code":"f017"},"fa-clone":{"char":"","code":"f24d"},"fa-close":{"char":"","code":"f00d"},"fa-cloud":{"char":"","code":"f0c2"},"fa-cloud_download":{"char":"","code":"f0ed"},"fa-cloud_upload":{"char":"","code":"f0ee"},"fa-cny":{"char":"","code":"f157"},"fa-code":{"char":"","code":"f121"},"fa-code_fork":{"char":"","code":"f126"},"fa-codepen":{"char":"","code":"f1cb"},"fa-codiepie":{"char":"","code":"f284"},"fa-coffee":{"char":"","code":"f0f4"},"fa-cog":{"char":"","code":"f013"},"fa-cogs":{"char":"","code":"f085"},"fa-columns":{"char":"","code":"f0db"},"fa-comment":{"char":"","code":"f075"},"fa-comment_o":{"char":"","code":"f0e5"},"fa-commenting":{"char":"","code":"f27a"},"fa-commenting_o":{"char":"","code":"f27b"},"fa-comments":{"char":"","code":"f086"},"fa-comments_o":{"char":"","code":"f0e6"},"fa-compass":{"char":"","code":"f14e"},"fa-compress":{"char":"","code":"f066"},"fa-connectdevelop":{"char":"","code":"f20e"},"fa-contao":{"char":"","code":"f26d"},"fa-copy":{"char":"","code":"f0c5"},"fa-copyright":{"char":"","code":"f1f9"},"fa-creative_commons":{"char":"","code":"f25e"},"fa-credit_card":{"char":"","code":"f09d"},"fa-credit_card_alt":{"char":"","code":"f283"},"fa-crop":{"char":"","code":"f125"},"fa-crosshairs":{"char":"","code":"f05b"},"fa-css3":{"char":"","code":"f13c"},"fa-cube":{"char":"","code":"f1b2"},"fa-cubes":{"char":"","code":"f1b3"},"fa-cut":{"char":"","code":"f0c4"},"fa-cutlery":{"char":"","code":"f0f5"},"fa-dashboard":{"char":"","code":"f0e4"},"fa-dashcube":{"char":"","code":"f210"},"fa-database":{"char":"","code":"f1c0"},"fa-deaf":{"char":"","code":"f2a4"},"fa-deafness":{"char":"","code":"f2a4"},"fa-dedent":{"char":"","code":"f03b"},"fa-delicious":{"char":"","code":"f1a5"},"fa-desktop":{"char":"","code":"f108"},"fa-deviantart":{"char":"","code":"f1bd"},"fa-diamond":{"char":"","code":"f219"},"fa-digg":{"char":"","code":"f1a6"},"fa-dollar":{"char":"","code":"f155"},"fa-dot_circle_o":{"char":"","code":"f192"},"fa-download":{"char":"","code":"f019"},"fa-dribbble":{"char":"","code":"f17d"},"fa-drivers_license":{"char":"","code":"f2c2"},"fa-drivers_license_o":{"char":"","code":"f2c3"},"fa-dropbox":{"char":"","code":"f16b"},"fa-drupal":{"char":"","code":"f1a9"},"fa-edge":{"char":"","code":"f282"},"fa-edit":{"char":"","code":"f044"},"fa-eercast":{"char":"","code":"f2da"},"fa-eject":{"char":"","code":"f052"},"fa-ellipsis_h":{"char":"","code":"f141"},"fa-ellipsis_v":{"char":"","code":"f142"},"fa-empire":{"char":"","code":"f1d1"},"fa-envelope":{"char":"","code":"f0e0"},"fa-envelope_o":{"char":"","code":"f003"},"fa-envelope_open":{"char":"","code":"f2b6"},"fa-envelope_open_o":{"char":"","code":"f2b7"},"fa-envelope_square":{"char":"","code":"f199"},"fa-envira":{"char":"","code":"f299"},"fa-eraser":{"char":"","code":"f12d"},"fa-etsy":{"char":"","code":"f2d7"},"fa-eur":{"char":"","code":"f153"},"fa-euro":{"char":"","code":"f153"},"fa-exchange":{"char":"","code":"f0ec"},"fa-exclamation":{"char":"","code":"f12a"},"fa-exclamation_circle":{"char":"","code":"f06a"},"fa-exclamation_triangle":{"char":"","code":"f071"},"fa-expand":{"char":"","code":"f065"},"fa-expeditedssl":{"char":"","code":"f23e"},"fa-external_link":{"char":"","code":"f08e"},"fa-external_link_square":{"char":"","code":"f14c"},"fa-eye":{"char":"","code":"f06e"},"fa-eye_slash":{"char":"","code":"f070"},"fa-eyedropper":{"char":"","code":"f1fb"},"fa-fa":{"char":"","code":"f2b4"},"fa-facebook":{"char":"","code":"f09a"},"fa-facebook_f":{"char":"","code":"f09a"},"fa-facebook_official":{"char":"","code":"f230"},"fa-facebook_square":{"char":"","code":"f082"},"fa-fast_backward":{"char":"","code":"f049"},"fa-fast_forward":{"char":"","code":"f050"},"fa-fax":{"char":"","code":"f1ac"},"fa-feed":{"char":"","code":"f09e"},"fa-female":{"char":"","code":"f182"},"fa-fighter_jet":{"char":"","code":"f0fb"},"fa-file":{"char":"","code":"f15b"},"fa-file_archive_o":{"char":"","code":"f1c6"},"fa-file_audio_o":{"char":"","code":"f1c7"},"fa-file_code_o":{"char":"","code":"f1c9"},"fa-file_excel_o":{"char":"","code":"f1c3"},"fa-file_image_o":{"char":"","code":"f1c5"},"fa-file_movie_o":{"char":"","code":"f1c8"},"fa-file_o":{"char":"","code":"f016"},"fa-file_pdf_o":{"char":"","code":"f1c1"},"fa-file_photo_o":{"char":"","code":"f1c5"},"fa-file_picture_o":{"char":"","code":"f1c5"},"fa-file_powerpoint_o":{"char":"","code":"f1c4"},"fa-file_sound_o":{"char":"","code":"f1c7"},"fa-file_text":{"char":"","code":"f15c"},"fa-file_text_o":{"char":"","code":"f0f6"},"fa-file_video_o":{"char":"","code":"f1c8"},"fa-file_word_o":{"char":"","code":"f1c2"},"fa-file_zip_o":{"char":"","code":"f1c6"},"fa-files_o":{"char":"","code":"f0c5"},"fa-film":{"char":"","code":"f008"},"fa-filter":{"char":"","code":"f0b0"},"fa-fire":{"char":"","code":"f06d"},"fa-fire_extinguisher":{"char":"","code":"f134"},"fa-firefox":{"char":"","code":"f269"},"fa-first_order":{"char":"","code":"f2b0"},"fa-flag":{"char":"","code":"f024"},"fa-flag_checkered":{"char":"","code":"f11e"},"fa-flag_o":{"char":"","code":"f11d"},"fa-flash":{"char":"","code":"f0e7"},"fa-flask":{"char":"","code":"f0c3"},"fa-flickr":{"char":"","code":"f16e"},"fa-floppy_o":{"char":"","code":"f0c7"},"fa-folder":{"char":"","code":"f07b"},"fa-folder_o":{"char":"","code":"f114"},"fa-folder_open":{"char":"","code":"f07c"},"fa-folder_open_o":{"char":"","code":"f115"},"fa-font":{"char":"","code":"f031"},"fa-font_awesome":{"char":"","code":"f2b4"},"fa-fonticons":{"char":"","code":"f280"},"fa-fort_awesome":{"char":"","code":"f286"},"fa-forumbee":{"char":"","code":"f211"},"fa-forward":{"char":"","code":"f04e"},"fa-foursquare":{"char":"","code":"f180"},"fa-free_code_camp":{"char":"","code":"f2c5"},"fa-frown_o":{"char":"","code":"f119"},"fa-futbol_o":{"char":"","code":"f1e3"},"fa-gamepad":{"char":"","code":"f11b"},"fa-gavel":{"char":"","code":"f0e3"},"fa-gbp":{"char":"","code":"f154"},"fa-ge":{"char":"","code":"f1d1"},"fa-gear":{"char":"","code":"f013"},"fa-gears":{"char":"","code":"f085"},"fa-genderless":{"char":"","code":"f22d"},"fa-get_pocket":{"char":"","code":"f265"},"fa-gg":{"char":"","code":"f260"},"fa-gg_circle":{"char":"","code":"f261"},"fa-gift":{"char":"","code":"f06b"},"fa-git":{"char":"","code":"f1d3"},"fa-git_square":{"char":"","code":"f1d2"},"fa-github":{"char":"","code":"f09b"},"fa-github_alt":{"char":"","code":"f113"},"fa-github_square":{"char":"","code":"f092"},"fa-gitlab":{"char":"","code":"f296"},"fa-gittip":{"char":"","code":"f184"},"fa-glass":{"char":"","code":"f000"},"fa-glide":{"char":"","code":"f2a5"},"fa-glide_g":{"char":"","code":"f2a6"},"fa-globe":{"char":"","code":"f0ac"},"fa-google":{"char":"","code":"f1a0"},"fa-google_plus":{"char":"","code":"f0d5"},"fa-google_plus_circle":{"char":"","code":"f2b3"},"fa-google_plus_official":{"char":"","code":"f2b3"},"fa-google_plus_square":{"char":"","code":"f0d4"},"fa-google_wallet":{"char":"","code":"f1ee"},"fa-graduation_cap":{"char":"","code":"f19d"},"fa-gratipay":{"char":"","code":"f184"},"fa-grav":{"char":"","code":"f2d6"},"fa-group":{"char":"","code":"f0c0"},"fa-h_square":{"char":"","code":"f0fd"},"fa-hacker_news":{"char":"","code":"f1d4"},"fa-hand_grab_o":{"char":"","code":"f255"},"fa-hand_lizard_o":{"char":"","code":"f258"},"fa-hand_o_down":{"char":"","code":"f0a7"},"fa-hand_o_left":{"char":"","code":"f0a5"},"fa-hand_o_right":{"char":"","code":"f0a4"},"fa-hand_o_up":{"char":"","code":"f0a6"},"fa-hand_paper_o":{"char":"","code":"f256"},"fa-hand_peace_o":{"char":"","code":"f25b"},"fa-hand_pointer_o":{"char":"","code":"f25a"},"fa-hand_rock_o":{"char":"","code":"f255"},"fa-hand_scissors_o":{"char":"","code":"f257"},"fa-hand_spock_o":{"char":"","code":"f259"},"fa-hand_stop_o":{"char":"","code":"f256"},"fa-handshake_o":{"char":"","code":"f2b5"},"fa-hard_of_hearing":{"char":"","code":"f2a4"},"fa-hashtag":{"char":"","code":"f292"},"fa-hdd_o":{"char":"","code":"f0a0"},"fa-header":{"char":"","code":"f1dc"},"fa-headphones":{"char":"","code":"f025"},"fa-heart":{"char":"","code":"f004"},"fa-heart_o":{"char":"","code":"f08a"},"fa-heartbeat":{"char":"","code":"f21e"},"fa-history":{"char":"","code":"f1da"},"fa-home":{"char":"","code":"f015"},"fa-hospital_o":{"char":"","code":"f0f8"},"fa-hotel":{"char":"","code":"f236"},"fa-hourglass":{"char":"","code":"f254"},"fa-hourglass_1":{"char":"","code":"f251"},"fa-hourglass_2":{"char":"","code":"f252"},"fa-hourglass_3":{"char":"","code":"f253"},"fa-hourglass_end":{"char":"","code":"f253"},"fa-hourglass_half":{"char":"","code":"f252"},"fa-hourglass_o":{"char":"","code":"f250"},"fa-hourglass_start":{"char":"","code":"f251"},"fa-houzz":{"char":"","code":"f27c"},"fa-html5":{"char":"","code":"f13b"},"fa-i_cursor":{"char":"","code":"f246"},"fa-id_badge":{"char":"","code":"f2c1"},"fa-id_card":{"char":"","code":"f2c2"},"fa-id_card_o":{"char":"","code":"f2c3"},"fa-ils":{"char":"","code":"f20b"},"fa-image":{"char":"","code":"f03e"},"fa-imdb":{"char":"","code":"f2d8"},"fa-inbox":{"char":"","code":"f01c"},"fa-indent":{"char":"","code":"f03c"},"fa-industry":{"char":"","code":"f275"},"fa-info":{"char":"","code":"f129"},"fa-info_circle":{"char":"","code":"f05a"},"fa-inr":{"char":"","code":"f156"},"fa-instagram":{"char":"","code":"f16d"},"fa-institution":{"char":"","code":"f19c"},"fa-internet_explorer":{"char":"","code":"f26b"},"fa-intersex":{"char":"","code":"f224"},"fa-ioxhost":{"char":"","code":"f208"},"fa-italic":{"char":"","code":"f033"},"fa-joomla":{"char":"","code":"f1aa"},"fa-jpy":{"char":"","code":"f157"},"fa-jsfiddle":{"char":"","code":"f1cc"},"fa-key":{"char":"","code":"f084"},"fa-keyboard_o":{"char":"","code":"f11c"},"fa-krw":{"char":"","code":"f159"},"fa-language":{"char":"","code":"f1ab"},"fa-laptop":{"char":"","code":"f109"},"fa-lastfm":{"char":"","code":"f202"},"fa-lastfm_square":{"char":"","code":"f203"},"fa-leaf":{"char":"","code":"f06c"},"fa-leanpub":{"char":"","code":"f212"},"fa-legal":{"char":"","code":"f0e3"},"fa-lemon_o":{"char":"","code":"f094"},"fa-level_down":{"char":"","code":"f149"},"fa-level_up":{"char":"","code":"f148"},"fa-life_bouy":{"char":"","code":"f1cd"},"fa-life_buoy":{"char":"","code":"f1cd"},"fa-life_ring":{"char":"","code":"f1cd"},"fa-life_saver":{"char":"","code":"f1cd"},"fa-lightbulb_o":{"char":"","code":"f0eb"},"fa-line_chart":{"char":"","code":"f201"},"fa-link":{"char":"","code":"f0c1"},"fa-linkedin":{"char":"","code":"f0e1"},"fa-linkedin_square":{"char":"","code":"f08c"},"fa-linode":{"char":"","code":"f2b8"},"fa-linux":{"char":"","code":"f17c"},"fa-list":{"char":"","code":"f03a"},"fa-list_alt":{"char":"","code":"f022"},"fa-list_ol":{"char":"","code":"f0cb"},"fa-list_ul":{"char":"","code":"f0ca"},"fa-location_arrow":{"char":"","code":"f124"},"fa-lock":{"char":"","code":"f023"},"fa-long_arrow_down":{"char":"","code":"f175"},"fa-long_arrow_left":{"char":"","code":"f177"},"fa-long_arrow_right":{"char":"","code":"f178"},"fa-long_arrow_up":{"char":"","code":"f176"},"fa-low_vision":{"char":"","code":"f2a8"},"fa-magic":{"char":"","code":"f0d0"},"fa-magnet":{"char":"","code":"f076"},"fa-mail_forward":{"char":"","code":"f064"},"fa-mail_reply":{"char":"","code":"f112"},"fa-mail_reply_all":{"char":"","code":"f122"},"fa-male":{"char":"","code":"f183"},"fa-map":{"char":"","code":"f279"},"fa-map_marker":{"char":"","code":"f041"},"fa-map_o":{"char":"","code":"f278"},"fa-map_pin":{"char":"","code":"f276"},"fa-map_signs":{"char":"","code":"f277"},"fa-mars":{"char":"","code":"f222"},"fa-mars_double":{"char":"","code":"f227"},"fa-mars_stroke":{"char":"","code":"f229"},"fa-mars_stroke_h":{"char":"","code":"f22b"},"fa-mars_stroke_v":{"char":"","code":"f22a"},"fa-maxcdn":{"char":"","code":"f136"},"fa-meanpath":{"char":"","code":"f20c"},"fa-medium":{"char":"","code":"f23a"},"fa-medkit":{"char":"","code":"f0fa"},"fa-meetup":{"char":"","code":"f2e0"},"fa-meh_o":{"char":"","code":"f11a"},"fa-mercury":{"char":"","code":"f223"},"fa-microchip":{"char":"","code":"f2db"},"fa-microphone":{"char":"","code":"f130"},"fa-microphone_slash":{"char":"","code":"f131"},"fa-minus":{"char":"","code":"f068"},"fa-minus_circle":{"char":"","code":"f056"},"fa-minus_square":{"char":"","code":"f146"},"fa-minus_square_o":{"char":"","code":"f147"},"fa-mixcloud":{"char":"","code":"f289"},"fa-mobile":{"char":"","code":"f10b"},"fa-mobile_phone":{"char":"","code":"f10b"},"fa-modx":{"char":"","code":"f285"},"fa-money":{"char":"","code":"f0d6"},"fa-moon_o":{"char":"","code":"f186"},"fa-mortar_board":{"char":"","code":"f19d"},"fa-motorcycle":{"char":"","code":"f21c"},"fa-mouse_pointer":{"char":"","code":"f245"},"fa-music":{"char":"","code":"f001"},"fa-navicon":{"char":"","code":"f0c9"},"fa-neuter":{"char":"","code":"f22c"},"fa-newspaper_o":{"char":"","code":"f1ea"},"fa-object_group":{"char":"","code":"f247"},"fa-object_ungroup":{"char":"","code":"f248"},"fa-odnoklassniki":{"char":"","code":"f263"},"fa-odnoklassniki_square":{"char":"","code":"f264"},"fa-opencart":{"char":"","code":"f23d"},"fa-openid":{"char":"","code":"f19b"},"fa-opera":{"char":"","code":"f26a"},"fa-optin_monster":{"char":"","code":"f23c"},"fa-outdent":{"char":"","code":"f03b"},"fa-pagelines":{"char":"","code":"f18c"},"fa-paint_brush":{"char":"","code":"f1fc"},"fa-paper_plane":{"char":"","code":"f1d8"},"fa-paper_plane_o":{"char":"","code":"f1d9"},"fa-paperclip":{"char":"","code":"f0c6"},"fa-paragraph":{"char":"","code":"f1dd"},"fa-paste":{"char":"","code":"f0ea"},"fa-pause":{"char":"","code":"f04c"},"fa-pause_circle":{"char":"","code":"f28b"},"fa-pause_circle_o":{"char":"","code":"f28c"},"fa-paw":{"char":"","code":"f1b0"},"fa-paypal":{"char":"","code":"f1ed"},"fa-pencil":{"char":"","code":"f040"},"fa-pencil_square":{"char":"","code":"f14b"},"fa-pencil_square_o":{"char":"","code":"f044"},"fa-percent":{"char":"","code":"f295"},"fa-phone":{"char":"","code":"f095"},"fa-phone_square":{"char":"","code":"f098"},"fa-photo":{"char":"","code":"f03e"},"fa-picture_o":{"char":"","code":"f03e"},"fa-pie_chart":{"char":"","code":"f200"},"fa-pied_piper":{"char":"","code":"f2ae"},"fa-pied_piper_alt":{"char":"","code":"f1a8"},"fa-pied_piper_pp":{"char":"","code":"f1a7"},"fa-pinterest":{"char":"","code":"f0d2"},"fa-pinterest_p":{"char":"","code":"f231"},"fa-pinterest_square":{"char":"","code":"f0d3"},"fa-plane":{"char":"","code":"f072"},"fa-play":{"char":"","code":"f04b"},"fa-play_circle":{"char":"","code":"f144"},"fa-play_circle_o":{"char":"","code":"f01d"},"fa-plug":{"char":"","code":"f1e6"},"fa-plus":{"char":"","code":"f067"},"fa-plus_circle":{"char":"","code":"f055"},"fa-plus_square":{"char":"","code":"f0fe"},"fa-plus_square_o":{"char":"","code":"f196"},"fa-podcast":{"char":"","code":"f2ce"},"fa-power_off":{"char":"","code":"f011"},"fa-print":{"char":"","code":"f02f"},"fa-product_hunt":{"char":"","code":"f288"},"fa-puzzle_piece":{"char":"","code":"f12e"},"fa-qq":{"char":"","code":"f1d6"},"fa-qrcode":{"char":"","code":"f029"},"fa-question":{"char":"","code":"f128"},"fa-question_circle":{"char":"","code":"f059"},"fa-question_circle_o":{"char":"","code":"f29c"},"fa-quora":{"char":"","code":"f2c4"},"fa-quote_left":{"char":"","code":"f10d"},"fa-quote_right":{"char":"","code":"f10e"},"fa-ra":{"char":"","code":"f1d0"},"fa-random":{"char":"","code":"f074"},"fa-ravelry":{"char":"","code":"f2d9"},"fa-rebel":{"char":"","code":"f1d0"},"fa-recycle":{"char":"","code":"f1b8"},"fa-reddit":{"char":"","code":"f1a1"},"fa-reddit_alien":{"char":"","code":"f281"},"fa-reddit_square":{"char":"","code":"f1a2"},"fa-refresh":{"char":"","code":"f021"},"fa-registered":{"char":"","code":"f25d"},"fa-remove":{"char":"","code":"f00d"},"fa-renren":{"char":"","code":"f18b"},"fa-reorder":{"char":"","code":"f0c9"},"fa-repeat":{"char":"","code":"f01e"},"fa-reply":{"char":"","code":"f112"},"fa-reply_all":{"char":"","code":"f122"},"fa-resistance":{"char":"","code":"f1d0"},"fa-retweet":{"char":"","code":"f079"},"fa-rmb":{"char":"","code":"f157"},"fa-road":{"char":"","code":"f018"},"fa-rocket":{"char":"","code":"f135"},"fa-rotate_left":{"char":"","code":"f0e2"},"fa-rotate_right":{"char":"","code":"f01e"},"fa-rouble":{"char":"","code":"f158"},"fa-rss":{"char":"","code":"f09e"},"fa-rss_square":{"char":"","code":"f143"},"fa-rub":{"char":"","code":"f158"},"fa-ruble":{"char":"","code":"f158"},"fa-rupee":{"char":"","code":"f156"},"fa-s15":{"char":"","code":"f2cd"},"fa-safari":{"char":"","code":"f267"},"fa-save":{"char":"","code":"f0c7"},"fa-scissors":{"char":"","code":"f0c4"},"fa-scribd":{"char":"","code":"f28a"},"fa-search":{"char":"","code":"f002"},"fa-search_minus":{"char":"","code":"f010"},"fa-search_plus":{"char":"","code":"f00e"},"fa-sellsy":{"char":"","code":"f213"},"fa-send":{"char":"","code":"f1d8"},"fa-send_o":{"char":"","code":"f1d9"},"fa-server":{"char":"","code":"f233"},"fa-share":{"char":"","code":"f064"},"fa-share_alt":{"char":"","code":"f1e0"},"fa-share_alt_square":{"char":"","code":"f1e1"},"fa-share_square":{"char":"","code":"f14d"},"fa-share_square_o":{"char":"","code":"f045"},"fa-shekel":{"char":"","code":"f20b"},"fa-sheqel":{"char":"","code":"f20b"},"fa-shield":{"char":"","code":"f132"},"fa-ship":{"char":"","code":"f21a"},"fa-shirtsinbulk":{"char":"","code":"f214"},"fa-shopping_bag":{"char":"","code":"f290"},"fa-shopping_basket":{"char":"","code":"f291"},"fa-shopping_cart":{"char":"","code":"f07a"},"fa-shower":{"char":"","code":"f2cc"},"fa-sign_in":{"char":"","code":"f090"},"fa-sign_language":{"char":"","code":"f2a7"},"fa-sign_out":{"char":"","code":"f08b"},"fa-signal":{"char":"","code":"f012"},"fa-signing":{"char":"","code":"f2a7"},"fa-simplybuilt":{"char":"","code":"f215"},"fa-sitemap":{"char":"","code":"f0e8"},"fa-skyatlas":{"char":"","code":"f216"},"fa-skype":{"char":"","code":"f17e"},"fa-slack":{"char":"","code":"f198"},"fa-sliders":{"char":"","code":"f1de"},"fa-slideshare":{"char":"","code":"f1e7"},"fa-smile_o":{"char":"","code":"f118"},"fa-snapchat":{"char":"","code":"f2ab"},"fa-snapchat_ghost":{"char":"","code":"f2ac"},"fa-snapchat_square":{"char":"","code":"f2ad"},"fa-snowflake_o":{"char":"","code":"f2dc"},"fa-soccer_ball_o":{"char":"","code":"f1e3"},"fa-sort":{"char":"","code":"f0dc"},"fa-sort_alpha_asc":{"char":"","code":"f15d"},"fa-sort_alpha_desc":{"char":"","code":"f15e"},"fa-sort_amount_asc":{"char":"","code":"f160"},"fa-sort_amount_desc":{"char":"","code":"f161"},"fa-sort_asc":{"char":"","code":"f0de"},"fa-sort_desc":{"char":"","code":"f0dd"},"fa-sort_down":{"char":"","code":"f0dd"},"fa-sort_numeric_asc":{"char":"","code":"f162"},"fa-sort_numeric_desc":{"char":"","code":"f163"},"fa-sort_up":{"char":"","code":"f0de"},"fa-soundcloud":{"char":"","code":"f1be"},"fa-space_shuttle":{"char":"","code":"f197"},"fa-spinner":{"char":"","code":"f110"},"fa-spoon":{"char":"","code":"f1b1"},"fa-spotify":{"char":"","code":"f1bc"},"fa-square":{"char":"","code":"f0c8"},"fa-square_o":{"char":"","code":"f096"},"fa-stack_exchange":{"char":"","code":"f18d"},"fa-stack_overflow":{"char":"","code":"f16c"},"fa-star":{"char":"","code":"f005"},"fa-star_half":{"char":"","code":"f089"},"fa-star_half_empty":{"char":"","code":"f123"},"fa-star_half_full":{"char":"","code":"f123"},"fa-star_half_o":{"char":"","code":"f123"},"fa-star_o":{"char":"","code":"f006"},"fa-steam":{"char":"","code":"f1b6"},"fa-steam_square":{"char":"","code":"f1b7"},"fa-step_backward":{"char":"","code":"f048"},"fa-step_forward":{"char":"","code":"f051"},"fa-stethoscope":{"char":"","code":"f0f1"},"fa-sticky_note":{"char":"","code":"f249"},"fa-sticky_note_o":{"char":"","code":"f24a"},"fa-stop":{"char":"","code":"f04d"},"fa-stop_circle":{"char":"","code":"f28d"},"fa-stop_circle_o":{"char":"","code":"f28e"},"fa-street_view":{"char":"","code":"f21d"},"fa-strikethrough":{"char":"","code":"f0cc"},"fa-stumbleupon":{"char":"","code":"f1a4"},"fa-stumbleupon_circle":{"char":"","code":"f1a3"},"fa-subscript":{"char":"","code":"f12c"},"fa-subway":{"char":"","code":"f239"},"fa-suitcase":{"char":"","code":"f0f2"},"fa-sun_o":{"char":"","code":"f185"},"fa-superpowers":{"char":"","code":"f2dd"},"fa-superscript":{"char":"","code":"f12b"},"fa-support":{"char":"","code":"f1cd"},"fa-table":{"char":"","code":"f0ce"},"fa-tablet":{"char":"","code":"f10a"},"fa-tachometer":{"char":"","code":"f0e4"},"fa-tag":{"char":"","code":"f02b"},"fa-tags":{"char":"","code":"f02c"},"fa-tasks":{"char":"","code":"f0ae"},"fa-taxi":{"char":"","code":"f1ba"},"fa-telegram":{"char":"","code":"f2c6"},"fa-television":{"char":"","code":"f26c"},"fa-tencent_weibo":{"char":"","code":"f1d5"},"fa-terminal":{"char":"","code":"f120"},"fa-text_height":{"char":"","code":"f034"},"fa-text_width":{"char":"","code":"f035"},"fa-th":{"char":"","code":"f00a"},"fa-th_large":{"char":"","code":"f009"},"fa-th_list":{"char":"","code":"f00b"},"fa-themeisle":{"char":"","code":"f2b2"},"fa-thermometer":{"char":"","code":"f2c7"},"fa-thermometer_0":{"char":"","code":"f2cb"},"fa-thermometer_1":{"char":"","code":"f2ca"},"fa-thermometer_2":{"char":"","code":"f2c9"},"fa-thermometer_3":{"char":"","code":"f2c8"},"fa-thermometer_4":{"char":"","code":"f2c7"},"fa-thermometer_empty":{"char":"","code":"f2cb"},"fa-thermometer_full":{"char":"","code":"f2c7"},"fa-thermometer_half":{"char":"","code":"f2c9"},"fa-thermometer_quarter":{"char":"","code":"f2ca"},"fa-thermometer_three_quarters":{"char":"","code":"f2c8"},"fa-thumb_tack":{"char":"","code":"f08d"},"fa-thumbs_down":{"char":"","code":"f165"},"fa-thumbs_o_down":{"char":"","code":"f088"},"fa-thumbs_o_up":{"char":"","code":"f087"},"fa-thumbs_up":{"char":"","code":"f164"},"fa-ticket":{"char":"","code":"f145"},"fa-times":{"char":"","code":"f00d"},"fa-times_circle":{"char":"","code":"f057"},"fa-times_circle_o":{"char":"","code":"f05c"},"fa-times_rectangle":{"char":"","code":"f2d3"},"fa-times_rectangle_o":{"char":"","code":"f2d4"},"fa-tint":{"char":"","code":"f043"},"fa-toggle_down":{"char":"","code":"f150"},"fa-toggle_left":{"char":"","code":"f191"},"fa-toggle_off":{"char":"","code":"f204"},"fa-toggle_on":{"char":"","code":"f205"},"fa-toggle_right":{"char":"","code":"f152"},"fa-toggle_up":{"char":"","code":"f151"},"fa-trademark":{"char":"","code":"f25c"},"fa-train":{"char":"","code":"f238"},"fa-transgender":{"char":"","code":"f224"},"fa-transgender_alt":{"char":"","code":"f225"},"fa-trash":{"char":"","code":"f1f8"},"fa-trash_o":{"char":"","code":"f014"},"fa-tree":{"char":"","code":"f1bb"},"fa-trello":{"char":"","code":"f181"},"fa-tripadvisor":{"char":"","code":"f262"},"fa-trophy":{"char":"","code":"f091"},"fa-truck":{"char":"","code":"f0d1"},"fa-try":{"char":"","code":"f195"},"fa-tty":{"char":"","code":"f1e4"},"fa-tumblr":{"char":"","code":"f173"},"fa-tumblr_square":{"char":"","code":"f174"},"fa-turkish_lira":{"char":"","code":"f195"},"fa-tv":{"char":"","code":"f26c"},"fa-twitch":{"char":"","code":"f1e8"},"fa-twitter":{"char":"","code":"f099"},"fa-twitter_square":{"char":"","code":"f081"},"fa-umbrella":{"char":"","code":"f0e9"},"fa-underline":{"char":"","code":"f0cd"},"fa-undo":{"char":"","code":"f0e2"},"fa-universal_access":{"char":"","code":"f29a"},"fa-university":{"char":"","code":"f19c"},"fa-unlink":{"char":"","code":"f127"},"fa-unlock":{"char":"","code":"f09c"},"fa-unlock_alt":{"char":"","code":"f13e"},"fa-unsorted":{"char":"","code":"f0dc"},"fa-upload":{"char":"","code":"f093"},"fa-usb":{"char":"","code":"f287"},"fa-usd":{"char":"","code":"f155"},"fa-user":{"char":"","code":"f007"},"fa-user_circle":{"char":"","code":"f2bd"},"fa-user_circle_o":{"char":"","code":"f2be"},"fa-user_md":{"char":"","code":"f0f0"},"fa-user_o":{"char":"","code":"f2c0"},"fa-user_plus":{"char":"","code":"f234"},"fa-user_secret":{"char":"","code":"f21b"},"fa-user_times":{"char":"","code":"f235"},"fa-users":{"char":"","code":"f0c0"},"fa-vcard":{"char":"","code":"f2bb"},"fa-vcard_o":{"char":"","code":"f2bc"},"fa-venus":{"char":"","code":"f221"},"fa-venus_double":{"char":"","code":"f226"},"fa-venus_mars":{"char":"","code":"f228"},"fa-viacoin":{"char":"","code":"f237"},"fa-viadeo":{"char":"","code":"f2a9"},"fa-viadeo_square":{"char":"","code":"f2aa"},"fa-video_camera":{"char":"","code":"f03d"},"fa-vimeo":{"char":"","code":"f27d"},"fa-vimeo_square":{"char":"","code":"f194"},"fa-vine":{"char":"","code":"f1ca"},"fa-vk":{"char":"","code":"f189"},"fa-volume_control_phone":{"char":"","code":"f2a0"},"fa-volume_down":{"char":"","code":"f027"},"fa-volume_off":{"char":"","code":"f026"},"fa-volume_up":{"char":"","code":"f028"},"fa-warning":{"char":"","code":"f071"},"fa-wechat":{"char":"","code":"f1d7"},"fa-weibo":{"char":"","code":"f18a"},"fa-weixin":{"char":"","code":"f1d7"},"fa-whatsapp":{"char":"","code":"f232"},"fa-wheelchair":{"char":"","code":"f193"},"fa-wheelchair_alt":{"char":"","code":"f29b"},"fa-wifi":{"char":"","code":"f1eb"},"fa-wikipedia_w":{"char":"","code":"f266"},"fa-window_close":{"char":"","code":"f2d3"},"fa-window_close_o":{"char":"","code":"f2d4"},"fa-window_maximize":{"char":"","code":"f2d0"},"fa-window_minimize":{"char":"","code":"f2d1"},"fa-window_restore":{"char":"","code":"f2d2"},"fa-windows":{"char":"","code":"f17a"},"fa-won":{"char":"","code":"f159"},"fa-wordpress":{"char":"","code":"f19a"},"fa-wpbeginner":{"char":"","code":"f297"},"fa-wpexplorer":{"char":"","code":"f2de"},"fa-wpforms":{"char":"","code":"f298"},"fa-wrench":{"char":"","code":"f0ad"},"fa-xing":{"char":"","code":"f168"},"fa-xing_square":{"char":"","code":"f169"},"fa-y_combinator":{"char":"","code":"f23b"},"fa-y_combinator_square":{"char":"","code":"f1d4"},"fa-yahoo":{"char":"","code":"f19e"},"fa-yc":{"char":"","code":"f23b"},"fa-yc_square":{"char":"","code":"f1d4"},"fa-yelp":{"char":"","code":"f1e9"},"fa-yen":{"char":"","code":"f157"},"fa-yoast":{"char":"","code":"f2b1"},"fa-youtube":{"char":"","code":"f167"},"fa-youtube_play":{"char":"","code":"f16a"},"fa-youtube_square":{"char":"","code":"f166"},"fae-apple_fruit":{"char":"","code":"e29e"},"fae-atom":{"char":"","code":"e27f"},"fae-bacteria":{"char":"","code":"e280"},"fae-banana":{"char":"","code":"e281"},"fae-bath":{"char":"","code":"e282"},"fae-bed":{"char":"","code":"e283"},"fae-benzene":{"char":"","code":"e284"},"fae-bigger":{"char":"","code":"e285"},"fae-biohazard":{"char":"","code":"e286"},"fae-blogger_circle":{"char":"","code":"e287"},"fae-blogger_square":{"char":"","code":"e288"},"fae-bones":{"char":"","code":"e289"},"fae-book_open":{"char":"","code":"e28a"},"fae-book_open_o":{"char":"","code":"e28b"},"fae-brain":{"char":"","code":"e28c"},"fae-bread":{"char":"","code":"e28d"},"fae-butterfly":{"char":"","code":"e28e"},"fae-carot":{"char":"","code":"e28f"},"fae-cc_by":{"char":"","code":"e290"},"fae-cc_cc":{"char":"","code":"e291"},"fae-cc_nc":{"char":"","code":"e292"},"fae-cc_nc_eu":{"char":"","code":"e293"},"fae-cc_nc_jp":{"char":"","code":"e294"},"fae-cc_nd":{"char":"","code":"e295"},"fae-cc_remix":{"char":"","code":"e296"},"fae-cc_sa":{"char":"","code":"e297"},"fae-cc_share":{"char":"","code":"e298"},"fae-cc_zero":{"char":"","code":"e299"},"fae-checklist_o":{"char":"","code":"e29a"},"fae-cheese":{"char":"","code":"e264"},"fae-cherry":{"char":"","code":"e29b"},"fae-chess_bishop":{"char":"","code":"e29c"},"fae-chess_horse":{"char":"","code":"e25f"},"fae-chess_king":{"char":"","code":"e260"},"fae-chess_pawn":{"char":"","code":"e261"},"fae-chess_queen":{"char":"","code":"e262"},"fae-chess_tower":{"char":"","code":"e263"},"fae-chicken_thigh":{"char":"","code":"e29f"},"fae-chilli":{"char":"","code":"e265"},"fae-chip":{"char":"","code":"e266"},"fae-cicling":{"char":"","code":"e267"},"fae-cloud":{"char":"","code":"e268"},"fae-cockroach":{"char":"","code":"e269"},"fae-coffe_beans":{"char":"","code":"e26a"},"fae-coins":{"char":"","code":"e26b"},"fae-comb":{"char":"","code":"e26c"},"fae-comet":{"char":"","code":"e26d"},"fae-crown":{"char":"","code":"e26e"},"fae-cup_coffe":{"char":"","code":"e26f"},"fae-dice":{"char":"","code":"e270"},"fae-disco":{"char":"","code":"e271"},"fae-dna":{"char":"","code":"e272"},"fae-donut":{"char":"","code":"e273"},"fae-dress":{"char":"","code":"e274"},"fae-drop":{"char":"","code":"e275"},"fae-ello":{"char":"","code":"e276"},"fae-envelope_open":{"char":"","code":"e277"},"fae-envelope_open_o":{"char":"","code":"e278"},"fae-equal":{"char":"","code":"e279"},"fae-equal_bigger":{"char":"","code":"e27a"},"fae-feedly":{"char":"","code":"e27b"},"fae-file_export":{"char":"","code":"e27c"},"fae-file_import":{"char":"","code":"e27d"},"fae-fingerprint":{"char":"","code":"e23f"},"fae-floppy":{"char":"","code":"e240"},"fae-footprint":{"char":"","code":"e241"},"fae-freecodecamp":{"char":"","code":"e242"},"fae-galaxy":{"char":"","code":"e243"},"fae-galery":{"char":"","code":"e244"},"fae-gift_card":{"char":"","code":"e2a0"},"fae-glass":{"char":"","code":"e245"},"fae-google_drive":{"char":"","code":"e246"},"fae-google_play":{"char":"","code":"e247"},"fae-gps":{"char":"","code":"e248"},"fae-grav":{"char":"","code":"e249"},"fae-guitar":{"char":"","code":"e24a"},"fae-gut":{"char":"","code":"e24b"},"fae-halter":{"char":"","code":"e24c"},"fae-hamburger":{"char":"","code":"e24d"},"fae-hat":{"char":"","code":"e24e"},"fae-hexagon":{"char":"","code":"e24f"},"fae-high_heel":{"char":"","code":"e250"},"fae-hotdog":{"char":"","code":"e251"},"fae-ice_cream":{"char":"","code":"e252"},"fae-id_card":{"char":"","code":"e253"},"fae-imdb":{"char":"","code":"e254"},"fae-infinity":{"char":"","code":"e255"},"fae-injection":{"char":"","code":"e2a1"},"fae-isle":{"char":"","code":"e2a2"},"fae-java":{"char":"","code":"e256"},"fae-layers":{"char":"","code":"e257"},"fae-lips":{"char":"","code":"e258"},"fae-lipstick":{"char":"","code":"e259"},"fae-liver":{"char":"","code":"e25a"},"fae-lollipop":{"char":"","code":"e2a3"},"fae-loyalty_card":{"char":"","code":"e2a4"},"fae-lung":{"char":"","code":"e25b"},"fae-makeup_brushes":{"char":"","code":"e25c"},"fae-maximize":{"char":"","code":"e25d"},"fae-meat":{"char":"","code":"e2a5"},"fae-medicine":{"char":"","code":"e221"},"fae-microscope":{"char":"","code":"e222"},"fae-milk_bottle":{"char":"","code":"e223"},"fae-minimize":{"char":"","code":"e224"},"fae-molecule":{"char":"","code":"e225"},"fae-moon_cloud":{"char":"","code":"e226"},"fae-mountains":{"char":"","code":"e2a6"},"fae-mushroom":{"char":"","code":"e227"},"fae-mustache":{"char":"","code":"e228"},"fae-mysql":{"char":"","code":"e229"},"fae-nintendo":{"char":"","code":"e22a"},"fae-orange":{"char":"","code":"e2a7"},"fae-palette_color":{"char":"","code":"e22b"},"fae-peach":{"char":"","code":"e2a8"},"fae-pear":{"char":"","code":"e2a9"},"fae-pi":{"char":"","code":"e22c"},"fae-pizza":{"char":"","code":"e22d"},"fae-planet":{"char":"","code":"e22e"},"fae-plant":{"char":"","code":"e22f"},"fae-playstation":{"char":"","code":"e230"},"fae-poison":{"char":"","code":"e231"},"fae-popcorn":{"char":"","code":"e232"},"fae-popsicle":{"char":"","code":"e233"},"fae-pulse":{"char":"","code":"e234"},"fae-python":{"char":"","code":"e235"},"fae-quora_circle":{"char":"","code":"e236"},"fae-quora_square":{"char":"","code":"e237"},"fae-radioactive":{"char":"","code":"e238"},"fae-raining":{"char":"","code":"e239"},"fae-real_heart":{"char":"","code":"e23a"},"fae-refrigerator":{"char":"","code":"e23b"},"fae-restore":{"char":"","code":"e23c"},"fae-ring":{"char":"","code":"e23d"},"fae-ruby":{"char":"","code":"e23e"},"fae-ruby_o":{"char":"","code":"e21e"},"fae-ruler":{"char":"","code":"e21f"},"fae-shirt":{"char":"","code":"e218"},"fae-slash":{"char":"","code":"e216"},"fae-smaller":{"char":"","code":"e200"},"fae-snowing":{"char":"","code":"e201"},"fae-soda":{"char":"","code":"e202"},"fae-sofa":{"char":"","code":"e203"},"fae-soup":{"char":"","code":"e204"},"fae-spermatozoon":{"char":"","code":"e205"},"fae-spin_double":{"char":"","code":"e206"},"fae-stomach":{"char":"","code":"e207"},"fae-storm":{"char":"","code":"e208"},"fae-sun_cloud":{"char":"","code":"e21d"},"fae-sushi":{"char":"","code":"e21a"},"fae-tacos":{"char":"","code":"e219"},"fae-telegram":{"char":"","code":"e217"},"fae-telegram_circle":{"char":"","code":"e215"},"fae-telescope":{"char":"","code":"e209"},"fae-thermometer":{"char":"","code":"e20a"},"fae-thermometer_high":{"char":"","code":"e20b"},"fae-thermometer_low":{"char":"","code":"e20c"},"fae-thin_close":{"char":"","code":"e20d"},"fae-toilet":{"char":"","code":"e20e"},"fae-tools":{"char":"","code":"e20f"},"fae-tooth":{"char":"","code":"e210"},"fae-tree":{"char":"","code":"e21c"},"fae-triangle_ruler":{"char":"","code":"e21b"},"fae-umbrella":{"char":"","code":"e220"},"fae-uterus":{"char":"","code":"e211"},"fae-virus":{"char":"","code":"e214"},"fae-w3c":{"char":"","code":"e212"},"fae-walking":{"char":"","code":"e213"},"fae-wallet":{"char":"","code":"e25e"},"fae-wind":{"char":"","code":"e27e"},"fae-xbox":{"char":"","code":"e29d"},"iec-power":{"char":"⏻","code":"23fb"},"iec-power_off":{"char":"⭘","code":"2b58"},"iec-power_on":{"char":"⏽","code":"23fd"},"iec-sleep_mode":{"char":"⏾","code":"23fe"},"iec-toggle_power":{"char":"⏼","code":"23fc"},"indent-dotted_guide":{"char":"","code":"e621"},"indent-line":{"char":"","code":"e621"},"indentation-line":{"char":"","code":"e621"},"linux-almalinux":{"char":"","code":"f31d"},"linux-alpine":{"char":"","code":"f300"},"linux-aosc":{"char":"","code":"f301"},"linux-apple":{"char":"","code":"f302"},"linux-archcraft":{"char":"","code":"f345"},"linux-archlabs":{"char":"","code":"f31e"},"linux-archlinux":{"char":"","code":"f303"},"linux-arcolinux":{"char":"","code":"f346"},"linux-arduino":{"char":"","code":"f34b"},"linux-artix":{"char":"","code":"f31f"},"linux-awesome":{"char":"","code":"f354"},"linux-biglinux":{"char":"","code":"f347"},"linux-bspwm":{"char":"","code":"f355"},"linux-budgie":{"char":"","code":"f320"},"linux-centos":{"char":"","code":"f304"},"linux-cinnamon":{"char":"","code":"f35f"},"linux-codeberg":{"char":"","code":"f330"},"linux-coreos":{"char":"","code":"f305"},"linux-crystal":{"char":"","code":"f348"},"linux-debian":{"char":"","code":"f306"},"linux-deepin":{"char":"","code":"f321"},"linux-devuan":{"char":"","code":"f307"},"linux-docker":{"char":"","code":"f308"},"linux-dwm":{"char":"","code":"f356"},"linux-elementary":{"char":"","code":"f309"},"linux-endeavour":{"char":"","code":"f322"},"linux-enlightenment":{"char":"","code":"f357"},"linux-fdroid":{"char":"","code":"f36a"},"linux-fedora":{"char":"","code":"f30a"},"linux-fedora_inverse":{"char":"","code":"f30b"},"linux-ferris":{"char":"","code":"f323"},"linux-flathub":{"char":"","code":"f324"},"linux-fluxbox":{"char":"","code":"f358"},"linux-forgejo":{"char":"","code":"f335"},"linux-fosdem":{"char":"","code":"f36b"},"linux-freebsd":{"char":"","code":"f30c"},"linux-freecad":{"char":"","code":"f336"},"linux-freedesktop":{"char":"","code":"f360"},"linux-garuda":{"char":"","code":"f337"},"linux-gentoo":{"char":"","code":"f30d"},"linux-gimp":{"char":"","code":"f338"},"linux-gitea":{"char":"","code":"f339"},"linux-gnome":{"char":"","code":"f361"},"linux-gnu_guix":{"char":"","code":"f325"},"linux-gtk":{"char":"","code":"f362"},"linux-hyperbola":{"char":"","code":"f33a"},"linux-hyprland":{"char":"","code":"f359"},"linux-i3":{"char":"","code":"f35a"},"linux-illumos":{"char":"","code":"f326"},"linux-inkscape":{"char":"","code":"f33b"},"linux-jwm":{"char":"","code":"f35b"},"linux-kali_linux":{"char":"","code":"f327"},"linux-kde_neon":{"char":"","code":"f331"},"linux-kde_plasma":{"char":"","code":"f332"},"linux-kdenlive":{"char":"","code":"f33c"},"linux-kicad":{"char":"","code":"f34c"},"linux-krita":{"char":"","code":"f33d"},"linux-kubuntu":{"char":"","code":"f333"},"linux-kubuntu_inverse":{"char":"","code":"f334"},"linux-linuxmint":{"char":"","code":"f30e"},"linux-linuxmint_inverse":{"char":"","code":"f30f"},"linux-locos":{"char":"","code":"f349"},"linux-lxde":{"char":"","code":"f363"},"linux-lxle":{"char":"","code":"f33e"},"linux-lxqt":{"char":"","code":"f364"},"linux-mageia":{"char":"","code":"f310"},"linux-mandriva":{"char":"","code":"f311"},"linux-manjaro":{"char":"","code":"f312"},"linux-mate":{"char":"","code":"f365"},"linux-mpv":{"char":"","code":"f36e"},"linux-mxlinux":{"char":"","code":"f33f"},"linux-neovim":{"char":"","code":"f36f"},"linux-nixos":{"char":"","code":"f313"},"linux-octoprint":{"char":"","code":"f34d"},"linux-openbsd":{"char":"","code":"f328"},"linux-openscad":{"char":"","code":"f34e"},"linux-opensuse":{"char":"","code":"f314"},"linux-osh":{"char":"","code":"f34f"},"linux-oshwa":{"char":"","code":"f350"},"linux-osi":{"char":"","code":"f36c"},"linux-parabola":{"char":"","code":"f340"},"linux-parrot":{"char":"","code":"f329"},"linux-pop_os":{"char":"","code":"f32a"},"linux-prusaslicer":{"char":"","code":"f351"},"linux-puppy":{"char":"","code":"f341"},"linux-qtile":{"char":"","code":"f35c"},"linux-qubesos":{"char":"","code":"f342"},"linux-raspberry_pi":{"char":"","code":"f315"},"linux-redhat":{"char":"","code":"f316"},"linux-reprap":{"char":"","code":"f352"},"linux-riscv":{"char":"","code":"f353"},"linux-rocky_linux":{"char":"","code":"f32b"},"linux-sabayon":{"char":"","code":"f317"},"linux-slackware":{"char":"","code":"f318"},"linux-slackware_inverse":{"char":"","code":"f319"},"linux-snappy":{"char":"","code":"f32c"},"linux-solus":{"char":"","code":"f32d"},"linux-sway":{"char":"","code":"f35d"},"linux-tails":{"char":"","code":"f343"},"linux-thunderbird":{"char":"","code":"f370"},"linux-tor":{"char":"","code":"f371"},"linux-trisquel":{"char":"","code":"f344"},"linux-tux":{"char":"","code":"f31a"},"linux-ubuntu":{"char":"","code":"f31b"},"linux-ubuntu_inverse":{"char":"","code":"f31c"},"linux-vanilla":{"char":"","code":"f366"},"linux-void":{"char":"","code":"f32e"},"linux-vscodium":{"char":"","code":"f372"},"linux-wayland":{"char":"","code":"f367"},"linux-wikimedia":{"char":"","code":"f36d"},"linux-xerolinux":{"char":"","code":"f34a"},"linux-xfce":{"char":"","code":"f368"},"linux-xmonad":{"char":"","code":"f35e"},"linux-xorg":{"char":"","code":"f369"},"linux-zorin":{"char":"","code":"f32f"},"md-ab_testing":{"char":"󰇉","code":"f01c9"},"md-abacus":{"char":"󱛠","code":"f16e0"},"md-abjad_arabic":{"char":"󱌨","code":"f1328"},"md-abjad_hebrew":{"char":"󱌩","code":"f1329"},"md-abugida_devanagari":{"char":"󱌪","code":"f132a"},"md-abugida_thai":{"char":"󱌫","code":"f132b"},"md-access_point":{"char":"󰀃","code":"f0003"},"md-access_point_check":{"char":"󱔸","code":"f1538"},"md-access_point_minus":{"char":"󱔹","code":"f1539"},"md-access_point_network":{"char":"󰀂","code":"f0002"},"md-access_point_network_off":{"char":"󰯡","code":"f0be1"},"md-access_point_off":{"char":"󱔑","code":"f1511"},"md-access_point_plus":{"char":"󱔺","code":"f153a"},"md-access_point_remove":{"char":"󱔻","code":"f153b"},"md-account":{"char":"󰀄","code":"f0004"},"md-account_alert":{"char":"󰀅","code":"f0005"},"md-account_alert_outline":{"char":"󰭐","code":"f0b50"},"md-account_arrow_down":{"char":"󱡨","code":"f1868"},"md-account_arrow_down_outline":{"char":"󱡩","code":"f1869"},"md-account_arrow_left":{"char":"󰭑","code":"f0b51"},"md-account_arrow_left_outline":{"char":"󰭒","code":"f0b52"},"md-account_arrow_right":{"char":"󰭓","code":"f0b53"},"md-account_arrow_right_outline":{"char":"󰭔","code":"f0b54"},"md-account_arrow_up":{"char":"󱡧","code":"f1867"},"md-account_arrow_up_outline":{"char":"󱡪","code":"f186a"},"md-account_box":{"char":"󰀆","code":"f0006"},"md-account_box_multiple":{"char":"󰤴","code":"f0934"},"md-account_box_multiple_outline":{"char":"󱀊","code":"f100a"},"md-account_box_outline":{"char":"󰀇","code":"f0007"},"md-account_cancel":{"char":"󱋟","code":"f12df"},"md-account_cancel_outline":{"char":"󱋠","code":"f12e0"},"md-account_cash":{"char":"󱂗","code":"f1097"},"md-account_cash_outline":{"char":"󱂘","code":"f1098"},"md-account_check":{"char":"󰀈","code":"f0008"},"md-account_check_outline":{"char":"󰯢","code":"f0be2"},"md-account_child":{"char":"󰪉","code":"f0a89"},"md-account_child_circle":{"char":"󰪊","code":"f0a8a"},"md-account_child_outline":{"char":"󱃈","code":"f10c8"},"md-account_circle":{"char":"󰀉","code":"f0009"},"md-account_circle_outline":{"char":"󰭕","code":"f0b55"},"md-account_clock":{"char":"󰭖","code":"f0b56"},"md-account_clock_outline":{"char":"󰭗","code":"f0b57"},"md-account_cog":{"char":"󱍰","code":"f1370"},"md-account_cog_outline":{"char":"󱍱","code":"f1371"},"md-account_convert":{"char":"󰀊","code":"f000a"},"md-account_convert_outline":{"char":"󱌁","code":"f1301"},"md-account_cowboy_hat":{"char":"󰺛","code":"f0e9b"},"md-account_cowboy_hat_outline":{"char":"󱟳","code":"f17f3"},"md-account_details":{"char":"󰘱","code":"f0631"},"md-account_details_outline":{"char":"󱍲","code":"f1372"},"md-account_edit":{"char":"󰚼","code":"f06bc"},"md-account_edit_outline":{"char":"󰿻","code":"f0ffb"},"md-account_eye":{"char":"󰐠","code":"f0420"},"md-account_eye_outline":{"char":"󱉻","code":"f127b"},"md-account_filter":{"char":"󰤶","code":"f0936"},"md-account_filter_outline":{"char":"󰾝","code":"f0f9d"},"md-account_group":{"char":"󰡉","code":"f0849"},"md-account_group_outline":{"char":"󰭘","code":"f0b58"},"md-account_hard_hat":{"char":"󰖵","code":"f05b5"},"md-account_hard_hat_outline":{"char":"󱨟","code":"f1a1f"},"md-account_heart":{"char":"󰢙","code":"f0899"},"md-account_heart_outline":{"char":"󰯣","code":"f0be3"},"md-account_injury":{"char":"󱠕","code":"f1815"},"md-account_injury_outline":{"char":"󱠖","code":"f1816"},"md-account_key":{"char":"󰀋","code":"f000b"},"md-account_key_outline":{"char":"󰯤","code":"f0be4"},"md-account_lock":{"char":"󱅞","code":"f115e"},"md-account_lock_open":{"char":"󱥠","code":"f1960"},"md-account_lock_open_outline":{"char":"󱥡","code":"f1961"},"md-account_lock_outline":{"char":"󱅟","code":"f115f"},"md-account_minus":{"char":"󰀍","code":"f000d"},"md-account_minus_outline":{"char":"󰫬","code":"f0aec"},"md-account_multiple":{"char":"󰀎","code":"f000e"},"md-account_multiple_check":{"char":"󰣅","code":"f08c5"},"md-account_multiple_check_outline":{"char":"󱇾","code":"f11fe"},"md-account_multiple_minus":{"char":"󰗓","code":"f05d3"},"md-account_multiple_minus_outline":{"char":"󰯥","code":"f0be5"},"md-account_multiple_outline":{"char":"󰀏","code":"f000f"},"md-account_multiple_plus":{"char":"󰀐","code":"f0010"},"md-account_multiple_plus_outline":{"char":"󰠀","code":"f0800"},"md-account_multiple_remove":{"char":"󱈊","code":"f120a"},"md-account_multiple_remove_outline":{"char":"󱈋","code":"f120b"},"md-account_music":{"char":"󰠃","code":"f0803"},"md-account_music_outline":{"char":"󰳩","code":"f0ce9"},"md-account_network":{"char":"󰀑","code":"f0011"},"md-account_network_outline":{"char":"󰯦","code":"f0be6"},"md-account_off":{"char":"󰀒","code":"f0012"},"md-account_off_outline":{"char":"󰯧","code":"f0be7"},"md-account_outline":{"char":"󰀓","code":"f0013"},"md-account_plus":{"char":"󰀔","code":"f0014"},"md-account_plus_outline":{"char":"󰠁","code":"f0801"},"md-account_question":{"char":"󰭙","code":"f0b59"},"md-account_question_outline":{"char":"󰭚","code":"f0b5a"},"md-account_reactivate":{"char":"󱔫","code":"f152b"},"md-account_reactivate_outline":{"char":"󱔬","code":"f152c"},"md-account_remove":{"char":"󰀕","code":"f0015"},"md-account_remove_outline":{"char":"󰫭","code":"f0aed"},"md-account_school":{"char":"󱨠","code":"f1a20"},"md-account_school_outline":{"char":"󱨡","code":"f1a21"},"md-account_search":{"char":"󰀖","code":"f0016"},"md-account_search_outline":{"char":"󰤵","code":"f0935"},"md-account_settings":{"char":"󰘰","code":"f0630"},"md-account_settings_outline":{"char":"󱃉","code":"f10c9"},"md-account_star":{"char":"󰀗","code":"f0017"},"md-account_star_outline":{"char":"󰯨","code":"f0be8"},"md-account_supervisor":{"char":"󰪋","code":"f0a8b"},"md-account_supervisor_circle":{"char":"󰪌","code":"f0a8c"},"md-account_supervisor_circle_outline":{"char":"󱓬","code":"f14ec"},"md-account_supervisor_outline":{"char":"󱄭","code":"f112d"},"md-account_switch":{"char":"󰀙","code":"f0019"},"md-account_switch_outline":{"char":"󰓋","code":"f04cb"},"md-account_sync":{"char":"󱤛","code":"f191b"},"md-account_sync_outline":{"char":"󱤜","code":"f191c"},"md-account_tie":{"char":"󰳣","code":"f0ce3"},"md-account_tie_hat":{"char":"󱢘","code":"f1898"},"md-account_tie_hat_outline":{"char":"󱢙","code":"f1899"},"md-account_tie_outline":{"char":"󱃊","code":"f10ca"},"md-account_tie_voice":{"char":"󱌈","code":"f1308"},"md-account_tie_voice_off":{"char":"󱌊","code":"f130a"},"md-account_tie_voice_off_outline":{"char":"󱌋","code":"f130b"},"md-account_tie_voice_outline":{"char":"󱌉","code":"f1309"},"md-account_tie_woman":{"char":"󱪌","code":"f1a8c"},"md-account_voice":{"char":"󰗋","code":"f05cb"},"md-account_voice_off":{"char":"󰻔","code":"f0ed4"},"md-account_wrench":{"char":"󱢚","code":"f189a"},"md-account_wrench_outline":{"char":"󱢛","code":"f189b"},"md-adjust":{"char":"󰀚","code":"f001a"},"md-advertisements":{"char":"󱤪","code":"f192a"},"md-advertisements_off":{"char":"󱤫","code":"f192b"},"md-air_conditioner":{"char":"󰀛","code":"f001b"},"md-air_filter":{"char":"󰵃","code":"f0d43"},"md-air_horn":{"char":"󰶬","code":"f0dac"},"md-air_humidifier":{"char":"󱂙","code":"f1099"},"md-air_humidifier_off":{"char":"󱑦","code":"f1466"},"md-air_purifier":{"char":"󰵄","code":"f0d44"},"md-airbag":{"char":"󰯩","code":"f0be9"},"md-airballoon":{"char":"󰀜","code":"f001c"},"md-airballoon_outline":{"char":"󱀋","code":"f100b"},"md-airplane":{"char":"󰀝","code":"f001d"},"md-airplane_alert":{"char":"󱡺","code":"f187a"},"md-airplane_check":{"char":"󱡻","code":"f187b"},"md-airplane_clock":{"char":"󱡼","code":"f187c"},"md-airplane_cog":{"char":"󱡽","code":"f187d"},"md-airplane_edit":{"char":"󱡾","code":"f187e"},"md-airplane_landing":{"char":"󰗔","code":"f05d4"},"md-airplane_marker":{"char":"󱡿","code":"f187f"},"md-airplane_minus":{"char":"󱢀","code":"f1880"},"md-airplane_off":{"char":"󰀞","code":"f001e"},"md-airplane_plus":{"char":"󱢁","code":"f1881"},"md-airplane_remove":{"char":"󱢂","code":"f1882"},"md-airplane_search":{"char":"󱢃","code":"f1883"},"md-airplane_settings":{"char":"󱢄","code":"f1884"},"md-airplane_takeoff":{"char":"󰗕","code":"f05d5"},"md-airport":{"char":"󰡋","code":"f084b"},"md-alarm":{"char":"󰀠","code":"f0020"},"md-alarm_bell":{"char":"󰞎","code":"f078e"},"md-alarm_check":{"char":"󰀡","code":"f0021"},"md-alarm_light":{"char":"󰞏","code":"f078f"},"md-alarm_light_off":{"char":"󱜞","code":"f171e"},"md-alarm_light_off_outline":{"char":"󱜟","code":"f171f"},"md-alarm_light_outline":{"char":"󰯪","code":"f0bea"},"md-alarm_multiple":{"char":"󰀢","code":"f0022"},"md-alarm_note":{"char":"󰹱","code":"f0e71"},"md-alarm_note_off":{"char":"󰹲","code":"f0e72"},"md-alarm_off":{"char":"󰀣","code":"f0023"},"md-alarm_panel":{"char":"󱗄","code":"f15c4"},"md-alarm_panel_outline":{"char":"󱗅","code":"f15c5"},"md-alarm_plus":{"char":"󰀤","code":"f0024"},"md-alarm_snooze":{"char":"󰚎","code":"f068e"},"md-album":{"char":"󰀥","code":"f0025"},"md-alert":{"char":"󰀦","code":"f0026"},"md-alert_box":{"char":"󰀧","code":"f0027"},"md-alert_box_outline":{"char":"󰳤","code":"f0ce4"},"md-alert_circle":{"char":"󰀨","code":"f0028"},"md-alert_circle_check":{"char":"󱇭","code":"f11ed"},"md-alert_circle_check_outline":{"char":"󱇮","code":"f11ee"},"md-alert_circle_outline":{"char":"󰗖","code":"f05d6"},"md-alert_decagram":{"char":"󰚽","code":"f06bd"},"md-alert_decagram_outline":{"char":"󰳥","code":"f0ce5"},"md-alert_minus":{"char":"󱒻","code":"f14bb"},"md-alert_minus_outline":{"char":"󱒾","code":"f14be"},"md-alert_octagon":{"char":"󰀩","code":"f0029"},"md-alert_octagon_outline":{"char":"󰳦","code":"f0ce6"},"md-alert_octagram":{"char":"󰝧","code":"f0767"},"md-alert_octagram_outline":{"char":"󰳧","code":"f0ce7"},"md-alert_outline":{"char":"󰀪","code":"f002a"},"md-alert_plus":{"char":"󱒺","code":"f14ba"},"md-alert_plus_outline":{"char":"󱒽","code":"f14bd"},"md-alert_remove":{"char":"󱒼","code":"f14bc"},"md-alert_remove_outline":{"char":"󱒿","code":"f14bf"},"md-alert_rhombus":{"char":"󱇎","code":"f11ce"},"md-alert_rhombus_outline":{"char":"󱇏","code":"f11cf"},"md-alien":{"char":"󰢚","code":"f089a"},"md-alien_outline":{"char":"󱃋","code":"f10cb"},"md-align_horizontal_center":{"char":"󱇃","code":"f11c3"},"md-align_horizontal_distribute":{"char":"󱥢","code":"f1962"},"md-align_horizontal_left":{"char":"󱇂","code":"f11c2"},"md-align_horizontal_right":{"char":"󱇄","code":"f11c4"},"md-align_vertical_bottom":{"char":"󱇅","code":"f11c5"},"md-align_vertical_center":{"char":"󱇆","code":"f11c6"},"md-align_vertical_distribute":{"char":"󱥣","code":"f1963"},"md-align_vertical_top":{"char":"󱇇","code":"f11c7"},"md-all_inclusive":{"char":"󰚾","code":"f06be"},"md-all_inclusive_box":{"char":"󱢍","code":"f188d"},"md-all_inclusive_box_outline":{"char":"󱢎","code":"f188e"},"md-allergy":{"char":"󱉘","code":"f1258"},"md-alpha":{"char":"󰀫","code":"f002b"},"md-alpha_a":{"char":"󰫮","code":"f0aee"},"md-alpha_a_box":{"char":"󰬈","code":"f0b08"},"md-alpha_a_box_outline":{"char":"󰯫","code":"f0beb"},"md-alpha_a_circle":{"char":"󰯬","code":"f0bec"},"md-alpha_a_circle_outline":{"char":"󰯭","code":"f0bed"},"md-alpha_b":{"char":"󰫯","code":"f0aef"},"md-alpha_b_box":{"char":"󰬉","code":"f0b09"},"md-alpha_b_box_outline":{"char":"󰯮","code":"f0bee"},"md-alpha_b_circle":{"char":"󰯯","code":"f0bef"},"md-alpha_b_circle_outline":{"char":"󰯰","code":"f0bf0"},"md-alpha_c":{"char":"󰫰","code":"f0af0"},"md-alpha_c_box":{"char":"󰬊","code":"f0b0a"},"md-alpha_c_box_outline":{"char":"󰯱","code":"f0bf1"},"md-alpha_c_circle":{"char":"󰯲","code":"f0bf2"},"md-alpha_c_circle_outline":{"char":"󰯳","code":"f0bf3"},"md-alpha_d":{"char":"󰫱","code":"f0af1"},"md-alpha_d_box":{"char":"󰬋","code":"f0b0b"},"md-alpha_d_box_outline":{"char":"󰯴","code":"f0bf4"},"md-alpha_d_circle":{"char":"󰯵","code":"f0bf5"},"md-alpha_d_circle_outline":{"char":"󰯶","code":"f0bf6"},"md-alpha_e":{"char":"󰫲","code":"f0af2"},"md-alpha_e_box":{"char":"󰬌","code":"f0b0c"},"md-alpha_e_box_outline":{"char":"󰯷","code":"f0bf7"},"md-alpha_e_circle":{"char":"󰯸","code":"f0bf8"},"md-alpha_e_circle_outline":{"char":"󰯹","code":"f0bf9"},"md-alpha_f":{"char":"󰫳","code":"f0af3"},"md-alpha_f_box":{"char":"󰬍","code":"f0b0d"},"md-alpha_f_box_outline":{"char":"󰯺","code":"f0bfa"},"md-alpha_f_circle":{"char":"󰯻","code":"f0bfb"},"md-alpha_f_circle_outline":{"char":"󰯼","code":"f0bfc"},"md-alpha_g":{"char":"󰫴","code":"f0af4"},"md-alpha_g_box":{"char":"󰬎","code":"f0b0e"},"md-alpha_g_box_outline":{"char":"󰯽","code":"f0bfd"},"md-alpha_g_circle":{"char":"󰯾","code":"f0bfe"},"md-alpha_g_circle_outline":{"char":"󰯿","code":"f0bff"},"md-alpha_h":{"char":"󰫵","code":"f0af5"},"md-alpha_h_box":{"char":"󰬏","code":"f0b0f"},"md-alpha_h_box_outline":{"char":"󰰀","code":"f0c00"},"md-alpha_h_circle":{"char":"󰰁","code":"f0c01"},"md-alpha_h_circle_outline":{"char":"󰰂","code":"f0c02"},"md-alpha_i":{"char":"󱂈","code":"f1088"},"md-alpha_i_box":{"char":"󰬐","code":"f0b10"},"md-alpha_i_box_outline":{"char":"󰰃","code":"f0c03"},"md-alpha_i_circle":{"char":"󰰄","code":"f0c04"},"md-alpha_i_circle_outline":{"char":"󰰅","code":"f0c05"},"md-alpha_j":{"char":"󰫷","code":"f0af7"},"md-alpha_j_box":{"char":"󰬑","code":"f0b11"},"md-alpha_j_box_outline":{"char":"󰰆","code":"f0c06"},"md-alpha_j_circle":{"char":"󰰇","code":"f0c07"},"md-alpha_j_circle_outline":{"char":"󰰈","code":"f0c08"},"md-alpha_k":{"char":"󰫸","code":"f0af8"},"md-alpha_k_box":{"char":"󰬒","code":"f0b12"},"md-alpha_k_box_outline":{"char":"󰰉","code":"f0c09"},"md-alpha_k_circle":{"char":"󰰊","code":"f0c0a"},"md-alpha_k_circle_outline":{"char":"󰰋","code":"f0c0b"},"md-alpha_l":{"char":"󱎦","code":"f13a6"},"md-alpha_l_box":{"char":"󰬓","code":"f0b13"},"md-alpha_l_box_outline":{"char":"󰰌","code":"f0c0c"},"md-alpha_l_circle":{"char":"󰰍","code":"f0c0d"},"md-alpha_l_circle_outline":{"char":"󰰎","code":"f0c0e"},"md-alpha_m":{"char":"󰫺","code":"f0afa"},"md-alpha_m_box":{"char":"󰬔","code":"f0b14"},"md-alpha_m_box_outline":{"char":"󰰏","code":"f0c0f"},"md-alpha_m_circle":{"char":"󰰐","code":"f0c10"},"md-alpha_m_circle_outline":{"char":"󰰑","code":"f0c11"},"md-alpha_n":{"char":"󰫻","code":"f0afb"},"md-alpha_n_box":{"char":"󰬕","code":"f0b15"},"md-alpha_n_box_outline":{"char":"󰰒","code":"f0c12"},"md-alpha_n_circle":{"char":"󰰓","code":"f0c13"},"md-alpha_n_circle_outline":{"char":"󰰔","code":"f0c14"},"md-alpha_o":{"char":"󰬹","code":"f0b39"},"md-alpha_o_box":{"char":"󰬖","code":"f0b16"},"md-alpha_o_box_outline":{"char":"󰰕","code":"f0c15"},"md-alpha_o_circle":{"char":"󰲞","code":"f0c9e"},"md-alpha_o_circle_outline":{"char":"󰲟","code":"f0c9f"},"md-alpha_p":{"char":"󰫽","code":"f0afd"},"md-alpha_p_box":{"char":"󰬗","code":"f0b17"},"md-alpha_p_box_outline":{"char":"󰰘","code":"f0c18"},"md-alpha_p_circle":{"char":"󰰙","code":"f0c19"},"md-alpha_p_circle_outline":{"char":"󰰚","code":"f0c1a"},"md-alpha_q":{"char":"󰫾","code":"f0afe"},"md-alpha_q_box":{"char":"󰬘","code":"f0b18"},"md-alpha_q_box_outline":{"char":"󰰛","code":"f0c1b"},"md-alpha_q_circle":{"char":"󰰜","code":"f0c1c"},"md-alpha_q_circle_outline":{"char":"󰰝","code":"f0c1d"},"md-alpha_r":{"char":"󰫿","code":"f0aff"},"md-alpha_r_box":{"char":"󰬙","code":"f0b19"},"md-alpha_r_box_outline":{"char":"󰰞","code":"f0c1e"},"md-alpha_r_circle":{"char":"󰰟","code":"f0c1f"},"md-alpha_r_circle_outline":{"char":"󰰠","code":"f0c20"},"md-alpha_s":{"char":"󰬀","code":"f0b00"},"md-alpha_s_box":{"char":"󰬚","code":"f0b1a"},"md-alpha_s_box_outline":{"char":"󰰡","code":"f0c21"},"md-alpha_s_circle":{"char":"󰰢","code":"f0c22"},"md-alpha_s_circle_outline":{"char":"󰰣","code":"f0c23"},"md-alpha_t":{"char":"󰬁","code":"f0b01"},"md-alpha_t_box":{"char":"󰬛","code":"f0b1b"},"md-alpha_t_box_outline":{"char":"󰰤","code":"f0c24"},"md-alpha_t_circle":{"char":"󰰥","code":"f0c25"},"md-alpha_t_circle_outline":{"char":"󰰦","code":"f0c26"},"md-alpha_u":{"char":"󰬂","code":"f0b02"},"md-alpha_u_box":{"char":"󰬜","code":"f0b1c"},"md-alpha_u_box_outline":{"char":"󰰧","code":"f0c27"},"md-alpha_u_circle":{"char":"󰰨","code":"f0c28"},"md-alpha_u_circle_outline":{"char":"󰰩","code":"f0c29"},"md-alpha_v":{"char":"󱂌","code":"f108c"},"md-alpha_v_box":{"char":"󰬝","code":"f0b1d"},"md-alpha_v_box_outline":{"char":"󰰪","code":"f0c2a"},"md-alpha_v_circle":{"char":"󰰫","code":"f0c2b"},"md-alpha_v_circle_outline":{"char":"󰰬","code":"f0c2c"},"md-alpha_w":{"char":"󰬄","code":"f0b04"},"md-alpha_w_box":{"char":"󰬞","code":"f0b1e"},"md-alpha_w_box_outline":{"char":"󰰭","code":"f0c2d"},"md-alpha_w_circle":{"char":"󰰮","code":"f0c2e"},"md-alpha_w_circle_outline":{"char":"󰰯","code":"f0c2f"},"md-alpha_x":{"char":"󱂑","code":"f1091"},"md-alpha_x_box":{"char":"󰬟","code":"f0b1f"},"md-alpha_x_box_outline":{"char":"󰰰","code":"f0c30"},"md-alpha_x_circle":{"char":"󰰱","code":"f0c31"},"md-alpha_x_circle_outline":{"char":"󰰲","code":"f0c32"},"md-alpha_y":{"char":"󰬆","code":"f0b06"},"md-alpha_y_box":{"char":"󰬠","code":"f0b20"},"md-alpha_y_box_outline":{"char":"󰰳","code":"f0c33"},"md-alpha_y_circle":{"char":"󰰴","code":"f0c34"},"md-alpha_y_circle_outline":{"char":"󰰵","code":"f0c35"},"md-alpha_z":{"char":"󰬇","code":"f0b07"},"md-alpha_z_box":{"char":"󰬡","code":"f0b21"},"md-alpha_z_box_outline":{"char":"󰰶","code":"f0c36"},"md-alpha_z_circle":{"char":"󰰷","code":"f0c37"},"md-alpha_z_circle_outline":{"char":"󰰸","code":"f0c38"},"md-alphabet_aurebesh":{"char":"󱌬","code":"f132c"},"md-alphabet_cyrillic":{"char":"󱌭","code":"f132d"},"md-alphabet_greek":{"char":"󱌮","code":"f132e"},"md-alphabet_latin":{"char":"󱌯","code":"f132f"},"md-alphabet_piqad":{"char":"󱌰","code":"f1330"},"md-alphabet_tengwar":{"char":"󱌷","code":"f1337"},"md-alphabetical":{"char":"󰀬","code":"f002c"},"md-alphabetical_off":{"char":"󱀌","code":"f100c"},"md-alphabetical_variant":{"char":"󱀍","code":"f100d"},"md-alphabetical_variant_off":{"char":"󱀎","code":"f100e"},"md-altimeter":{"char":"󰗗","code":"f05d7"},"md-ambulance":{"char":"󰀯","code":"f002f"},"md-ammunition":{"char":"󰳨","code":"f0ce8"},"md-ampersand":{"char":"󰪍","code":"f0a8d"},"md-amplifier":{"char":"󰀰","code":"f0030"},"md-amplifier_off":{"char":"󱆵","code":"f11b5"},"md-anchor":{"char":"󰀱","code":"f0031"},"md-android":{"char":"󰀲","code":"f0032"},"md-android_messages":{"char":"󰵅","code":"f0d45"},"md-android_studio":{"char":"󰀴","code":"f0034"},"md-angle_acute":{"char":"󰤷","code":"f0937"},"md-angle_obtuse":{"char":"󰤸","code":"f0938"},"md-angle_right":{"char":"󰤹","code":"f0939"},"md-angular":{"char":"󰚲","code":"f06b2"},"md-angularjs":{"char":"󰚿","code":"f06bf"},"md-animation":{"char":"󰗘","code":"f05d8"},"md-animation_outline":{"char":"󰪏","code":"f0a8f"},"md-animation_play":{"char":"󰤺","code":"f093a"},"md-animation_play_outline":{"char":"󰪐","code":"f0a90"},"md-ansible":{"char":"󱂚","code":"f109a"},"md-antenna":{"char":"󱄙","code":"f1119"},"md-anvil":{"char":"󰢛","code":"f089b"},"md-apache_kafka":{"char":"󱀏","code":"f100f"},"md-api":{"char":"󱂛","code":"f109b"},"md-api_off":{"char":"󱉗","code":"f1257"},"md-apple":{"char":"󰀵","code":"f0035"},"md-apple_finder":{"char":"󰀶","code":"f0036"},"md-apple_icloud":{"char":"󰀸","code":"f0038"},"md-apple_ios":{"char":"󰀷","code":"f0037"},"md-apple_keyboard_caps":{"char":"󰘲","code":"f0632"},"md-apple_keyboard_command":{"char":"󰘳","code":"f0633"},"md-apple_keyboard_control":{"char":"󰘴","code":"f0634"},"md-apple_keyboard_option":{"char":"󰘵","code":"f0635"},"md-apple_keyboard_shift":{"char":"󰘶","code":"f0636"},"md-apple_safari":{"char":"󰀹","code":"f0039"},"md-application":{"char":"󰣆","code":"f08c6"},"md-application_array":{"char":"󱃵","code":"f10f5"},"md-application_array_outline":{"char":"󱃶","code":"f10f6"},"md-application_braces":{"char":"󱃷","code":"f10f7"},"md-application_braces_outline":{"char":"󱃸","code":"f10f8"},"md-application_brackets":{"char":"󰲋","code":"f0c8b"},"md-application_brackets_outline":{"char":"󰲌","code":"f0c8c"},"md-application_cog":{"char":"󰙵","code":"f0675"},"md-application_cog_outline":{"char":"󱕷","code":"f1577"},"md-application_edit":{"char":"󰂮","code":"f00ae"},"md-application_edit_outline":{"char":"󰘙","code":"f0619"},"md-application_export":{"char":"󰶭","code":"f0dad"},"md-application_import":{"char":"󰶮","code":"f0dae"},"md-application_outline":{"char":"󰘔","code":"f0614"},"md-application_parentheses":{"char":"󱃹","code":"f10f9"},"md-application_parentheses_outline":{"char":"󱃺","code":"f10fa"},"md-application_settings":{"char":"󰭠","code":"f0b60"},"md-application_settings_outline":{"char":"󱕕","code":"f1555"},"md-application_variable":{"char":"󱃻","code":"f10fb"},"md-application_variable_outline":{"char":"󱃼","code":"f10fc"},"md-approximately_equal":{"char":"󰾞","code":"f0f9e"},"md-approximately_equal_box":{"char":"󰾟","code":"f0f9f"},"md-apps":{"char":"󰀻","code":"f003b"},"md-apps_box":{"char":"󰵆","code":"f0d46"},"md-arch":{"char":"󰣇","code":"f08c7"},"md-archive":{"char":"󰀼","code":"f003c"},"md-archive_alert":{"char":"󱓽","code":"f14fd"},"md-archive_alert_outline":{"char":"󱓾","code":"f14fe"},"md-archive_arrow_down":{"char":"󱉙","code":"f1259"},"md-archive_arrow_down_outline":{"char":"󱉚","code":"f125a"},"md-archive_arrow_up":{"char":"󱉛","code":"f125b"},"md-archive_arrow_up_outline":{"char":"󱉜","code":"f125c"},"md-archive_cancel":{"char":"󱝋","code":"f174b"},"md-archive_cancel_outline":{"char":"󱝌","code":"f174c"},"md-archive_check":{"char":"󱝍","code":"f174d"},"md-archive_check_outline":{"char":"󱝎","code":"f174e"},"md-archive_clock":{"char":"󱝏","code":"f174f"},"md-archive_clock_outline":{"char":"󱝐","code":"f1750"},"md-archive_cog":{"char":"󱝑","code":"f1751"},"md-archive_cog_outline":{"char":"󱝒","code":"f1752"},"md-archive_edit":{"char":"󱝓","code":"f1753"},"md-archive_edit_outline":{"char":"󱝔","code":"f1754"},"md-archive_eye":{"char":"󱝕","code":"f1755"},"md-archive_eye_outline":{"char":"󱝖","code":"f1756"},"md-archive_lock":{"char":"󱝗","code":"f1757"},"md-archive_lock_open":{"char":"󱝘","code":"f1758"},"md-archive_lock_open_outline":{"char":"󱝙","code":"f1759"},"md-archive_lock_outline":{"char":"󱝚","code":"f175a"},"md-archive_marker":{"char":"󱝛","code":"f175b"},"md-archive_marker_outline":{"char":"󱝜","code":"f175c"},"md-archive_minus":{"char":"󱝝","code":"f175d"},"md-archive_minus_outline":{"char":"󱝞","code":"f175e"},"md-archive_music":{"char":"󱝟","code":"f175f"},"md-archive_music_outline":{"char":"󱝠","code":"f1760"},"md-archive_off":{"char":"󱝡","code":"f1761"},"md-archive_off_outline":{"char":"󱝢","code":"f1762"},"md-archive_outline":{"char":"󱈎","code":"f120e"},"md-archive_plus":{"char":"󱝣","code":"f1763"},"md-archive_plus_outline":{"char":"󱝤","code":"f1764"},"md-archive_refresh":{"char":"󱝥","code":"f1765"},"md-archive_refresh_outline":{"char":"󱝦","code":"f1766"},"md-archive_remove":{"char":"󱝧","code":"f1767"},"md-archive_remove_outline":{"char":"󱝨","code":"f1768"},"md-archive_search":{"char":"󱝩","code":"f1769"},"md-archive_search_outline":{"char":"󱝪","code":"f176a"},"md-archive_settings":{"char":"󱝫","code":"f176b"},"md-archive_settings_outline":{"char":"󱝬","code":"f176c"},"md-archive_star":{"char":"󱝭","code":"f176d"},"md-archive_star_outline":{"char":"󱝮","code":"f176e"},"md-archive_sync":{"char":"󱝯","code":"f176f"},"md-archive_sync_outline":{"char":"󱝰","code":"f1770"},"md-arm_flex":{"char":"󰿗","code":"f0fd7"},"md-arm_flex_outline":{"char":"󰿖","code":"f0fd6"},"md-arrange_bring_forward":{"char":"󰀽","code":"f003d"},"md-arrange_bring_to_front":{"char":"󰀾","code":"f003e"},"md-arrange_send_backward":{"char":"󰀿","code":"f003f"},"md-arrange_send_to_back":{"char":"󰁀","code":"f0040"},"md-arrow_all":{"char":"󰁁","code":"f0041"},"md-arrow_bottom_left":{"char":"󰁂","code":"f0042"},"md-arrow_bottom_left_bold_box":{"char":"󱥤","code":"f1964"},"md-arrow_bottom_left_bold_box_outline":{"char":"󱥥","code":"f1965"},"md-arrow_bottom_left_bold_outline":{"char":"󰦷","code":"f09b7"},"md-arrow_bottom_left_thick":{"char":"󰦸","code":"f09b8"},"md-arrow_bottom_left_thin":{"char":"󱦶","code":"f19b6"},"md-arrow_bottom_left_thin_circle_outline":{"char":"󱖖","code":"f1596"},"md-arrow_bottom_right":{"char":"󰁃","code":"f0043"},"md-arrow_bottom_right_bold_box":{"char":"󱥦","code":"f1966"},"md-arrow_bottom_right_bold_box_outline":{"char":"󱥧","code":"f1967"},"md-arrow_bottom_right_bold_outline":{"char":"󰦹","code":"f09b9"},"md-arrow_bottom_right_thick":{"char":"󰦺","code":"f09ba"},"md-arrow_bottom_right_thin":{"char":"󱦷","code":"f19b7"},"md-arrow_bottom_right_thin_circle_outline":{"char":"󱖕","code":"f1595"},"md-arrow_collapse":{"char":"󰘕","code":"f0615"},"md-arrow_collapse_all":{"char":"󰁄","code":"f0044"},"md-arrow_collapse_down":{"char":"󰞒","code":"f0792"},"md-arrow_collapse_horizontal":{"char":"󰡌","code":"f084c"},"md-arrow_collapse_left":{"char":"󰞓","code":"f0793"},"md-arrow_collapse_right":{"char":"󰞔","code":"f0794"},"md-arrow_collapse_up":{"char":"󰞕","code":"f0795"},"md-arrow_collapse_vertical":{"char":"󰡍","code":"f084d"},"md-arrow_decision":{"char":"󰦻","code":"f09bb"},"md-arrow_decision_auto":{"char":"󰦼","code":"f09bc"},"md-arrow_decision_auto_outline":{"char":"󰦽","code":"f09bd"},"md-arrow_decision_outline":{"char":"󰦾","code":"f09be"},"md-arrow_down":{"char":"󰁅","code":"f0045"},"md-arrow_down_bold":{"char":"󰜮","code":"f072e"},"md-arrow_down_bold_box":{"char":"󰜯","code":"f072f"},"md-arrow_down_bold_box_outline":{"char":"󰜰","code":"f0730"},"md-arrow_down_bold_circle":{"char":"󰁇","code":"f0047"},"md-arrow_down_bold_circle_outline":{"char":"󰁈","code":"f0048"},"md-arrow_down_bold_hexagon_outline":{"char":"󰁉","code":"f0049"},"md-arrow_down_bold_outline":{"char":"󰦿","code":"f09bf"},"md-arrow_down_box":{"char":"󰛀","code":"f06c0"},"md-arrow_down_circle":{"char":"󰳛","code":"f0cdb"},"md-arrow_down_circle_outline":{"char":"󰳜","code":"f0cdc"},"md-arrow_down_drop_circle":{"char":"󰁊","code":"f004a"},"md-arrow_down_drop_circle_outline":{"char":"󰁋","code":"f004b"},"md-arrow_down_left":{"char":"󱞡","code":"f17a1"},"md-arrow_down_left_bold":{"char":"󱞢","code":"f17a2"},"md-arrow_down_right":{"char":"󱞣","code":"f17a3"},"md-arrow_down_right_bold":{"char":"󱞤","code":"f17a4"},"md-arrow_down_thick":{"char":"󰁆","code":"f0046"},"md-arrow_down_thin":{"char":"󱦳","code":"f19b3"},"md-arrow_down_thin_circle_outline":{"char":"󱖙","code":"f1599"},"md-arrow_expand":{"char":"󰘖","code":"f0616"},"md-arrow_expand_all":{"char":"󰁌","code":"f004c"},"md-arrow_expand_down":{"char":"󰞖","code":"f0796"},"md-arrow_expand_horizontal":{"char":"󰡎","code":"f084e"},"md-arrow_expand_left":{"char":"󰞗","code":"f0797"},"md-arrow_expand_right":{"char":"󰞘","code":"f0798"},"md-arrow_expand_up":{"char":"󰞙","code":"f0799"},"md-arrow_expand_vertical":{"char":"󰡏","code":"f084f"},"md-arrow_horizontal_lock":{"char":"󱅛","code":"f115b"},"md-arrow_left":{"char":"󰁍","code":"f004d"},"md-arrow_left_bold":{"char":"󰜱","code":"f0731"},"md-arrow_left_bold_box":{"char":"󰜲","code":"f0732"},"md-arrow_left_bold_box_outline":{"char":"󰜳","code":"f0733"},"md-arrow_left_bold_circle":{"char":"󰁏","code":"f004f"},"md-arrow_left_bold_circle_outline":{"char":"󰁐","code":"f0050"},"md-arrow_left_bold_hexagon_outline":{"char":"󰁑","code":"f0051"},"md-arrow_left_bold_outline":{"char":"󰧀","code":"f09c0"},"md-arrow_left_bottom":{"char":"󱞥","code":"f17a5"},"md-arrow_left_bottom_bold":{"char":"󱞦","code":"f17a6"},"md-arrow_left_box":{"char":"󰛁","code":"f06c1"},"md-arrow_left_circle":{"char":"󰳝","code":"f0cdd"},"md-arrow_left_circle_outline":{"char":"󰳞","code":"f0cde"},"md-arrow_left_drop_circle":{"char":"󰁒","code":"f0052"},"md-arrow_left_drop_circle_outline":{"char":"󰁓","code":"f0053"},"md-arrow_left_right":{"char":"󰹳","code":"f0e73"},"md-arrow_left_right_bold":{"char":"󰹴","code":"f0e74"},"md-arrow_left_right_bold_outline":{"char":"󰧁","code":"f09c1"},"md-arrow_left_thick":{"char":"󰁎","code":"f004e"},"md-arrow_left_thin":{"char":"󱦱","code":"f19b1"},"md-arrow_left_thin_circle_outline":{"char":"󱖚","code":"f159a"},"md-arrow_left_top":{"char":"󱞧","code":"f17a7"},"md-arrow_left_top_bold":{"char":"󱞨","code":"f17a8"},"md-arrow_projectile":{"char":"󱡀","code":"f1840"},"md-arrow_projectile_multiple":{"char":"󱠿","code":"f183f"},"md-arrow_right":{"char":"󰁔","code":"f0054"},"md-arrow_right_bold":{"char":"󰜴","code":"f0734"},"md-arrow_right_bold_box":{"char":"󰜵","code":"f0735"},"md-arrow_right_bold_box_outline":{"char":"󰜶","code":"f0736"},"md-arrow_right_bold_circle":{"char":"󰁖","code":"f0056"},"md-arrow_right_bold_circle_outline":{"char":"󰁗","code":"f0057"},"md-arrow_right_bold_hexagon_outline":{"char":"󰁘","code":"f0058"},"md-arrow_right_bold_outline":{"char":"󰧂","code":"f09c2"},"md-arrow_right_bottom":{"char":"󱞩","code":"f17a9"},"md-arrow_right_bottom_bold":{"char":"󱞪","code":"f17aa"},"md-arrow_right_box":{"char":"󰛂","code":"f06c2"},"md-arrow_right_circle":{"char":"󰳟","code":"f0cdf"},"md-arrow_right_circle_outline":{"char":"󰳠","code":"f0ce0"},"md-arrow_right_drop_circle":{"char":"󰁙","code":"f0059"},"md-arrow_right_drop_circle_outline":{"char":"󰁚","code":"f005a"},"md-arrow_right_thick":{"char":"󰁕","code":"f0055"},"md-arrow_right_thin":{"char":"󱦰","code":"f19b0"},"md-arrow_right_thin_circle_outline":{"char":"󱖘","code":"f1598"},"md-arrow_right_top":{"char":"󱞫","code":"f17ab"},"md-arrow_right_top_bold":{"char":"󱞬","code":"f17ac"},"md-arrow_split_horizontal":{"char":"󰤻","code":"f093b"},"md-arrow_split_vertical":{"char":"󰤼","code":"f093c"},"md-arrow_top_left":{"char":"󰁛","code":"f005b"},"md-arrow_top_left_bold_box":{"char":"󱥨","code":"f1968"},"md-arrow_top_left_bold_box_outline":{"char":"󱥩","code":"f1969"},"md-arrow_top_left_bold_outline":{"char":"󰧃","code":"f09c3"},"md-arrow_top_left_bottom_right":{"char":"󰹵","code":"f0e75"},"md-arrow_top_left_bottom_right_bold":{"char":"󰹶","code":"f0e76"},"md-arrow_top_left_thick":{"char":"󰧄","code":"f09c4"},"md-arrow_top_left_thin":{"char":"󱦵","code":"f19b5"},"md-arrow_top_left_thin_circle_outline":{"char":"󱖓","code":"f1593"},"md-arrow_top_right":{"char":"󰁜","code":"f005c"},"md-arrow_top_right_bold_box":{"char":"󱥪","code":"f196a"},"md-arrow_top_right_bold_box_outline":{"char":"󱥫","code":"f196b"},"md-arrow_top_right_bold_outline":{"char":"󰧅","code":"f09c5"},"md-arrow_top_right_bottom_left":{"char":"󰹷","code":"f0e77"},"md-arrow_top_right_bottom_left_bold":{"char":"󰹸","code":"f0e78"},"md-arrow_top_right_thick":{"char":"󰧆","code":"f09c6"},"md-arrow_top_right_thin":{"char":"󱦴","code":"f19b4"},"md-arrow_top_right_thin_circle_outline":{"char":"󱖔","code":"f1594"},"md-arrow_u_down_left":{"char":"󱞭","code":"f17ad"},"md-arrow_u_down_left_bold":{"char":"󱞮","code":"f17ae"},"md-arrow_u_down_right":{"char":"󱞯","code":"f17af"},"md-arrow_u_down_right_bold":{"char":"󱞰","code":"f17b0"},"md-arrow_u_left_bottom":{"char":"󱞱","code":"f17b1"},"md-arrow_u_left_bottom_bold":{"char":"󱞲","code":"f17b2"},"md-arrow_u_left_top":{"char":"󱞳","code":"f17b3"},"md-arrow_u_left_top_bold":{"char":"󱞴","code":"f17b4"},"md-arrow_u_right_bottom":{"char":"󱞵","code":"f17b5"},"md-arrow_u_right_bottom_bold":{"char":"󱞶","code":"f17b6"},"md-arrow_u_right_top":{"char":"󱞷","code":"f17b7"},"md-arrow_u_right_top_bold":{"char":"󱞸","code":"f17b8"},"md-arrow_u_up_left":{"char":"󱞹","code":"f17b9"},"md-arrow_u_up_left_bold":{"char":"󱞺","code":"f17ba"},"md-arrow_u_up_right":{"char":"󱞻","code":"f17bb"},"md-arrow_u_up_right_bold":{"char":"󱞼","code":"f17bc"},"md-arrow_up":{"char":"󰁝","code":"f005d"},"md-arrow_up_bold":{"char":"󰜷","code":"f0737"},"md-arrow_up_bold_box":{"char":"󰜸","code":"f0738"},"md-arrow_up_bold_box_outline":{"char":"󰜹","code":"f0739"},"md-arrow_up_bold_circle":{"char":"󰁟","code":"f005f"},"md-arrow_up_bold_circle_outline":{"char":"󰁠","code":"f0060"},"md-arrow_up_bold_hexagon_outline":{"char":"󰁡","code":"f0061"},"md-arrow_up_bold_outline":{"char":"󰧇","code":"f09c7"},"md-arrow_up_box":{"char":"󰛃","code":"f06c3"},"md-arrow_up_circle":{"char":"󰳡","code":"f0ce1"},"md-arrow_up_circle_outline":{"char":"󰳢","code":"f0ce2"},"md-arrow_up_down":{"char":"󰹹","code":"f0e79"},"md-arrow_up_down_bold":{"char":"󰹺","code":"f0e7a"},"md-arrow_up_down_bold_outline":{"char":"󰧈","code":"f09c8"},"md-arrow_up_drop_circle":{"char":"󰁢","code":"f0062"},"md-arrow_up_drop_circle_outline":{"char":"󰁣","code":"f0063"},"md-arrow_up_left":{"char":"󱞽","code":"f17bd"},"md-arrow_up_left_bold":{"char":"󱞾","code":"f17be"},"md-arrow_up_right":{"char":"󱞿","code":"f17bf"},"md-arrow_up_right_bold":{"char":"󱟀","code":"f17c0"},"md-arrow_up_thick":{"char":"󰁞","code":"f005e"},"md-arrow_up_thin":{"char":"󱦲","code":"f19b2"},"md-arrow_up_thin_circle_outline":{"char":"󱖗","code":"f1597"},"md-arrow_vertical_lock":{"char":"󱅜","code":"f115c"},"md-artstation":{"char":"󰭛","code":"f0b5b"},"md-aspect_ratio":{"char":"󰨤","code":"f0a24"},"md-assistant":{"char":"󰁤","code":"f0064"},"md-asterisk":{"char":"󰛄","code":"f06c4"},"md-asterisk_circle_outline":{"char":"󱨧","code":"f1a27"},"md-at":{"char":"󰁥","code":"f0065"},"md-atlassian":{"char":"󰠄","code":"f0804"},"md-atm":{"char":"󰵇","code":"f0d47"},"md-atom":{"char":"󰝨","code":"f0768"},"md-atom_variant":{"char":"󰹻","code":"f0e7b"},"md-attachment":{"char":"󰁦","code":"f0066"},"md-attachment_check":{"char":"󱫁","code":"f1ac1"},"md-attachment_lock":{"char":"󱧄","code":"f19c4"},"md-attachment_minus":{"char":"󱫂","code":"f1ac2"},"md-attachment_off":{"char":"󱫃","code":"f1ac3"},"md-attachment_plus":{"char":"󱫄","code":"f1ac4"},"md-attachment_remove":{"char":"󱫅","code":"f1ac5"},"md-audio_input_rca":{"char":"󱡫","code":"f186b"},"md-audio_input_stereo_minijack":{"char":"󱡬","code":"f186c"},"md-audio_input_xlr":{"char":"󱡭","code":"f186d"},"md-audio_video":{"char":"󰤽","code":"f093d"},"md-audio_video_off":{"char":"󱆶","code":"f11b6"},"md-augmented_reality":{"char":"󰡐","code":"f0850"},"md-auto_download":{"char":"󱍾","code":"f137e"},"md-auto_fix":{"char":"󰁨","code":"f0068"},"md-auto_upload":{"char":"󰁩","code":"f0069"},"md-autorenew":{"char":"󰁪","code":"f006a"},"md-autorenew_off":{"char":"󱧧","code":"f19e7"},"md-av_timer":{"char":"󰁫","code":"f006b"},"md-aws":{"char":"󰸏","code":"f0e0f"},"md-axe":{"char":"󰣈","code":"f08c8"},"md-axe_battle":{"char":"󱡂","code":"f1842"},"md-axis":{"char":"󰵈","code":"f0d48"},"md-axis_arrow":{"char":"󰵉","code":"f0d49"},"md-axis_arrow_info":{"char":"󱐎","code":"f140e"},"md-axis_arrow_lock":{"char":"󰵊","code":"f0d4a"},"md-axis_lock":{"char":"󰵋","code":"f0d4b"},"md-axis_x_arrow":{"char":"󰵌","code":"f0d4c"},"md-axis_x_arrow_lock":{"char":"󰵍","code":"f0d4d"},"md-axis_x_rotate_clockwise":{"char":"󰵎","code":"f0d4e"},"md-axis_x_rotate_counterclockwise":{"char":"󰵏","code":"f0d4f"},"md-axis_x_y_arrow_lock":{"char":"󰵐","code":"f0d50"},"md-axis_y_arrow":{"char":"󰵑","code":"f0d51"},"md-axis_y_arrow_lock":{"char":"󰵒","code":"f0d52"},"md-axis_y_rotate_clockwise":{"char":"󰵓","code":"f0d53"},"md-axis_y_rotate_counterclockwise":{"char":"󰵔","code":"f0d54"},"md-axis_z_arrow":{"char":"󰵕","code":"f0d55"},"md-axis_z_arrow_lock":{"char":"󰵖","code":"f0d56"},"md-axis_z_rotate_clockwise":{"char":"󰵗","code":"f0d57"},"md-axis_z_rotate_counterclockwise":{"char":"󰵘","code":"f0d58"},"md-babel":{"char":"󰨥","code":"f0a25"},"md-baby":{"char":"󰁬","code":"f006c"},"md-baby_bottle":{"char":"󰼹","code":"f0f39"},"md-baby_bottle_outline":{"char":"󰼺","code":"f0f3a"},"md-baby_buggy":{"char":"󱏠","code":"f13e0"},"md-baby_carriage":{"char":"󰚏","code":"f068f"},"md-baby_carriage_off":{"char":"󰾠","code":"f0fa0"},"md-baby_face":{"char":"󰹼","code":"f0e7c"},"md-baby_face_outline":{"char":"󰹽","code":"f0e7d"},"md-backburger":{"char":"󰁭","code":"f006d"},"md-backspace":{"char":"󰁮","code":"f006e"},"md-backspace_outline":{"char":"󰭜","code":"f0b5c"},"md-backspace_reverse":{"char":"󰹾","code":"f0e7e"},"md-backspace_reverse_outline":{"char":"󰹿","code":"f0e7f"},"md-backup_restore":{"char":"󰁯","code":"f006f"},"md-bacteria":{"char":"󰻕","code":"f0ed5"},"md-bacteria_outline":{"char":"󰻖","code":"f0ed6"},"md-badge_account":{"char":"󰶧","code":"f0da7"},"md-badge_account_alert":{"char":"󰶨","code":"f0da8"},"md-badge_account_alert_outline":{"char":"󰶩","code":"f0da9"},"md-badge_account_horizontal":{"char":"󰸍","code":"f0e0d"},"md-badge_account_horizontal_outline":{"char":"󰸎","code":"f0e0e"},"md-badge_account_outline":{"char":"󰶪","code":"f0daa"},"md-badminton":{"char":"󰡑","code":"f0851"},"md-bag_carry_on":{"char":"󰼻","code":"f0f3b"},"md-bag_carry_on_check":{"char":"󰵥","code":"f0d65"},"md-bag_carry_on_off":{"char":"󰼼","code":"f0f3c"},"md-bag_checked":{"char":"󰼽","code":"f0f3d"},"md-bag_personal":{"char":"󰸐","code":"f0e10"},"md-bag_personal_off":{"char":"󰸑","code":"f0e11"},"md-bag_personal_off_outline":{"char":"󰸒","code":"f0e12"},"md-bag_personal_outline":{"char":"󰸓","code":"f0e13"},"md-bag_suitcase":{"char":"󱖋","code":"f158b"},"md-bag_suitcase_off":{"char":"󱖍","code":"f158d"},"md-bag_suitcase_off_outline":{"char":"󱖎","code":"f158e"},"md-bag_suitcase_outline":{"char":"󱖌","code":"f158c"},"md-baguette":{"char":"󰼾","code":"f0f3e"},"md-balcony":{"char":"󱠗","code":"f1817"},"md-balloon":{"char":"󰨦","code":"f0a26"},"md-ballot":{"char":"󰧉","code":"f09c9"},"md-ballot_outline":{"char":"󰧊","code":"f09ca"},"md-ballot_recount":{"char":"󰰹","code":"f0c39"},"md-ballot_recount_outline":{"char":"󰰺","code":"f0c3a"},"md-bandage":{"char":"󰶯","code":"f0daf"},"md-bank":{"char":"󰁰","code":"f0070"},"md-bank_check":{"char":"󱙕","code":"f1655"},"md-bank_minus":{"char":"󰶰","code":"f0db0"},"md-bank_off":{"char":"󱙖","code":"f1656"},"md-bank_off_outline":{"char":"󱙗","code":"f1657"},"md-bank_outline":{"char":"󰺀","code":"f0e80"},"md-bank_plus":{"char":"󰶱","code":"f0db1"},"md-bank_remove":{"char":"󰶲","code":"f0db2"},"md-bank_transfer":{"char":"󰨧","code":"f0a27"},"md-bank_transfer_in":{"char":"󰨨","code":"f0a28"},"md-bank_transfer_out":{"char":"󰨩","code":"f0a29"},"md-barcode":{"char":"󰁱","code":"f0071"},"md-barcode_off":{"char":"󱈶","code":"f1236"},"md-barcode_scan":{"char":"󰁲","code":"f0072"},"md-barley":{"char":"󰁳","code":"f0073"},"md-barley_off":{"char":"󰭝","code":"f0b5d"},"md-barn":{"char":"󰭞","code":"f0b5e"},"md-barrel":{"char":"󰁴","code":"f0074"},"md-barrel_outline":{"char":"󱨨","code":"f1a28"},"md-baseball":{"char":"󰡒","code":"f0852"},"md-baseball_bat":{"char":"󰡓","code":"f0853"},"md-baseball_diamond":{"char":"󱗬","code":"f15ec"},"md-baseball_diamond_outline":{"char":"󱗭","code":"f15ed"},"md-bash":{"char":"󱆃","code":"f1183"},"md-basket":{"char":"󰁶","code":"f0076"},"md-basket_check":{"char":"󱣥","code":"f18e5"},"md-basket_check_outline":{"char":"󱣦","code":"f18e6"},"md-basket_fill":{"char":"󰁷","code":"f0077"},"md-basket_minus":{"char":"󱔣","code":"f1523"},"md-basket_minus_outline":{"char":"󱔤","code":"f1524"},"md-basket_off":{"char":"󱔥","code":"f1525"},"md-basket_off_outline":{"char":"󱔦","code":"f1526"},"md-basket_outline":{"char":"󱆁","code":"f1181"},"md-basket_plus":{"char":"󱔧","code":"f1527"},"md-basket_plus_outline":{"char":"󱔨","code":"f1528"},"md-basket_remove":{"char":"󱔩","code":"f1529"},"md-basket_remove_outline":{"char":"󱔪","code":"f152a"},"md-basket_unfill":{"char":"󰁸","code":"f0078"},"md-basketball":{"char":"󰠆","code":"f0806"},"md-basketball_hoop":{"char":"󰰻","code":"f0c3b"},"md-basketball_hoop_outline":{"char":"󰰼","code":"f0c3c"},"md-bat":{"char":"󰭟","code":"f0b5f"},"md-bathtub":{"char":"󱠘","code":"f1818"},"md-bathtub_outline":{"char":"󱠙","code":"f1819"},"md-battery":{"char":"󰁹","code":"f0079"},"md-battery_10":{"char":"󰁺","code":"f007a"},"md-battery_10_bluetooth":{"char":"󰤾","code":"f093e"},"md-battery_20":{"char":"󰁻","code":"f007b"},"md-battery_20_bluetooth":{"char":"󰤿","code":"f093f"},"md-battery_30":{"char":"󰁼","code":"f007c"},"md-battery_30_bluetooth":{"char":"󰥀","code":"f0940"},"md-battery_40":{"char":"󰁽","code":"f007d"},"md-battery_40_bluetooth":{"char":"󰥁","code":"f0941"},"md-battery_50":{"char":"󰁾","code":"f007e"},"md-battery_50_bluetooth":{"char":"󰥂","code":"f0942"},"md-battery_60":{"char":"󰁿","code":"f007f"},"md-battery_60_bluetooth":{"char":"󰥃","code":"f0943"},"md-battery_70":{"char":"󰂀","code":"f0080"},"md-battery_70_bluetooth":{"char":"󰥄","code":"f0944"},"md-battery_80":{"char":"󰂁","code":"f0081"},"md-battery_80_bluetooth":{"char":"󰥅","code":"f0945"},"md-battery_90":{"char":"󰂂","code":"f0082"},"md-battery_90_bluetooth":{"char":"󰥆","code":"f0946"},"md-battery_alert":{"char":"󰂃","code":"f0083"},"md-battery_alert_bluetooth":{"char":"󰥇","code":"f0947"},"md-battery_alert_variant":{"char":"󱃌","code":"f10cc"},"md-battery_alert_variant_outline":{"char":"󱃍","code":"f10cd"},"md-battery_arrow_down":{"char":"󱟞","code":"f17de"},"md-battery_arrow_down_outline":{"char":"󱟟","code":"f17df"},"md-battery_arrow_up":{"char":"󱟠","code":"f17e0"},"md-battery_arrow_up_outline":{"char":"󱟡","code":"f17e1"},"md-battery_bluetooth":{"char":"󰥈","code":"f0948"},"md-battery_bluetooth_variant":{"char":"󰥉","code":"f0949"},"md-battery_charging":{"char":"󰂄","code":"f0084"},"md-battery_charging_10":{"char":"󰢜","code":"f089c"},"md-battery_charging_100":{"char":"󰂅","code":"f0085"},"md-battery_charging_20":{"char":"󰂆","code":"f0086"},"md-battery_charging_30":{"char":"󰂇","code":"f0087"},"md-battery_charging_40":{"char":"󰂈","code":"f0088"},"md-battery_charging_50":{"char":"󰢝","code":"f089d"},"md-battery_charging_60":{"char":"󰂉","code":"f0089"},"md-battery_charging_70":{"char":"󰢞","code":"f089e"},"md-battery_charging_80":{"char":"󰂊","code":"f008a"},"md-battery_charging_90":{"char":"󰂋","code":"f008b"},"md-battery_charging_high":{"char":"󱊦","code":"f12a6"},"md-battery_charging_low":{"char":"󱊤","code":"f12a4"},"md-battery_charging_medium":{"char":"󱊥","code":"f12a5"},"md-battery_charging_outline":{"char":"󰢟","code":"f089f"},"md-battery_charging_wireless":{"char":"󰠇","code":"f0807"},"md-battery_charging_wireless_10":{"char":"󰠈","code":"f0808"},"md-battery_charging_wireless_20":{"char":"󰠉","code":"f0809"},"md-battery_charging_wireless_30":{"char":"󰠊","code":"f080a"},"md-battery_charging_wireless_40":{"char":"󰠋","code":"f080b"},"md-battery_charging_wireless_50":{"char":"󰠌","code":"f080c"},"md-battery_charging_wireless_60":{"char":"󰠍","code":"f080d"},"md-battery_charging_wireless_70":{"char":"󰠎","code":"f080e"},"md-battery_charging_wireless_80":{"char":"󰠏","code":"f080f"},"md-battery_charging_wireless_90":{"char":"󰠐","code":"f0810"},"md-battery_charging_wireless_alert":{"char":"󰠑","code":"f0811"},"md-battery_charging_wireless_outline":{"char":"󰠒","code":"f0812"},"md-battery_check":{"char":"󱟢","code":"f17e2"},"md-battery_check_outline":{"char":"󱟣","code":"f17e3"},"md-battery_clock":{"char":"󱧥","code":"f19e5"},"md-battery_clock_outline":{"char":"󱧦","code":"f19e6"},"md-battery_heart":{"char":"󱈏","code":"f120f"},"md-battery_heart_outline":{"char":"󱈐","code":"f1210"},"md-battery_heart_variant":{"char":"󱈑","code":"f1211"},"md-battery_high":{"char":"󱊣","code":"f12a3"},"md-battery_lock":{"char":"󱞜","code":"f179c"},"md-battery_lock_open":{"char":"󱞝","code":"f179d"},"md-battery_low":{"char":"󱊡","code":"f12a1"},"md-battery_medium":{"char":"󱊢","code":"f12a2"},"md-battery_minus":{"char":"󱟤","code":"f17e4"},"md-battery_minus_outline":{"char":"󱟥","code":"f17e5"},"md-battery_minus_variant":{"char":"󰂌","code":"f008c"},"md-battery_negative":{"char":"󰂍","code":"f008d"},"md-battery_off":{"char":"󱉝","code":"f125d"},"md-battery_off_outline":{"char":"󱉞","code":"f125e"},"md-battery_outline":{"char":"󰂎","code":"f008e"},"md-battery_plus":{"char":"󱟦","code":"f17e6"},"md-battery_plus_outline":{"char":"󱟧","code":"f17e7"},"md-battery_plus_variant":{"char":"󰂏","code":"f008f"},"md-battery_positive":{"char":"󰂐","code":"f0090"},"md-battery_remove":{"char":"󱟨","code":"f17e8"},"md-battery_remove_outline":{"char":"󱟩","code":"f17e9"},"md-battery_sync":{"char":"󱠴","code":"f1834"},"md-battery_sync_outline":{"char":"󱠵","code":"f1835"},"md-battery_unknown":{"char":"󰂑","code":"f0091"},"md-battery_unknown_bluetooth":{"char":"󰥊","code":"f094a"},"md-beach":{"char":"󰂒","code":"f0092"},"md-beaker":{"char":"󰳪","code":"f0cea"},"md-beaker_alert":{"char":"󱈩","code":"f1229"},"md-beaker_alert_outline":{"char":"󱈪","code":"f122a"},"md-beaker_check":{"char":"󱈫","code":"f122b"},"md-beaker_check_outline":{"char":"󱈬","code":"f122c"},"md-beaker_minus":{"char":"󱈭","code":"f122d"},"md-beaker_minus_outline":{"char":"󱈮","code":"f122e"},"md-beaker_outline":{"char":"󰚐","code":"f0690"},"md-beaker_plus":{"char":"󱈯","code":"f122f"},"md-beaker_plus_outline":{"char":"󱈰","code":"f1230"},"md-beaker_question":{"char":"󱈱","code":"f1231"},"md-beaker_question_outline":{"char":"󱈲","code":"f1232"},"md-beaker_remove":{"char":"󱈳","code":"f1233"},"md-beaker_remove_outline":{"char":"󱈴","code":"f1234"},"md-bed":{"char":"󰋣","code":"f02e3"},"md-bed_double":{"char":"󰿔","code":"f0fd4"},"md-bed_double_outline":{"char":"󰿓","code":"f0fd3"},"md-bed_empty":{"char":"󰢠","code":"f08a0"},"md-bed_king":{"char":"󰿒","code":"f0fd2"},"md-bed_king_outline":{"char":"󰿑","code":"f0fd1"},"md-bed_outline":{"char":"󰂙","code":"f0099"},"md-bed_queen":{"char":"󰿐","code":"f0fd0"},"md-bed_queen_outline":{"char":"󰿛","code":"f0fdb"},"md-bed_single":{"char":"󱁭","code":"f106d"},"md-bed_single_outline":{"char":"󱁮","code":"f106e"},"md-bee":{"char":"󰾡","code":"f0fa1"},"md-bee_flower":{"char":"󰾢","code":"f0fa2"},"md-beehive_off_outline":{"char":"󱏭","code":"f13ed"},"md-beehive_outline":{"char":"󱃎","code":"f10ce"},"md-beekeeper":{"char":"󱓢","code":"f14e2"},"md-beer":{"char":"󰂘","code":"f0098"},"md-beer_outline":{"char":"󱌌","code":"f130c"},"md-bell":{"char":"󰂚","code":"f009a"},"md-bell_alert":{"char":"󰵙","code":"f0d59"},"md-bell_alert_outline":{"char":"󰺁","code":"f0e81"},"md-bell_badge":{"char":"󱅫","code":"f116b"},"md-bell_badge_outline":{"char":"󰅸","code":"f0178"},"md-bell_cancel":{"char":"󱏧","code":"f13e7"},"md-bell_cancel_outline":{"char":"󱏨","code":"f13e8"},"md-bell_check":{"char":"󱇥","code":"f11e5"},"md-bell_check_outline":{"char":"󱇦","code":"f11e6"},"md-bell_circle":{"char":"󰵚","code":"f0d5a"},"md-bell_circle_outline":{"char":"󰵛","code":"f0d5b"},"md-bell_cog":{"char":"󱨩","code":"f1a29"},"md-bell_cog_outline":{"char":"󱨪","code":"f1a2a"},"md-bell_minus":{"char":"󱏩","code":"f13e9"},"md-bell_minus_outline":{"char":"󱏪","code":"f13ea"},"md-bell_off":{"char":"󰂛","code":"f009b"},"md-bell_off_outline":{"char":"󰪑","code":"f0a91"},"md-bell_outline":{"char":"󰂜","code":"f009c"},"md-bell_plus":{"char":"󰂝","code":"f009d"},"md-bell_plus_outline":{"char":"󰪒","code":"f0a92"},"md-bell_remove":{"char":"󱏫","code":"f13eb"},"md-bell_remove_outline":{"char":"󱏬","code":"f13ec"},"md-bell_ring":{"char":"󰂞","code":"f009e"},"md-bell_ring_outline":{"char":"󰂟","code":"f009f"},"md-bell_sleep":{"char":"󰂠","code":"f00a0"},"md-bell_sleep_outline":{"char":"󰪓","code":"f0a93"},"md-beta":{"char":"󰂡","code":"f00a1"},"md-betamax":{"char":"󰧋","code":"f09cb"},"md-biathlon":{"char":"󰸔","code":"f0e14"},"md-bicycle":{"char":"󱂜","code":"f109c"},"md-bicycle_basket":{"char":"󱈵","code":"f1235"},"md-bicycle_cargo":{"char":"󱢜","code":"f189c"},"md-bicycle_electric":{"char":"󱖴","code":"f15b4"},"md-bicycle_penny_farthing":{"char":"󱗩","code":"f15e9"},"md-bike":{"char":"󰂣","code":"f00a3"},"md-bike_fast":{"char":"󱄟","code":"f111f"},"md-billboard":{"char":"󱀐","code":"f1010"},"md-billiards":{"char":"󰭡","code":"f0b61"},"md-billiards_rack":{"char":"󰭢","code":"f0b62"},"md-binoculars":{"char":"󰂥","code":"f00a5"},"md-bio":{"char":"󰂦","code":"f00a6"},"md-biohazard":{"char":"󰂧","code":"f00a7"},"md-bird":{"char":"󱗆","code":"f15c6"},"md-bitbucket":{"char":"󰂨","code":"f00a8"},"md-bitcoin":{"char":"󰠓","code":"f0813"},"md-black_mesa":{"char":"󰂩","code":"f00a9"},"md-blender":{"char":"󰳫","code":"f0ceb"},"md-blender_outline":{"char":"󱠚","code":"f181a"},"md-blender_software":{"char":"󰂫","code":"f00ab"},"md-blinds":{"char":"󰂬","code":"f00ac"},"md-blinds_horizontal":{"char":"󱨫","code":"f1a2b"},"md-blinds_horizontal_closed":{"char":"󱨬","code":"f1a2c"},"md-blinds_open":{"char":"󱀑","code":"f1011"},"md-blinds_vertical":{"char":"󱨭","code":"f1a2d"},"md-blinds_vertical_closed":{"char":"󱨮","code":"f1a2e"},"md-block_helper":{"char":"󰂭","code":"f00ad"},"md-blood_bag":{"char":"󰳬","code":"f0cec"},"md-bluetooth":{"char":"󰂯","code":"f00af"},"md-bluetooth_audio":{"char":"󰂰","code":"f00b0"},"md-bluetooth_connect":{"char":"󰂱","code":"f00b1"},"md-bluetooth_off":{"char":"󰂲","code":"f00b2"},"md-bluetooth_settings":{"char":"󰂳","code":"f00b3"},"md-bluetooth_transfer":{"char":"󰂴","code":"f00b4"},"md-blur":{"char":"󰂵","code":"f00b5"},"md-blur_linear":{"char":"󰂶","code":"f00b6"},"md-blur_off":{"char":"󰂷","code":"f00b7"},"md-blur_radial":{"char":"󰂸","code":"f00b8"},"md-bolt":{"char":"󰶳","code":"f0db3"},"md-bomb":{"char":"󰚑","code":"f0691"},"md-bomb_off":{"char":"󰛅","code":"f06c5"},"md-bone":{"char":"󰂹","code":"f00b9"},"md-bone_off":{"char":"󱧠","code":"f19e0"},"md-book":{"char":"󰂺","code":"f00ba"},"md-book_account":{"char":"󱎭","code":"f13ad"},"md-book_account_outline":{"char":"󱎮","code":"f13ae"},"md-book_alert":{"char":"󱙼","code":"f167c"},"md-book_alert_outline":{"char":"󱙽","code":"f167d"},"md-book_alphabet":{"char":"󰘝","code":"f061d"},"md-book_arrow_down":{"char":"󱙾","code":"f167e"},"md-book_arrow_down_outline":{"char":"󱙿","code":"f167f"},"md-book_arrow_left":{"char":"󱚀","code":"f1680"},"md-book_arrow_left_outline":{"char":"󱚁","code":"f1681"},"md-book_arrow_right":{"char":"󱚂","code":"f1682"},"md-book_arrow_right_outline":{"char":"󱚃","code":"f1683"},"md-book_arrow_up":{"char":"󱚄","code":"f1684"},"md-book_arrow_up_outline":{"char":"󱚅","code":"f1685"},"md-book_cancel":{"char":"󱚆","code":"f1686"},"md-book_cancel_outline":{"char":"󱚇","code":"f1687"},"md-book_check":{"char":"󱓳","code":"f14f3"},"md-book_check_outline":{"char":"󱓴","code":"f14f4"},"md-book_clock":{"char":"󱚈","code":"f1688"},"md-book_clock_outline":{"char":"󱚉","code":"f1689"},"md-book_cog":{"char":"󱚊","code":"f168a"},"md-book_cog_outline":{"char":"󱚋","code":"f168b"},"md-book_cross":{"char":"󰂢","code":"f00a2"},"md-book_edit":{"char":"󱚌","code":"f168c"},"md-book_edit_outline":{"char":"󱚍","code":"f168d"},"md-book_education":{"char":"󱛉","code":"f16c9"},"md-book_education_outline":{"char":"󱛊","code":"f16ca"},"md-book_heart":{"char":"󱨝","code":"f1a1d"},"md-book_heart_outline":{"char":"󱨞","code":"f1a1e"},"md-book_information_variant":{"char":"󱁯","code":"f106f"},"md-book_lock":{"char":"󰞚","code":"f079a"},"md-book_lock_open":{"char":"󰞛","code":"f079b"},"md-book_lock_open_outline":{"char":"󱚎","code":"f168e"},"md-book_lock_outline":{"char":"󱚏","code":"f168f"},"md-book_marker":{"char":"󱚐","code":"f1690"},"md-book_marker_outline":{"char":"󱚑","code":"f1691"},"md-book_minus":{"char":"󰗙","code":"f05d9"},"md-book_minus_multiple":{"char":"󰪔","code":"f0a94"},"md-book_minus_multiple_outline":{"char":"󰤋","code":"f090b"},"md-book_minus_outline":{"char":"󱚒","code":"f1692"},"md-book_multiple":{"char":"󰂻","code":"f00bb"},"md-book_multiple_outline":{"char":"󰐶","code":"f0436"},"md-book_music":{"char":"󰁧","code":"f0067"},"md-book_music_outline":{"char":"󱚓","code":"f1693"},"md-book_off":{"char":"󱚔","code":"f1694"},"md-book_off_outline":{"char":"󱚕","code":"f1695"},"md-book_open":{"char":"󰂽","code":"f00bd"},"md-book_open_blank_variant":{"char":"󰂾","code":"f00be"},"md-book_open_outline":{"char":"󰭣","code":"f0b63"},"md-book_open_page_variant":{"char":"󰗚","code":"f05da"},"md-book_open_page_variant_outline":{"char":"󱗖","code":"f15d6"},"md-book_open_variant":{"char":"󱓷","code":"f14f7"},"md-book_outline":{"char":"󰭤","code":"f0b64"},"md-book_play":{"char":"󰺂","code":"f0e82"},"md-book_play_outline":{"char":"󰺃","code":"f0e83"},"md-book_plus":{"char":"󰗛","code":"f05db"},"md-book_plus_multiple":{"char":"󰪕","code":"f0a95"},"md-book_plus_multiple_outline":{"char":"󰫞","code":"f0ade"},"md-book_plus_outline":{"char":"󱚖","code":"f1696"},"md-book_refresh":{"char":"󱚗","code":"f1697"},"md-book_refresh_outline":{"char":"󱚘","code":"f1698"},"md-book_remove":{"char":"󰪗","code":"f0a97"},"md-book_remove_multiple":{"char":"󰪖","code":"f0a96"},"md-book_remove_multiple_outline":{"char":"󰓊","code":"f04ca"},"md-book_remove_outline":{"char":"󱚙","code":"f1699"},"md-book_search":{"char":"󰺄","code":"f0e84"},"md-book_search_outline":{"char":"󰺅","code":"f0e85"},"md-book_settings":{"char":"󱚚","code":"f169a"},"md-book_settings_outline":{"char":"󱚛","code":"f169b"},"md-book_sync":{"char":"󱚜","code":"f169c"},"md-book_sync_outline":{"char":"󱛈","code":"f16c8"},"md-book_variant":{"char":"󰂿","code":"f00bf"},"md-book_variant_multiple":{"char":"󰂼","code":"f00bc"},"md-bookmark":{"char":"󰃀","code":"f00c0"},"md-bookmark_box_multiple":{"char":"󱥬","code":"f196c"},"md-bookmark_box_multiple_outline":{"char":"󱥭","code":"f196d"},"md-bookmark_check":{"char":"󰃁","code":"f00c1"},"md-bookmark_check_outline":{"char":"󱍻","code":"f137b"},"md-bookmark_minus":{"char":"󰧌","code":"f09cc"},"md-bookmark_minus_outline":{"char":"󰧍","code":"f09cd"},"md-bookmark_multiple":{"char":"󰸕","code":"f0e15"},"md-bookmark_multiple_outline":{"char":"󰸖","code":"f0e16"},"md-bookmark_music":{"char":"󰃂","code":"f00c2"},"md-bookmark_music_outline":{"char":"󱍹","code":"f1379"},"md-bookmark_off":{"char":"󰧎","code":"f09ce"},"md-bookmark_off_outline":{"char":"󰧏","code":"f09cf"},"md-bookmark_outline":{"char":"󰃃","code":"f00c3"},"md-bookmark_plus":{"char":"󰃅","code":"f00c5"},"md-bookmark_plus_outline":{"char":"󰃄","code":"f00c4"},"md-bookmark_remove":{"char":"󰃆","code":"f00c6"},"md-bookmark_remove_outline":{"char":"󱍺","code":"f137a"},"md-bookshelf":{"char":"󱉟","code":"f125f"},"md-boom_gate":{"char":"󰺆","code":"f0e86"},"md-boom_gate_alert":{"char":"󰺇","code":"f0e87"},"md-boom_gate_alert_outline":{"char":"󰺈","code":"f0e88"},"md-boom_gate_arrow_down":{"char":"󰺉","code":"f0e89"},"md-boom_gate_arrow_down_outline":{"char":"󰺊","code":"f0e8a"},"md-boom_gate_arrow_up":{"char":"󰺌","code":"f0e8c"},"md-boom_gate_arrow_up_outline":{"char":"󰺍","code":"f0e8d"},"md-boom_gate_outline":{"char":"󰺋","code":"f0e8b"},"md-boom_gate_up":{"char":"󱟹","code":"f17f9"},"md-boom_gate_up_outline":{"char":"󱟺","code":"f17fa"},"md-boombox":{"char":"󰗜","code":"f05dc"},"md-boomerang":{"char":"󱃏","code":"f10cf"},"md-bootstrap":{"char":"󰛆","code":"f06c6"},"md-border_all":{"char":"󰃇","code":"f00c7"},"md-border_all_variant":{"char":"󰢡","code":"f08a1"},"md-border_bottom":{"char":"󰃈","code":"f00c8"},"md-border_bottom_variant":{"char":"󰢢","code":"f08a2"},"md-border_color":{"char":"󰃉","code":"f00c9"},"md-border_horizontal":{"char":"󰃊","code":"f00ca"},"md-border_inside":{"char":"󰃋","code":"f00cb"},"md-border_left":{"char":"󰃌","code":"f00cc"},"md-border_left_variant":{"char":"󰢣","code":"f08a3"},"md-border_none":{"char":"󰃍","code":"f00cd"},"md-border_none_variant":{"char":"󰢤","code":"f08a4"},"md-border_outside":{"char":"󰃎","code":"f00ce"},"md-border_right":{"char":"󰃏","code":"f00cf"},"md-border_right_variant":{"char":"󰢥","code":"f08a5"},"md-border_style":{"char":"󰃐","code":"f00d0"},"md-border_top":{"char":"󰃑","code":"f00d1"},"md-border_top_variant":{"char":"󰢦","code":"f08a6"},"md-border_vertical":{"char":"󰃒","code":"f00d2"},"md-bottle_soda":{"char":"󱁰","code":"f1070"},"md-bottle_soda_classic":{"char":"󱁱","code":"f1071"},"md-bottle_soda_classic_outline":{"char":"󱍣","code":"f1363"},"md-bottle_soda_outline":{"char":"󱁲","code":"f1072"},"md-bottle_tonic":{"char":"󱄮","code":"f112e"},"md-bottle_tonic_outline":{"char":"󱄯","code":"f112f"},"md-bottle_tonic_plus":{"char":"󱄰","code":"f1130"},"md-bottle_tonic_plus_outline":{"char":"󱄱","code":"f1131"},"md-bottle_tonic_skull":{"char":"󱄲","code":"f1132"},"md-bottle_tonic_skull_outline":{"char":"󱄳","code":"f1133"},"md-bottle_wine":{"char":"󰡔","code":"f0854"},"md-bottle_wine_outline":{"char":"󱌐","code":"f1310"},"md-bow_arrow":{"char":"󱡁","code":"f1841"},"md-bow_tie":{"char":"󰙸","code":"f0678"},"md-bowl":{"char":"󰊎","code":"f028e"},"md-bowl_mix":{"char":"󰘗","code":"f0617"},"md-bowl_mix_outline":{"char":"󰋤","code":"f02e4"},"md-bowl_outline":{"char":"󰊩","code":"f02a9"},"md-bowling":{"char":"󰃓","code":"f00d3"},"md-box":{"char":"󰃔","code":"f00d4"},"md-box_cutter":{"char":"󰃕","code":"f00d5"},"md-box_cutter_off":{"char":"󰭊","code":"f0b4a"},"md-box_shadow":{"char":"󰘷","code":"f0637"},"md-boxing_glove":{"char":"󰭥","code":"f0b65"},"md-braille":{"char":"󰧐","code":"f09d0"},"md-brain":{"char":"󰧑","code":"f09d1"},"md-bread_slice":{"char":"󰳮","code":"f0cee"},"md-bread_slice_outline":{"char":"󰳯","code":"f0cef"},"md-bridge":{"char":"󰘘","code":"f0618"},"md-briefcase":{"char":"󰃖","code":"f00d6"},"md-briefcase_account":{"char":"󰳰","code":"f0cf0"},"md-briefcase_account_outline":{"char":"󰳱","code":"f0cf1"},"md-briefcase_arrow_left_right":{"char":"󱪍","code":"f1a8d"},"md-briefcase_arrow_left_right_outline":{"char":"󱪎","code":"f1a8e"},"md-briefcase_arrow_up_down":{"char":"󱪏","code":"f1a8f"},"md-briefcase_arrow_up_down_outline":{"char":"󱪐","code":"f1a90"},"md-briefcase_check":{"char":"󰃗","code":"f00d7"},"md-briefcase_check_outline":{"char":"󱌞","code":"f131e"},"md-briefcase_clock":{"char":"󱃐","code":"f10d0"},"md-briefcase_clock_outline":{"char":"󱃑","code":"f10d1"},"md-briefcase_download":{"char":"󰃘","code":"f00d8"},"md-briefcase_download_outline":{"char":"󰰽","code":"f0c3d"},"md-briefcase_edit":{"char":"󰪘","code":"f0a98"},"md-briefcase_edit_outline":{"char":"󰰾","code":"f0c3e"},"md-briefcase_eye":{"char":"󱟙","code":"f17d9"},"md-briefcase_eye_outline":{"char":"󱟚","code":"f17da"},"md-briefcase_minus":{"char":"󰨪","code":"f0a2a"},"md-briefcase_minus_outline":{"char":"󰰿","code":"f0c3f"},"md-briefcase_off":{"char":"󱙘","code":"f1658"},"md-briefcase_off_outline":{"char":"󱙙","code":"f1659"},"md-briefcase_outline":{"char":"󰠔","code":"f0814"},"md-briefcase_plus":{"char":"󰨫","code":"f0a2b"},"md-briefcase_plus_outline":{"char":"󰱀","code":"f0c40"},"md-briefcase_remove":{"char":"󰨬","code":"f0a2c"},"md-briefcase_remove_outline":{"char":"󰱁","code":"f0c41"},"md-briefcase_search":{"char":"󰨭","code":"f0a2d"},"md-briefcase_search_outline":{"char":"󰱂","code":"f0c42"},"md-briefcase_upload":{"char":"󰃙","code":"f00d9"},"md-briefcase_upload_outline":{"char":"󰱃","code":"f0c43"},"md-briefcase_variant":{"char":"󱒔","code":"f1494"},"md-briefcase_variant_off":{"char":"󱙚","code":"f165a"},"md-briefcase_variant_off_outline":{"char":"󱙛","code":"f165b"},"md-briefcase_variant_outline":{"char":"󱒕","code":"f1495"},"md-brightness_1":{"char":"󰃚","code":"f00da"},"md-brightness_2":{"char":"󰃛","code":"f00db"},"md-brightness_3":{"char":"󰃜","code":"f00dc"},"md-brightness_4":{"char":"󰃝","code":"f00dd"},"md-brightness_5":{"char":"󰃞","code":"f00de"},"md-brightness_6":{"char":"󰃟","code":"f00df"},"md-brightness_7":{"char":"󰃠","code":"f00e0"},"md-brightness_auto":{"char":"󰃡","code":"f00e1"},"md-brightness_percent":{"char":"󰳲","code":"f0cf2"},"md-broadcast":{"char":"󱜠","code":"f1720"},"md-broadcast_off":{"char":"󱜡","code":"f1721"},"md-broom":{"char":"󰃢","code":"f00e2"},"md-brush":{"char":"󰃣","code":"f00e3"},"md-brush_off":{"char":"󱝱","code":"f1771"},"md-brush_outline":{"char":"󱨍","code":"f1a0d"},"md-brush_variant":{"char":"󱠓","code":"f1813"},"md-bucket":{"char":"󱐕","code":"f1415"},"md-bucket_outline":{"char":"󱐖","code":"f1416"},"md-buffet":{"char":"󰕸","code":"f0578"},"md-bug":{"char":"󰃤","code":"f00e4"},"md-bug_check":{"char":"󰨮","code":"f0a2e"},"md-bug_check_outline":{"char":"󰨯","code":"f0a2f"},"md-bug_outline":{"char":"󰨰","code":"f0a30"},"md-bugle":{"char":"󰶴","code":"f0db4"},"md-bulkhead_light":{"char":"󱨯","code":"f1a2f"},"md-bulldozer":{"char":"󰬢","code":"f0b22"},"md-bullet":{"char":"󰳳","code":"f0cf3"},"md-bulletin_board":{"char":"󰃥","code":"f00e5"},"md-bullhorn":{"char":"󰃦","code":"f00e6"},"md-bullhorn_outline":{"char":"󰬣","code":"f0b23"},"md-bullhorn_variant":{"char":"󱥮","code":"f196e"},"md-bullhorn_variant_outline":{"char":"󱥯","code":"f196f"},"md-bullseye":{"char":"󰗝","code":"f05dd"},"md-bullseye_arrow":{"char":"󰣉","code":"f08c9"},"md-bulma":{"char":"󱋧","code":"f12e7"},"md-bunk_bed":{"char":"󱌂","code":"f1302"},"md-bunk_bed_outline":{"char":"󰂗","code":"f0097"},"md-bus":{"char":"󰃧","code":"f00e7"},"md-bus_alert":{"char":"󰪙","code":"f0a99"},"md-bus_articulated_end":{"char":"󰞜","code":"f079c"},"md-bus_articulated_front":{"char":"󰞝","code":"f079d"},"md-bus_clock":{"char":"󰣊","code":"f08ca"},"md-bus_double_decker":{"char":"󰞞","code":"f079e"},"md-bus_electric":{"char":"󱤝","code":"f191d"},"md-bus_marker":{"char":"󱈒","code":"f1212"},"md-bus_multiple":{"char":"󰼿","code":"f0f3f"},"md-bus_school":{"char":"󰞟","code":"f079f"},"md-bus_side":{"char":"󰞠","code":"f07a0"},"md-bus_stop":{"char":"󱀒","code":"f1012"},"md-bus_stop_covered":{"char":"󱀓","code":"f1013"},"md-bus_stop_uncovered":{"char":"󱀔","code":"f1014"},"md-butterfly":{"char":"󱖉","code":"f1589"},"md-butterfly_outline":{"char":"󱖊","code":"f158a"},"md-cabin_a_frame":{"char":"󱢌","code":"f188c"},"md-cable_data":{"char":"󱎔","code":"f1394"},"md-cached":{"char":"󰃨","code":"f00e8"},"md-cactus":{"char":"󰶵","code":"f0db5"},"md-cake":{"char":"󰃩","code":"f00e9"},"md-cake_layered":{"char":"󰃪","code":"f00ea"},"md-cake_variant":{"char":"󰃫","code":"f00eb"},"md-cake_variant_outline":{"char":"󱟰","code":"f17f0"},"md-calculator":{"char":"󰃬","code":"f00ec"},"md-calculator_variant":{"char":"󰪚","code":"f0a9a"},"md-calculator_variant_outline":{"char":"󱖦","code":"f15a6"},"md-calendar":{"char":"󰃭","code":"f00ed"},"md-calendar_account":{"char":"󰻗","code":"f0ed7"},"md-calendar_account_outline":{"char":"󰻘","code":"f0ed8"},"md-calendar_alert":{"char":"󰨱","code":"f0a31"},"md-calendar_arrow_left":{"char":"󱄴","code":"f1134"},"md-calendar_arrow_right":{"char":"󱄵","code":"f1135"},"md-calendar_blank":{"char":"󰃮","code":"f00ee"},"md-calendar_blank_multiple":{"char":"󱁳","code":"f1073"},"md-calendar_blank_outline":{"char":"󰭦","code":"f0b66"},"md-calendar_check":{"char":"󰃯","code":"f00ef"},"md-calendar_check_outline":{"char":"󰱄","code":"f0c44"},"md-calendar_clock":{"char":"󰃰","code":"f00f0"},"md-calendar_clock_outline":{"char":"󱛡","code":"f16e1"},"md-calendar_collapse_horizontal":{"char":"󱢝","code":"f189d"},"md-calendar_cursor":{"char":"󱕻","code":"f157b"},"md-calendar_edit":{"char":"󰢧","code":"f08a7"},"md-calendar_end":{"char":"󱙬","code":"f166c"},"md-calendar_expand_horizontal":{"char":"󱢞","code":"f189e"},"md-calendar_export":{"char":"󰬤","code":"f0b24"},"md-calendar_heart":{"char":"󰧒","code":"f09d2"},"md-calendar_import":{"char":"󰬥","code":"f0b25"},"md-calendar_lock":{"char":"󱙁","code":"f1641"},"md-calendar_lock_outline":{"char":"󱙂","code":"f1642"},"md-calendar_minus":{"char":"󰵜","code":"f0d5c"},"md-calendar_month":{"char":"󰸗","code":"f0e17"},"md-calendar_month_outline":{"char":"󰸘","code":"f0e18"},"md-calendar_multiple":{"char":"󰃱","code":"f00f1"},"md-calendar_multiple_check":{"char":"󰃲","code":"f00f2"},"md-calendar_multiselect":{"char":"󰨲","code":"f0a32"},"md-calendar_outline":{"char":"󰭧","code":"f0b67"},"md-calendar_plus":{"char":"󰃳","code":"f00f3"},"md-calendar_question":{"char":"󰚒","code":"f0692"},"md-calendar_range":{"char":"󰙹","code":"f0679"},"md-calendar_range_outline":{"char":"󰭨","code":"f0b68"},"md-calendar_refresh":{"char":"󰇡","code":"f01e1"},"md-calendar_refresh_outline":{"char":"󰈃","code":"f0203"},"md-calendar_remove":{"char":"󰃴","code":"f00f4"},"md-calendar_remove_outline":{"char":"󰱅","code":"f0c45"},"md-calendar_search":{"char":"󰥌","code":"f094c"},"md-calendar_star":{"char":"󰧓","code":"f09d3"},"md-calendar_start":{"char":"󱙭","code":"f166d"},"md-calendar_sync":{"char":"󰺎","code":"f0e8e"},"md-calendar_sync_outline":{"char":"󰺏","code":"f0e8f"},"md-calendar_text":{"char":"󰃵","code":"f00f5"},"md-calendar_text_outline":{"char":"󰱆","code":"f0c46"},"md-calendar_today":{"char":"󰃶","code":"f00f6"},"md-calendar_today_outline":{"char":"󱨰","code":"f1a30"},"md-calendar_week":{"char":"󰨳","code":"f0a33"},"md-calendar_week_begin":{"char":"󰨴","code":"f0a34"},"md-calendar_week_begin_outline":{"char":"󱨱","code":"f1a31"},"md-calendar_week_end":{"char":"󱨲","code":"f1a32"},"md-calendar_week_end_outline":{"char":"󱨳","code":"f1a33"},"md-calendar_week_outline":{"char":"󱨴","code":"f1a34"},"md-calendar_weekend":{"char":"󰻙","code":"f0ed9"},"md-calendar_weekend_outline":{"char":"󰻚","code":"f0eda"},"md-call_made":{"char":"󰃷","code":"f00f7"},"md-call_merge":{"char":"󰃸","code":"f00f8"},"md-call_missed":{"char":"󰃹","code":"f00f9"},"md-call_received":{"char":"󰃺","code":"f00fa"},"md-call_split":{"char":"󰃻","code":"f00fb"},"md-camcorder":{"char":"󰃼","code":"f00fc"},"md-camcorder_off":{"char":"󰃿","code":"f00ff"},"md-camera":{"char":"󰄀","code":"f0100"},"md-camera_account":{"char":"󰣋","code":"f08cb"},"md-camera_burst":{"char":"󰚓","code":"f0693"},"md-camera_control":{"char":"󰭩","code":"f0b69"},"md-camera_document":{"char":"󱡱","code":"f1871"},"md-camera_document_off":{"char":"󱡲","code":"f1872"},"md-camera_enhance":{"char":"󰄁","code":"f0101"},"md-camera_enhance_outline":{"char":"󰭪","code":"f0b6a"},"md-camera_flip":{"char":"󱗙","code":"f15d9"},"md-camera_flip_outline":{"char":"󱗚","code":"f15da"},"md-camera_front":{"char":"󰄂","code":"f0102"},"md-camera_front_variant":{"char":"󰄃","code":"f0103"},"md-camera_gopro":{"char":"󰞡","code":"f07a1"},"md-camera_image":{"char":"󰣌","code":"f08cc"},"md-camera_iris":{"char":"󰄄","code":"f0104"},"md-camera_lock":{"char":"󱨔","code":"f1a14"},"md-camera_lock_outline":{"char":"󱨕","code":"f1a15"},"md-camera_marker":{"char":"󱦧","code":"f19a7"},"md-camera_marker_outline":{"char":"󱦨","code":"f19a8"},"md-camera_metering_center":{"char":"󰞢","code":"f07a2"},"md-camera_metering_matrix":{"char":"󰞣","code":"f07a3"},"md-camera_metering_partial":{"char":"󰞤","code":"f07a4"},"md-camera_metering_spot":{"char":"󰞥","code":"f07a5"},"md-camera_off":{"char":"󰗟","code":"f05df"},"md-camera_off_outline":{"char":"󱦿","code":"f19bf"},"md-camera_outline":{"char":"󰵝","code":"f0d5d"},"md-camera_party_mode":{"char":"󰄅","code":"f0105"},"md-camera_plus":{"char":"󰻛","code":"f0edb"},"md-camera_plus_outline":{"char":"󰻜","code":"f0edc"},"md-camera_rear":{"char":"󰄆","code":"f0106"},"md-camera_rear_variant":{"char":"󰄇","code":"f0107"},"md-camera_retake":{"char":"󰸙","code":"f0e19"},"md-camera_retake_outline":{"char":"󰸚","code":"f0e1a"},"md-camera_switch":{"char":"󰄈","code":"f0108"},"md-camera_switch_outline":{"char":"󰡊","code":"f084a"},"md-camera_timer":{"char":"󰄉","code":"f0109"},"md-camera_wireless":{"char":"󰶶","code":"f0db6"},"md-camera_wireless_outline":{"char":"󰶷","code":"f0db7"},"md-campfire":{"char":"󰻝","code":"f0edd"},"md-cancel":{"char":"󰜺","code":"f073a"},"md-candelabra":{"char":"󱟒","code":"f17d2"},"md-candelabra_fire":{"char":"󱟓","code":"f17d3"},"md-candle":{"char":"󰗢","code":"f05e2"},"md-candy":{"char":"󱥰","code":"f1970"},"md-candy_off":{"char":"󱥱","code":"f1971"},"md-candy_off_outline":{"char":"󱥲","code":"f1972"},"md-candy_outline":{"char":"󱥳","code":"f1973"},"md-candycane":{"char":"󰄊","code":"f010a"},"md-cannabis":{"char":"󰞦","code":"f07a6"},"md-cannabis_off":{"char":"󱙮","code":"f166e"},"md-caps_lock":{"char":"󰪛","code":"f0a9b"},"md-car":{"char":"󰄋","code":"f010b"},"md-car_2_plus":{"char":"󱀕","code":"f1015"},"md-car_3_plus":{"char":"󱀖","code":"f1016"},"md-car_arrow_left":{"char":"󱎲","code":"f13b2"},"md-car_arrow_right":{"char":"󱎳","code":"f13b3"},"md-car_back":{"char":"󰸛","code":"f0e1b"},"md-car_battery":{"char":"󰄌","code":"f010c"},"md-car_brake_abs":{"char":"󰱇","code":"f0c47"},"md-car_brake_alert":{"char":"󰱈","code":"f0c48"},"md-car_brake_fluid_level":{"char":"󱤉","code":"f1909"},"md-car_brake_hold":{"char":"󰵞","code":"f0d5e"},"md-car_brake_low_pressure":{"char":"󱤊","code":"f190a"},"md-car_brake_parking":{"char":"󰵟","code":"f0d5f"},"md-car_brake_retarder":{"char":"󱀗","code":"f1017"},"md-car_brake_temperature":{"char":"󱤋","code":"f190b"},"md-car_brake_worn_linings":{"char":"󱤌","code":"f190c"},"md-car_child_seat":{"char":"󰾣","code":"f0fa3"},"md-car_clock":{"char":"󱥴","code":"f1974"},"md-car_clutch":{"char":"󱀘","code":"f1018"},"md-car_cog":{"char":"󱏌","code":"f13cc"},"md-car_connected":{"char":"󰄍","code":"f010d"},"md-car_convertible":{"char":"󰞧","code":"f07a7"},"md-car_coolant_level":{"char":"󱀙","code":"f1019"},"md-car_cruise_control":{"char":"󰵠","code":"f0d60"},"md-car_defrost_front":{"char":"󰵡","code":"f0d61"},"md-car_defrost_rear":{"char":"󰵢","code":"f0d62"},"md-car_door":{"char":"󰭫","code":"f0b6b"},"md-car_door_lock":{"char":"󱂝","code":"f109d"},"md-car_electric":{"char":"󰭬","code":"f0b6c"},"md-car_electric_outline":{"char":"󱖵","code":"f15b5"},"md-car_emergency":{"char":"󱘏","code":"f160f"},"md-car_esp":{"char":"󰱉","code":"f0c49"},"md-car_estate":{"char":"󰞨","code":"f07a8"},"md-car_hatchback":{"char":"󰞩","code":"f07a9"},"md-car_info":{"char":"󱆾","code":"f11be"},"md-car_key":{"char":"󰭭","code":"f0b6d"},"md-car_lifted_pickup":{"char":"󱔭","code":"f152d"},"md-car_light_alert":{"char":"󱤍","code":"f190d"},"md-car_light_dimmed":{"char":"󰱊","code":"f0c4a"},"md-car_light_fog":{"char":"󰱋","code":"f0c4b"},"md-car_light_high":{"char":"󰱌","code":"f0c4c"},"md-car_limousine":{"char":"󰣍","code":"f08cd"},"md-car_multiple":{"char":"󰭮","code":"f0b6e"},"md-car_off":{"char":"󰸜","code":"f0e1c"},"md-car_outline":{"char":"󱓭","code":"f14ed"},"md-car_parking_lights":{"char":"󰵣","code":"f0d63"},"md-car_pickup":{"char":"󰞪","code":"f07aa"},"md-car_seat":{"char":"󰾤","code":"f0fa4"},"md-car_seat_cooler":{"char":"󰾥","code":"f0fa5"},"md-car_seat_heater":{"char":"󰾦","code":"f0fa6"},"md-car_select":{"char":"󱡹","code":"f1879"},"md-car_settings":{"char":"󱏍","code":"f13cd"},"md-car_shift_pattern":{"char":"󰽀","code":"f0f40"},"md-car_side":{"char":"󰞫","code":"f07ab"},"md-car_speed_limiter":{"char":"󱤎","code":"f190e"},"md-car_sports":{"char":"󰞬","code":"f07ac"},"md-car_tire_alert":{"char":"󰱍","code":"f0c4d"},"md-car_traction_control":{"char":"󰵤","code":"f0d64"},"md-car_turbocharger":{"char":"󱀚","code":"f101a"},"md-car_wash":{"char":"󰄎","code":"f010e"},"md-car_windshield":{"char":"󱀛","code":"f101b"},"md-car_windshield_outline":{"char":"󱀜","code":"f101c"},"md-car_wireless":{"char":"󱡸","code":"f1878"},"md-car_wrench":{"char":"󱠔","code":"f1814"},"md-carabiner":{"char":"󱓀","code":"f14c0"},"md-caravan":{"char":"󰞭","code":"f07ad"},"md-card":{"char":"󰭯","code":"f0b6f"},"md-card_account_details":{"char":"󰗒","code":"f05d2"},"md-card_account_details_outline":{"char":"󰶫","code":"f0dab"},"md-card_account_details_star":{"char":"󰊣","code":"f02a3"},"md-card_account_details_star_outline":{"char":"󰛛","code":"f06db"},"md-card_account_mail":{"char":"󰆎","code":"f018e"},"md-card_account_mail_outline":{"char":"󰺘","code":"f0e98"},"md-card_account_phone":{"char":"󰺙","code":"f0e99"},"md-card_account_phone_outline":{"char":"󰺚","code":"f0e9a"},"md-card_bulleted":{"char":"󰭰","code":"f0b70"},"md-card_bulleted_off":{"char":"󰭱","code":"f0b71"},"md-card_bulleted_off_outline":{"char":"󰭲","code":"f0b72"},"md-card_bulleted_outline":{"char":"󰭳","code":"f0b73"},"md-card_bulleted_settings":{"char":"󰭴","code":"f0b74"},"md-card_bulleted_settings_outline":{"char":"󰭵","code":"f0b75"},"md-card_minus":{"char":"󱘀","code":"f1600"},"md-card_minus_outline":{"char":"󱘁","code":"f1601"},"md-card_multiple":{"char":"󱟱","code":"f17f1"},"md-card_multiple_outline":{"char":"󱟲","code":"f17f2"},"md-card_off":{"char":"󱘂","code":"f1602"},"md-card_off_outline":{"char":"󱘃","code":"f1603"},"md-card_outline":{"char":"󰭶","code":"f0b76"},"md-card_plus":{"char":"󱇿","code":"f11ff"},"md-card_plus_outline":{"char":"󱈀","code":"f1200"},"md-card_remove":{"char":"󱘄","code":"f1604"},"md-card_remove_outline":{"char":"󱘅","code":"f1605"},"md-card_search":{"char":"󱁴","code":"f1074"},"md-card_search_outline":{"char":"󱁵","code":"f1075"},"md-card_text":{"char":"󰭷","code":"f0b77"},"md-card_text_outline":{"char":"󰭸","code":"f0b78"},"md-cards":{"char":"󰘸","code":"f0638"},"md-cards_club":{"char":"󰣎","code":"f08ce"},"md-cards_club_outline":{"char":"󱢟","code":"f189f"},"md-cards_diamond":{"char":"󰣏","code":"f08cf"},"md-cards_diamond_outline":{"char":"󱀝","code":"f101d"},"md-cards_outline":{"char":"󰘹","code":"f0639"},"md-cards_playing":{"char":"󱢡","code":"f18a1"},"md-cards_playing_club":{"char":"󱢢","code":"f18a2"},"md-cards_playing_club_multiple":{"char":"󱢣","code":"f18a3"},"md-cards_playing_club_multiple_outline":{"char":"󱢤","code":"f18a4"},"md-cards_playing_club_outline":{"char":"󱢥","code":"f18a5"},"md-cards_playing_diamond":{"char":"󱢦","code":"f18a6"},"md-cards_playing_diamond_multiple":{"char":"󱢧","code":"f18a7"},"md-cards_playing_diamond_multiple_outline":{"char":"󱢨","code":"f18a8"},"md-cards_playing_diamond_outline":{"char":"󱢩","code":"f18a9"},"md-cards_playing_heart":{"char":"󱢪","code":"f18aa"},"md-cards_playing_heart_multiple":{"char":"󱢫","code":"f18ab"},"md-cards_playing_heart_multiple_outline":{"char":"󱢬","code":"f18ac"},"md-cards_playing_heart_outline":{"char":"󱢭","code":"f18ad"},"md-cards_playing_outline":{"char":"󰘺","code":"f063a"},"md-cards_playing_spade":{"char":"󱢮","code":"f18ae"},"md-cards_playing_spade_multiple":{"char":"󱢯","code":"f18af"},"md-cards_playing_spade_multiple_outline":{"char":"󱢰","code":"f18b0"},"md-cards_playing_spade_outline":{"char":"󱢱","code":"f18b1"},"md-cards_spade":{"char":"󰣑","code":"f08d1"},"md-cards_spade_outline":{"char":"󱢲","code":"f18b2"},"md-cards_variant":{"char":"󰛇","code":"f06c7"},"md-carrot":{"char":"󰄏","code":"f010f"},"md-cart":{"char":"󰄐","code":"f0110"},"md-cart_arrow_down":{"char":"󰵦","code":"f0d66"},"md-cart_arrow_right":{"char":"󰱎","code":"f0c4e"},"md-cart_arrow_up":{"char":"󰵧","code":"f0d67"},"md-cart_check":{"char":"󱗪","code":"f15ea"},"md-cart_heart":{"char":"󱣠","code":"f18e0"},"md-cart_minus":{"char":"󰵨","code":"f0d68"},"md-cart_off":{"char":"󰙫","code":"f066b"},"md-cart_outline":{"char":"󰄑","code":"f0111"},"md-cart_plus":{"char":"󰄒","code":"f0112"},"md-cart_remove":{"char":"󰵩","code":"f0d69"},"md-cart_variant":{"char":"󱗫","code":"f15eb"},"md-case_sensitive_alt":{"char":"󰄓","code":"f0113"},"md-cash":{"char":"󰄔","code":"f0114"},"md-cash_100":{"char":"󰄕","code":"f0115"},"md-cash_check":{"char":"󱓮","code":"f14ee"},"md-cash_clock":{"char":"󱪑","code":"f1a91"},"md-cash_fast":{"char":"󱡜","code":"f185c"},"md-cash_lock":{"char":"󱓪","code":"f14ea"},"md-cash_lock_open":{"char":"󱓫","code":"f14eb"},"md-cash_marker":{"char":"󰶸","code":"f0db8"},"md-cash_minus":{"char":"󱉠","code":"f1260"},"md-cash_multiple":{"char":"󰄖","code":"f0116"},"md-cash_plus":{"char":"󱉡","code":"f1261"},"md-cash_refund":{"char":"󰪜","code":"f0a9c"},"md-cash_register":{"char":"󰳴","code":"f0cf4"},"md-cash_remove":{"char":"󱉢","code":"f1262"},"md-cash_sync":{"char":"󱪒","code":"f1a92"},"md-cassette":{"char":"󰧔","code":"f09d4"},"md-cast":{"char":"󰄘","code":"f0118"},"md-cast_audio":{"char":"󱀞","code":"f101e"},"md-cast_audio_variant":{"char":"󱝉","code":"f1749"},"md-cast_connected":{"char":"󰄙","code":"f0119"},"md-cast_education":{"char":"󰸝","code":"f0e1d"},"md-cast_off":{"char":"󰞊","code":"f078a"},"md-cast_variant":{"char":"󰀟","code":"f001f"},"md-castle":{"char":"󰄚","code":"f011a"},"md-cat":{"char":"󰄛","code":"f011b"},"md-cctv":{"char":"󰞮","code":"f07ae"},"md-cctv_off":{"char":"󱡟","code":"f185f"},"md-ceiling_fan":{"char":"󱞗","code":"f1797"},"md-ceiling_fan_light":{"char":"󱞘","code":"f1798"},"md-ceiling_light":{"char":"󰝩","code":"f0769"},"md-ceiling_light_multiple":{"char":"󱣝","code":"f18dd"},"md-ceiling_light_multiple_outline":{"char":"󱣞","code":"f18de"},"md-ceiling_light_outline":{"char":"󱟇","code":"f17c7"},"md-cellphone":{"char":"󰄜","code":"f011c"},"md-cellphone_arrow_down":{"char":"󰧕","code":"f09d5"},"md-cellphone_arrow_down_variant":{"char":"󱧅","code":"f19c5"},"md-cellphone_basic":{"char":"󰄞","code":"f011e"},"md-cellphone_charging":{"char":"󱎗","code":"f1397"},"md-cellphone_check":{"char":"󱟽","code":"f17fd"},"md-cellphone_cog":{"char":"󰥑","code":"f0951"},"md-cellphone_dock":{"char":"󰄟","code":"f011f"},"md-cellphone_information":{"char":"󰽁","code":"f0f41"},"md-cellphone_key":{"char":"󰥎","code":"f094e"},"md-cellphone_link":{"char":"󰄡","code":"f0121"},"md-cellphone_link_off":{"char":"󰄢","code":"f0122"},"md-cellphone_lock":{"char":"󰥏","code":"f094f"},"md-cellphone_marker":{"char":"󱠺","code":"f183a"},"md-cellphone_message":{"char":"󰣓","code":"f08d3"},"md-cellphone_message_off":{"char":"󱃒","code":"f10d2"},"md-cellphone_nfc":{"char":"󰺐","code":"f0e90"},"md-cellphone_nfc_off":{"char":"󱋘","code":"f12d8"},"md-cellphone_off":{"char":"󰥐","code":"f0950"},"md-cellphone_play":{"char":"󱀟","code":"f101f"},"md-cellphone_remove":{"char":"󰥍","code":"f094d"},"md-cellphone_screenshot":{"char":"󰨵","code":"f0a35"},"md-cellphone_settings":{"char":"󰄣","code":"f0123"},"md-cellphone_sound":{"char":"󰥒","code":"f0952"},"md-cellphone_text":{"char":"󰣒","code":"f08d2"},"md-cellphone_wireless":{"char":"󰠕","code":"f0815"},"md-centos":{"char":"󱄚","code":"f111a"},"md-certificate":{"char":"󰄤","code":"f0124"},"md-certificate_outline":{"char":"󱆈","code":"f1188"},"md-chair_rolling":{"char":"󰽈","code":"f0f48"},"md-chair_school":{"char":"󰄥","code":"f0125"},"md-chandelier":{"char":"󱞓","code":"f1793"},"md-charity":{"char":"󰱏","code":"f0c4f"},"md-chart_arc":{"char":"󰄦","code":"f0126"},"md-chart_areaspline":{"char":"󰄧","code":"f0127"},"md-chart_areaspline_variant":{"char":"󰺑","code":"f0e91"},"md-chart_bar":{"char":"󰄨","code":"f0128"},"md-chart_bar_stacked":{"char":"󰝪","code":"f076a"},"md-chart_bell_curve":{"char":"󰱐","code":"f0c50"},"md-chart_bell_curve_cumulative":{"char":"󰾧","code":"f0fa7"},"md-chart_box":{"char":"󱕍","code":"f154d"},"md-chart_box_outline":{"char":"󱕎","code":"f154e"},"md-chart_box_plus_outline":{"char":"󱕏","code":"f154f"},"md-chart_bubble":{"char":"󰗣","code":"f05e3"},"md-chart_donut":{"char":"󰞯","code":"f07af"},"md-chart_donut_variant":{"char":"󰞰","code":"f07b0"},"md-chart_gantt":{"char":"󰙬","code":"f066c"},"md-chart_histogram":{"char":"󰄩","code":"f0129"},"md-chart_line":{"char":"󰄪","code":"f012a"},"md-chart_line_stacked":{"char":"󰝫","code":"f076b"},"md-chart_line_variant":{"char":"󰞱","code":"f07b1"},"md-chart_multiline":{"char":"󰣔","code":"f08d4"},"md-chart_multiple":{"char":"󱈓","code":"f1213"},"md-chart_pie":{"char":"󰄫","code":"f012b"},"md-chart_ppf":{"char":"󱎀","code":"f1380"},"md-chart_sankey":{"char":"󱇟","code":"f11df"},"md-chart_sankey_variant":{"char":"󱇠","code":"f11e0"},"md-chart_scatter_plot":{"char":"󰺒","code":"f0e92"},"md-chart_scatter_plot_hexbin":{"char":"󰙭","code":"f066d"},"md-chart_timeline":{"char":"󰙮","code":"f066e"},"md-chart_timeline_variant":{"char":"󰺓","code":"f0e93"},"md-chart_timeline_variant_shimmer":{"char":"󱖶","code":"f15b6"},"md-chart_tree":{"char":"󰺔","code":"f0e94"},"md-chart_waterfall":{"char":"󱤘","code":"f1918"},"md-chat":{"char":"󰭹","code":"f0b79"},"md-chat_alert":{"char":"󰭺","code":"f0b7a"},"md-chat_alert_outline":{"char":"󱋉","code":"f12c9"},"md-chat_minus":{"char":"󱐐","code":"f1410"},"md-chat_minus_outline":{"char":"󱐓","code":"f1413"},"md-chat_outline":{"char":"󰻞","code":"f0ede"},"md-chat_plus":{"char":"󱐏","code":"f140f"},"md-chat_plus_outline":{"char":"󱐒","code":"f1412"},"md-chat_processing":{"char":"󰭻","code":"f0b7b"},"md-chat_processing_outline":{"char":"󱋊","code":"f12ca"},"md-chat_question":{"char":"󱜸","code":"f1738"},"md-chat_question_outline":{"char":"󱜹","code":"f1739"},"md-chat_remove":{"char":"󱐑","code":"f1411"},"md-chat_remove_outline":{"char":"󱐔","code":"f1414"},"md-chat_sleep":{"char":"󱋑","code":"f12d1"},"md-chat_sleep_outline":{"char":"󱋒","code":"f12d2"},"md-check":{"char":"󰄬","code":"f012c"},"md-check_all":{"char":"󰄭","code":"f012d"},"md-check_bold":{"char":"󰸞","code":"f0e1e"},"md-check_circle":{"char":"󰗠","code":"f05e0"},"md-check_circle_outline":{"char":"󰗡","code":"f05e1"},"md-check_decagram":{"char":"󰞑","code":"f0791"},"md-check_decagram_outline":{"char":"󱝀","code":"f1740"},"md-check_network":{"char":"󰱓","code":"f0c53"},"md-check_network_outline":{"char":"󰱔","code":"f0c54"},"md-check_outline":{"char":"󰡕","code":"f0855"},"md-check_underline":{"char":"󰸟","code":"f0e1f"},"md-check_underline_circle":{"char":"󰸠","code":"f0e20"},"md-check_underline_circle_outline":{"char":"󰸡","code":"f0e21"},"md-checkbook":{"char":"󰪝","code":"f0a9d"},"md-checkbox_blank":{"char":"󰄮","code":"f012e"},"md-checkbox_blank_badge":{"char":"󱅶","code":"f1176"},"md-checkbox_blank_badge_outline":{"char":"󰄗","code":"f0117"},"md-checkbox_blank_circle":{"char":"󰝥","code":"f0765"},"md-checkbox_blank_circle_outline":{"char":"󰝦","code":"f0766"},"md-checkbox_blank_off":{"char":"󱋬","code":"f12ec"},"md-checkbox_blank_off_outline":{"char":"󱋭","code":"f12ed"},"md-checkbox_blank_outline":{"char":"󰄱","code":"f0131"},"md-checkbox_intermediate":{"char":"󰡖","code":"f0856"},"md-checkbox_marked":{"char":"󰄲","code":"f0132"},"md-checkbox_marked_circle":{"char":"󰄳","code":"f0133"},"md-checkbox_marked_circle_outline":{"char":"󰄴","code":"f0134"},"md-checkbox_marked_circle_plus_outline":{"char":"󱤧","code":"f1927"},"md-checkbox_marked_outline":{"char":"󰄵","code":"f0135"},"md-checkbox_multiple_blank":{"char":"󰄶","code":"f0136"},"md-checkbox_multiple_blank_circle":{"char":"󰘻","code":"f063b"},"md-checkbox_multiple_blank_circle_outline":{"char":"󰘼","code":"f063c"},"md-checkbox_multiple_blank_outline":{"char":"󰄷","code":"f0137"},"md-checkbox_multiple_marked":{"char":"󰄸","code":"f0138"},"md-checkbox_multiple_marked_circle":{"char":"󰘽","code":"f063d"},"md-checkbox_multiple_marked_circle_outline":{"char":"󰘾","code":"f063e"},"md-checkbox_multiple_marked_outline":{"char":"󰄹","code":"f0139"},"md-checkbox_multiple_outline":{"char":"󰱑","code":"f0c51"},"md-checkbox_outline":{"char":"󰱒","code":"f0c52"},"md-checkerboard":{"char":"󰄺","code":"f013a"},"md-checkerboard_minus":{"char":"󱈂","code":"f1202"},"md-checkerboard_plus":{"char":"󱈁","code":"f1201"},"md-checkerboard_remove":{"char":"󱈃","code":"f1203"},"md-cheese":{"char":"󱊹","code":"f12b9"},"md-cheese_off":{"char":"󱏮","code":"f13ee"},"md-chef_hat":{"char":"󰭼","code":"f0b7c"},"md-chemical_weapon":{"char":"󰄻","code":"f013b"},"md-chess_bishop":{"char":"󰡜","code":"f085c"},"md-chess_king":{"char":"󰡗","code":"f0857"},"md-chess_knight":{"char":"󰡘","code":"f0858"},"md-chess_pawn":{"char":"󰡙","code":"f0859"},"md-chess_queen":{"char":"󰡚","code":"f085a"},"md-chess_rook":{"char":"󰡛","code":"f085b"},"md-chevron_double_down":{"char":"󰄼","code":"f013c"},"md-chevron_double_left":{"char":"󰄽","code":"f013d"},"md-chevron_double_right":{"char":"󰄾","code":"f013e"},"md-chevron_double_up":{"char":"󰄿","code":"f013f"},"md-chevron_down":{"char":"󰅀","code":"f0140"},"md-chevron_down_box":{"char":"󰧖","code":"f09d6"},"md-chevron_down_box_outline":{"char":"󰧗","code":"f09d7"},"md-chevron_down_circle":{"char":"󰬦","code":"f0b26"},"md-chevron_down_circle_outline":{"char":"󰬧","code":"f0b27"},"md-chevron_left":{"char":"󰅁","code":"f0141"},"md-chevron_left_box":{"char":"󰧘","code":"f09d8"},"md-chevron_left_box_outline":{"char":"󰧙","code":"f09d9"},"md-chevron_left_circle":{"char":"󰬨","code":"f0b28"},"md-chevron_left_circle_outline":{"char":"󰬩","code":"f0b29"},"md-chevron_right":{"char":"󰅂","code":"f0142"},"md-chevron_right_box":{"char":"󰧚","code":"f09da"},"md-chevron_right_box_outline":{"char":"󰧛","code":"f09db"},"md-chevron_right_circle":{"char":"󰬪","code":"f0b2a"},"md-chevron_right_circle_outline":{"char":"󰬫","code":"f0b2b"},"md-chevron_triple_down":{"char":"󰶹","code":"f0db9"},"md-chevron_triple_left":{"char":"󰶺","code":"f0dba"},"md-chevron_triple_right":{"char":"󰶻","code":"f0dbb"},"md-chevron_triple_up":{"char":"󰶼","code":"f0dbc"},"md-chevron_up":{"char":"󰅃","code":"f0143"},"md-chevron_up_box":{"char":"󰧜","code":"f09dc"},"md-chevron_up_box_outline":{"char":"󰧝","code":"f09dd"},"md-chevron_up_circle":{"char":"󰬬","code":"f0b2c"},"md-chevron_up_circle_outline":{"char":"󰬭","code":"f0b2d"},"md-chili_alert":{"char":"󱟪","code":"f17ea"},"md-chili_alert_outline":{"char":"󱟫","code":"f17eb"},"md-chili_hot":{"char":"󰞲","code":"f07b2"},"md-chili_hot_outline":{"char":"󱟬","code":"f17ec"},"md-chili_medium":{"char":"󰞳","code":"f07b3"},"md-chili_medium_outline":{"char":"󱟭","code":"f17ed"},"md-chili_mild":{"char":"󰞴","code":"f07b4"},"md-chili_mild_outline":{"char":"󱟮","code":"f17ee"},"md-chili_off":{"char":"󱑧","code":"f1467"},"md-chili_off_outline":{"char":"󱟯","code":"f17ef"},"md-chip":{"char":"󰘚","code":"f061a"},"md-church":{"char":"󰅄","code":"f0144"},"md-cigar":{"char":"󱆉","code":"f1189"},"md-cigar_off":{"char":"󱐛","code":"f141b"},"md-circle_box":{"char":"󱗜","code":"f15dc"},"md-circle_box_outline":{"char":"󱗝","code":"f15dd"},"md-circle_double":{"char":"󰺕","code":"f0e95"},"md-circle_edit_outline":{"char":"󰣕","code":"f08d5"},"md-circle_expand":{"char":"󰺖","code":"f0e96"},"md-circle_half":{"char":"󱎕","code":"f1395"},"md-circle_half_full":{"char":"󱎖","code":"f1396"},"md-circle_medium":{"char":"󰧞","code":"f09de"},"md-circle_multiple":{"char":"󰬸","code":"f0b38"},"md-circle_multiple_outline":{"char":"󰚕","code":"f0695"},"md-circle_off_outline":{"char":"󱃓","code":"f10d3"},"md-circle_opacity":{"char":"󱡓","code":"f1853"},"md-circle_slice_1":{"char":"󰪞","code":"f0a9e"},"md-circle_slice_2":{"char":"󰪟","code":"f0a9f"},"md-circle_slice_3":{"char":"󰪠","code":"f0aa0"},"md-circle_slice_4":{"char":"󰪡","code":"f0aa1"},"md-circle_slice_5":{"char":"󰪢","code":"f0aa2"},"md-circle_slice_6":{"char":"󰪣","code":"f0aa3"},"md-circle_slice_7":{"char":"󰪤","code":"f0aa4"},"md-circle_slice_8":{"char":"󰪥","code":"f0aa5"},"md-circle_small":{"char":"󰧟","code":"f09df"},"md-circular_saw":{"char":"󰸢","code":"f0e22"},"md-city":{"char":"󰅆","code":"f0146"},"md-city_variant":{"char":"󰨶","code":"f0a36"},"md-city_variant_outline":{"char":"󰨷","code":"f0a37"},"md-clipboard":{"char":"󰅇","code":"f0147"},"md-clipboard_account":{"char":"󰅈","code":"f0148"},"md-clipboard_account_outline":{"char":"󰱕","code":"f0c55"},"md-clipboard_alert":{"char":"󰅉","code":"f0149"},"md-clipboard_alert_outline":{"char":"󰳷","code":"f0cf7"},"md-clipboard_arrow_down":{"char":"󰅊","code":"f014a"},"md-clipboard_arrow_down_outline":{"char":"󰱖","code":"f0c56"},"md-clipboard_arrow_left":{"char":"󰅋","code":"f014b"},"md-clipboard_arrow_left_outline":{"char":"󰳸","code":"f0cf8"},"md-clipboard_arrow_right":{"char":"󰳹","code":"f0cf9"},"md-clipboard_arrow_right_outline":{"char":"󰳺","code":"f0cfa"},"md-clipboard_arrow_up":{"char":"󰱗","code":"f0c57"},"md-clipboard_arrow_up_outline":{"char":"󰱘","code":"f0c58"},"md-clipboard_check":{"char":"󰅎","code":"f014e"},"md-clipboard_check_multiple":{"char":"󱉣","code":"f1263"},"md-clipboard_check_multiple_outline":{"char":"󱉤","code":"f1264"},"md-clipboard_check_outline":{"char":"󰢨","code":"f08a8"},"md-clipboard_clock":{"char":"󱛢","code":"f16e2"},"md-clipboard_clock_outline":{"char":"󱛣","code":"f16e3"},"md-clipboard_edit":{"char":"󱓥","code":"f14e5"},"md-clipboard_edit_outline":{"char":"󱓦","code":"f14e6"},"md-clipboard_file":{"char":"󱉥","code":"f1265"},"md-clipboard_file_outline":{"char":"󱉦","code":"f1266"},"md-clipboard_flow":{"char":"󰛈","code":"f06c8"},"md-clipboard_flow_outline":{"char":"󱄗","code":"f1117"},"md-clipboard_list":{"char":"󱃔","code":"f10d4"},"md-clipboard_list_outline":{"char":"󱃕","code":"f10d5"},"md-clipboard_minus":{"char":"󱘘","code":"f1618"},"md-clipboard_minus_outline":{"char":"󱘙","code":"f1619"},"md-clipboard_multiple":{"char":"󱉧","code":"f1267"},"md-clipboard_multiple_outline":{"char":"󱉨","code":"f1268"},"md-clipboard_off":{"char":"󱘚","code":"f161a"},"md-clipboard_off_outline":{"char":"󱘛","code":"f161b"},"md-clipboard_outline":{"char":"󰅌","code":"f014c"},"md-clipboard_play":{"char":"󰱙","code":"f0c59"},"md-clipboard_play_multiple":{"char":"󱉩","code":"f1269"},"md-clipboard_play_multiple_outline":{"char":"󱉪","code":"f126a"},"md-clipboard_play_outline":{"char":"󰱚","code":"f0c5a"},"md-clipboard_plus":{"char":"󰝑","code":"f0751"},"md-clipboard_plus_outline":{"char":"󱌟","code":"f131f"},"md-clipboard_pulse":{"char":"󰡝","code":"f085d"},"md-clipboard_pulse_outline":{"char":"󰡞","code":"f085e"},"md-clipboard_remove":{"char":"󱘜","code":"f161c"},"md-clipboard_remove_outline":{"char":"󱘝","code":"f161d"},"md-clipboard_search":{"char":"󱘞","code":"f161e"},"md-clipboard_search_outline":{"char":"󱘟","code":"f161f"},"md-clipboard_text":{"char":"󰅍","code":"f014d"},"md-clipboard_text_clock":{"char":"󱣹","code":"f18f9"},"md-clipboard_text_clock_outline":{"char":"󱣺","code":"f18fa"},"md-clipboard_text_multiple":{"char":"󱉫","code":"f126b"},"md-clipboard_text_multiple_outline":{"char":"󱉬","code":"f126c"},"md-clipboard_text_off":{"char":"󱘠","code":"f1620"},"md-clipboard_text_off_outline":{"char":"󱘡","code":"f1621"},"md-clipboard_text_outline":{"char":"󰨸","code":"f0a38"},"md-clipboard_text_play":{"char":"󰱛","code":"f0c5b"},"md-clipboard_text_play_outline":{"char":"󰱜","code":"f0c5c"},"md-clipboard_text_search":{"char":"󱘢","code":"f1622"},"md-clipboard_text_search_outline":{"char":"󱘣","code":"f1623"},"md-clippy":{"char":"󰅏","code":"f014f"},"md-clock":{"char":"󰥔","code":"f0954"},"md-clock_alert":{"char":"󰥕","code":"f0955"},"md-clock_alert_outline":{"char":"󰗎","code":"f05ce"},"md-clock_check":{"char":"󰾨","code":"f0fa8"},"md-clock_check_outline":{"char":"󰾩","code":"f0fa9"},"md-clock_digital":{"char":"󰺗","code":"f0e97"},"md-clock_edit":{"char":"󱦺","code":"f19ba"},"md-clock_edit_outline":{"char":"󱦻","code":"f19bb"},"md-clock_end":{"char":"󰅑","code":"f0151"},"md-clock_fast":{"char":"󰅒","code":"f0152"},"md-clock_in":{"char":"󰅓","code":"f0153"},"md-clock_minus":{"char":"󱡣","code":"f1863"},"md-clock_minus_outline":{"char":"󱡤","code":"f1864"},"md-clock_out":{"char":"󰅔","code":"f0154"},"md-clock_outline":{"char":"󰅐","code":"f0150"},"md-clock_plus":{"char":"󱡡","code":"f1861"},"md-clock_plus_outline":{"char":"󱡢","code":"f1862"},"md-clock_remove":{"char":"󱡥","code":"f1865"},"md-clock_remove_outline":{"char":"󱡦","code":"f1866"},"md-clock_start":{"char":"󰅕","code":"f0155"},"md-clock_time_eight":{"char":"󱑆","code":"f1446"},"md-clock_time_eight_outline":{"char":"󱑒","code":"f1452"},"md-clock_time_eleven":{"char":"󱑉","code":"f1449"},"md-clock_time_eleven_outline":{"char":"󱑕","code":"f1455"},"md-clock_time_five":{"char":"󱑃","code":"f1443"},"md-clock_time_five_outline":{"char":"󱑏","code":"f144f"},"md-clock_time_four":{"char":"󱑂","code":"f1442"},"md-clock_time_four_outline":{"char":"󱑎","code":"f144e"},"md-clock_time_nine":{"char":"󱑇","code":"f1447"},"md-clock_time_nine_outline":{"char":"󱑓","code":"f1453"},"md-clock_time_one":{"char":"󱐿","code":"f143f"},"md-clock_time_one_outline":{"char":"󱑋","code":"f144b"},"md-clock_time_seven":{"char":"󱑅","code":"f1445"},"md-clock_time_seven_outline":{"char":"󱑑","code":"f1451"},"md-clock_time_six":{"char":"󱑄","code":"f1444"},"md-clock_time_six_outline":{"char":"󱑐","code":"f1450"},"md-clock_time_ten":{"char":"󱑈","code":"f1448"},"md-clock_time_ten_outline":{"char":"󱑔","code":"f1454"},"md-clock_time_three":{"char":"󱑁","code":"f1441"},"md-clock_time_three_outline":{"char":"󱑍","code":"f144d"},"md-clock_time_twelve":{"char":"󱑊","code":"f144a"},"md-clock_time_twelve_outline":{"char":"󱑖","code":"f1456"},"md-clock_time_two":{"char":"󱑀","code":"f1440"},"md-clock_time_two_outline":{"char":"󱑌","code":"f144c"},"md-close":{"char":"󰅖","code":"f0156"},"md-close_box":{"char":"󰅗","code":"f0157"},"md-close_box_multiple":{"char":"󰱝","code":"f0c5d"},"md-close_box_multiple_outline":{"char":"󰱞","code":"f0c5e"},"md-close_box_outline":{"char":"󰅘","code":"f0158"},"md-close_circle":{"char":"󰅙","code":"f0159"},"md-close_circle_multiple":{"char":"󰘪","code":"f062a"},"md-close_circle_multiple_outline":{"char":"󰢃","code":"f0883"},"md-close_circle_outline":{"char":"󰅚","code":"f015a"},"md-close_network":{"char":"󰅛","code":"f015b"},"md-close_network_outline":{"char":"󰱟","code":"f0c5f"},"md-close_octagon":{"char":"󰅜","code":"f015c"},"md-close_octagon_outline":{"char":"󰅝","code":"f015d"},"md-close_outline":{"char":"󰛉","code":"f06c9"},"md-close_thick":{"char":"󱎘","code":"f1398"},"md-closed_caption":{"char":"󰅞","code":"f015e"},"md-closed_caption_outline":{"char":"󰶽","code":"f0dbd"},"md-cloud":{"char":"󰅟","code":"f015f"},"md-cloud_alert":{"char":"󰧠","code":"f09e0"},"md-cloud_braces":{"char":"󰞵","code":"f07b5"},"md-cloud_check":{"char":"󰅠","code":"f0160"},"md-cloud_check_outline":{"char":"󱋌","code":"f12cc"},"md-cloud_circle":{"char":"󰅡","code":"f0161"},"md-cloud_download":{"char":"󰅢","code":"f0162"},"md-cloud_download_outline":{"char":"󰭽","code":"f0b7d"},"md-cloud_lock":{"char":"󱇱","code":"f11f1"},"md-cloud_lock_outline":{"char":"󱇲","code":"f11f2"},"md-cloud_off_outline":{"char":"󰅤","code":"f0164"},"md-cloud_outline":{"char":"󰅣","code":"f0163"},"md-cloud_percent":{"char":"󱨵","code":"f1a35"},"md-cloud_percent_outline":{"char":"󱨶","code":"f1a36"},"md-cloud_print":{"char":"󰅥","code":"f0165"},"md-cloud_print_outline":{"char":"󰅦","code":"f0166"},"md-cloud_question":{"char":"󰨹","code":"f0a39"},"md-cloud_refresh":{"char":"󰔪","code":"f052a"},"md-cloud_search":{"char":"󰥖","code":"f0956"},"md-cloud_search_outline":{"char":"󰥗","code":"f0957"},"md-cloud_sync":{"char":"󰘿","code":"f063f"},"md-cloud_sync_outline":{"char":"󱋖","code":"f12d6"},"md-cloud_tags":{"char":"󰞶","code":"f07b6"},"md-cloud_upload":{"char":"󰅧","code":"f0167"},"md-cloud_upload_outline":{"char":"󰭾","code":"f0b7e"},"md-clover":{"char":"󰠖","code":"f0816"},"md-coach_lamp":{"char":"󱀠","code":"f1020"},"md-coach_lamp_variant":{"char":"󱨷","code":"f1a37"},"md-coat_rack":{"char":"󱂞","code":"f109e"},"md-code_array":{"char":"󰅨","code":"f0168"},"md-code_braces":{"char":"󰅩","code":"f0169"},"md-code_braces_box":{"char":"󱃖","code":"f10d6"},"md-code_brackets":{"char":"󰅪","code":"f016a"},"md-code_equal":{"char":"󰅫","code":"f016b"},"md-code_greater_than":{"char":"󰅬","code":"f016c"},"md-code_greater_than_or_equal":{"char":"󰅭","code":"f016d"},"md-code_json":{"char":"󰘦","code":"f0626"},"md-code_less_than":{"char":"󰅮","code":"f016e"},"md-code_less_than_or_equal":{"char":"󰅯","code":"f016f"},"md-code_not_equal":{"char":"󰅰","code":"f0170"},"md-code_not_equal_variant":{"char":"󰅱","code":"f0171"},"md-code_parentheses":{"char":"󰅲","code":"f0172"},"md-code_parentheses_box":{"char":"󱃗","code":"f10d7"},"md-code_string":{"char":"󰅳","code":"f0173"},"md-code_tags":{"char":"󰅴","code":"f0174"},"md-code_tags_check":{"char":"󰚔","code":"f0694"},"md-codepen":{"char":"󰅵","code":"f0175"},"md-coffee":{"char":"󰅶","code":"f0176"},"md-coffee_maker":{"char":"󱂟","code":"f109f"},"md-coffee_maker_check":{"char":"󱤱","code":"f1931"},"md-coffee_maker_check_outline":{"char":"󱤲","code":"f1932"},"md-coffee_maker_outline":{"char":"󱠛","code":"f181b"},"md-coffee_off":{"char":"󰾪","code":"f0faa"},"md-coffee_off_outline":{"char":"󰾫","code":"f0fab"},"md-coffee_outline":{"char":"󰛊","code":"f06ca"},"md-coffee_to_go":{"char":"󰅷","code":"f0177"},"md-coffee_to_go_outline":{"char":"󱌎","code":"f130e"},"md-coffin":{"char":"󰭿","code":"f0b7f"},"md-cog":{"char":"󰒓","code":"f0493"},"md-cog_box":{"char":"󰒔","code":"f0494"},"md-cog_clockwise":{"char":"󱇝","code":"f11dd"},"md-cog_counterclockwise":{"char":"󱇞","code":"f11de"},"md-cog_off":{"char":"󱏎","code":"f13ce"},"md-cog_off_outline":{"char":"󱏏","code":"f13cf"},"md-cog_outline":{"char":"󰢻","code":"f08bb"},"md-cog_pause":{"char":"󱤳","code":"f1933"},"md-cog_pause_outline":{"char":"󱤴","code":"f1934"},"md-cog_play":{"char":"󱤵","code":"f1935"},"md-cog_play_outline":{"char":"󱤶","code":"f1936"},"md-cog_refresh":{"char":"󱑞","code":"f145e"},"md-cog_refresh_outline":{"char":"󱑟","code":"f145f"},"md-cog_stop":{"char":"󱤷","code":"f1937"},"md-cog_stop_outline":{"char":"󱤸","code":"f1938"},"md-cog_sync":{"char":"󱑠","code":"f1460"},"md-cog_sync_outline":{"char":"󱑡","code":"f1461"},"md-cog_transfer":{"char":"󱁛","code":"f105b"},"md-cog_transfer_outline":{"char":"󱁜","code":"f105c"},"md-cogs":{"char":"󰣖","code":"f08d6"},"md-collage":{"char":"󰙀","code":"f0640"},"md-collapse_all":{"char":"󰪦","code":"f0aa6"},"md-collapse_all_outline":{"char":"󰪧","code":"f0aa7"},"md-color_helper":{"char":"󰅹","code":"f0179"},"md-comma":{"char":"󰸣","code":"f0e23"},"md-comma_box":{"char":"󰸫","code":"f0e2b"},"md-comma_box_outline":{"char":"󰸤","code":"f0e24"},"md-comma_circle":{"char":"󰸥","code":"f0e25"},"md-comma_circle_outline":{"char":"󰸦","code":"f0e26"},"md-comment":{"char":"󰅺","code":"f017a"},"md-comment_account":{"char":"󰅻","code":"f017b"},"md-comment_account_outline":{"char":"󰅼","code":"f017c"},"md-comment_alert":{"char":"󰅽","code":"f017d"},"md-comment_alert_outline":{"char":"󰅾","code":"f017e"},"md-comment_arrow_left":{"char":"󰧡","code":"f09e1"},"md-comment_arrow_left_outline":{"char":"󰧢","code":"f09e2"},"md-comment_arrow_right":{"char":"󰧣","code":"f09e3"},"md-comment_arrow_right_outline":{"char":"󰧤","code":"f09e4"},"md-comment_bookmark":{"char":"󱖮","code":"f15ae"},"md-comment_bookmark_outline":{"char":"󱖯","code":"f15af"},"md-comment_check":{"char":"󰅿","code":"f017f"},"md-comment_check_outline":{"char":"󰆀","code":"f0180"},"md-comment_edit":{"char":"󱆿","code":"f11bf"},"md-comment_edit_outline":{"char":"󱋄","code":"f12c4"},"md-comment_eye":{"char":"󰨺","code":"f0a3a"},"md-comment_eye_outline":{"char":"󰨻","code":"f0a3b"},"md-comment_flash":{"char":"󱖰","code":"f15b0"},"md-comment_flash_outline":{"char":"󱖱","code":"f15b1"},"md-comment_minus":{"char":"󱗟","code":"f15df"},"md-comment_minus_outline":{"char":"󱗠","code":"f15e0"},"md-comment_multiple":{"char":"󰡟","code":"f085f"},"md-comment_multiple_outline":{"char":"󰆁","code":"f0181"},"md-comment_off":{"char":"󱗡","code":"f15e1"},"md-comment_off_outline":{"char":"󱗢","code":"f15e2"},"md-comment_outline":{"char":"󰆂","code":"f0182"},"md-comment_plus":{"char":"󰧥","code":"f09e5"},"md-comment_plus_outline":{"char":"󰆃","code":"f0183"},"md-comment_processing":{"char":"󰆄","code":"f0184"},"md-comment_processing_outline":{"char":"󰆅","code":"f0185"},"md-comment_question":{"char":"󰠗","code":"f0817"},"md-comment_question_outline":{"char":"󰆆","code":"f0186"},"md-comment_quote":{"char":"󱀡","code":"f1021"},"md-comment_quote_outline":{"char":"󱀢","code":"f1022"},"md-comment_remove":{"char":"󰗞","code":"f05de"},"md-comment_remove_outline":{"char":"󰆇","code":"f0187"},"md-comment_search":{"char":"󰨼","code":"f0a3c"},"md-comment_search_outline":{"char":"󰨽","code":"f0a3d"},"md-comment_text":{"char":"󰆈","code":"f0188"},"md-comment_text_multiple":{"char":"󰡠","code":"f0860"},"md-comment_text_multiple_outline":{"char":"󰡡","code":"f0861"},"md-comment_text_outline":{"char":"󰆉","code":"f0189"},"md-compare":{"char":"󰆊","code":"f018a"},"md-compare_horizontal":{"char":"󱒒","code":"f1492"},"md-compare_remove":{"char":"󱢳","code":"f18b3"},"md-compare_vertical":{"char":"󱒓","code":"f1493"},"md-compass":{"char":"󰆋","code":"f018b"},"md-compass_off":{"char":"󰮀","code":"f0b80"},"md-compass_off_outline":{"char":"󰮁","code":"f0b81"},"md-compass_outline":{"char":"󰆌","code":"f018c"},"md-compass_rose":{"char":"󱎂","code":"f1382"},"md-compost":{"char":"󱨸","code":"f1a38"},"md-cone":{"char":"󱥌","code":"f194c"},"md-cone_off":{"char":"󱥍","code":"f194d"},"md-connection":{"char":"󱘖","code":"f1616"},"md-console":{"char":"󰆍","code":"f018d"},"md-console_line":{"char":"󰞷","code":"f07b7"},"md-console_network":{"char":"󰢩","code":"f08a9"},"md-console_network_outline":{"char":"󰱠","code":"f0c60"},"md-consolidate":{"char":"󱃘","code":"f10d8"},"md-contactless_payment":{"char":"󰵪","code":"f0d6a"},"md-contactless_payment_circle":{"char":"󰌡","code":"f0321"},"md-contactless_payment_circle_outline":{"char":"󰐈","code":"f0408"},"md-contacts":{"char":"󰛋","code":"f06cb"},"md-contacts_outline":{"char":"󰖸","code":"f05b8"},"md-contain":{"char":"󰨾","code":"f0a3e"},"md-contain_end":{"char":"󰨿","code":"f0a3f"},"md-contain_start":{"char":"󰩀","code":"f0a40"},"md-content_copy":{"char":"󰆏","code":"f018f"},"md-content_cut":{"char":"󰆐","code":"f0190"},"md-content_duplicate":{"char":"󰆑","code":"f0191"},"md-content_paste":{"char":"󰆒","code":"f0192"},"md-content_save":{"char":"󰆓","code":"f0193"},"md-content_save_alert":{"char":"󰽂","code":"f0f42"},"md-content_save_alert_outline":{"char":"󰽃","code":"f0f43"},"md-content_save_all":{"char":"󰆔","code":"f0194"},"md-content_save_all_outline":{"char":"󰽄","code":"f0f44"},"md-content_save_check":{"char":"󱣪","code":"f18ea"},"md-content_save_check_outline":{"char":"󱣫","code":"f18eb"},"md-content_save_cog":{"char":"󱑛","code":"f145b"},"md-content_save_cog_outline":{"char":"󱑜","code":"f145c"},"md-content_save_edit":{"char":"󰳻","code":"f0cfb"},"md-content_save_edit_outline":{"char":"󰳼","code":"f0cfc"},"md-content_save_move":{"char":"󰸧","code":"f0e27"},"md-content_save_move_outline":{"char":"󰸨","code":"f0e28"},"md-content_save_off":{"char":"󱙃","code":"f1643"},"md-content_save_off_outline":{"char":"󱙄","code":"f1644"},"md-content_save_outline":{"char":"󰠘","code":"f0818"},"md-content_save_settings":{"char":"󰘛","code":"f061b"},"md-content_save_settings_outline":{"char":"󰬮","code":"f0b2e"},"md-contrast":{"char":"󰆕","code":"f0195"},"md-contrast_box":{"char":"󰆖","code":"f0196"},"md-contrast_circle":{"char":"󰆗","code":"f0197"},"md-controller_classic":{"char":"󰮂","code":"f0b82"},"md-controller_classic_outline":{"char":"󰮃","code":"f0b83"},"md-cookie":{"char":"󰆘","code":"f0198"},"md-cookie_alert":{"char":"󱛐","code":"f16d0"},"md-cookie_alert_outline":{"char":"󱛑","code":"f16d1"},"md-cookie_check":{"char":"󱛒","code":"f16d2"},"md-cookie_check_outline":{"char":"󱛓","code":"f16d3"},"md-cookie_clock":{"char":"󱛤","code":"f16e4"},"md-cookie_clock_outline":{"char":"󱛥","code":"f16e5"},"md-cookie_cog":{"char":"󱛔","code":"f16d4"},"md-cookie_cog_outline":{"char":"󱛕","code":"f16d5"},"md-cookie_edit":{"char":"󱛦","code":"f16e6"},"md-cookie_edit_outline":{"char":"󱛧","code":"f16e7"},"md-cookie_lock":{"char":"󱛨","code":"f16e8"},"md-cookie_lock_outline":{"char":"󱛩","code":"f16e9"},"md-cookie_minus":{"char":"󱛚","code":"f16da"},"md-cookie_minus_outline":{"char":"󱛛","code":"f16db"},"md-cookie_off":{"char":"󱛪","code":"f16ea"},"md-cookie_off_outline":{"char":"󱛫","code":"f16eb"},"md-cookie_outline":{"char":"󱛞","code":"f16de"},"md-cookie_plus":{"char":"󱛖","code":"f16d6"},"md-cookie_plus_outline":{"char":"󱛗","code":"f16d7"},"md-cookie_refresh":{"char":"󱛬","code":"f16ec"},"md-cookie_refresh_outline":{"char":"󱛭","code":"f16ed"},"md-cookie_remove":{"char":"󱛘","code":"f16d8"},"md-cookie_remove_outline":{"char":"󱛙","code":"f16d9"},"md-cookie_settings":{"char":"󱛜","code":"f16dc"},"md-cookie_settings_outline":{"char":"󱛝","code":"f16dd"},"md-coolant_temperature":{"char":"󰏈","code":"f03c8"},"md-copyleft":{"char":"󱤹","code":"f1939"},"md-copyright":{"char":"󰗦","code":"f05e6"},"md-cordova":{"char":"󰥘","code":"f0958"},"md-corn":{"char":"󰞸","code":"f07b8"},"md-corn_off":{"char":"󱏯","code":"f13ef"},"md-cosine_wave":{"char":"󱑹","code":"f1479"},"md-counter":{"char":"󰆙","code":"f0199"},"md-countertop":{"char":"󱠜","code":"f181c"},"md-countertop_outline":{"char":"󱠝","code":"f181d"},"md-cow":{"char":"󰆚","code":"f019a"},"md-cow_off":{"char":"󱣼","code":"f18fc"},"md-cpu_32_bit":{"char":"󰻟","code":"f0edf"},"md-cpu_64_bit":{"char":"󰻠","code":"f0ee0"},"md-cradle":{"char":"󱦋","code":"f198b"},"md-cradle_outline":{"char":"󱦑","code":"f1991"},"md-crane":{"char":"󰡢","code":"f0862"},"md-creation":{"char":"󰙴","code":"f0674"},"md-creative_commons":{"char":"󰵫","code":"f0d6b"},"md-credit_card":{"char":"󰿯","code":"f0fef"},"md-credit_card_check":{"char":"󱏐","code":"f13d0"},"md-credit_card_check_outline":{"char":"󱏑","code":"f13d1"},"md-credit_card_chip":{"char":"󱤏","code":"f190f"},"md-credit_card_chip_outline":{"char":"󱤐","code":"f1910"},"md-credit_card_clock":{"char":"󰻡","code":"f0ee1"},"md-credit_card_clock_outline":{"char":"󰻢","code":"f0ee2"},"md-credit_card_edit":{"char":"󱟗","code":"f17d7"},"md-credit_card_edit_outline":{"char":"󱟘","code":"f17d8"},"md-credit_card_fast":{"char":"󱤑","code":"f1911"},"md-credit_card_fast_outline":{"char":"󱤒","code":"f1912"},"md-credit_card_lock":{"char":"󱣧","code":"f18e7"},"md-credit_card_lock_outline":{"char":"󱣨","code":"f18e8"},"md-credit_card_marker":{"char":"󰚨","code":"f06a8"},"md-credit_card_marker_outline":{"char":"󰶾","code":"f0dbe"},"md-credit_card_minus":{"char":"󰾬","code":"f0fac"},"md-credit_card_minus_outline":{"char":"󰾭","code":"f0fad"},"md-credit_card_multiple":{"char":"󰿰","code":"f0ff0"},"md-credit_card_multiple_outline":{"char":"󰆜","code":"f019c"},"md-credit_card_off":{"char":"󰿱","code":"f0ff1"},"md-credit_card_off_outline":{"char":"󰗤","code":"f05e4"},"md-credit_card_outline":{"char":"󰆛","code":"f019b"},"md-credit_card_plus":{"char":"󰿲","code":"f0ff2"},"md-credit_card_plus_outline":{"char":"󰙶","code":"f0676"},"md-credit_card_refresh":{"char":"󱙅","code":"f1645"},"md-credit_card_refresh_outline":{"char":"󱙆","code":"f1646"},"md-credit_card_refund":{"char":"󰿳","code":"f0ff3"},"md-credit_card_refund_outline":{"char":"󰪨","code":"f0aa8"},"md-credit_card_remove":{"char":"󰾮","code":"f0fae"},"md-credit_card_remove_outline":{"char":"󰾯","code":"f0faf"},"md-credit_card_scan":{"char":"󰿴","code":"f0ff4"},"md-credit_card_scan_outline":{"char":"󰆝","code":"f019d"},"md-credit_card_search":{"char":"󱙇","code":"f1647"},"md-credit_card_search_outline":{"char":"󱙈","code":"f1648"},"md-credit_card_settings":{"char":"󰿵","code":"f0ff5"},"md-credit_card_settings_outline":{"char":"󰣗","code":"f08d7"},"md-credit_card_sync":{"char":"󱙉","code":"f1649"},"md-credit_card_sync_outline":{"char":"󱙊","code":"f164a"},"md-credit_card_wireless":{"char":"󰠂","code":"f0802"},"md-credit_card_wireless_off":{"char":"󰕺","code":"f057a"},"md-credit_card_wireless_off_outline":{"char":"󰕻","code":"f057b"},"md-credit_card_wireless_outline":{"char":"󰵬","code":"f0d6c"},"md-cricket":{"char":"󰵭","code":"f0d6d"},"md-crop":{"char":"󰆞","code":"f019e"},"md-crop_free":{"char":"󰆟","code":"f019f"},"md-crop_landscape":{"char":"󰆠","code":"f01a0"},"md-crop_portrait":{"char":"󰆡","code":"f01a1"},"md-crop_rotate":{"char":"󰚖","code":"f0696"},"md-crop_square":{"char":"󰆢","code":"f01a2"},"md-cross":{"char":"󰥓","code":"f0953"},"md-cross_bolnisi":{"char":"󰳭","code":"f0ced"},"md-cross_celtic":{"char":"󰳵","code":"f0cf5"},"md-cross_outline":{"char":"󰳶","code":"f0cf6"},"md-crosshairs":{"char":"󰆣","code":"f01a3"},"md-crosshairs_gps":{"char":"󰆤","code":"f01a4"},"md-crosshairs_off":{"char":"󰽅","code":"f0f45"},"md-crosshairs_question":{"char":"󱄶","code":"f1136"},"md-crowd":{"char":"󱥵","code":"f1975"},"md-crown":{"char":"󰆥","code":"f01a5"},"md-crown_circle":{"char":"󱟜","code":"f17dc"},"md-crown_circle_outline":{"char":"󱟝","code":"f17dd"},"md-crown_outline":{"char":"󱇐","code":"f11d0"},"md-cryengine":{"char":"󰥙","code":"f0959"},"md-crystal_ball":{"char":"󰬯","code":"f0b2f"},"md-cube":{"char":"󰆦","code":"f01a6"},"md-cube_off":{"char":"󱐜","code":"f141c"},"md-cube_off_outline":{"char":"󱐝","code":"f141d"},"md-cube_outline":{"char":"󰆧","code":"f01a7"},"md-cube_scan":{"char":"󰮄","code":"f0b84"},"md-cube_send":{"char":"󰆨","code":"f01a8"},"md-cube_unfolded":{"char":"󰆩","code":"f01a9"},"md-cup":{"char":"󰆪","code":"f01aa"},"md-cup_off":{"char":"󰗥","code":"f05e5"},"md-cup_off_outline":{"char":"󱍽","code":"f137d"},"md-cup_outline":{"char":"󱌏","code":"f130f"},"md-cup_water":{"char":"󰆫","code":"f01ab"},"md-cupboard":{"char":"󰽆","code":"f0f46"},"md-cupboard_outline":{"char":"󰽇","code":"f0f47"},"md-cupcake":{"char":"󰥚","code":"f095a"},"md-curling":{"char":"󰡣","code":"f0863"},"md-currency_bdt":{"char":"󰡤","code":"f0864"},"md-currency_brl":{"char":"󰮅","code":"f0b85"},"md-currency_btc":{"char":"󰆬","code":"f01ac"},"md-currency_cny":{"char":"󰞺","code":"f07ba"},"md-currency_eth":{"char":"󰞻","code":"f07bb"},"md-currency_eur":{"char":"󰆭","code":"f01ad"},"md-currency_eur_off":{"char":"󱌕","code":"f1315"},"md-currency_fra":{"char":"󱨹","code":"f1a39"},"md-currency_gbp":{"char":"󰆮","code":"f01ae"},"md-currency_ils":{"char":"󰱡","code":"f0c61"},"md-currency_inr":{"char":"󰆯","code":"f01af"},"md-currency_jpy":{"char":"󰞼","code":"f07bc"},"md-currency_krw":{"char":"󰞽","code":"f07bd"},"md-currency_kzt":{"char":"󰡥","code":"f0865"},"md-currency_mnt":{"char":"󱔒","code":"f1512"},"md-currency_ngn":{"char":"󰆰","code":"f01b0"},"md-currency_php":{"char":"󰧦","code":"f09e6"},"md-currency_rial":{"char":"󰺜","code":"f0e9c"},"md-currency_rub":{"char":"󰆱","code":"f01b1"},"md-currency_rupee":{"char":"󱥶","code":"f1976"},"md-currency_sign":{"char":"󰞾","code":"f07be"},"md-currency_try":{"char":"󰆲","code":"f01b2"},"md-currency_twd":{"char":"󰞿","code":"f07bf"},"md-currency_usd":{"char":"󰇁","code":"f01c1"},"md-currency_usd_off":{"char":"󰙺","code":"f067a"},"md-current_ac":{"char":"󱒀","code":"f1480"},"md-current_dc":{"char":"󰥜","code":"f095c"},"md-cursor_default":{"char":"󰇀","code":"f01c0"},"md-cursor_default_click":{"char":"󰳽","code":"f0cfd"},"md-cursor_default_click_outline":{"char":"󰳾","code":"f0cfe"},"md-cursor_default_gesture":{"char":"󱄧","code":"f1127"},"md-cursor_default_gesture_outline":{"char":"󱄨","code":"f1128"},"md-cursor_default_outline":{"char":"󰆿","code":"f01bf"},"md-cursor_move":{"char":"󰆾","code":"f01be"},"md-cursor_pointer":{"char":"󰆽","code":"f01bd"},"md-cursor_text":{"char":"󰗧","code":"f05e7"},"md-curtains":{"char":"󱡆","code":"f1846"},"md-curtains_closed":{"char":"󱡇","code":"f1847"},"md-cylinder":{"char":"󱥎","code":"f194e"},"md-cylinder_off":{"char":"󱥏","code":"f194f"},"md-dance_ballroom":{"char":"󱗻","code":"f15fb"},"md-dance_pole":{"char":"󱕸","code":"f1578"},"md-data_matrix":{"char":"󱔼","code":"f153c"},"md-data_matrix_edit":{"char":"󱔽","code":"f153d"},"md-data_matrix_minus":{"char":"󱔾","code":"f153e"},"md-data_matrix_plus":{"char":"󱔿","code":"f153f"},"md-data_matrix_remove":{"char":"󱕀","code":"f1540"},"md-data_matrix_scan":{"char":"󱕁","code":"f1541"},"md-database":{"char":"󰆼","code":"f01bc"},"md-database_alert":{"char":"󱘺","code":"f163a"},"md-database_alert_outline":{"char":"󱘤","code":"f1624"},"md-database_arrow_down":{"char":"󱘻","code":"f163b"},"md-database_arrow_down_outline":{"char":"󱘥","code":"f1625"},"md-database_arrow_left":{"char":"󱘼","code":"f163c"},"md-database_arrow_left_outline":{"char":"󱘦","code":"f1626"},"md-database_arrow_right":{"char":"󱘽","code":"f163d"},"md-database_arrow_right_outline":{"char":"󱘧","code":"f1627"},"md-database_arrow_up":{"char":"󱘾","code":"f163e"},"md-database_arrow_up_outline":{"char":"󱘨","code":"f1628"},"md-database_check":{"char":"󰪩","code":"f0aa9"},"md-database_check_outline":{"char":"󱘩","code":"f1629"},"md-database_clock":{"char":"󱘿","code":"f163f"},"md-database_clock_outline":{"char":"󱘪","code":"f162a"},"md-database_cog":{"char":"󱙋","code":"f164b"},"md-database_cog_outline":{"char":"󱙌","code":"f164c"},"md-database_edit":{"char":"󰮆","code":"f0b86"},"md-database_edit_outline":{"char":"󱘫","code":"f162b"},"md-database_export":{"char":"󰥞","code":"f095e"},"md-database_export_outline":{"char":"󱘬","code":"f162c"},"md-database_eye":{"char":"󱤟","code":"f191f"},"md-database_eye_off":{"char":"󱤠","code":"f1920"},"md-database_eye_off_outline":{"char":"󱤡","code":"f1921"},"md-database_eye_outline":{"char":"󱤢","code":"f1922"},"md-database_import":{"char":"󰥝","code":"f095d"},"md-database_import_outline":{"char":"󱘭","code":"f162d"},"md-database_lock":{"char":"󰪪","code":"f0aaa"},"md-database_lock_outline":{"char":"󱘮","code":"f162e"},"md-database_marker":{"char":"󱋶","code":"f12f6"},"md-database_marker_outline":{"char":"󱘯","code":"f162f"},"md-database_minus":{"char":"󰆻","code":"f01bb"},"md-database_minus_outline":{"char":"󱘰","code":"f1630"},"md-database_off":{"char":"󱙀","code":"f1640"},"md-database_off_outline":{"char":"󱘱","code":"f1631"},"md-database_outline":{"char":"󱘲","code":"f1632"},"md-database_plus":{"char":"󰆺","code":"f01ba"},"md-database_plus_outline":{"char":"󱘳","code":"f1633"},"md-database_refresh":{"char":"󰗂","code":"f05c2"},"md-database_refresh_outline":{"char":"󱘴","code":"f1634"},"md-database_remove":{"char":"󰴀","code":"f0d00"},"md-database_remove_outline":{"char":"󱘵","code":"f1635"},"md-database_search":{"char":"󰡦","code":"f0866"},"md-database_search_outline":{"char":"󱘶","code":"f1636"},"md-database_settings":{"char":"󰴁","code":"f0d01"},"md-database_settings_outline":{"char":"󱘷","code":"f1637"},"md-database_sync":{"char":"󰳿","code":"f0cff"},"md-database_sync_outline":{"char":"󱘸","code":"f1638"},"md-death_star":{"char":"󰣘","code":"f08d8"},"md-death_star_variant":{"char":"󰣙","code":"f08d9"},"md-deathly_hallows":{"char":"󰮇","code":"f0b87"},"md-debian":{"char":"󰣚","code":"f08da"},"md-debug_step_into":{"char":"󰆹","code":"f01b9"},"md-debug_step_out":{"char":"󰆸","code":"f01b8"},"md-debug_step_over":{"char":"󰆷","code":"f01b7"},"md-decagram":{"char":"󰝬","code":"f076c"},"md-decagram_outline":{"char":"󰝭","code":"f076d"},"md-decimal":{"char":"󱂡","code":"f10a1"},"md-decimal_comma":{"char":"󱂢","code":"f10a2"},"md-decimal_comma_decrease":{"char":"󱂣","code":"f10a3"},"md-decimal_comma_increase":{"char":"󱂤","code":"f10a4"},"md-decimal_decrease":{"char":"󰆶","code":"f01b6"},"md-decimal_increase":{"char":"󰆵","code":"f01b5"},"md-delete":{"char":"󰆴","code":"f01b4"},"md-delete_alert":{"char":"󱂥","code":"f10a5"},"md-delete_alert_outline":{"char":"󱂦","code":"f10a6"},"md-delete_circle":{"char":"󰚃","code":"f0683"},"md-delete_circle_outline":{"char":"󰮈","code":"f0b88"},"md-delete_clock":{"char":"󱕖","code":"f1556"},"md-delete_clock_outline":{"char":"󱕗","code":"f1557"},"md-delete_empty":{"char":"󰛌","code":"f06cc"},"md-delete_empty_outline":{"char":"󰺝","code":"f0e9d"},"md-delete_forever":{"char":"󰗨","code":"f05e8"},"md-delete_forever_outline":{"char":"󰮉","code":"f0b89"},"md-delete_off":{"char":"󱂧","code":"f10a7"},"md-delete_off_outline":{"char":"󱂨","code":"f10a8"},"md-delete_outline":{"char":"󰧧","code":"f09e7"},"md-delete_restore":{"char":"󰠙","code":"f0819"},"md-delete_sweep":{"char":"󰗩","code":"f05e9"},"md-delete_sweep_outline":{"char":"󰱢","code":"f0c62"},"md-delete_variant":{"char":"󰆳","code":"f01b3"},"md-delta":{"char":"󰇂","code":"f01c2"},"md-desk":{"char":"󱈹","code":"f1239"},"md-desk_lamp":{"char":"󰥟","code":"f095f"},"md-deskphone":{"char":"󰇃","code":"f01c3"},"md-desktop_classic":{"char":"󰟀","code":"f07c0"},"md-desktop_mac":{"char":"󰇄","code":"f01c4"},"md-desktop_mac_dashboard":{"char":"󰧨","code":"f09e8"},"md-desktop_tower":{"char":"󰇅","code":"f01c5"},"md-desktop_tower_monitor":{"char":"󰪫","code":"f0aab"},"md-details":{"char":"󰇆","code":"f01c6"},"md-dev_to":{"char":"󰵮","code":"f0d6e"},"md-developer_board":{"char":"󰚗","code":"f0697"},"md-deviantart":{"char":"󰇇","code":"f01c7"},"md-devices":{"char":"󰾰","code":"f0fb0"},"md-dharmachakra":{"char":"󰥋","code":"f094b"},"md-diabetes":{"char":"󱄦","code":"f1126"},"md-dialpad":{"char":"󰘜","code":"f061c"},"md-diameter":{"char":"󰱣","code":"f0c63"},"md-diameter_outline":{"char":"󰱤","code":"f0c64"},"md-diameter_variant":{"char":"󰱥","code":"f0c65"},"md-diamond":{"char":"󰮊","code":"f0b8a"},"md-diamond_outline":{"char":"󰮋","code":"f0b8b"},"md-diamond_stone":{"char":"󰇈","code":"f01c8"},"md-dice_1":{"char":"󰇊","code":"f01ca"},"md-dice_1_outline":{"char":"󱅊","code":"f114a"},"md-dice_2":{"char":"󰇋","code":"f01cb"},"md-dice_2_outline":{"char":"󱅋","code":"f114b"},"md-dice_3":{"char":"󰇌","code":"f01cc"},"md-dice_3_outline":{"char":"󱅌","code":"f114c"},"md-dice_4":{"char":"󰇍","code":"f01cd"},"md-dice_4_outline":{"char":"󱅍","code":"f114d"},"md-dice_5":{"char":"󰇎","code":"f01ce"},"md-dice_5_outline":{"char":"󱅎","code":"f114e"},"md-dice_6":{"char":"󰇏","code":"f01cf"},"md-dice_6_outline":{"char":"󱅏","code":"f114f"},"md-dice_d10":{"char":"󱅓","code":"f1153"},"md-dice_d10_outline":{"char":"󰝯","code":"f076f"},"md-dice_d12":{"char":"󱅔","code":"f1154"},"md-dice_d12_outline":{"char":"󰡧","code":"f0867"},"md-dice_d20":{"char":"󱅕","code":"f1155"},"md-dice_d20_outline":{"char":"󰗪","code":"f05ea"},"md-dice_d4":{"char":"󱅐","code":"f1150"},"md-dice_d4_outline":{"char":"󰗫","code":"f05eb"},"md-dice_d6":{"char":"󱅑","code":"f1151"},"md-dice_d6_outline":{"char":"󰗭","code":"f05ed"},"md-dice_d8":{"char":"󱅒","code":"f1152"},"md-dice_d8_outline":{"char":"󰗬","code":"f05ec"},"md-dice_multiple":{"char":"󰝮","code":"f076e"},"md-dice_multiple_outline":{"char":"󱅖","code":"f1156"},"md-digital_ocean":{"char":"󱈷","code":"f1237"},"md-dip_switch":{"char":"󰟁","code":"f07c1"},"md-directions":{"char":"󰇐","code":"f01d0"},"md-directions_fork":{"char":"󰙁","code":"f0641"},"md-disc":{"char":"󰗮","code":"f05ee"},"md-disc_alert":{"char":"󰇑","code":"f01d1"},"md-disc_player":{"char":"󰥠","code":"f0960"},"md-discord":{"char":"󰙯","code":"f066f"},"md-dishwasher":{"char":"󰪬","code":"f0aac"},"md-dishwasher_alert":{"char":"󱆸","code":"f11b8"},"md-dishwasher_off":{"char":"󱆹","code":"f11b9"},"md-disqus":{"char":"󰇒","code":"f01d2"},"md-distribute_horizontal_center":{"char":"󱇉","code":"f11c9"},"md-distribute_horizontal_left":{"char":"󱇈","code":"f11c8"},"md-distribute_horizontal_right":{"char":"󱇊","code":"f11ca"},"md-distribute_vertical_bottom":{"char":"󱇋","code":"f11cb"},"md-distribute_vertical_center":{"char":"󱇌","code":"f11cc"},"md-distribute_vertical_top":{"char":"󱇍","code":"f11cd"},"md-diversify":{"char":"󱡷","code":"f1877"},"md-diving":{"char":"󱥷","code":"f1977"},"md-diving_flippers":{"char":"󰶿","code":"f0dbf"},"md-diving_helmet":{"char":"󰷀","code":"f0dc0"},"md-diving_scuba":{"char":"󰷁","code":"f0dc1"},"md-diving_scuba_flag":{"char":"󰷂","code":"f0dc2"},"md-diving_scuba_tank":{"char":"󰷃","code":"f0dc3"},"md-diving_scuba_tank_multiple":{"char":"󰷄","code":"f0dc4"},"md-diving_snorkel":{"char":"󰷅","code":"f0dc5"},"md-division":{"char":"󰇔","code":"f01d4"},"md-division_box":{"char":"󰇕","code":"f01d5"},"md-dlna":{"char":"󰩁","code":"f0a41"},"md-dna":{"char":"󰚄","code":"f0684"},"md-dns":{"char":"󰇖","code":"f01d6"},"md-dns_outline":{"char":"󰮌","code":"f0b8c"},"md-dock_bottom":{"char":"󱂩","code":"f10a9"},"md-dock_left":{"char":"󱂪","code":"f10aa"},"md-dock_right":{"char":"󱂫","code":"f10ab"},"md-dock_top":{"char":"󱔓","code":"f1513"},"md-dock_window":{"char":"󱂬","code":"f10ac"},"md-docker":{"char":"󰡨","code":"f0868"},"md-doctor":{"char":"󰩂","code":"f0a42"},"md-dog":{"char":"󰩃","code":"f0a43"},"md-dog_service":{"char":"󰪭","code":"f0aad"},"md-dog_side":{"char":"󰩄","code":"f0a44"},"md-dog_side_off":{"char":"󱛮","code":"f16ee"},"md-dolby":{"char":"󰚳","code":"f06b3"},"md-dolly":{"char":"󰺞","code":"f0e9e"},"md-dolphin":{"char":"󱢴","code":"f18b4"},"md-domain":{"char":"󰇗","code":"f01d7"},"md-domain_off":{"char":"󰵯","code":"f0d6f"},"md-domain_plus":{"char":"󱂭","code":"f10ad"},"md-domain_remove":{"char":"󱂮","code":"f10ae"},"md-dome_light":{"char":"󱐞","code":"f141e"},"md-domino_mask":{"char":"󱀣","code":"f1023"},"md-donkey":{"char":"󰟂","code":"f07c2"},"md-door":{"char":"󰠚","code":"f081a"},"md-door_closed":{"char":"󰠛","code":"f081b"},"md-door_closed_lock":{"char":"󱂯","code":"f10af"},"md-door_open":{"char":"󰠜","code":"f081c"},"md-door_sliding":{"char":"󱠞","code":"f181e"},"md-door_sliding_lock":{"char":"󱠟","code":"f181f"},"md-door_sliding_open":{"char":"󱠠","code":"f1820"},"md-doorbell":{"char":"󱋦","code":"f12e6"},"md-doorbell_video":{"char":"󰡩","code":"f0869"},"md-dot_net":{"char":"󰪮","code":"f0aae"},"md-dots_circle":{"char":"󱥸","code":"f1978"},"md-dots_grid":{"char":"󱗼","code":"f15fc"},"md-dots_hexagon":{"char":"󱗿","code":"f15ff"},"md-dots_horizontal":{"char":"󰇘","code":"f01d8"},"md-dots_horizontal_circle":{"char":"󰟃","code":"f07c3"},"md-dots_horizontal_circle_outline":{"char":"󰮍","code":"f0b8d"},"md-dots_square":{"char":"󱗽","code":"f15fd"},"md-dots_triangle":{"char":"󱗾","code":"f15fe"},"md-dots_vertical":{"char":"󰇙","code":"f01d9"},"md-dots_vertical_circle":{"char":"󰟄","code":"f07c4"},"md-dots_vertical_circle_outline":{"char":"󰮎","code":"f0b8e"},"md-download":{"char":"󰇚","code":"f01da"},"md-download_box":{"char":"󱑢","code":"f1462"},"md-download_box_outline":{"char":"󱑣","code":"f1463"},"md-download_circle":{"char":"󱑤","code":"f1464"},"md-download_circle_outline":{"char":"󱑥","code":"f1465"},"md-download_lock":{"char":"󱌠","code":"f1320"},"md-download_lock_outline":{"char":"󱌡","code":"f1321"},"md-download_multiple":{"char":"󰧩","code":"f09e9"},"md-download_network":{"char":"󰛴","code":"f06f4"},"md-download_network_outline":{"char":"󰱦","code":"f0c66"},"md-download_off":{"char":"󱂰","code":"f10b0"},"md-download_off_outline":{"char":"󱂱","code":"f10b1"},"md-download_outline":{"char":"󰮏","code":"f0b8f"},"md-drag":{"char":"󰇛","code":"f01db"},"md-drag_horizontal":{"char":"󰇜","code":"f01dc"},"md-drag_horizontal_variant":{"char":"󱋰","code":"f12f0"},"md-drag_variant":{"char":"󰮐","code":"f0b90"},"md-drag_vertical":{"char":"󰇝","code":"f01dd"},"md-drag_vertical_variant":{"char":"󱋱","code":"f12f1"},"md-drama_masks":{"char":"󰴂","code":"f0d02"},"md-draw":{"char":"󰽉","code":"f0f49"},"md-draw_pen":{"char":"󱦹","code":"f19b9"},"md-drawing":{"char":"󰇞","code":"f01de"},"md-drawing_box":{"char":"󰇟","code":"f01df"},"md-dresser":{"char":"󰽊","code":"f0f4a"},"md-dresser_outline":{"char":"󰽋","code":"f0f4b"},"md-drone":{"char":"󰇢","code":"f01e2"},"md-dropbox":{"char":"󰇣","code":"f01e3"},"md-drupal":{"char":"󰇤","code":"f01e4"},"md-duck":{"char":"󰇥","code":"f01e5"},"md-dumbbell":{"char":"󰇦","code":"f01e6"},"md-dump_truck":{"char":"󰱧","code":"f0c67"},"md-ear_hearing":{"char":"󰟅","code":"f07c5"},"md-ear_hearing_loop":{"char":"󱫮","code":"f1aee"},"md-ear_hearing_off":{"char":"󰩅","code":"f0a45"},"md-earbuds":{"char":"󱡏","code":"f184f"},"md-earbuds_off":{"char":"󱡐","code":"f1850"},"md-earbuds_off_outline":{"char":"󱡑","code":"f1851"},"md-earbuds_outline":{"char":"󱡒","code":"f1852"},"md-earth":{"char":"󰇧","code":"f01e7"},"md-earth_arrow_right":{"char":"󱌑","code":"f1311"},"md-earth_box":{"char":"󰛍","code":"f06cd"},"md-earth_box_minus":{"char":"󱐇","code":"f1407"},"md-earth_box_off":{"char":"󰛎","code":"f06ce"},"md-earth_box_plus":{"char":"󱐆","code":"f1406"},"md-earth_box_remove":{"char":"󱐈","code":"f1408"},"md-earth_minus":{"char":"󱐄","code":"f1404"},"md-earth_off":{"char":"󰇨","code":"f01e8"},"md-earth_plus":{"char":"󱐃","code":"f1403"},"md-earth_remove":{"char":"󱐅","code":"f1405"},"md-egg":{"char":"󰪯","code":"f0aaf"},"md-egg_easter":{"char":"󰪰","code":"f0ab0"},"md-egg_fried":{"char":"󱡊","code":"f184a"},"md-egg_off":{"char":"󱏰","code":"f13f0"},"md-egg_off_outline":{"char":"󱏱","code":"f13f1"},"md-egg_outline":{"char":"󱏲","code":"f13f2"},"md-eiffel_tower":{"char":"󱕫","code":"f156b"},"md-eight_track":{"char":"󰧪","code":"f09ea"},"md-eject":{"char":"󰇪","code":"f01ea"},"md-eject_outline":{"char":"󰮑","code":"f0b91"},"md-electric_switch":{"char":"󰺟","code":"f0e9f"},"md-electric_switch_closed":{"char":"󱃙","code":"f10d9"},"md-electron_framework":{"char":"󱀤","code":"f1024"},"md-elephant":{"char":"󰟆","code":"f07c6"},"md-elevation_decline":{"char":"󰇫","code":"f01eb"},"md-elevation_rise":{"char":"󰇬","code":"f01ec"},"md-elevator":{"char":"󰇭","code":"f01ed"},"md-elevator_down":{"char":"󱋂","code":"f12c2"},"md-elevator_passenger":{"char":"󱎁","code":"f1381"},"md-elevator_passenger_off":{"char":"󱥹","code":"f1979"},"md-elevator_passenger_off_outline":{"char":"󱥺","code":"f197a"},"md-elevator_passenger_outline":{"char":"󱥻","code":"f197b"},"md-elevator_up":{"char":"󱋁","code":"f12c1"},"md-ellipse":{"char":"󰺠","code":"f0ea0"},"md-ellipse_outline":{"char":"󰺡","code":"f0ea1"},"md-email":{"char":"󰇮","code":"f01ee"},"md-email_alert":{"char":"󰛏","code":"f06cf"},"md-email_alert_outline":{"char":"󰵂","code":"f0d42"},"md-email_box":{"char":"󰴃","code":"f0d03"},"md-email_check":{"char":"󰪱","code":"f0ab1"},"md-email_check_outline":{"char":"󰪲","code":"f0ab2"},"md-email_edit":{"char":"󰻣","code":"f0ee3"},"md-email_edit_outline":{"char":"󰻤","code":"f0ee4"},"md-email_fast":{"char":"󱡯","code":"f186f"},"md-email_fast_outline":{"char":"󱡰","code":"f1870"},"md-email_lock":{"char":"󰇱","code":"f01f1"},"md-email_mark_as_unread":{"char":"󰮒","code":"f0b92"},"md-email_minus":{"char":"󰻥","code":"f0ee5"},"md-email_minus_outline":{"char":"󰻦","code":"f0ee6"},"md-email_multiple":{"char":"󰻧","code":"f0ee7"},"md-email_multiple_outline":{"char":"󰻨","code":"f0ee8"},"md-email_newsletter":{"char":"󰾱","code":"f0fb1"},"md-email_off":{"char":"󱏣","code":"f13e3"},"md-email_off_outline":{"char":"󱏤","code":"f13e4"},"md-email_open":{"char":"󰇯","code":"f01ef"},"md-email_open_multiple":{"char":"󰻩","code":"f0ee9"},"md-email_open_multiple_outline":{"char":"󰻪","code":"f0eea"},"md-email_open_outline":{"char":"󰗯","code":"f05ef"},"md-email_outline":{"char":"󰇰","code":"f01f0"},"md-email_plus":{"char":"󰧫","code":"f09eb"},"md-email_plus_outline":{"char":"󰧬","code":"f09ec"},"md-email_receive":{"char":"󱃚","code":"f10da"},"md-email_receive_outline":{"char":"󱃛","code":"f10db"},"md-email_remove":{"char":"󱙡","code":"f1661"},"md-email_remove_outline":{"char":"󱙢","code":"f1662"},"md-email_seal":{"char":"󱥛","code":"f195b"},"md-email_seal_outline":{"char":"󱥜","code":"f195c"},"md-email_search":{"char":"󰥡","code":"f0961"},"md-email_search_outline":{"char":"󰥢","code":"f0962"},"md-email_send":{"char":"󱃜","code":"f10dc"},"md-email_send_outline":{"char":"󱃝","code":"f10dd"},"md-email_sync":{"char":"󱋇","code":"f12c7"},"md-email_sync_outline":{"char":"󱋈","code":"f12c8"},"md-email_variant":{"char":"󰗰","code":"f05f0"},"md-ember":{"char":"󰬰","code":"f0b30"},"md-emby":{"char":"󰚴","code":"f06b4"},"md-emoticon":{"char":"󰱨","code":"f0c68"},"md-emoticon_angry":{"char":"󰱩","code":"f0c69"},"md-emoticon_angry_outline":{"char":"󰱪","code":"f0c6a"},"md-emoticon_confused":{"char":"󱃞","code":"f10de"},"md-emoticon_confused_outline":{"char":"󱃟","code":"f10df"},"md-emoticon_cool":{"char":"󰱫","code":"f0c6b"},"md-emoticon_cool_outline":{"char":"󰇳","code":"f01f3"},"md-emoticon_cry":{"char":"󰱬","code":"f0c6c"},"md-emoticon_cry_outline":{"char":"󰱭","code":"f0c6d"},"md-emoticon_dead":{"char":"󰱮","code":"f0c6e"},"md-emoticon_dead_outline":{"char":"󰚛","code":"f069b"},"md-emoticon_devil":{"char":"󰱯","code":"f0c6f"},"md-emoticon_devil_outline":{"char":"󰇴","code":"f01f4"},"md-emoticon_excited":{"char":"󰱰","code":"f0c70"},"md-emoticon_excited_outline":{"char":"󰚜","code":"f069c"},"md-emoticon_frown":{"char":"󰽌","code":"f0f4c"},"md-emoticon_frown_outline":{"char":"󰽍","code":"f0f4d"},"md-emoticon_happy":{"char":"󰱱","code":"f0c71"},"md-emoticon_happy_outline":{"char":"󰇵","code":"f01f5"},"md-emoticon_kiss":{"char":"󰱲","code":"f0c72"},"md-emoticon_kiss_outline":{"char":"󰱳","code":"f0c73"},"md-emoticon_lol":{"char":"󱈔","code":"f1214"},"md-emoticon_lol_outline":{"char":"󱈕","code":"f1215"},"md-emoticon_neutral":{"char":"󰱴","code":"f0c74"},"md-emoticon_neutral_outline":{"char":"󰇶","code":"f01f6"},"md-emoticon_outline":{"char":"󰇲","code":"f01f2"},"md-emoticon_poop":{"char":"󰇷","code":"f01f7"},"md-emoticon_poop_outline":{"char":"󰱵","code":"f0c75"},"md-emoticon_sad":{"char":"󰱶","code":"f0c76"},"md-emoticon_sad_outline":{"char":"󰇸","code":"f01f8"},"md-emoticon_sick":{"char":"󱕼","code":"f157c"},"md-emoticon_sick_outline":{"char":"󱕽","code":"f157d"},"md-emoticon_tongue":{"char":"󰇹","code":"f01f9"},"md-emoticon_tongue_outline":{"char":"󰱷","code":"f0c77"},"md-emoticon_wink":{"char":"󰱸","code":"f0c78"},"md-emoticon_wink_outline":{"char":"󰱹","code":"f0c79"},"md-engine":{"char":"󰇺","code":"f01fa"},"md-engine_off":{"char":"󰩆","code":"f0a46"},"md-engine_off_outline":{"char":"󰩇","code":"f0a47"},"md-engine_outline":{"char":"󰇻","code":"f01fb"},"md-epsilon":{"char":"󱃠","code":"f10e0"},"md-equal":{"char":"󰇼","code":"f01fc"},"md-equal_box":{"char":"󰇽","code":"f01fd"},"md-equalizer":{"char":"󰺢","code":"f0ea2"},"md-equalizer_outline":{"char":"󰺣","code":"f0ea3"},"md-eraser":{"char":"󰇾","code":"f01fe"},"md-eraser_variant":{"char":"󰙂","code":"f0642"},"md-escalator":{"char":"󰇿","code":"f01ff"},"md-escalator_box":{"char":"󱎙","code":"f1399"},"md-escalator_down":{"char":"󱋀","code":"f12c0"},"md-escalator_up":{"char":"󱊿","code":"f12bf"},"md-eslint":{"char":"󰱺","code":"f0c7a"},"md-et":{"char":"󰪳","code":"f0ab3"},"md-ethereum":{"char":"󰡪","code":"f086a"},"md-ethernet":{"char":"󰈀","code":"f0200"},"md-ethernet_cable":{"char":"󰈁","code":"f0201"},"md-ethernet_cable_off":{"char":"󰈂","code":"f0202"},"md-ev_plug_ccs1":{"char":"󱔙","code":"f1519"},"md-ev_plug_ccs2":{"char":"󱔚","code":"f151a"},"md-ev_plug_chademo":{"char":"󱔛","code":"f151b"},"md-ev_plug_tesla":{"char":"󱔜","code":"f151c"},"md-ev_plug_type1":{"char":"󱔝","code":"f151d"},"md-ev_plug_type2":{"char":"󱔞","code":"f151e"},"md-ev_station":{"char":"󰗱","code":"f05f1"},"md-evernote":{"char":"󰈄","code":"f0204"},"md-excavator":{"char":"󱀥","code":"f1025"},"md-exclamation":{"char":"󰈅","code":"f0205"},"md-exclamation_thick":{"char":"󱈸","code":"f1238"},"md-exit_run":{"char":"󰩈","code":"f0a48"},"md-exit_to_app":{"char":"󰗼","code":"f05fc"},"md-expand_all":{"char":"󰪴","code":"f0ab4"},"md-expand_all_outline":{"char":"󰪵","code":"f0ab5"},"md-expansion_card":{"char":"󰢮","code":"f08ae"},"md-expansion_card_variant":{"char":"󰾲","code":"f0fb2"},"md-exponent":{"char":"󰥣","code":"f0963"},"md-exponent_box":{"char":"󰥤","code":"f0964"},"md-export":{"char":"󰈇","code":"f0207"},"md-export_variant":{"char":"󰮓","code":"f0b93"},"md-eye":{"char":"󰈈","code":"f0208"},"md-eye_arrow_left":{"char":"󱣽","code":"f18fd"},"md-eye_arrow_left_outline":{"char":"󱣾","code":"f18fe"},"md-eye_arrow_right":{"char":"󱣿","code":"f18ff"},"md-eye_arrow_right_outline":{"char":"󱤀","code":"f1900"},"md-eye_check":{"char":"󰴄","code":"f0d04"},"md-eye_check_outline":{"char":"󰴅","code":"f0d05"},"md-eye_circle":{"char":"󰮔","code":"f0b94"},"md-eye_circle_outline":{"char":"󰮕","code":"f0b95"},"md-eye_minus":{"char":"󱀦","code":"f1026"},"md-eye_minus_outline":{"char":"󱀧","code":"f1027"},"md-eye_off":{"char":"󰈉","code":"f0209"},"md-eye_off_outline":{"char":"󰛑","code":"f06d1"},"md-eye_outline":{"char":"󰛐","code":"f06d0"},"md-eye_plus":{"char":"󰡫","code":"f086b"},"md-eye_plus_outline":{"char":"󰡬","code":"f086c"},"md-eye_refresh":{"char":"󱥼","code":"f197c"},"md-eye_refresh_outline":{"char":"󱥽","code":"f197d"},"md-eye_remove":{"char":"󱗣","code":"f15e3"},"md-eye_remove_outline":{"char":"󱗤","code":"f15e4"},"md-eye_settings":{"char":"󰡭","code":"f086d"},"md-eye_settings_outline":{"char":"󰡮","code":"f086e"},"md-eyedropper":{"char":"󰈊","code":"f020a"},"md-eyedropper_minus":{"char":"󱏝","code":"f13dd"},"md-eyedropper_off":{"char":"󱏟","code":"f13df"},"md-eyedropper_plus":{"char":"󱏜","code":"f13dc"},"md-eyedropper_remove":{"char":"󱏞","code":"f13de"},"md-eyedropper_variant":{"char":"󰈋","code":"f020b"},"md-face_agent":{"char":"󰵰","code":"f0d70"},"md-face_man":{"char":"󰙃","code":"f0643"},"md-face_man_outline":{"char":"󰮖","code":"f0b96"},"md-face_man_profile":{"char":"󰙄","code":"f0644"},"md-face_man_shimmer":{"char":"󱗌","code":"f15cc"},"md-face_man_shimmer_outline":{"char":"󱗍","code":"f15cd"},"md-face_mask":{"char":"󱖆","code":"f1586"},"md-face_mask_outline":{"char":"󱖇","code":"f1587"},"md-face_recognition":{"char":"󰱻","code":"f0c7b"},"md-face_woman":{"char":"󱁷","code":"f1077"},"md-face_woman_outline":{"char":"󱁸","code":"f1078"},"md-face_woman_profile":{"char":"󱁶","code":"f1076"},"md-face_woman_shimmer":{"char":"󱗎","code":"f15ce"},"md-face_woman_shimmer_outline":{"char":"󱗏","code":"f15cf"},"md-facebook":{"char":"󰈌","code":"f020c"},"md-facebook_gaming":{"char":"󰟝","code":"f07dd"},"md-facebook_messenger":{"char":"󰈎","code":"f020e"},"md-facebook_workplace":{"char":"󰬱","code":"f0b31"},"md-factory":{"char":"󰈏","code":"f020f"},"md-family_tree":{"char":"󱘎","code":"f160e"},"md-fan":{"char":"󰈐","code":"f0210"},"md-fan_alert":{"char":"󱑬","code":"f146c"},"md-fan_auto":{"char":"󱜝","code":"f171d"},"md-fan_chevron_down":{"char":"󱑭","code":"f146d"},"md-fan_chevron_up":{"char":"󱑮","code":"f146e"},"md-fan_clock":{"char":"󱨺","code":"f1a3a"},"md-fan_minus":{"char":"󱑰","code":"f1470"},"md-fan_off":{"char":"󰠝","code":"f081d"},"md-fan_plus":{"char":"󱑯","code":"f146f"},"md-fan_remove":{"char":"󱑱","code":"f1471"},"md-fan_speed_1":{"char":"󱑲","code":"f1472"},"md-fan_speed_2":{"char":"󱑳","code":"f1473"},"md-fan_speed_3":{"char":"󱑴","code":"f1474"},"md-fast_forward":{"char":"󰈑","code":"f0211"},"md-fast_forward_10":{"char":"󰵱","code":"f0d71"},"md-fast_forward_15":{"char":"󱤺","code":"f193a"},"md-fast_forward_30":{"char":"󰴆","code":"f0d06"},"md-fast_forward_5":{"char":"󱇸","code":"f11f8"},"md-fast_forward_60":{"char":"󱘋","code":"f160b"},"md-fast_forward_outline":{"char":"󰛒","code":"f06d2"},"md-fax":{"char":"󰈒","code":"f0212"},"md-feather":{"char":"󰛓","code":"f06d3"},"md-feature_search":{"char":"󰩉","code":"f0a49"},"md-feature_search_outline":{"char":"󰩊","code":"f0a4a"},"md-fedora":{"char":"󰣛","code":"f08db"},"md-fence":{"char":"󱞚","code":"f179a"},"md-fence_electric":{"char":"󱟶","code":"f17f6"},"md-fencing":{"char":"󱓁","code":"f14c1"},"md-ferris_wheel":{"char":"󰺤","code":"f0ea4"},"md-ferry":{"char":"󰈓","code":"f0213"},"md-file":{"char":"󰈔","code":"f0214"},"md-file_account":{"char":"󰜻","code":"f073b"},"md-file_account_outline":{"char":"󱀨","code":"f1028"},"md-file_alert":{"char":"󰩋","code":"f0a4b"},"md-file_alert_outline":{"char":"󰩌","code":"f0a4c"},"md-file_arrow_left_right":{"char":"󱪓","code":"f1a93"},"md-file_arrow_left_right_outline":{"char":"󱪔","code":"f1a94"},"md-file_arrow_up_down":{"char":"󱪕","code":"f1a95"},"md-file_arrow_up_down_outline":{"char":"󱪖","code":"f1a96"},"md-file_cabinet":{"char":"󰪶","code":"f0ab6"},"md-file_cad":{"char":"󰻫","code":"f0eeb"},"md-file_cad_box":{"char":"󰻬","code":"f0eec"},"md-file_cancel":{"char":"󰷆","code":"f0dc6"},"md-file_cancel_outline":{"char":"󰷇","code":"f0dc7"},"md-file_certificate":{"char":"󱆆","code":"f1186"},"md-file_certificate_outline":{"char":"󱆇","code":"f1187"},"md-file_chart":{"char":"󰈕","code":"f0215"},"md-file_chart_check":{"char":"󱧆","code":"f19c6"},"md-file_chart_check_outline":{"char":"󱧇","code":"f19c7"},"md-file_chart_outline":{"char":"󱀩","code":"f1029"},"md-file_check":{"char":"󰈖","code":"f0216"},"md-file_check_outline":{"char":"󰸩","code":"f0e29"},"md-file_clock":{"char":"󱋡","code":"f12e1"},"md-file_clock_outline":{"char":"󱋢","code":"f12e2"},"md-file_cloud":{"char":"󰈗","code":"f0217"},"md-file_cloud_outline":{"char":"󱀪","code":"f102a"},"md-file_code":{"char":"󰈮","code":"f022e"},"md-file_code_outline":{"char":"󱀫","code":"f102b"},"md-file_cog":{"char":"󱁻","code":"f107b"},"md-file_cog_outline":{"char":"󱁼","code":"f107c"},"md-file_compare":{"char":"󰢪","code":"f08aa"},"md-file_delimited":{"char":"󰈘","code":"f0218"},"md-file_delimited_outline":{"char":"󰺥","code":"f0ea5"},"md-file_document":{"char":"󰈙","code":"f0219"},"md-file_document_alert":{"char":"󱪗","code":"f1a97"},"md-file_document_alert_outline":{"char":"󱪘","code":"f1a98"},"md-file_document_check":{"char":"󱪙","code":"f1a99"},"md-file_document_check_outline":{"char":"󱪚","code":"f1a9a"},"md-file_document_edit":{"char":"󰷈","code":"f0dc8"},"md-file_document_edit_outline":{"char":"󰷉","code":"f0dc9"},"md-file_document_minus":{"char":"󱪛","code":"f1a9b"},"md-file_document_minus_outline":{"char":"󱪜","code":"f1a9c"},"md-file_document_multiple":{"char":"󱔗","code":"f1517"},"md-file_document_multiple_outline":{"char":"󱔘","code":"f1518"},"md-file_document_outline":{"char":"󰧮","code":"f09ee"},"md-file_document_plus":{"char":"󱪝","code":"f1a9d"},"md-file_document_plus_outline":{"char":"󱪞","code":"f1a9e"},"md-file_document_remove":{"char":"󱪟","code":"f1a9f"},"md-file_document_remove_outline":{"char":"󱪠","code":"f1aa0"},"md-file_download":{"char":"󰥥","code":"f0965"},"md-file_download_outline":{"char":"󰥦","code":"f0966"},"md-file_edit":{"char":"󱇧","code":"f11e7"},"md-file_edit_outline":{"char":"󱇨","code":"f11e8"},"md-file_excel":{"char":"󰈛","code":"f021b"},"md-file_excel_box":{"char":"󰈜","code":"f021c"},"md-file_excel_box_outline":{"char":"󱀬","code":"f102c"},"md-file_excel_outline":{"char":"󱀭","code":"f102d"},"md-file_export":{"char":"󰈝","code":"f021d"},"md-file_export_outline":{"char":"󱀮","code":"f102e"},"md-file_eye":{"char":"󰷊","code":"f0dca"},"md-file_eye_outline":{"char":"󰷋","code":"f0dcb"},"md-file_find":{"char":"󰈞","code":"f021e"},"md-file_find_outline":{"char":"󰮗","code":"f0b97"},"md-file_gif_box":{"char":"󰵸","code":"f0d78"},"md-file_hidden":{"char":"󰘓","code":"f0613"},"md-file_image":{"char":"󰈟","code":"f021f"},"md-file_image_marker":{"char":"󱝲","code":"f1772"},"md-file_image_marker_outline":{"char":"󱝳","code":"f1773"},"md-file_image_minus":{"char":"󱤻","code":"f193b"},"md-file_image_minus_outline":{"char":"󱤼","code":"f193c"},"md-file_image_outline":{"char":"󰺰","code":"f0eb0"},"md-file_image_plus":{"char":"󱤽","code":"f193d"},"md-file_image_plus_outline":{"char":"󱤾","code":"f193e"},"md-file_image_remove":{"char":"󱤿","code":"f193f"},"md-file_image_remove_outline":{"char":"󱥀","code":"f1940"},"md-file_import":{"char":"󰈠","code":"f0220"},"md-file_import_outline":{"char":"󱀯","code":"f102f"},"md-file_jpg_box":{"char":"󰈥","code":"f0225"},"md-file_key":{"char":"󱆄","code":"f1184"},"md-file_key_outline":{"char":"󱆅","code":"f1185"},"md-file_link":{"char":"󱅷","code":"f1177"},"md-file_link_outline":{"char":"󱅸","code":"f1178"},"md-file_lock":{"char":"󰈡","code":"f0221"},"md-file_lock_open":{"char":"󱧈","code":"f19c8"},"md-file_lock_open_outline":{"char":"󱧉","code":"f19c9"},"md-file_lock_outline":{"char":"󱀰","code":"f1030"},"md-file_marker":{"char":"󱝴","code":"f1774"},"md-file_marker_outline":{"char":"󱝵","code":"f1775"},"md-file_minus":{"char":"󱪡","code":"f1aa1"},"md-file_minus_outline":{"char":"󱪢","code":"f1aa2"},"md-file_move":{"char":"󰪹","code":"f0ab9"},"md-file_move_outline":{"char":"󱀱","code":"f1031"},"md-file_multiple":{"char":"󰈢","code":"f0222"},"md-file_multiple_outline":{"char":"󱀲","code":"f1032"},"md-file_music":{"char":"󰈣","code":"f0223"},"md-file_music_outline":{"char":"󰸪","code":"f0e2a"},"md-file_outline":{"char":"󰈤","code":"f0224"},"md-file_pdf_box":{"char":"󰈦","code":"f0226"},"md-file_percent":{"char":"󰠞","code":"f081e"},"md-file_percent_outline":{"char":"󱀳","code":"f1033"},"md-file_phone":{"char":"󱅹","code":"f1179"},"md-file_phone_outline":{"char":"󱅺","code":"f117a"},"md-file_plus":{"char":"󰝒","code":"f0752"},"md-file_plus_outline":{"char":"󰻭","code":"f0eed"},"md-file_png_box":{"char":"󰸭","code":"f0e2d"},"md-file_powerpoint":{"char":"󰈧","code":"f0227"},"md-file_powerpoint_box":{"char":"󰈨","code":"f0228"},"md-file_powerpoint_box_outline":{"char":"󱀴","code":"f1034"},"md-file_powerpoint_outline":{"char":"󱀵","code":"f1035"},"md-file_presentation_box":{"char":"󰈩","code":"f0229"},"md-file_question":{"char":"󰡯","code":"f086f"},"md-file_question_outline":{"char":"󱀶","code":"f1036"},"md-file_refresh":{"char":"󰤘","code":"f0918"},"md-file_refresh_outline":{"char":"󰕁","code":"f0541"},"md-file_remove":{"char":"󰮘","code":"f0b98"},"md-file_remove_outline":{"char":"󱀷","code":"f1037"},"md-file_replace":{"char":"󰬲","code":"f0b32"},"md-file_replace_outline":{"char":"󰬳","code":"f0b33"},"md-file_restore":{"char":"󰙰","code":"f0670"},"md-file_restore_outline":{"char":"󱀸","code":"f1038"},"md-file_rotate_left":{"char":"󱨻","code":"f1a3b"},"md-file_rotate_left_outline":{"char":"󱨼","code":"f1a3c"},"md-file_rotate_right":{"char":"󱨽","code":"f1a3d"},"md-file_rotate_right_outline":{"char":"󱨾","code":"f1a3e"},"md-file_search":{"char":"󰱼","code":"f0c7c"},"md-file_search_outline":{"char":"󰱽","code":"f0c7d"},"md-file_send":{"char":"󰈪","code":"f022a"},"md-file_send_outline":{"char":"󱀹","code":"f1039"},"md-file_settings":{"char":"󱁹","code":"f1079"},"md-file_settings_outline":{"char":"󱁺","code":"f107a"},"md-file_sign":{"char":"󱧃","code":"f19c3"},"md-file_star":{"char":"󱀺","code":"f103a"},"md-file_star_outline":{"char":"󱀻","code":"f103b"},"md-file_swap":{"char":"󰾴","code":"f0fb4"},"md-file_swap_outline":{"char":"󰾵","code":"f0fb5"},"md-file_sync":{"char":"󱈖","code":"f1216"},"md-file_sync_outline":{"char":"󱈗","code":"f1217"},"md-file_table":{"char":"󰱾","code":"f0c7e"},"md-file_table_box":{"char":"󱃡","code":"f10e1"},"md-file_table_box_multiple":{"char":"󱃢","code":"f10e2"},"md-file_table_box_multiple_outline":{"char":"󱃣","code":"f10e3"},"md-file_table_box_outline":{"char":"󱃤","code":"f10e4"},"md-file_table_outline":{"char":"󰱿","code":"f0c7f"},"md-file_tree":{"char":"󰙅","code":"f0645"},"md-file_tree_outline":{"char":"󱏒","code":"f13d2"},"md-file_undo":{"char":"󰣜","code":"f08dc"},"md-file_undo_outline":{"char":"󱀼","code":"f103c"},"md-file_upload":{"char":"󰩍","code":"f0a4d"},"md-file_upload_outline":{"char":"󰩎","code":"f0a4e"},"md-file_video":{"char":"󰈫","code":"f022b"},"md-file_video_outline":{"char":"󰸬","code":"f0e2c"},"md-file_word":{"char":"󰈬","code":"f022c"},"md-file_word_box":{"char":"󰈭","code":"f022d"},"md-file_word_box_outline":{"char":"󱀽","code":"f103d"},"md-file_word_outline":{"char":"󱀾","code":"f103e"},"md-film":{"char":"󰈯","code":"f022f"},"md-filmstrip":{"char":"󰈰","code":"f0230"},"md-filmstrip_box":{"char":"󰌲","code":"f0332"},"md-filmstrip_box_multiple":{"char":"󰴘","code":"f0d18"},"md-filmstrip_off":{"char":"󰈱","code":"f0231"},"md-filter":{"char":"󰈲","code":"f0232"},"md-filter_check":{"char":"󱣬","code":"f18ec"},"md-filter_check_outline":{"char":"󱣭","code":"f18ed"},"md-filter_cog":{"char":"󱪣","code":"f1aa3"},"md-filter_cog_outline":{"char":"󱪤","code":"f1aa4"},"md-filter_menu":{"char":"󱃥","code":"f10e5"},"md-filter_menu_outline":{"char":"󱃦","code":"f10e6"},"md-filter_minus":{"char":"󰻮","code":"f0eee"},"md-filter_minus_outline":{"char":"󰻯","code":"f0eef"},"md-filter_multiple":{"char":"󱨿","code":"f1a3f"},"md-filter_multiple_outline":{"char":"󱩀","code":"f1a40"},"md-filter_off":{"char":"󱓯","code":"f14ef"},"md-filter_off_outline":{"char":"󱓰","code":"f14f0"},"md-filter_outline":{"char":"󰈳","code":"f0233"},"md-filter_plus":{"char":"󰻰","code":"f0ef0"},"md-filter_plus_outline":{"char":"󰻱","code":"f0ef1"},"md-filter_remove":{"char":"󰈴","code":"f0234"},"md-filter_remove_outline":{"char":"󰈵","code":"f0235"},"md-filter_settings":{"char":"󱪥","code":"f1aa5"},"md-filter_settings_outline":{"char":"󱪦","code":"f1aa6"},"md-filter_variant":{"char":"󰈶","code":"f0236"},"md-filter_variant_minus":{"char":"󱄒","code":"f1112"},"md-filter_variant_plus":{"char":"󱄓","code":"f1113"},"md-filter_variant_remove":{"char":"󱀿","code":"f103f"},"md-finance":{"char":"󰠟","code":"f081f"},"md-find_replace":{"char":"󰛔","code":"f06d4"},"md-fingerprint":{"char":"󰈷","code":"f0237"},"md-fingerprint_off":{"char":"󰺱","code":"f0eb1"},"md-fire":{"char":"󰈸","code":"f0238"},"md-fire_alert":{"char":"󱗗","code":"f15d7"},"md-fire_circle":{"char":"󱠇","code":"f1807"},"md-fire_extinguisher":{"char":"󰻲","code":"f0ef2"},"md-fire_hydrant":{"char":"󱄷","code":"f1137"},"md-fire_hydrant_alert":{"char":"󱄸","code":"f1138"},"md-fire_hydrant_off":{"char":"󱄹","code":"f1139"},"md-fire_off":{"char":"󱜢","code":"f1722"},"md-fire_truck":{"char":"󰢫","code":"f08ab"},"md-firebase":{"char":"󰥧","code":"f0967"},"md-firefox":{"char":"󰈹","code":"f0239"},"md-fireplace":{"char":"󰸮","code":"f0e2e"},"md-fireplace_off":{"char":"󰸯","code":"f0e2f"},"md-firewire":{"char":"󰖾","code":"f05be"},"md-firework":{"char":"󰸰","code":"f0e30"},"md-firework_off":{"char":"󱜣","code":"f1723"},"md-fish":{"char":"󰈺","code":"f023a"},"md-fish_off":{"char":"󱏳","code":"f13f3"},"md-fishbowl":{"char":"󰻳","code":"f0ef3"},"md-fishbowl_outline":{"char":"󰻴","code":"f0ef4"},"md-fit_to_page":{"char":"󰻵","code":"f0ef5"},"md-fit_to_page_outline":{"char":"󰻶","code":"f0ef6"},"md-fit_to_screen":{"char":"󱣴","code":"f18f4"},"md-fit_to_screen_outline":{"char":"󱣵","code":"f18f5"},"md-flag":{"char":"󰈻","code":"f023b"},"md-flag_checkered":{"char":"󰈼","code":"f023c"},"md-flag_minus":{"char":"󰮙","code":"f0b99"},"md-flag_minus_outline":{"char":"󱂲","code":"f10b2"},"md-flag_off":{"char":"󱣮","code":"f18ee"},"md-flag_off_outline":{"char":"󱣯","code":"f18ef"},"md-flag_outline":{"char":"󰈽","code":"f023d"},"md-flag_plus":{"char":"󰮚","code":"f0b9a"},"md-flag_plus_outline":{"char":"󱂳","code":"f10b3"},"md-flag_remove":{"char":"󰮛","code":"f0b9b"},"md-flag_remove_outline":{"char":"󱂴","code":"f10b4"},"md-flag_triangle":{"char":"󰈿","code":"f023f"},"md-flag_variant":{"char":"󰉀","code":"f0240"},"md-flag_variant_outline":{"char":"󰈾","code":"f023e"},"md-flare":{"char":"󰵲","code":"f0d72"},"md-flash":{"char":"󰉁","code":"f0241"},"md-flash_alert":{"char":"󰻷","code":"f0ef7"},"md-flash_alert_outline":{"char":"󰻸","code":"f0ef8"},"md-flash_auto":{"char":"󰉂","code":"f0242"},"md-flash_off":{"char":"󰉃","code":"f0243"},"md-flash_outline":{"char":"󰛕","code":"f06d5"},"md-flash_red_eye":{"char":"󰙻","code":"f067b"},"md-flashlight":{"char":"󰉄","code":"f0244"},"md-flashlight_off":{"char":"󰉅","code":"f0245"},"md-flask":{"char":"󰂓","code":"f0093"},"md-flask_empty":{"char":"󰂔","code":"f0094"},"md-flask_empty_minus":{"char":"󱈺","code":"f123a"},"md-flask_empty_minus_outline":{"char":"󱈻","code":"f123b"},"md-flask_empty_off":{"char":"󱏴","code":"f13f4"},"md-flask_empty_off_outline":{"char":"󱏵","code":"f13f5"},"md-flask_empty_outline":{"char":"󰂕","code":"f0095"},"md-flask_empty_plus":{"char":"󱈼","code":"f123c"},"md-flask_empty_plus_outline":{"char":"󱈽","code":"f123d"},"md-flask_empty_remove":{"char":"󱈾","code":"f123e"},"md-flask_empty_remove_outline":{"char":"󱈿","code":"f123f"},"md-flask_minus":{"char":"󱉀","code":"f1240"},"md-flask_minus_outline":{"char":"󱉁","code":"f1241"},"md-flask_off":{"char":"󱏶","code":"f13f6"},"md-flask_off_outline":{"char":"󱏷","code":"f13f7"},"md-flask_outline":{"char":"󰂖","code":"f0096"},"md-flask_plus":{"char":"󱉂","code":"f1242"},"md-flask_plus_outline":{"char":"󱉃","code":"f1243"},"md-flask_remove":{"char":"󱉄","code":"f1244"},"md-flask_remove_outline":{"char":"󱉅","code":"f1245"},"md-flask_round_bottom":{"char":"󱉋","code":"f124b"},"md-flask_round_bottom_empty":{"char":"󱉌","code":"f124c"},"md-flask_round_bottom_empty_outline":{"char":"󱉍","code":"f124d"},"md-flask_round_bottom_outline":{"char":"󱉎","code":"f124e"},"md-fleur_de_lis":{"char":"󱌃","code":"f1303"},"md-flip_horizontal":{"char":"󱃧","code":"f10e7"},"md-flip_to_back":{"char":"󰉇","code":"f0247"},"md-flip_to_front":{"char":"󰉈","code":"f0248"},"md-flip_vertical":{"char":"󱃨","code":"f10e8"},"md-floor_lamp":{"char":"󰣝","code":"f08dd"},"md-floor_lamp_dual":{"char":"󱁀","code":"f1040"},"md-floor_lamp_dual_outline":{"char":"󱟎","code":"f17ce"},"md-floor_lamp_outline":{"char":"󱟈","code":"f17c8"},"md-floor_lamp_torchiere":{"char":"󱝇","code":"f1747"},"md-floor_lamp_torchiere_outline":{"char":"󱟖","code":"f17d6"},"md-floor_lamp_torchiere_variant":{"char":"󱁁","code":"f1041"},"md-floor_lamp_torchiere_variant_outline":{"char":"󱟏","code":"f17cf"},"md-floor_plan":{"char":"󰠡","code":"f0821"},"md-floppy":{"char":"󰉉","code":"f0249"},"md-floppy_variant":{"char":"󰧯","code":"f09ef"},"md-flower":{"char":"󰉊","code":"f024a"},"md-flower_outline":{"char":"󰧰","code":"f09f0"},"md-flower_pollen":{"char":"󱢅","code":"f1885"},"md-flower_pollen_outline":{"char":"󱢆","code":"f1886"},"md-flower_poppy":{"char":"󰴈","code":"f0d08"},"md-flower_tulip":{"char":"󰧱","code":"f09f1"},"md-flower_tulip_outline":{"char":"󰧲","code":"f09f2"},"md-focus_auto":{"char":"󰽎","code":"f0f4e"},"md-focus_field":{"char":"󰽏","code":"f0f4f"},"md-focus_field_horizontal":{"char":"󰽐","code":"f0f50"},"md-focus_field_vertical":{"char":"󰽑","code":"f0f51"},"md-folder":{"char":"󰉋","code":"f024b"},"md-folder_account":{"char":"󰉌","code":"f024c"},"md-folder_account_outline":{"char":"󰮜","code":"f0b9c"},"md-folder_alert":{"char":"󰷌","code":"f0dcc"},"md-folder_alert_outline":{"char":"󰷍","code":"f0dcd"},"md-folder_arrow_down":{"char":"󱧨","code":"f19e8"},"md-folder_arrow_down_outline":{"char":"󱧩","code":"f19e9"},"md-folder_arrow_left":{"char":"󱧪","code":"f19ea"},"md-folder_arrow_left_outline":{"char":"󱧫","code":"f19eb"},"md-folder_arrow_left_right":{"char":"󱧬","code":"f19ec"},"md-folder_arrow_left_right_outline":{"char":"󱧭","code":"f19ed"},"md-folder_arrow_right":{"char":"󱧮","code":"f19ee"},"md-folder_arrow_right_outline":{"char":"󱧯","code":"f19ef"},"md-folder_arrow_up":{"char":"󱧰","code":"f19f0"},"md-folder_arrow_up_down":{"char":"󱧱","code":"f19f1"},"md-folder_arrow_up_down_outline":{"char":"󱧲","code":"f19f2"},"md-folder_arrow_up_outline":{"char":"󱧳","code":"f19f3"},"md-folder_cancel":{"char":"󱧴","code":"f19f4"},"md-folder_cancel_outline":{"char":"󱧵","code":"f19f5"},"md-folder_check":{"char":"󱥾","code":"f197e"},"md-folder_check_outline":{"char":"󱥿","code":"f197f"},"md-folder_clock":{"char":"󰪺","code":"f0aba"},"md-folder_clock_outline":{"char":"󰪻","code":"f0abb"},"md-folder_cog":{"char":"󱁿","code":"f107f"},"md-folder_cog_outline":{"char":"󱂀","code":"f1080"},"md-folder_download":{"char":"󰉍","code":"f024d"},"md-folder_download_outline":{"char":"󱃩","code":"f10e9"},"md-folder_edit":{"char":"󰣞","code":"f08de"},"md-folder_edit_outline":{"char":"󰷎","code":"f0dce"},"md-folder_eye":{"char":"󱞊","code":"f178a"},"md-folder_eye_outline":{"char":"󱞋","code":"f178b"},"md-folder_file":{"char":"󱧶","code":"f19f6"},"md-folder_file_outline":{"char":"󱧷","code":"f19f7"},"md-folder_google_drive":{"char":"󰉎","code":"f024e"},"md-folder_heart":{"char":"󱃪","code":"f10ea"},"md-folder_heart_outline":{"char":"󱃫","code":"f10eb"},"md-folder_hidden":{"char":"󱞞","code":"f179e"},"md-folder_home":{"char":"󱂵","code":"f10b5"},"md-folder_home_outline":{"char":"󱂶","code":"f10b6"},"md-folder_image":{"char":"󰉏","code":"f024f"},"md-folder_information":{"char":"󱂷","code":"f10b7"},"md-folder_information_outline":{"char":"󱂸","code":"f10b8"},"md-folder_key":{"char":"󰢬","code":"f08ac"},"md-folder_key_network":{"char":"󰢭","code":"f08ad"},"md-folder_key_network_outline":{"char":"󰲀","code":"f0c80"},"md-folder_key_outline":{"char":"󱃬","code":"f10ec"},"md-folder_lock":{"char":"󰉐","code":"f0250"},"md-folder_lock_open":{"char":"󰉑","code":"f0251"},"md-folder_lock_open_outline":{"char":"󱪧","code":"f1aa7"},"md-folder_lock_outline":{"char":"󱪨","code":"f1aa8"},"md-folder_marker":{"char":"󱉭","code":"f126d"},"md-folder_marker_outline":{"char":"󱉮","code":"f126e"},"md-folder_move":{"char":"󰉒","code":"f0252"},"md-folder_move_outline":{"char":"󱉆","code":"f1246"},"md-folder_multiple":{"char":"󰉓","code":"f0253"},"md-folder_multiple_image":{"char":"󰉔","code":"f0254"},"md-folder_multiple_outline":{"char":"󰉕","code":"f0255"},"md-folder_multiple_plus":{"char":"󱑾","code":"f147e"},"md-folder_multiple_plus_outline":{"char":"󱑿","code":"f147f"},"md-folder_music":{"char":"󱍙","code":"f1359"},"md-folder_music_outline":{"char":"󱍚","code":"f135a"},"md-folder_network":{"char":"󰡰","code":"f0870"},"md-folder_network_outline":{"char":"󰲁","code":"f0c81"},"md-folder_off":{"char":"󱧸","code":"f19f8"},"md-folder_off_outline":{"char":"󱧹","code":"f19f9"},"md-folder_open":{"char":"󰝰","code":"f0770"},"md-folder_open_outline":{"char":"󰷏","code":"f0dcf"},"md-folder_outline":{"char":"󰉖","code":"f0256"},"md-folder_play":{"char":"󱧺","code":"f19fa"},"md-folder_play_outline":{"char":"󱧻","code":"f19fb"},"md-folder_plus":{"char":"󰉗","code":"f0257"},"md-folder_plus_outline":{"char":"󰮝","code":"f0b9d"},"md-folder_pound":{"char":"󰴉","code":"f0d09"},"md-folder_pound_outline":{"char":"󰴊","code":"f0d0a"},"md-folder_question":{"char":"󱧊","code":"f19ca"},"md-folder_question_outline":{"char":"󱧋","code":"f19cb"},"md-folder_refresh":{"char":"󰝉","code":"f0749"},"md-folder_refresh_outline":{"char":"󰕂","code":"f0542"},"md-folder_remove":{"char":"󰉘","code":"f0258"},"md-folder_remove_outline":{"char":"󰮞","code":"f0b9e"},"md-folder_search":{"char":"󰥨","code":"f0968"},"md-folder_search_outline":{"char":"󰥩","code":"f0969"},"md-folder_settings":{"char":"󱁽","code":"f107d"},"md-folder_settings_outline":{"char":"󱁾","code":"f107e"},"md-folder_star":{"char":"󰚝","code":"f069d"},"md-folder_star_multiple":{"char":"󱏓","code":"f13d3"},"md-folder_star_multiple_outline":{"char":"󱏔","code":"f13d4"},"md-folder_star_outline":{"char":"󰮟","code":"f0b9f"},"md-folder_swap":{"char":"󰾶","code":"f0fb6"},"md-folder_swap_outline":{"char":"󰾷","code":"f0fb7"},"md-folder_sync":{"char":"󰴋","code":"f0d0b"},"md-folder_sync_outline":{"char":"󰴌","code":"f0d0c"},"md-folder_table":{"char":"󱋣","code":"f12e3"},"md-folder_table_outline":{"char":"󱋤","code":"f12e4"},"md-folder_text":{"char":"󰲂","code":"f0c82"},"md-folder_text_outline":{"char":"󰲃","code":"f0c83"},"md-folder_upload":{"char":"󰉙","code":"f0259"},"md-folder_upload_outline":{"char":"󱃭","code":"f10ed"},"md-folder_wrench":{"char":"󱧼","code":"f19fc"},"md-folder_wrench_outline":{"char":"󱧽","code":"f19fd"},"md-folder_zip":{"char":"󰛫","code":"f06eb"},"md-folder_zip_outline":{"char":"󰞹","code":"f07b9"},"md-font_awesome":{"char":"󰀺","code":"f003a"},"md-food":{"char":"󰉚","code":"f025a"},"md-food_apple":{"char":"󰉛","code":"f025b"},"md-food_apple_outline":{"char":"󰲄","code":"f0c84"},"md-food_croissant":{"char":"󰟈","code":"f07c8"},"md-food_drumstick":{"char":"󱐟","code":"f141f"},"md-food_drumstick_off":{"char":"󱑨","code":"f1468"},"md-food_drumstick_off_outline":{"char":"󱑩","code":"f1469"},"md-food_drumstick_outline":{"char":"󱐠","code":"f1420"},"md-food_fork_drink":{"char":"󰗲","code":"f05f2"},"md-food_halal":{"char":"󱕲","code":"f1572"},"md-food_hot_dog":{"char":"󱡋","code":"f184b"},"md-food_kosher":{"char":"󱕳","code":"f1573"},"md-food_off":{"char":"󰗳","code":"f05f3"},"md-food_off_outline":{"char":"󱤕","code":"f1915"},"md-food_outline":{"char":"󱤖","code":"f1916"},"md-food_steak":{"char":"󱑪","code":"f146a"},"md-food_steak_off":{"char":"󱑫","code":"f146b"},"md-food_takeout_box":{"char":"󱠶","code":"f1836"},"md-food_takeout_box_outline":{"char":"󱠷","code":"f1837"},"md-food_turkey":{"char":"󱜜","code":"f171c"},"md-food_variant":{"char":"󰉜","code":"f025c"},"md-food_variant_off":{"char":"󱏥","code":"f13e5"},"md-foot_print":{"char":"󰽒","code":"f0f52"},"md-football":{"char":"󰉝","code":"f025d"},"md-football_australian":{"char":"󰉞","code":"f025e"},"md-football_helmet":{"char":"󰉟","code":"f025f"},"md-forest":{"char":"󱢗","code":"f1897"},"md-forklift":{"char":"󰟉","code":"f07c9"},"md-form_dropdown":{"char":"󱐀","code":"f1400"},"md-form_select":{"char":"󱐁","code":"f1401"},"md-form_textarea":{"char":"󱂕","code":"f1095"},"md-form_textbox":{"char":"󰘎","code":"f060e"},"md-form_textbox_lock":{"char":"󱍝","code":"f135d"},"md-form_textbox_password":{"char":"󰟵","code":"f07f5"},"md-format_align_bottom":{"char":"󰝓","code":"f0753"},"md-format_align_center":{"char":"󰉠","code":"f0260"},"md-format_align_justify":{"char":"󰉡","code":"f0261"},"md-format_align_left":{"char":"󰉢","code":"f0262"},"md-format_align_middle":{"char":"󰝔","code":"f0754"},"md-format_align_right":{"char":"󰉣","code":"f0263"},"md-format_align_top":{"char":"󰝕","code":"f0755"},"md-format_annotation_minus":{"char":"󰪼","code":"f0abc"},"md-format_annotation_plus":{"char":"󰙆","code":"f0646"},"md-format_bold":{"char":"󰉤","code":"f0264"},"md-format_clear":{"char":"󰉥","code":"f0265"},"md-format_color_fill":{"char":"󰉦","code":"f0266"},"md-format_color_highlight":{"char":"󰸱","code":"f0e31"},"md-format_color_marker_cancel":{"char":"󱌓","code":"f1313"},"md-format_color_text":{"char":"󰚞","code":"f069e"},"md-format_columns":{"char":"󰣟","code":"f08df"},"md-format_float_center":{"char":"󰉧","code":"f0267"},"md-format_float_left":{"char":"󰉨","code":"f0268"},"md-format_float_none":{"char":"󰉩","code":"f0269"},"md-format_float_right":{"char":"󰉪","code":"f026a"},"md-format_font":{"char":"󰛖","code":"f06d6"},"md-format_font_size_decrease":{"char":"󰧳","code":"f09f3"},"md-format_font_size_increase":{"char":"󰧴","code":"f09f4"},"md-format_header_1":{"char":"󰉫","code":"f026b"},"md-format_header_2":{"char":"󰉬","code":"f026c"},"md-format_header_3":{"char":"󰉭","code":"f026d"},"md-format_header_4":{"char":"󰉮","code":"f026e"},"md-format_header_5":{"char":"󰉯","code":"f026f"},"md-format_header_6":{"char":"󰉰","code":"f0270"},"md-format_header_decrease":{"char":"󰉱","code":"f0271"},"md-format_header_equal":{"char":"󰉲","code":"f0272"},"md-format_header_increase":{"char":"󰉳","code":"f0273"},"md-format_header_pound":{"char":"󰉴","code":"f0274"},"md-format_horizontal_align_center":{"char":"󰘞","code":"f061e"},"md-format_horizontal_align_left":{"char":"󰘟","code":"f061f"},"md-format_horizontal_align_right":{"char":"󰘠","code":"f0620"},"md-format_indent_decrease":{"char":"󰉵","code":"f0275"},"md-format_indent_increase":{"char":"󰉶","code":"f0276"},"md-format_italic":{"char":"󰉷","code":"f0277"},"md-format_letter_case":{"char":"󰬴","code":"f0b34"},"md-format_letter_case_lower":{"char":"󰬵","code":"f0b35"},"md-format_letter_case_upper":{"char":"󰬶","code":"f0b36"},"md-format_letter_ends_with":{"char":"󰾸","code":"f0fb8"},"md-format_letter_matches":{"char":"󰾹","code":"f0fb9"},"md-format_letter_spacing":{"char":"󱥖","code":"f1956"},"md-format_letter_starts_with":{"char":"󰾺","code":"f0fba"},"md-format_line_spacing":{"char":"󰉸","code":"f0278"},"md-format_line_style":{"char":"󰗈","code":"f05c8"},"md-format_line_weight":{"char":"󰗉","code":"f05c9"},"md-format_list_bulleted":{"char":"󰉹","code":"f0279"},"md-format_list_bulleted_square":{"char":"󰷐","code":"f0dd0"},"md-format_list_bulleted_triangle":{"char":"󰺲","code":"f0eb2"},"md-format_list_bulleted_type":{"char":"󰉺","code":"f027a"},"md-format_list_checkbox":{"char":"󰥪","code":"f096a"},"md-format_list_checks":{"char":"󰝖","code":"f0756"},"md-format_list_group":{"char":"󱡠","code":"f1860"},"md-format_list_numbered":{"char":"󰉻","code":"f027b"},"md-format_list_numbered_rtl":{"char":"󰴍","code":"f0d0d"},"md-format_list_text":{"char":"󱉯","code":"f126f"},"md-format_overline":{"char":"󰺳","code":"f0eb3"},"md-format_page_break":{"char":"󰛗","code":"f06d7"},"md-format_page_split":{"char":"󱤗","code":"f1917"},"md-format_paint":{"char":"󰉼","code":"f027c"},"md-format_paragraph":{"char":"󰉽","code":"f027d"},"md-format_pilcrow":{"char":"󰛘","code":"f06d8"},"md-format_quote_close":{"char":"󰉾","code":"f027e"},"md-format_quote_close_outline":{"char":"󱆨","code":"f11a8"},"md-format_quote_open":{"char":"󰝗","code":"f0757"},"md-format_quote_open_outline":{"char":"󱆧","code":"f11a7"},"md-format_rotate_90":{"char":"󰚪","code":"f06aa"},"md-format_section":{"char":"󰚟","code":"f069f"},"md-format_size":{"char":"󰉿","code":"f027f"},"md-format_strikethrough":{"char":"󰊀","code":"f0280"},"md-format_strikethrough_variant":{"char":"󰊁","code":"f0281"},"md-format_subscript":{"char":"󰊂","code":"f0282"},"md-format_superscript":{"char":"󰊃","code":"f0283"},"md-format_text":{"char":"󰊄","code":"f0284"},"md-format_text_rotation_angle_down":{"char":"󰾻","code":"f0fbb"},"md-format_text_rotation_angle_up":{"char":"󰾼","code":"f0fbc"},"md-format_text_rotation_down":{"char":"󰵳","code":"f0d73"},"md-format_text_rotation_down_vertical":{"char":"󰾽","code":"f0fbd"},"md-format_text_rotation_none":{"char":"󰵴","code":"f0d74"},"md-format_text_rotation_up":{"char":"󰾾","code":"f0fbe"},"md-format_text_rotation_vertical":{"char":"󰾿","code":"f0fbf"},"md-format_text_variant":{"char":"󰸲","code":"f0e32"},"md-format_text_variant_outline":{"char":"󱔏","code":"f150f"},"md-format_text_wrapping_clip":{"char":"󰴎","code":"f0d0e"},"md-format_text_wrapping_overflow":{"char":"󰴏","code":"f0d0f"},"md-format_text_wrapping_wrap":{"char":"󰴐","code":"f0d10"},"md-format_textbox":{"char":"󰴑","code":"f0d11"},"md-format_textdirection_l_to_r":{"char":"󰊅","code":"f0285"},"md-format_textdirection_r_to_l":{"char":"󰊆","code":"f0286"},"md-format_title":{"char":"󰗴","code":"f05f4"},"md-format_underline":{"char":"󰊇","code":"f0287"},"md-format_underline_wavy":{"char":"󱣩","code":"f18e9"},"md-format_vertical_align_bottom":{"char":"󰘡","code":"f0621"},"md-format_vertical_align_center":{"char":"󰘢","code":"f0622"},"md-format_vertical_align_top":{"char":"󰘣","code":"f0623"},"md-format_wrap_inline":{"char":"󰊈","code":"f0288"},"md-format_wrap_square":{"char":"󰊉","code":"f0289"},"md-format_wrap_tight":{"char":"󰊊","code":"f028a"},"md-format_wrap_top_bottom":{"char":"󰊋","code":"f028b"},"md-forum":{"char":"󰊌","code":"f028c"},"md-forum_minus":{"char":"󱪩","code":"f1aa9"},"md-forum_minus_outline":{"char":"󱪪","code":"f1aaa"},"md-forum_outline":{"char":"󰠢","code":"f0822"},"md-forum_plus":{"char":"󱪫","code":"f1aab"},"md-forum_plus_outline":{"char":"󱪬","code":"f1aac"},"md-forum_remove":{"char":"󱪭","code":"f1aad"},"md-forum_remove_outline":{"char":"󱪮","code":"f1aae"},"md-forward":{"char":"󰊍","code":"f028d"},"md-forwardburger":{"char":"󰵵","code":"f0d75"},"md-fountain":{"char":"󰥫","code":"f096b"},"md-fountain_pen":{"char":"󰴒","code":"f0d12"},"md-fountain_pen_tip":{"char":"󰴓","code":"f0d13"},"md-fraction_one_half":{"char":"󱦒","code":"f1992"},"md-freebsd":{"char":"󰣠","code":"f08e0"},"md-french_fries":{"char":"󱥗","code":"f1957"},"md-frequently_asked_questions":{"char":"󰺴","code":"f0eb4"},"md-fridge":{"char":"󰊐","code":"f0290"},"md-fridge_alert":{"char":"󱆱","code":"f11b1"},"md-fridge_alert_outline":{"char":"󱆲","code":"f11b2"},"md-fridge_bottom":{"char":"󰊒","code":"f0292"},"md-fridge_industrial":{"char":"󱗮","code":"f15ee"},"md-fridge_industrial_alert":{"char":"󱗯","code":"f15ef"},"md-fridge_industrial_alert_outline":{"char":"󱗰","code":"f15f0"},"md-fridge_industrial_off":{"char":"󱗱","code":"f15f1"},"md-fridge_industrial_off_outline":{"char":"󱗲","code":"f15f2"},"md-fridge_industrial_outline":{"char":"󱗳","code":"f15f3"},"md-fridge_off":{"char":"󱆯","code":"f11af"},"md-fridge_off_outline":{"char":"󱆰","code":"f11b0"},"md-fridge_outline":{"char":"󰊏","code":"f028f"},"md-fridge_top":{"char":"󰊑","code":"f0291"},"md-fridge_variant":{"char":"󱗴","code":"f15f4"},"md-fridge_variant_alert":{"char":"󱗵","code":"f15f5"},"md-fridge_variant_alert_outline":{"char":"󱗶","code":"f15f6"},"md-fridge_variant_off":{"char":"󱗷","code":"f15f7"},"md-fridge_variant_off_outline":{"char":"󱗸","code":"f15f8"},"md-fridge_variant_outline":{"char":"󱗹","code":"f15f9"},"md-fruit_cherries":{"char":"󱁂","code":"f1042"},"md-fruit_cherries_off":{"char":"󱏸","code":"f13f8"},"md-fruit_citrus":{"char":"󱁃","code":"f1043"},"md-fruit_citrus_off":{"char":"󱏹","code":"f13f9"},"md-fruit_grapes":{"char":"󱁄","code":"f1044"},"md-fruit_grapes_outline":{"char":"󱁅","code":"f1045"},"md-fruit_pear":{"char":"󱨎","code":"f1a0e"},"md-fruit_pineapple":{"char":"󱁆","code":"f1046"},"md-fruit_watermelon":{"char":"󱁇","code":"f1047"},"md-fuel":{"char":"󰟊","code":"f07ca"},"md-fuel_cell":{"char":"󱢵","code":"f18b5"},"md-fullscreen":{"char":"󰊓","code":"f0293"},"md-fullscreen_exit":{"char":"󰊔","code":"f0294"},"md-function":{"char":"󰊕","code":"f0295"},"md-function_variant":{"char":"󰡱","code":"f0871"},"md-furigana_horizontal":{"char":"󱂁","code":"f1081"},"md-furigana_vertical":{"char":"󱂂","code":"f1082"},"md-fuse":{"char":"󰲅","code":"f0c85"},"md-fuse_alert":{"char":"󱐭","code":"f142d"},"md-fuse_blade":{"char":"󰲆","code":"f0c86"},"md-fuse_off":{"char":"󱐬","code":"f142c"},"md-gamepad":{"char":"󰊖","code":"f0296"},"md-gamepad_circle":{"char":"󰸳","code":"f0e33"},"md-gamepad_circle_down":{"char":"󰸴","code":"f0e34"},"md-gamepad_circle_left":{"char":"󰸵","code":"f0e35"},"md-gamepad_circle_outline":{"char":"󰸶","code":"f0e36"},"md-gamepad_circle_right":{"char":"󰸷","code":"f0e37"},"md-gamepad_circle_up":{"char":"󰸸","code":"f0e38"},"md-gamepad_down":{"char":"󰸹","code":"f0e39"},"md-gamepad_left":{"char":"󰸺","code":"f0e3a"},"md-gamepad_outline":{"char":"󱤙","code":"f1919"},"md-gamepad_right":{"char":"󰸻","code":"f0e3b"},"md-gamepad_round":{"char":"󰸼","code":"f0e3c"},"md-gamepad_round_down":{"char":"󰸽","code":"f0e3d"},"md-gamepad_round_left":{"char":"󰸾","code":"f0e3e"},"md-gamepad_round_outline":{"char":"󰸿","code":"f0e3f"},"md-gamepad_round_right":{"char":"󰹀","code":"f0e40"},"md-gamepad_round_up":{"char":"󰹁","code":"f0e41"},"md-gamepad_square":{"char":"󰺵","code":"f0eb5"},"md-gamepad_square_outline":{"char":"󰺶","code":"f0eb6"},"md-gamepad_up":{"char":"󰹂","code":"f0e42"},"md-gamepad_variant":{"char":"󰊗","code":"f0297"},"md-gamepad_variant_outline":{"char":"󰺷","code":"f0eb7"},"md-gamma":{"char":"󱃮","code":"f10ee"},"md-gantry_crane":{"char":"󰷑","code":"f0dd1"},"md-garage":{"char":"󰛙","code":"f06d9"},"md-garage_alert":{"char":"󰡲","code":"f0872"},"md-garage_alert_variant":{"char":"󱋕","code":"f12d5"},"md-garage_lock":{"char":"󱟻","code":"f17fb"},"md-garage_open":{"char":"󰛚","code":"f06da"},"md-garage_open_variant":{"char":"󱋔","code":"f12d4"},"md-garage_variant":{"char":"󱋓","code":"f12d3"},"md-garage_variant_lock":{"char":"󱟼","code":"f17fc"},"md-gas_burner":{"char":"󱨛","code":"f1a1b"},"md-gas_cylinder":{"char":"󰙇","code":"f0647"},"md-gas_station":{"char":"󰊘","code":"f0298"},"md-gas_station_off":{"char":"󱐉","code":"f1409"},"md-gas_station_off_outline":{"char":"󱐊","code":"f140a"},"md-gas_station_outline":{"char":"󰺸","code":"f0eb8"},"md-gate":{"char":"󰊙","code":"f0299"},"md-gate_alert":{"char":"󱟸","code":"f17f8"},"md-gate_and":{"char":"󰣡","code":"f08e1"},"md-gate_arrow_left":{"char":"󱟷","code":"f17f7"},"md-gate_arrow_right":{"char":"󱅩","code":"f1169"},"md-gate_nand":{"char":"󰣢","code":"f08e2"},"md-gate_nor":{"char":"󰣣","code":"f08e3"},"md-gate_not":{"char":"󰣤","code":"f08e4"},"md-gate_open":{"char":"󱅪","code":"f116a"},"md-gate_or":{"char":"󰣥","code":"f08e5"},"md-gate_xnor":{"char":"󰣦","code":"f08e6"},"md-gate_xor":{"char":"󰣧","code":"f08e7"},"md-gatsby":{"char":"󰹃","code":"f0e43"},"md-gauge":{"char":"󰊚","code":"f029a"},"md-gauge_empty":{"char":"󰡳","code":"f0873"},"md-gauge_full":{"char":"󰡴","code":"f0874"},"md-gauge_low":{"char":"󰡵","code":"f0875"},"md-gavel":{"char":"󰊛","code":"f029b"},"md-gender_female":{"char":"󰊜","code":"f029c"},"md-gender_male":{"char":"󰊝","code":"f029d"},"md-gender_male_female":{"char":"󰊞","code":"f029e"},"md-gender_male_female_variant":{"char":"󱄿","code":"f113f"},"md-gender_non_binary":{"char":"󱅀","code":"f1140"},"md-gender_transgender":{"char":"󰊟","code":"f029f"},"md-gentoo":{"char":"󰣨","code":"f08e8"},"md-gesture":{"char":"󰟋","code":"f07cb"},"md-gesture_double_tap":{"char":"󰜼","code":"f073c"},"md-gesture_pinch":{"char":"󰪽","code":"f0abd"},"md-gesture_spread":{"char":"󰪾","code":"f0abe"},"md-gesture_swipe":{"char":"󰵶","code":"f0d76"},"md-gesture_swipe_down":{"char":"󰜽","code":"f073d"},"md-gesture_swipe_horizontal":{"char":"󰪿","code":"f0abf"},"md-gesture_swipe_left":{"char":"󰜾","code":"f073e"},"md-gesture_swipe_right":{"char":"󰜿","code":"f073f"},"md-gesture_swipe_up":{"char":"󰝀","code":"f0740"},"md-gesture_swipe_vertical":{"char":"󰫀","code":"f0ac0"},"md-gesture_tap":{"char":"󰝁","code":"f0741"},"md-gesture_tap_box":{"char":"󱊩","code":"f12a9"},"md-gesture_tap_button":{"char":"󱊨","code":"f12a8"},"md-gesture_tap_hold":{"char":"󰵷","code":"f0d77"},"md-gesture_two_double_tap":{"char":"󰝂","code":"f0742"},"md-gesture_two_tap":{"char":"󰝃","code":"f0743"},"md-ghost":{"char":"󰊠","code":"f02a0"},"md-ghost_off":{"char":"󰧵","code":"f09f5"},"md-ghost_off_outline":{"char":"󱙜","code":"f165c"},"md-ghost_outline":{"char":"󱙝","code":"f165d"},"md-gift":{"char":"󰹄","code":"f0e44"},"md-gift_off":{"char":"󱛯","code":"f16ef"},"md-gift_off_outline":{"char":"󱛰","code":"f16f0"},"md-gift_open":{"char":"󱛱","code":"f16f1"},"md-gift_open_outline":{"char":"󱛲","code":"f16f2"},"md-gift_outline":{"char":"󰊡","code":"f02a1"},"md-git":{"char":"󰊢","code":"f02a2"},"md-github":{"char":"󰊤","code":"f02a4"},"md-gitlab":{"char":"󰮠","code":"f0ba0"},"md-glass_cocktail":{"char":"󰍖","code":"f0356"},"md-glass_cocktail_off":{"char":"󱗦","code":"f15e6"},"md-glass_flute":{"char":"󰊥","code":"f02a5"},"md-glass_fragile":{"char":"󱡳","code":"f1873"},"md-glass_mug":{"char":"󰊦","code":"f02a6"},"md-glass_mug_off":{"char":"󱗧","code":"f15e7"},"md-glass_mug_variant":{"char":"󱄖","code":"f1116"},"md-glass_mug_variant_off":{"char":"󱗨","code":"f15e8"},"md-glass_pint_outline":{"char":"󱌍","code":"f130d"},"md-glass_stange":{"char":"󰊧","code":"f02a7"},"md-glass_tulip":{"char":"󰊨","code":"f02a8"},"md-glass_wine":{"char":"󰡶","code":"f0876"},"md-glasses":{"char":"󰊪","code":"f02aa"},"md-globe_light":{"char":"󱋗","code":"f12d7"},"md-globe_model":{"char":"󰣩","code":"f08e9"},"md-gmail":{"char":"󰊫","code":"f02ab"},"md-gnome":{"char":"󰊬","code":"f02ac"},"md-go_kart":{"char":"󰵹","code":"f0d79"},"md-go_kart_track":{"char":"󰵺","code":"f0d7a"},"md-gog":{"char":"󰮡","code":"f0ba1"},"md-gold":{"char":"󱉏","code":"f124f"},"md-golf":{"char":"󰠣","code":"f0823"},"md-golf_cart":{"char":"󱆤","code":"f11a4"},"md-golf_tee":{"char":"󱂃","code":"f1083"},"md-gondola":{"char":"󰚆","code":"f0686"},"md-goodreads":{"char":"󰵻","code":"f0d7b"},"md-google":{"char":"󰊭","code":"f02ad"},"md-google_ads":{"char":"󰲇","code":"f0c87"},"md-google_analytics":{"char":"󰟌","code":"f07cc"},"md-google_assistant":{"char":"󰟍","code":"f07cd"},"md-google_cardboard":{"char":"󰊮","code":"f02ae"},"md-google_chrome":{"char":"󰊯","code":"f02af"},"md-google_circles":{"char":"󰊰","code":"f02b0"},"md-google_circles_communities":{"char":"󰊱","code":"f02b1"},"md-google_circles_extended":{"char":"󰊲","code":"f02b2"},"md-google_circles_group":{"char":"󰊳","code":"f02b3"},"md-google_classroom":{"char":"󰋀","code":"f02c0"},"md-google_cloud":{"char":"󱇶","code":"f11f6"},"md-google_controller":{"char":"󰊴","code":"f02b4"},"md-google_controller_off":{"char":"󰊵","code":"f02b5"},"md-google_downasaur":{"char":"󱍢","code":"f1362"},"md-google_drive":{"char":"󰊶","code":"f02b6"},"md-google_earth":{"char":"󰊷","code":"f02b7"},"md-google_fit":{"char":"󰥬","code":"f096c"},"md-google_glass":{"char":"󰊸","code":"f02b8"},"md-google_hangouts":{"char":"󰋉","code":"f02c9"},"md-google_home":{"char":"󰠤","code":"f0824"},"md-google_keep":{"char":"󰛜","code":"f06dc"},"md-google_lens":{"char":"󰧶","code":"f09f6"},"md-google_maps":{"char":"󰗵","code":"f05f5"},"md-google_my_business":{"char":"󱁈","code":"f1048"},"md-google_nearby":{"char":"󰊹","code":"f02b9"},"md-google_play":{"char":"󰊼","code":"f02bc"},"md-google_plus":{"char":"󰊽","code":"f02bd"},"md-google_podcast":{"char":"󰺹","code":"f0eb9"},"md-google_spreadsheet":{"char":"󰧷","code":"f09f7"},"md-google_street_view":{"char":"󰲈","code":"f0c88"},"md-google_translate":{"char":"󰊿","code":"f02bf"},"md-gradient_horizontal":{"char":"󱝊","code":"f174a"},"md-gradient_vertical":{"char":"󰚠","code":"f06a0"},"md-grain":{"char":"󰵼","code":"f0d7c"},"md-graph":{"char":"󱁉","code":"f1049"},"md-graph_outline":{"char":"󱁊","code":"f104a"},"md-graphql":{"char":"󰡷","code":"f0877"},"md-grass":{"char":"󱔐","code":"f1510"},"md-grave_stone":{"char":"󰮢","code":"f0ba2"},"md-grease_pencil":{"char":"󰙈","code":"f0648"},"md-greater_than":{"char":"󰥭","code":"f096d"},"md-greater_than_or_equal":{"char":"󰥮","code":"f096e"},"md-greenhouse":{"char":"󰀭","code":"f002d"},"md-grid":{"char":"󰋁","code":"f02c1"},"md-grid_large":{"char":"󰝘","code":"f0758"},"md-grid_off":{"char":"󰋂","code":"f02c2"},"md-grill":{"char":"󰹅","code":"f0e45"},"md-grill_outline":{"char":"󱆊","code":"f118a"},"md-group":{"char":"󰋃","code":"f02c3"},"md-guitar_acoustic":{"char":"󰝱","code":"f0771"},"md-guitar_electric":{"char":"󰋄","code":"f02c4"},"md-guitar_pick":{"char":"󰋅","code":"f02c5"},"md-guitar_pick_outline":{"char":"󰋆","code":"f02c6"},"md-guy_fawkes_mask":{"char":"󰠥","code":"f0825"},"md-gymnastics":{"char":"󱩁","code":"f1a41"},"md-hail":{"char":"󰫁","code":"f0ac1"},"md-hair_dryer":{"char":"󱃯","code":"f10ef"},"md-hair_dryer_outline":{"char":"󱃰","code":"f10f0"},"md-halloween":{"char":"󰮣","code":"f0ba3"},"md-hamburger":{"char":"󰚅","code":"f0685"},"md-hamburger_check":{"char":"󱝶","code":"f1776"},"md-hamburger_minus":{"char":"󱝷","code":"f1777"},"md-hamburger_off":{"char":"󱝸","code":"f1778"},"md-hamburger_plus":{"char":"󱝹","code":"f1779"},"md-hamburger_remove":{"char":"󱝺","code":"f177a"},"md-hammer":{"char":"󰣪","code":"f08ea"},"md-hammer_screwdriver":{"char":"󱌢","code":"f1322"},"md-hammer_sickle":{"char":"󱢇","code":"f1887"},"md-hammer_wrench":{"char":"󱌣","code":"f1323"},"md-hand_back_left":{"char":"󰹆","code":"f0e46"},"md-hand_back_left_off":{"char":"󱠰","code":"f1830"},"md-hand_back_left_off_outline":{"char":"󱠲","code":"f1832"},"md-hand_back_left_outline":{"char":"󱠬","code":"f182c"},"md-hand_back_right":{"char":"󰹇","code":"f0e47"},"md-hand_back_right_off":{"char":"󱠱","code":"f1831"},"md-hand_back_right_off_outline":{"char":"󱠳","code":"f1833"},"md-hand_back_right_outline":{"char":"󱠭","code":"f182d"},"md-hand_clap":{"char":"󱥋","code":"f194b"},"md-hand_clap_off":{"char":"󱩂","code":"f1a42"},"md-hand_coin":{"char":"󱢏","code":"f188f"},"md-hand_coin_outline":{"char":"󱢐","code":"f1890"},"md-hand_extended":{"char":"󱢶","code":"f18b6"},"md-hand_extended_outline":{"char":"󱢷","code":"f18b7"},"md-hand_front_left":{"char":"󱠫","code":"f182b"},"md-hand_front_left_outline":{"char":"󱠮","code":"f182e"},"md-hand_front_right":{"char":"󰩏","code":"f0a4f"},"md-hand_front_right_outline":{"char":"󱠯","code":"f182f"},"md-hand_heart":{"char":"󱃱","code":"f10f1"},"md-hand_heart_outline":{"char":"󱕾","code":"f157e"},"md-hand_okay":{"char":"󰩐","code":"f0a50"},"md-hand_peace":{"char":"󰩑","code":"f0a51"},"md-hand_peace_variant":{"char":"󰩒","code":"f0a52"},"md-hand_pointing_down":{"char":"󰩓","code":"f0a53"},"md-hand_pointing_left":{"char":"󰩔","code":"f0a54"},"md-hand_pointing_right":{"char":"󰋇","code":"f02c7"},"md-hand_pointing_up":{"char":"󰩕","code":"f0a55"},"md-hand_saw":{"char":"󰹈","code":"f0e48"},"md-hand_wash":{"char":"󱕿","code":"f157f"},"md-hand_wash_outline":{"char":"󱖀","code":"f1580"},"md-hand_water":{"char":"󱎟","code":"f139f"},"md-hand_wave":{"char":"󱠡","code":"f1821"},"md-hand_wave_outline":{"char":"󱠢","code":"f1822"},"md-handball":{"char":"󰽓","code":"f0f53"},"md-handcuffs":{"char":"󱄾","code":"f113e"},"md-hands_pray":{"char":"󰕹","code":"f0579"},"md-handshake":{"char":"󱈘","code":"f1218"},"md-handshake_outline":{"char":"󱖡","code":"f15a1"},"md-hanger":{"char":"󰋈","code":"f02c8"},"md-hard_hat":{"char":"󰥯","code":"f096f"},"md-harddisk":{"char":"󰋊","code":"f02ca"},"md-harddisk_plus":{"char":"󱁋","code":"f104b"},"md-harddisk_remove":{"char":"󱁌","code":"f104c"},"md-hat_fedora":{"char":"󰮤","code":"f0ba4"},"md-hazard_lights":{"char":"󰲉","code":"f0c89"},"md-hdr":{"char":"󰵽","code":"f0d7d"},"md-hdr_off":{"char":"󰵾","code":"f0d7e"},"md-head":{"char":"󱍞","code":"f135e"},"md-head_alert":{"char":"󱌸","code":"f1338"},"md-head_alert_outline":{"char":"󱌹","code":"f1339"},"md-head_check":{"char":"󱌺","code":"f133a"},"md-head_check_outline":{"char":"󱌻","code":"f133b"},"md-head_cog":{"char":"󱌼","code":"f133c"},"md-head_cog_outline":{"char":"󱌽","code":"f133d"},"md-head_dots_horizontal":{"char":"󱌾","code":"f133e"},"md-head_dots_horizontal_outline":{"char":"󱌿","code":"f133f"},"md-head_flash":{"char":"󱍀","code":"f1340"},"md-head_flash_outline":{"char":"󱍁","code":"f1341"},"md-head_heart":{"char":"󱍂","code":"f1342"},"md-head_heart_outline":{"char":"󱍃","code":"f1343"},"md-head_lightbulb":{"char":"󱍄","code":"f1344"},"md-head_lightbulb_outline":{"char":"󱍅","code":"f1345"},"md-head_minus":{"char":"󱍆","code":"f1346"},"md-head_minus_outline":{"char":"󱍇","code":"f1347"},"md-head_outline":{"char":"󱍟","code":"f135f"},"md-head_plus":{"char":"󱍈","code":"f1348"},"md-head_plus_outline":{"char":"󱍉","code":"f1349"},"md-head_question":{"char":"󱍊","code":"f134a"},"md-head_question_outline":{"char":"󱍋","code":"f134b"},"md-head_remove":{"char":"󱍌","code":"f134c"},"md-head_remove_outline":{"char":"󱍍","code":"f134d"},"md-head_snowflake":{"char":"󱍎","code":"f134e"},"md-head_snowflake_outline":{"char":"󱍏","code":"f134f"},"md-head_sync":{"char":"󱍐","code":"f1350"},"md-head_sync_outline":{"char":"󱍑","code":"f1351"},"md-headphones":{"char":"󰋋","code":"f02cb"},"md-headphones_bluetooth":{"char":"󰥰","code":"f0970"},"md-headphones_box":{"char":"󰋌","code":"f02cc"},"md-headphones_off":{"char":"󰟎","code":"f07ce"},"md-headphones_settings":{"char":"󰋍","code":"f02cd"},"md-headset":{"char":"󰋎","code":"f02ce"},"md-headset_dock":{"char":"󰋏","code":"f02cf"},"md-headset_off":{"char":"󰋐","code":"f02d0"},"md-heart":{"char":"󰣐","code":"f08d0"},"md-heart_box":{"char":"󰋒","code":"f02d2"},"md-heart_box_outline":{"char":"󰋓","code":"f02d3"},"md-heart_broken":{"char":"󰋔","code":"f02d4"},"md-heart_broken_outline":{"char":"󰴔","code":"f0d14"},"md-heart_circle":{"char":"󰥱","code":"f0971"},"md-heart_circle_outline":{"char":"󰥲","code":"f0972"},"md-heart_cog":{"char":"󱙣","code":"f1663"},"md-heart_cog_outline":{"char":"󱙤","code":"f1664"},"md-heart_flash":{"char":"󰻹","code":"f0ef9"},"md-heart_half":{"char":"󰛟","code":"f06df"},"md-heart_half_full":{"char":"󰛞","code":"f06de"},"md-heart_half_outline":{"char":"󰛠","code":"f06e0"},"md-heart_minus":{"char":"󱐯","code":"f142f"},"md-heart_minus_outline":{"char":"󱐲","code":"f1432"},"md-heart_multiple":{"char":"󰩖","code":"f0a56"},"md-heart_multiple_outline":{"char":"󰩗","code":"f0a57"},"md-heart_off":{"char":"󰝙","code":"f0759"},"md-heart_off_outline":{"char":"󱐴","code":"f1434"},"md-heart_outline":{"char":"󱢠","code":"f18a0"},"md-heart_plus":{"char":"󱐮","code":"f142e"},"md-heart_plus_outline":{"char":"󱐱","code":"f1431"},"md-heart_pulse":{"char":"󰗶","code":"f05f6"},"md-heart_remove":{"char":"󱐰","code":"f1430"},"md-heart_remove_outline":{"char":"󱐳","code":"f1433"},"md-heart_settings":{"char":"󱙥","code":"f1665"},"md-heart_settings_outline":{"char":"󱙦","code":"f1666"},"md-heat_pump":{"char":"󱩃","code":"f1a43"},"md-heat_pump_outline":{"char":"󱩄","code":"f1a44"},"md-heat_wave":{"char":"󱩅","code":"f1a45"},"md-heating_coil":{"char":"󱪯","code":"f1aaf"},"md-helicopter":{"char":"󰫂","code":"f0ac2"},"md-help":{"char":"󰋖","code":"f02d6"},"md-help_box":{"char":"󰞋","code":"f078b"},"md-help_circle":{"char":"󰋗","code":"f02d7"},"md-help_circle_outline":{"char":"󰘥","code":"f0625"},"md-help_network":{"char":"󰛵","code":"f06f5"},"md-help_network_outline":{"char":"󰲊","code":"f0c8a"},"md-help_rhombus":{"char":"󰮥","code":"f0ba5"},"md-help_rhombus_outline":{"char":"󰮦","code":"f0ba6"},"md-hexadecimal":{"char":"󱊧","code":"f12a7"},"md-hexagon":{"char":"󰋘","code":"f02d8"},"md-hexagon_multiple":{"char":"󰛡","code":"f06e1"},"md-hexagon_multiple_outline":{"char":"󱃲","code":"f10f2"},"md-hexagon_outline":{"char":"󰋙","code":"f02d9"},"md-hexagon_slice_1":{"char":"󰫃","code":"f0ac3"},"md-hexagon_slice_2":{"char":"󰫄","code":"f0ac4"},"md-hexagon_slice_3":{"char":"󰫅","code":"f0ac5"},"md-hexagon_slice_4":{"char":"󰫆","code":"f0ac6"},"md-hexagon_slice_5":{"char":"󰫇","code":"f0ac7"},"md-hexagon_slice_6":{"char":"󰫈","code":"f0ac8"},"md-hexagram":{"char":"󰫉","code":"f0ac9"},"md-hexagram_outline":{"char":"󰫊","code":"f0aca"},"md-high_definition":{"char":"󰟏","code":"f07cf"},"md-high_definition_box":{"char":"󰡸","code":"f0878"},"md-highway":{"char":"󰗷","code":"f05f7"},"md-hiking":{"char":"󰵿","code":"f0d7f"},"md-history":{"char":"󰋚","code":"f02da"},"md-hockey_puck":{"char":"󰡹","code":"f0879"},"md-hockey_sticks":{"char":"󰡺","code":"f087a"},"md-hololens":{"char":"󰋛","code":"f02db"},"md-home":{"char":"󰋜","code":"f02dc"},"md-home_account":{"char":"󰠦","code":"f0826"},"md-home_alert":{"char":"󰡻","code":"f087b"},"md-home_alert_outline":{"char":"󱗐","code":"f15d0"},"md-home_analytics":{"char":"󰺺","code":"f0eba"},"md-home_assistant":{"char":"󰟐","code":"f07d0"},"md-home_automation":{"char":"󰟑","code":"f07d1"},"md-home_battery":{"char":"󱤁","code":"f1901"},"md-home_battery_outline":{"char":"󱤂","code":"f1902"},"md-home_circle":{"char":"󰟒","code":"f07d2"},"md-home_circle_outline":{"char":"󱁍","code":"f104d"},"md-home_city":{"char":"󰴕","code":"f0d15"},"md-home_city_outline":{"char":"󰴖","code":"f0d16"},"md-home_clock":{"char":"󱨒","code":"f1a12"},"md-home_clock_outline":{"char":"󱨓","code":"f1a13"},"md-home_edit":{"char":"󱅙","code":"f1159"},"md-home_edit_outline":{"char":"󱅚","code":"f115a"},"md-home_export_outline":{"char":"󰾛","code":"f0f9b"},"md-home_flood":{"char":"󰻺","code":"f0efa"},"md-home_floor_0":{"char":"󰷒","code":"f0dd2"},"md-home_floor_1":{"char":"󰶀","code":"f0d80"},"md-home_floor_2":{"char":"󰶁","code":"f0d81"},"md-home_floor_3":{"char":"󰶂","code":"f0d82"},"md-home_floor_a":{"char":"󰶃","code":"f0d83"},"md-home_floor_b":{"char":"󰶄","code":"f0d84"},"md-home_floor_g":{"char":"󰶅","code":"f0d85"},"md-home_floor_l":{"char":"󰶆","code":"f0d86"},"md-home_floor_negative_1":{"char":"󰷓","code":"f0dd3"},"md-home_group":{"char":"󰷔","code":"f0dd4"},"md-home_group_minus":{"char":"󱧁","code":"f19c1"},"md-home_group_plus":{"char":"󱧀","code":"f19c0"},"md-home_group_remove":{"char":"󱧂","code":"f19c2"},"md-home_heart":{"char":"󰠧","code":"f0827"},"md-home_import_outline":{"char":"󰾜","code":"f0f9c"},"md-home_lightbulb":{"char":"󱉑","code":"f1251"},"md-home_lightbulb_outline":{"char":"󱉒","code":"f1252"},"md-home_lightning_bolt":{"char":"󱤃","code":"f1903"},"md-home_lightning_bolt_outline":{"char":"󱤄","code":"f1904"},"md-home_lock":{"char":"󰣫","code":"f08eb"},"md-home_lock_open":{"char":"󰣬","code":"f08ec"},"md-home_map_marker":{"char":"󰗸","code":"f05f8"},"md-home_minus":{"char":"󰥴","code":"f0974"},"md-home_minus_outline":{"char":"󱏕","code":"f13d5"},"md-home_modern":{"char":"󰋝","code":"f02dd"},"md-home_off":{"char":"󱩆","code":"f1a46"},"md-home_off_outline":{"char":"󱩇","code":"f1a47"},"md-home_outline":{"char":"󰚡","code":"f06a1"},"md-home_plus":{"char":"󰥵","code":"f0975"},"md-home_plus_outline":{"char":"󱏖","code":"f13d6"},"md-home_remove":{"char":"󱉇","code":"f1247"},"md-home_remove_outline":{"char":"󱏗","code":"f13d7"},"md-home_roof":{"char":"󱄫","code":"f112b"},"md-home_search":{"char":"󱎰","code":"f13b0"},"md-home_search_outline":{"char":"󱎱","code":"f13b1"},"md-home_switch":{"char":"󱞔","code":"f1794"},"md-home_switch_outline":{"char":"󱞕","code":"f1795"},"md-home_thermometer":{"char":"󰽔","code":"f0f54"},"md-home_thermometer_outline":{"char":"󰽕","code":"f0f55"},"md-home_variant":{"char":"󰋞","code":"f02de"},"md-home_variant_outline":{"char":"󰮧","code":"f0ba7"},"md-hook":{"char":"󰛢","code":"f06e2"},"md-hook_off":{"char":"󰛣","code":"f06e3"},"md-hoop_house":{"char":"󰹖","code":"f0e56"},"md-hops":{"char":"󰋟","code":"f02df"},"md-horizontal_rotate_clockwise":{"char":"󱃳","code":"f10f3"},"md-horizontal_rotate_counterclockwise":{"char":"󱃴","code":"f10f4"},"md-horse":{"char":"󱖿","code":"f15bf"},"md-horse_human":{"char":"󱗀","code":"f15c0"},"md-horse_variant":{"char":"󱗁","code":"f15c1"},"md-horse_variant_fast":{"char":"󱡮","code":"f186e"},"md-horseshoe":{"char":"󰩘","code":"f0a58"},"md-hospital":{"char":"󰿶","code":"f0ff6"},"md-hospital_box":{"char":"󰋠","code":"f02e0"},"md-hospital_box_outline":{"char":"󰿷","code":"f0ff7"},"md-hospital_building":{"char":"󰋡","code":"f02e1"},"md-hospital_marker":{"char":"󰋢","code":"f02e2"},"md-hot_tub":{"char":"󰠨","code":"f0828"},"md-hours_24":{"char":"󱑸","code":"f1478"},"md-hubspot":{"char":"󰴗","code":"f0d17"},"md-hulu":{"char":"󰠩","code":"f0829"},"md-human":{"char":"󰋦","code":"f02e6"},"md-human_baby_changing_table":{"char":"󱎋","code":"f138b"},"md-human_cane":{"char":"󱖁","code":"f1581"},"md-human_capacity_decrease":{"char":"󱖛","code":"f159b"},"md-human_capacity_increase":{"char":"󱖜","code":"f159c"},"md-human_child":{"char":"󰋧","code":"f02e7"},"md-human_dolly":{"char":"󱦀","code":"f1980"},"md-human_edit":{"char":"󱓨","code":"f14e8"},"md-human_female":{"char":"󰙉","code":"f0649"},"md-human_female_boy":{"char":"󰩙","code":"f0a59"},"md-human_female_dance":{"char":"󱗉","code":"f15c9"},"md-human_female_female":{"char":"󰩚","code":"f0a5a"},"md-human_female_girl":{"char":"󰩛","code":"f0a5b"},"md-human_greeting":{"char":"󱟄","code":"f17c4"},"md-human_greeting_proximity":{"char":"󱖝","code":"f159d"},"md-human_greeting_variant":{"char":"󰙊","code":"f064a"},"md-human_handsdown":{"char":"󰙋","code":"f064b"},"md-human_handsup":{"char":"󰙌","code":"f064c"},"md-human_male":{"char":"󰙍","code":"f064d"},"md-human_male_board":{"char":"󰢐","code":"f0890"},"md-human_male_board_poll":{"char":"󰡆","code":"f0846"},"md-human_male_boy":{"char":"󰩜","code":"f0a5c"},"md-human_male_child":{"char":"󱎌","code":"f138c"},"md-human_male_female":{"char":"󰋨","code":"f02e8"},"md-human_male_female_child":{"char":"󱠣","code":"f1823"},"md-human_male_girl":{"char":"󰩝","code":"f0a5d"},"md-human_male_height":{"char":"󰻻","code":"f0efb"},"md-human_male_height_variant":{"char":"󰻼","code":"f0efc"},"md-human_male_male":{"char":"󰩞","code":"f0a5e"},"md-human_non_binary":{"char":"󱡈","code":"f1848"},"md-human_pregnant":{"char":"󰗏","code":"f05cf"},"md-human_queue":{"char":"󱕱","code":"f1571"},"md-human_scooter":{"char":"󱇩","code":"f11e9"},"md-human_wheelchair":{"char":"󱎍","code":"f138d"},"md-human_white_cane":{"char":"󱦁","code":"f1981"},"md-humble_bundle":{"char":"󰝄","code":"f0744"},"md-hvac":{"char":"󱍒","code":"f1352"},"md-hvac_off":{"char":"󱖞","code":"f159e"},"md-hydraulic_oil_level":{"char":"󱌤","code":"f1324"},"md-hydraulic_oil_temperature":{"char":"󱌥","code":"f1325"},"md-hydro_power":{"char":"󱋥","code":"f12e5"},"md-hydrogen_station":{"char":"󱢔","code":"f1894"},"md-ice_cream":{"char":"󰠪","code":"f082a"},"md-ice_cream_off":{"char":"󰹒","code":"f0e52"},"md-ice_pop":{"char":"󰻽","code":"f0efd"},"md-id_card":{"char":"󰿀","code":"f0fc0"},"md-identifier":{"char":"󰻾","code":"f0efe"},"md-ideogram_cjk":{"char":"󱌱","code":"f1331"},"md-ideogram_cjk_variant":{"char":"󱌲","code":"f1332"},"md-image":{"char":"󰋩","code":"f02e9"},"md-image_album":{"char":"󰋪","code":"f02ea"},"md-image_area":{"char":"󰋫","code":"f02eb"},"md-image_area_close":{"char":"󰋬","code":"f02ec"},"md-image_auto_adjust":{"char":"󰿁","code":"f0fc1"},"md-image_broken":{"char":"󰋭","code":"f02ed"},"md-image_broken_variant":{"char":"󰋮","code":"f02ee"},"md-image_edit":{"char":"󱇣","code":"f11e3"},"md-image_edit_outline":{"char":"󱇤","code":"f11e4"},"md-image_filter_black_white":{"char":"󰋰","code":"f02f0"},"md-image_filter_center_focus":{"char":"󰋱","code":"f02f1"},"md-image_filter_center_focus_strong":{"char":"󰻿","code":"f0eff"},"md-image_filter_center_focus_strong_outline":{"char":"󰼀","code":"f0f00"},"md-image_filter_center_focus_weak":{"char":"󰋲","code":"f02f2"},"md-image_filter_drama":{"char":"󰋳","code":"f02f3"},"md-image_filter_frames":{"char":"󰋴","code":"f02f4"},"md-image_filter_hdr":{"char":"󰔉","code":"f0509"},"md-image_filter_none":{"char":"󰋶","code":"f02f6"},"md-image_filter_tilt_shift":{"char":"󰋷","code":"f02f7"},"md-image_filter_vintage":{"char":"󰋸","code":"f02f8"},"md-image_frame":{"char":"󰹉","code":"f0e49"},"md-image_lock":{"char":"󱪰","code":"f1ab0"},"md-image_lock_outline":{"char":"󱪱","code":"f1ab1"},"md-image_marker":{"char":"󱝻","code":"f177b"},"md-image_marker_outline":{"char":"󱝼","code":"f177c"},"md-image_minus":{"char":"󱐙","code":"f1419"},"md-image_move":{"char":"󰧸","code":"f09f8"},"md-image_multiple":{"char":"󰋹","code":"f02f9"},"md-image_multiple_outline":{"char":"󰋯","code":"f02ef"},"md-image_off":{"char":"󰠫","code":"f082b"},"md-image_off_outline":{"char":"󱇑","code":"f11d1"},"md-image_outline":{"char":"󰥶","code":"f0976"},"md-image_plus":{"char":"󰡼","code":"f087c"},"md-image_refresh":{"char":"󱧾","code":"f19fe"},"md-image_refresh_outline":{"char":"󱧿","code":"f19ff"},"md-image_remove":{"char":"󱐘","code":"f1418"},"md-image_search":{"char":"󰥷","code":"f0977"},"md-image_search_outline":{"char":"󰥸","code":"f0978"},"md-image_size_select_actual":{"char":"󰲍","code":"f0c8d"},"md-image_size_select_large":{"char":"󰲎","code":"f0c8e"},"md-image_size_select_small":{"char":"󰲏","code":"f0c8f"},"md-image_sync":{"char":"󱨀","code":"f1a00"},"md-image_sync_outline":{"char":"󱨁","code":"f1a01"},"md-image_text":{"char":"󱘍","code":"f160d"},"md-import":{"char":"󰋺","code":"f02fa"},"md-inbox":{"char":"󰚇","code":"f0687"},"md-inbox_arrow_down":{"char":"󰋻","code":"f02fb"},"md-inbox_arrow_down_outline":{"char":"󱉰","code":"f1270"},"md-inbox_arrow_up":{"char":"󰏑","code":"f03d1"},"md-inbox_arrow_up_outline":{"char":"󱉱","code":"f1271"},"md-inbox_full":{"char":"󱉲","code":"f1272"},"md-inbox_full_outline":{"char":"󱉳","code":"f1273"},"md-inbox_multiple":{"char":"󰢰","code":"f08b0"},"md-inbox_multiple_outline":{"char":"󰮨","code":"f0ba8"},"md-inbox_outline":{"char":"󱉴","code":"f1274"},"md-inbox_remove":{"char":"󱖟","code":"f159f"},"md-inbox_remove_outline":{"char":"󱖠","code":"f15a0"},"md-incognito":{"char":"󰗹","code":"f05f9"},"md-incognito_circle":{"char":"󱐡","code":"f1421"},"md-incognito_circle_off":{"char":"󱐢","code":"f1422"},"md-incognito_off":{"char":"󰁵","code":"f0075"},"md-induction":{"char":"󱡌","code":"f184c"},"md-infinity":{"char":"󰛤","code":"f06e4"},"md-information":{"char":"󰋼","code":"f02fc"},"md-information_off":{"char":"󱞌","code":"f178c"},"md-information_off_outline":{"char":"󱞍","code":"f178d"},"md-information_outline":{"char":"󰋽","code":"f02fd"},"md-information_variant":{"char":"󰙎","code":"f064e"},"md-instagram":{"char":"󰋾","code":"f02fe"},"md-instrument_triangle":{"char":"󱁎","code":"f104e"},"md-integrated_circuit_chip":{"char":"󱤓","code":"f1913"},"md-invert_colors":{"char":"󰌁","code":"f0301"},"md-invert_colors_off":{"char":"󰹊","code":"f0e4a"},"md-iobroker":{"char":"󱋨","code":"f12e8"},"md-ip":{"char":"󰩟","code":"f0a5f"},"md-ip_network":{"char":"󰩠","code":"f0a60"},"md-ip_network_outline":{"char":"󰲐","code":"f0c90"},"md-ip_outline":{"char":"󱦂","code":"f1982"},"md-ipod":{"char":"󰲑","code":"f0c91"},"md-iron":{"char":"󱠤","code":"f1824"},"md-iron_board":{"char":"󱠸","code":"f1838"},"md-iron_outline":{"char":"󱠥","code":"f1825"},"md-island":{"char":"󱁏","code":"f104f"},"md-iv_bag":{"char":"󱂹","code":"f10b9"},"md-jabber":{"char":"󰷕","code":"f0dd5"},"md-jeepney":{"char":"󰌂","code":"f0302"},"md-jellyfish":{"char":"󰼁","code":"f0f01"},"md-jellyfish_outline":{"char":"󰼂","code":"f0f02"},"md-jira":{"char":"󰌃","code":"f0303"},"md-jquery":{"char":"󰡽","code":"f087d"},"md-jsfiddle":{"char":"󰌄","code":"f0304"},"md-jump_rope":{"char":"󱋿","code":"f12ff"},"md-kabaddi":{"char":"󰶇","code":"f0d87"},"md-kangaroo":{"char":"󱕘","code":"f1558"},"md-karate":{"char":"󰠬","code":"f082c"},"md-kayaking":{"char":"󰢯","code":"f08af"},"md-keg":{"char":"󰌅","code":"f0305"},"md-kettle":{"char":"󰗺","code":"f05fa"},"md-kettle_alert":{"char":"󱌗","code":"f1317"},"md-kettle_alert_outline":{"char":"󱌘","code":"f1318"},"md-kettle_off":{"char":"󱌛","code":"f131b"},"md-kettle_off_outline":{"char":"󱌜","code":"f131c"},"md-kettle_outline":{"char":"󰽖","code":"f0f56"},"md-kettle_pour_over":{"char":"󱜼","code":"f173c"},"md-kettle_steam":{"char":"󱌙","code":"f1319"},"md-kettle_steam_outline":{"char":"󱌚","code":"f131a"},"md-kettlebell":{"char":"󱌀","code":"f1300"},"md-key":{"char":"󰌆","code":"f0306"},"md-key_alert":{"char":"󱦃","code":"f1983"},"md-key_alert_outline":{"char":"󱦄","code":"f1984"},"md-key_arrow_right":{"char":"󱌒","code":"f1312"},"md-key_chain":{"char":"󱕴","code":"f1574"},"md-key_chain_variant":{"char":"󱕵","code":"f1575"},"md-key_change":{"char":"󰌇","code":"f0307"},"md-key_link":{"char":"󱆟","code":"f119f"},"md-key_minus":{"char":"󰌈","code":"f0308"},"md-key_outline":{"char":"󰷖","code":"f0dd6"},"md-key_plus":{"char":"󰌉","code":"f0309"},"md-key_remove":{"char":"󰌊","code":"f030a"},"md-key_star":{"char":"󱆞","code":"f119e"},"md-key_variant":{"char":"󰌋","code":"f030b"},"md-key_wireless":{"char":"󰿂","code":"f0fc2"},"md-keyboard":{"char":"󰌌","code":"f030c"},"md-keyboard_backspace":{"char":"󰌍","code":"f030d"},"md-keyboard_caps":{"char":"󰌎","code":"f030e"},"md-keyboard_close":{"char":"󰌏","code":"f030f"},"md-keyboard_esc":{"char":"󱊷","code":"f12b7"},"md-keyboard_f1":{"char":"󱊫","code":"f12ab"},"md-keyboard_f10":{"char":"󱊴","code":"f12b4"},"md-keyboard_f11":{"char":"󱊵","code":"f12b5"},"md-keyboard_f12":{"char":"󱊶","code":"f12b6"},"md-keyboard_f2":{"char":"󱊬","code":"f12ac"},"md-keyboard_f3":{"char":"󱊭","code":"f12ad"},"md-keyboard_f4":{"char":"󱊮","code":"f12ae"},"md-keyboard_f5":{"char":"󱊯","code":"f12af"},"md-keyboard_f6":{"char":"󱊰","code":"f12b0"},"md-keyboard_f7":{"char":"󱊱","code":"f12b1"},"md-keyboard_f8":{"char":"󱊲","code":"f12b2"},"md-keyboard_f9":{"char":"󱊳","code":"f12b3"},"md-keyboard_off":{"char":"󰌐","code":"f0310"},"md-keyboard_off_outline":{"char":"󰹋","code":"f0e4b"},"md-keyboard_outline":{"char":"󰥻","code":"f097b"},"md-keyboard_return":{"char":"󰌑","code":"f0311"},"md-keyboard_settings":{"char":"󰧹","code":"f09f9"},"md-keyboard_settings_outline":{"char":"󰧺","code":"f09fa"},"md-keyboard_space":{"char":"󱁐","code":"f1050"},"md-keyboard_tab":{"char":"󰌒","code":"f0312"},"md-keyboard_tab_reverse":{"char":"󰌥","code":"f0325"},"md-keyboard_variant":{"char":"󰌓","code":"f0313"},"md-khanda":{"char":"󱃽","code":"f10fd"},"md-kickstarter":{"char":"󰝅","code":"f0745"},"md-kite":{"char":"󱦅","code":"f1985"},"md-kite_outline":{"char":"󱦆","code":"f1986"},"md-kitesurfing":{"char":"󱝄","code":"f1744"},"md-klingon":{"char":"󱍛","code":"f135b"},"md-knife":{"char":"󰧻","code":"f09fb"},"md-knife_military":{"char":"󰧼","code":"f09fc"},"md-koala":{"char":"󱜿","code":"f173f"},"md-kodi":{"char":"󰌔","code":"f0314"},"md-kubernetes":{"char":"󱃾","code":"f10fe"},"md-label":{"char":"󰌕","code":"f0315"},"md-label_multiple":{"char":"󱍵","code":"f1375"},"md-label_multiple_outline":{"char":"󱍶","code":"f1376"},"md-label_off":{"char":"󰫋","code":"f0acb"},"md-label_off_outline":{"char":"󰫌","code":"f0acc"},"md-label_outline":{"char":"󰌖","code":"f0316"},"md-label_percent":{"char":"󱋪","code":"f12ea"},"md-label_percent_outline":{"char":"󱋫","code":"f12eb"},"md-label_variant":{"char":"󰫍","code":"f0acd"},"md-label_variant_outline":{"char":"󰫎","code":"f0ace"},"md-ladder":{"char":"󱖢","code":"f15a2"},"md-ladybug":{"char":"󰠭","code":"f082d"},"md-lambda":{"char":"󰘧","code":"f0627"},"md-lamp":{"char":"󰚵","code":"f06b5"},"md-lamp_outline":{"char":"󱟐","code":"f17d0"},"md-lamps":{"char":"󱕶","code":"f1576"},"md-lamps_outline":{"char":"󱟑","code":"f17d1"},"md-lan":{"char":"󰌗","code":"f0317"},"md-lan_check":{"char":"󱊪","code":"f12aa"},"md-lan_connect":{"char":"󰌘","code":"f0318"},"md-lan_disconnect":{"char":"󰌙","code":"f0319"},"md-lan_pending":{"char":"󰌚","code":"f031a"},"md-land_fields":{"char":"󱪲","code":"f1ab2"},"md-land_plots":{"char":"󱪳","code":"f1ab3"},"md-land_plots_circle":{"char":"󱪴","code":"f1ab4"},"md-land_plots_circle_variant":{"char":"󱪵","code":"f1ab5"},"md-land_rows_horizontal":{"char":"󱪶","code":"f1ab6"},"md-land_rows_vertical":{"char":"󱪷","code":"f1ab7"},"md-landslide":{"char":"󱩈","code":"f1a48"},"md-landslide_outline":{"char":"󱩉","code":"f1a49"},"md-language_c":{"char":"󰙱","code":"f0671"},"md-language_cpp":{"char":"󰙲","code":"f0672"},"md-language_csharp":{"char":"󰌛","code":"f031b"},"md-language_css3":{"char":"󰌜","code":"f031c"},"md-language_fortran":{"char":"󱈚","code":"f121a"},"md-language_go":{"char":"󰟓","code":"f07d3"},"md-language_haskell":{"char":"󰲒","code":"f0c92"},"md-language_html5":{"char":"󰌝","code":"f031d"},"md-language_java":{"char":"󰬷","code":"f0b37"},"md-language_javascript":{"char":"󰌞","code":"f031e"},"md-language_kotlin":{"char":"󱈙","code":"f1219"},"md-language_lua":{"char":"󰢱","code":"f08b1"},"md-language_markdown":{"char":"󰍔","code":"f0354"},"md-language_markdown_outline":{"char":"󰽛","code":"f0f5b"},"md-language_php":{"char":"󰌟","code":"f031f"},"md-language_python":{"char":"󰌠","code":"f0320"},"md-language_r":{"char":"󰟔","code":"f07d4"},"md-language_ruby":{"char":"󰴭","code":"f0d2d"},"md-language_ruby_on_rails":{"char":"󰫏","code":"f0acf"},"md-language_rust":{"char":"󱘗","code":"f1617"},"md-language_swift":{"char":"󰛥","code":"f06e5"},"md-language_typescript":{"char":"󰛦","code":"f06e6"},"md-language_xaml":{"char":"󰙳","code":"f0673"},"md-laptop":{"char":"󰌢","code":"f0322"},"md-laptop_account":{"char":"󱩊","code":"f1a4a"},"md-laptop_off":{"char":"󰛧","code":"f06e7"},"md-laravel":{"char":"󰫐","code":"f0ad0"},"md-laser_pointer":{"char":"󱒄","code":"f1484"},"md-lasso":{"char":"󰼃","code":"f0f03"},"md-lastpass":{"char":"󰑆","code":"f0446"},"md-latitude":{"char":"󰽗","code":"f0f57"},"md-launch":{"char":"󰌧","code":"f0327"},"md-lava_lamp":{"char":"󰟕","code":"f07d5"},"md-layers":{"char":"󰌨","code":"f0328"},"md-layers_edit":{"char":"󱢒","code":"f1892"},"md-layers_minus":{"char":"󰹌","code":"f0e4c"},"md-layers_off":{"char":"󰌩","code":"f0329"},"md-layers_off_outline":{"char":"󰧽","code":"f09fd"},"md-layers_outline":{"char":"󰧾","code":"f09fe"},"md-layers_plus":{"char":"󰹍","code":"f0e4d"},"md-layers_remove":{"char":"󰹎","code":"f0e4e"},"md-layers_search":{"char":"󱈆","code":"f1206"},"md-layers_search_outline":{"char":"󱈇","code":"f1207"},"md-layers_triple":{"char":"󰽘","code":"f0f58"},"md-layers_triple_outline":{"char":"󰽙","code":"f0f59"},"md-lead_pencil":{"char":"󰙏","code":"f064f"},"md-leaf":{"char":"󰌪","code":"f032a"},"md-leaf_circle":{"char":"󱤅","code":"f1905"},"md-leaf_circle_outline":{"char":"󱤆","code":"f1906"},"md-leaf_maple":{"char":"󰲓","code":"f0c93"},"md-leaf_maple_off":{"char":"󱋚","code":"f12da"},"md-leaf_off":{"char":"󱋙","code":"f12d9"},"md-leak":{"char":"󰷗","code":"f0dd7"},"md-leak_off":{"char":"󰷘","code":"f0dd8"},"md-lecturn":{"char":"󱫰","code":"f1af0"},"md-led_off":{"char":"󰌫","code":"f032b"},"md-led_on":{"char":"󰌬","code":"f032c"},"md-led_outline":{"char":"󰌭","code":"f032d"},"md-led_strip":{"char":"󰟖","code":"f07d6"},"md-led_strip_variant":{"char":"󱁑","code":"f1051"},"md-led_strip_variant_off":{"char":"󱩋","code":"f1a4b"},"md-led_variant_off":{"char":"󰌮","code":"f032e"},"md-led_variant_on":{"char":"󰌯","code":"f032f"},"md-led_variant_outline":{"char":"󰌰","code":"f0330"},"md-leek":{"char":"󱅽","code":"f117d"},"md-less_than":{"char":"󰥼","code":"f097c"},"md-less_than_or_equal":{"char":"󰥽","code":"f097d"},"md-library":{"char":"󰌱","code":"f0331"},"md-library_outline":{"char":"󱨢","code":"f1a22"},"md-library_shelves":{"char":"󰮩","code":"f0ba9"},"md-license":{"char":"󰿃","code":"f0fc3"},"md-lifebuoy":{"char":"󰡾","code":"f087e"},"md-light_flood_down":{"char":"󱦇","code":"f1987"},"md-light_flood_up":{"char":"󱦈","code":"f1988"},"md-light_recessed":{"char":"󱞛","code":"f179b"},"md-light_switch":{"char":"󰥾","code":"f097e"},"md-light_switch_off":{"char":"󱨤","code":"f1a24"},"md-lightbulb":{"char":"󰌵","code":"f0335"},"md-lightbulb_alert":{"char":"󱧡","code":"f19e1"},"md-lightbulb_alert_outline":{"char":"󱧢","code":"f19e2"},"md-lightbulb_auto":{"char":"󱠀","code":"f1800"},"md-lightbulb_auto_outline":{"char":"󱠁","code":"f1801"},"md-lightbulb_cfl":{"char":"󱈈","code":"f1208"},"md-lightbulb_cfl_off":{"char":"󱈉","code":"f1209"},"md-lightbulb_cfl_spiral":{"char":"󱉵","code":"f1275"},"md-lightbulb_cfl_spiral_off":{"char":"󱋃","code":"f12c3"},"md-lightbulb_fluorescent_tube":{"char":"󱠄","code":"f1804"},"md-lightbulb_fluorescent_tube_outline":{"char":"󱠅","code":"f1805"},"md-lightbulb_group":{"char":"󱉓","code":"f1253"},"md-lightbulb_group_off":{"char":"󱋍","code":"f12cd"},"md-lightbulb_group_off_outline":{"char":"󱋎","code":"f12ce"},"md-lightbulb_group_outline":{"char":"󱉔","code":"f1254"},"md-lightbulb_multiple":{"char":"󱉕","code":"f1255"},"md-lightbulb_multiple_off":{"char":"󱋏","code":"f12cf"},"md-lightbulb_multiple_off_outline":{"char":"󱋐","code":"f12d0"},"md-lightbulb_multiple_outline":{"char":"󱉖","code":"f1256"},"md-lightbulb_night":{"char":"󱩌","code":"f1a4c"},"md-lightbulb_night_outline":{"char":"󱩍","code":"f1a4d"},"md-lightbulb_off":{"char":"󰹏","code":"f0e4f"},"md-lightbulb_off_outline":{"char":"󰹐","code":"f0e50"},"md-lightbulb_on":{"char":"󰛨","code":"f06e8"},"md-lightbulb_on_10":{"char":"󱩎","code":"f1a4e"},"md-lightbulb_on_20":{"char":"󱩏","code":"f1a4f"},"md-lightbulb_on_30":{"char":"󱩐","code":"f1a50"},"md-lightbulb_on_40":{"char":"󱩑","code":"f1a51"},"md-lightbulb_on_50":{"char":"󱩒","code":"f1a52"},"md-lightbulb_on_60":{"char":"󱩓","code":"f1a53"},"md-lightbulb_on_70":{"char":"󱩔","code":"f1a54"},"md-lightbulb_on_80":{"char":"󱩕","code":"f1a55"},"md-lightbulb_on_90":{"char":"󱩖","code":"f1a56"},"md-lightbulb_on_outline":{"char":"󰛩","code":"f06e9"},"md-lightbulb_outline":{"char":"󰌶","code":"f0336"},"md-lightbulb_question":{"char":"󱧣","code":"f19e3"},"md-lightbulb_question_outline":{"char":"󱧤","code":"f19e4"},"md-lightbulb_spot":{"char":"󱟴","code":"f17f4"},"md-lightbulb_spot_off":{"char":"󱟵","code":"f17f5"},"md-lightbulb_variant":{"char":"󱠂","code":"f1802"},"md-lightbulb_variant_outline":{"char":"󱠃","code":"f1803"},"md-lighthouse":{"char":"󰧿","code":"f09ff"},"md-lighthouse_on":{"char":"󰨀","code":"f0a00"},"md-lightning_bolt":{"char":"󱐋","code":"f140b"},"md-lightning_bolt_circle":{"char":"󰠠","code":"f0820"},"md-lightning_bolt_outline":{"char":"󱐌","code":"f140c"},"md-line_scan":{"char":"󰘤","code":"f0624"},"md-lingerie":{"char":"󱑶","code":"f1476"},"md-link":{"char":"󰌷","code":"f0337"},"md-link_box":{"char":"󰴚","code":"f0d1a"},"md-link_box_outline":{"char":"󰴛","code":"f0d1b"},"md-link_box_variant":{"char":"󰴜","code":"f0d1c"},"md-link_box_variant_outline":{"char":"󰴝","code":"f0d1d"},"md-link_lock":{"char":"󱂺","code":"f10ba"},"md-link_off":{"char":"󰌸","code":"f0338"},"md-link_plus":{"char":"󰲔","code":"f0c94"},"md-link_variant":{"char":"󰌹","code":"f0339"},"md-link_variant_minus":{"char":"󱃿","code":"f10ff"},"md-link_variant_off":{"char":"󰌺","code":"f033a"},"md-link_variant_plus":{"char":"󱄀","code":"f1100"},"md-link_variant_remove":{"char":"󱄁","code":"f1101"},"md-linkedin":{"char":"󰌻","code":"f033b"},"md-linux":{"char":"󰌽","code":"f033d"},"md-linux_mint":{"char":"󰣭","code":"f08ed"},"md-lipstick":{"char":"󱎵","code":"f13b5"},"md-liquid_spot":{"char":"󱠦","code":"f1826"},"md-liquor":{"char":"󱤞","code":"f191e"},"md-list_status":{"char":"󱖫","code":"f15ab"},"md-litecoin":{"char":"󰩡","code":"f0a61"},"md-loading":{"char":"󰝲","code":"f0772"},"md-location_enter":{"char":"󰿄","code":"f0fc4"},"md-location_exit":{"char":"󰿅","code":"f0fc5"},"md-lock":{"char":"󰌾","code":"f033e"},"md-lock_alert":{"char":"󰣮","code":"f08ee"},"md-lock_alert_outline":{"char":"󱗑","code":"f15d1"},"md-lock_check":{"char":"󱎚","code":"f139a"},"md-lock_check_outline":{"char":"󱚨","code":"f16a8"},"md-lock_clock":{"char":"󰥿","code":"f097f"},"md-lock_minus":{"char":"󱚩","code":"f16a9"},"md-lock_minus_outline":{"char":"󱚪","code":"f16aa"},"md-lock_off":{"char":"󱙱","code":"f1671"},"md-lock_off_outline":{"char":"󱙲","code":"f1672"},"md-lock_open":{"char":"󰌿","code":"f033f"},"md-lock_open_alert":{"char":"󱎛","code":"f139b"},"md-lock_open_alert_outline":{"char":"󱗒","code":"f15d2"},"md-lock_open_check":{"char":"󱎜","code":"f139c"},"md-lock_open_check_outline":{"char":"󱚫","code":"f16ab"},"md-lock_open_minus":{"char":"󱚬","code":"f16ac"},"md-lock_open_minus_outline":{"char":"󱚭","code":"f16ad"},"md-lock_open_outline":{"char":"󰍀","code":"f0340"},"md-lock_open_plus":{"char":"󱚮","code":"f16ae"},"md-lock_open_plus_outline":{"char":"󱚯","code":"f16af"},"md-lock_open_remove":{"char":"󱚰","code":"f16b0"},"md-lock_open_remove_outline":{"char":"󱚱","code":"f16b1"},"md-lock_open_variant":{"char":"󰿆","code":"f0fc6"},"md-lock_open_variant_outline":{"char":"󰿇","code":"f0fc7"},"md-lock_outline":{"char":"󰍁","code":"f0341"},"md-lock_pattern":{"char":"󰛪","code":"f06ea"},"md-lock_plus":{"char":"󰗻","code":"f05fb"},"md-lock_plus_outline":{"char":"󱚲","code":"f16b2"},"md-lock_question":{"char":"󰣯","code":"f08ef"},"md-lock_remove":{"char":"󱚳","code":"f16b3"},"md-lock_remove_outline":{"char":"󱚴","code":"f16b4"},"md-lock_reset":{"char":"󰝳","code":"f0773"},"md-lock_smart":{"char":"󰢲","code":"f08b2"},"md-locker":{"char":"󰟗","code":"f07d7"},"md-locker_multiple":{"char":"󰟘","code":"f07d8"},"md-login":{"char":"󰍂","code":"f0342"},"md-logout":{"char":"󰍃","code":"f0343"},"md-logout_variant":{"char":"󰗽","code":"f05fd"},"md-longitude":{"char":"󰽚","code":"f0f5a"},"md-looks":{"char":"󰍄","code":"f0344"},"md-lotion":{"char":"󱖂","code":"f1582"},"md-lotion_outline":{"char":"󱖃","code":"f1583"},"md-lotion_plus":{"char":"󱖄","code":"f1584"},"md-lotion_plus_outline":{"char":"󱖅","code":"f1585"},"md-loupe":{"char":"󰍅","code":"f0345"},"md-lumx":{"char":"󰍆","code":"f0346"},"md-lungs":{"char":"󱂄","code":"f1084"},"md-mace":{"char":"󱡃","code":"f1843"},"md-magazine_pistol":{"char":"󰌤","code":"f0324"},"md-magazine_rifle":{"char":"󰌣","code":"f0323"},"md-magic_staff":{"char":"󱡄","code":"f1844"},"md-magnet":{"char":"󰍇","code":"f0347"},"md-magnet_on":{"char":"󰍈","code":"f0348"},"md-magnify":{"char":"󰍉","code":"f0349"},"md-magnify_close":{"char":"󰦀","code":"f0980"},"md-magnify_expand":{"char":"󱡴","code":"f1874"},"md-magnify_minus":{"char":"󰍊","code":"f034a"},"md-magnify_minus_cursor":{"char":"󰩢","code":"f0a62"},"md-magnify_minus_outline":{"char":"󰛬","code":"f06ec"},"md-magnify_plus":{"char":"󰍋","code":"f034b"},"md-magnify_plus_cursor":{"char":"󰩣","code":"f0a63"},"md-magnify_plus_outline":{"char":"󰛭","code":"f06ed"},"md-magnify_remove_cursor":{"char":"󱈌","code":"f120c"},"md-magnify_remove_outline":{"char":"󱈍","code":"f120d"},"md-magnify_scan":{"char":"󱉶","code":"f1276"},"md-mail":{"char":"󰺻","code":"f0ebb"},"md-mailbox":{"char":"󰛮","code":"f06ee"},"md-mailbox_open":{"char":"󰶈","code":"f0d88"},"md-mailbox_open_outline":{"char":"󰶉","code":"f0d89"},"md-mailbox_open_up":{"char":"󰶊","code":"f0d8a"},"md-mailbox_open_up_outline":{"char":"󰶋","code":"f0d8b"},"md-mailbox_outline":{"char":"󰶌","code":"f0d8c"},"md-mailbox_up":{"char":"󰶍","code":"f0d8d"},"md-mailbox_up_outline":{"char":"󰶎","code":"f0d8e"},"md-manjaro":{"char":"󱘊","code":"f160a"},"md-map":{"char":"󰍍","code":"f034d"},"md-map_check":{"char":"󰺼","code":"f0ebc"},"md-map_check_outline":{"char":"󰺽","code":"f0ebd"},"md-map_clock":{"char":"󰴞","code":"f0d1e"},"md-map_clock_outline":{"char":"󰴟","code":"f0d1f"},"md-map_legend":{"char":"󰨁","code":"f0a01"},"md-map_marker":{"char":"󰍎","code":"f034e"},"md-map_marker_account":{"char":"󱣣","code":"f18e3"},"md-map_marker_account_outline":{"char":"󱣤","code":"f18e4"},"md-map_marker_alert":{"char":"󰼅","code":"f0f05"},"md-map_marker_alert_outline":{"char":"󰼆","code":"f0f06"},"md-map_marker_check":{"char":"󰲕","code":"f0c95"},"md-map_marker_check_outline":{"char":"󱋻","code":"f12fb"},"md-map_marker_circle":{"char":"󰍏","code":"f034f"},"md-map_marker_distance":{"char":"󰣰","code":"f08f0"},"md-map_marker_down":{"char":"󱄂","code":"f1102"},"md-map_marker_left":{"char":"󱋛","code":"f12db"},"md-map_marker_left_outline":{"char":"󱋝","code":"f12dd"},"md-map_marker_minus":{"char":"󰙐","code":"f0650"},"md-map_marker_minus_outline":{"char":"󱋹","code":"f12f9"},"md-map_marker_multiple":{"char":"󰍐","code":"f0350"},"md-map_marker_multiple_outline":{"char":"󱉷","code":"f1277"},"md-map_marker_off":{"char":"󰍑","code":"f0351"},"md-map_marker_off_outline":{"char":"󱋽","code":"f12fd"},"md-map_marker_outline":{"char":"󰟙","code":"f07d9"},"md-map_marker_path":{"char":"󰴠","code":"f0d20"},"md-map_marker_plus":{"char":"󰙑","code":"f0651"},"md-map_marker_plus_outline":{"char":"󱋸","code":"f12f8"},"md-map_marker_question":{"char":"󰼇","code":"f0f07"},"md-map_marker_question_outline":{"char":"󰼈","code":"f0f08"},"md-map_marker_radius":{"char":"󰍒","code":"f0352"},"md-map_marker_radius_outline":{"char":"󱋼","code":"f12fc"},"md-map_marker_remove":{"char":"󰼉","code":"f0f09"},"md-map_marker_remove_outline":{"char":"󱋺","code":"f12fa"},"md-map_marker_remove_variant":{"char":"󰼊","code":"f0f0a"},"md-map_marker_right":{"char":"󱋜","code":"f12dc"},"md-map_marker_right_outline":{"char":"󱋞","code":"f12de"},"md-map_marker_star":{"char":"󱘈","code":"f1608"},"md-map_marker_star_outline":{"char":"󱘉","code":"f1609"},"md-map_marker_up":{"char":"󱄃","code":"f1103"},"md-map_minus":{"char":"󰦁","code":"f0981"},"md-map_outline":{"char":"󰦂","code":"f0982"},"md-map_plus":{"char":"󰦃","code":"f0983"},"md-map_search":{"char":"󰦄","code":"f0984"},"md-map_search_outline":{"char":"󰦅","code":"f0985"},"md-mapbox":{"char":"󰮪","code":"f0baa"},"md-margin":{"char":"󰍓","code":"f0353"},"md-marker":{"char":"󰙒","code":"f0652"},"md-marker_cancel":{"char":"󰷙","code":"f0dd9"},"md-marker_check":{"char":"󰍕","code":"f0355"},"md-mastodon":{"char":"󰫑","code":"f0ad1"},"md-material_design":{"char":"󰦆","code":"f0986"},"md-material_ui":{"char":"󰍗","code":"f0357"},"md-math_compass":{"char":"󰍘","code":"f0358"},"md-math_cos":{"char":"󰲖","code":"f0c96"},"md-math_integral":{"char":"󰿈","code":"f0fc8"},"md-math_integral_box":{"char":"󰿉","code":"f0fc9"},"md-math_log":{"char":"󱂅","code":"f1085"},"md-math_norm":{"char":"󰿊","code":"f0fca"},"md-math_norm_box":{"char":"󰿋","code":"f0fcb"},"md-math_sin":{"char":"󰲗","code":"f0c97"},"md-math_tan":{"char":"󰲘","code":"f0c98"},"md-matrix":{"char":"󰘨","code":"f0628"},"md-medal":{"char":"󰦇","code":"f0987"},"md-medal_outline":{"char":"󱌦","code":"f1326"},"md-medical_bag":{"char":"󰛯","code":"f06ef"},"md-medical_cotton_swab":{"char":"󱪸","code":"f1ab8"},"md-meditation":{"char":"󱅻","code":"f117b"},"md-memory":{"char":"󰍛","code":"f035b"},"md-menorah":{"char":"󱟔","code":"f17d4"},"md-menorah_fire":{"char":"󱟕","code":"f17d5"},"md-menu":{"char":"󰍜","code":"f035c"},"md-menu_down":{"char":"󰍝","code":"f035d"},"md-menu_down_outline":{"char":"󰚶","code":"f06b6"},"md-menu_left":{"char":"󰍞","code":"f035e"},"md-menu_left_outline":{"char":"󰨂","code":"f0a02"},"md-menu_open":{"char":"󰮫","code":"f0bab"},"md-menu_right":{"char":"󰍟","code":"f035f"},"md-menu_right_outline":{"char":"󰨃","code":"f0a03"},"md-menu_swap":{"char":"󰩤","code":"f0a64"},"md-menu_swap_outline":{"char":"󰩥","code":"f0a65"},"md-menu_up":{"char":"󰍠","code":"f0360"},"md-menu_up_outline":{"char":"󰚷","code":"f06b7"},"md-merge":{"char":"󰽜","code":"f0f5c"},"md-message":{"char":"󰍡","code":"f0361"},"md-message_alert":{"char":"󰍢","code":"f0362"},"md-message_alert_outline":{"char":"󰨄","code":"f0a04"},"md-message_arrow_left":{"char":"󱋲","code":"f12f2"},"md-message_arrow_left_outline":{"char":"󱋳","code":"f12f3"},"md-message_arrow_right":{"char":"󱋴","code":"f12f4"},"md-message_arrow_right_outline":{"char":"󱋵","code":"f12f5"},"md-message_badge":{"char":"󱥁","code":"f1941"},"md-message_badge_outline":{"char":"󱥂","code":"f1942"},"md-message_bookmark":{"char":"󱖬","code":"f15ac"},"md-message_bookmark_outline":{"char":"󱖭","code":"f15ad"},"md-message_bulleted":{"char":"󰚢","code":"f06a2"},"md-message_bulleted_off":{"char":"󰚣","code":"f06a3"},"md-message_cog":{"char":"󰛱","code":"f06f1"},"md-message_cog_outline":{"char":"󱅲","code":"f1172"},"md-message_draw":{"char":"󰍣","code":"f0363"},"md-message_fast":{"char":"󱧌","code":"f19cc"},"md-message_fast_outline":{"char":"󱧍","code":"f19cd"},"md-message_flash":{"char":"󱖩","code":"f15a9"},"md-message_flash_outline":{"char":"󱖪","code":"f15aa"},"md-message_image":{"char":"󰍤","code":"f0364"},"md-message_image_outline":{"char":"󱅬","code":"f116c"},"md-message_lock":{"char":"󰿌","code":"f0fcc"},"md-message_lock_outline":{"char":"󱅭","code":"f116d"},"md-message_minus":{"char":"󱅮","code":"f116e"},"md-message_minus_outline":{"char":"󱅯","code":"f116f"},"md-message_off":{"char":"󱙍","code":"f164d"},"md-message_off_outline":{"char":"󱙎","code":"f164e"},"md-message_outline":{"char":"󰍥","code":"f0365"},"md-message_plus":{"char":"󰙓","code":"f0653"},"md-message_plus_outline":{"char":"󱂻","code":"f10bb"},"md-message_processing":{"char":"󰍦","code":"f0366"},"md-message_processing_outline":{"char":"󱅰","code":"f1170"},"md-message_question":{"char":"󱜺","code":"f173a"},"md-message_question_outline":{"char":"󱜻","code":"f173b"},"md-message_reply":{"char":"󰍧","code":"f0367"},"md-message_reply_outline":{"char":"󱜽","code":"f173d"},"md-message_reply_text":{"char":"󰍨","code":"f0368"},"md-message_reply_text_outline":{"char":"󱜾","code":"f173e"},"md-message_settings":{"char":"󰛰","code":"f06f0"},"md-message_settings_outline":{"char":"󱅱","code":"f1171"},"md-message_star":{"char":"󰚚","code":"f069a"},"md-message_star_outline":{"char":"󱉐","code":"f1250"},"md-message_text":{"char":"󰍩","code":"f0369"},"md-message_text_clock":{"char":"󱅳","code":"f1173"},"md-message_text_clock_outline":{"char":"󱅴","code":"f1174"},"md-message_text_fast":{"char":"󱧎","code":"f19ce"},"md-message_text_fast_outline":{"char":"󱧏","code":"f19cf"},"md-message_text_lock":{"char":"󰿍","code":"f0fcd"},"md-message_text_lock_outline":{"char":"󱅵","code":"f1175"},"md-message_text_outline":{"char":"󰍪","code":"f036a"},"md-message_video":{"char":"󰍫","code":"f036b"},"md-meteor":{"char":"󰘩","code":"f0629"},"md-meter_electric":{"char":"󱩗","code":"f1a57"},"md-meter_electric_outline":{"char":"󱩘","code":"f1a58"},"md-meter_gas":{"char":"󱩙","code":"f1a59"},"md-meter_gas_outline":{"char":"󱩚","code":"f1a5a"},"md-metronome":{"char":"󰟚","code":"f07da"},"md-metronome_tick":{"char":"󰟛","code":"f07db"},"md-micro_sd":{"char":"󰟜","code":"f07dc"},"md-microphone":{"char":"󰍬","code":"f036c"},"md-microphone_minus":{"char":"󰢳","code":"f08b3"},"md-microphone_off":{"char":"󰍭","code":"f036d"},"md-microphone_outline":{"char":"󰍮","code":"f036e"},"md-microphone_plus":{"char":"󰢴","code":"f08b4"},"md-microphone_question":{"char":"󱦉","code":"f1989"},"md-microphone_question_outline":{"char":"󱦊","code":"f198a"},"md-microphone_settings":{"char":"󰍯","code":"f036f"},"md-microphone_variant":{"char":"󰍰","code":"f0370"},"md-microphone_variant_off":{"char":"󰍱","code":"f0371"},"md-microscope":{"char":"󰙔","code":"f0654"},"md-microsoft":{"char":"󰍲","code":"f0372"},"md-microsoft_access":{"char":"󱎎","code":"f138e"},"md-microsoft_azure":{"char":"󰠅","code":"f0805"},"md-microsoft_azure_devops":{"char":"󰿕","code":"f0fd5"},"md-microsoft_bing":{"char":"󰂤","code":"f00a4"},"md-microsoft_dynamics_365":{"char":"󰦈","code":"f0988"},"md-microsoft_edge":{"char":"󰇩","code":"f01e9"},"md-microsoft_excel":{"char":"󱎏","code":"f138f"},"md-microsoft_internet_explorer":{"char":"󰌀","code":"f0300"},"md-microsoft_office":{"char":"󰏆","code":"f03c6"},"md-microsoft_onedrive":{"char":"󰏊","code":"f03ca"},"md-microsoft_onenote":{"char":"󰝇","code":"f0747"},"md-microsoft_outlook":{"char":"󰴢","code":"f0d22"},"md-microsoft_powerpoint":{"char":"󱎐","code":"f1390"},"md-microsoft_sharepoint":{"char":"󱎑","code":"f1391"},"md-microsoft_teams":{"char":"󰊻","code":"f02bb"},"md-microsoft_visual_studio":{"char":"󰘐","code":"f0610"},"md-microsoft_visual_studio_code":{"char":"󰨞","code":"f0a1e"},"md-microsoft_windows":{"char":"󰖳","code":"f05b3"},"md-microsoft_windows_classic":{"char":"󰨡","code":"f0a21"},"md-microsoft_word":{"char":"󱎒","code":"f1392"},"md-microsoft_xbox":{"char":"󰖹","code":"f05b9"},"md-microsoft_xbox_controller":{"char":"󰖺","code":"f05ba"},"md-microsoft_xbox_controller_battery_alert":{"char":"󰝋","code":"f074b"},"md-microsoft_xbox_controller_battery_charging":{"char":"󰨢","code":"f0a22"},"md-microsoft_xbox_controller_battery_empty":{"char":"󰝌","code":"f074c"},"md-microsoft_xbox_controller_battery_full":{"char":"󰝍","code":"f074d"},"md-microsoft_xbox_controller_battery_low":{"char":"󰝎","code":"f074e"},"md-microsoft_xbox_controller_battery_medium":{"char":"󰝏","code":"f074f"},"md-microsoft_xbox_controller_battery_unknown":{"char":"󰝐","code":"f0750"},"md-microsoft_xbox_controller_menu":{"char":"󰹯","code":"f0e6f"},"md-microsoft_xbox_controller_off":{"char":"󰖻","code":"f05bb"},"md-microsoft_xbox_controller_view":{"char":"󰹰","code":"f0e70"},"md-microwave":{"char":"󰲙","code":"f0c99"},"md-microwave_off":{"char":"󱐣","code":"f1423"},"md-middleware":{"char":"󰽝","code":"f0f5d"},"md-middleware_outline":{"char":"󰽞","code":"f0f5e"},"md-midi":{"char":"󰣱","code":"f08f1"},"md-midi_port":{"char":"󰣲","code":"f08f2"},"md-mine":{"char":"󰷚","code":"f0dda"},"md-minecraft":{"char":"󰍳","code":"f0373"},"md-mini_sd":{"char":"󰨅","code":"f0a05"},"md-minidisc":{"char":"󰨆","code":"f0a06"},"md-minus":{"char":"󰍴","code":"f0374"},"md-minus_box":{"char":"󰍵","code":"f0375"},"md-minus_box_multiple":{"char":"󱅁","code":"f1141"},"md-minus_box_multiple_outline":{"char":"󱅂","code":"f1142"},"md-minus_box_outline":{"char":"󰛲","code":"f06f2"},"md-minus_circle":{"char":"󰍶","code":"f0376"},"md-minus_circle_multiple":{"char":"󰍚","code":"f035a"},"md-minus_circle_multiple_outline":{"char":"󰫓","code":"f0ad3"},"md-minus_circle_off":{"char":"󱑙","code":"f1459"},"md-minus_circle_off_outline":{"char":"󱑚","code":"f145a"},"md-minus_circle_outline":{"char":"󰍷","code":"f0377"},"md-minus_network":{"char":"󰍸","code":"f0378"},"md-minus_network_outline":{"char":"󰲚","code":"f0c9a"},"md-minus_thick":{"char":"󱘹","code":"f1639"},"md-mirror":{"char":"󱇽","code":"f11fd"},"md-mirror_rectangle":{"char":"󱞟","code":"f179f"},"md-mirror_variant":{"char":"󱞠","code":"f17a0"},"md-mixed_martial_arts":{"char":"󰶏","code":"f0d8f"},"md-mixed_reality":{"char":"󰡿","code":"f087f"},"md-molecule":{"char":"󰮬","code":"f0bac"},"md-molecule_co":{"char":"󱋾","code":"f12fe"},"md-molecule_co2":{"char":"󰟤","code":"f07e4"},"md-monitor":{"char":"󰍹","code":"f0379"},"md-monitor_account":{"char":"󱩛","code":"f1a5b"},"md-monitor_arrow_down":{"char":"󱧐","code":"f19d0"},"md-monitor_arrow_down_variant":{"char":"󱧑","code":"f19d1"},"md-monitor_cellphone":{"char":"󰦉","code":"f0989"},"md-monitor_cellphone_star":{"char":"󰦊","code":"f098a"},"md-monitor_dashboard":{"char":"󰨇","code":"f0a07"},"md-monitor_edit":{"char":"󱋆","code":"f12c6"},"md-monitor_eye":{"char":"󱎴","code":"f13b4"},"md-monitor_lock":{"char":"󰷛","code":"f0ddb"},"md-monitor_multiple":{"char":"󰍺","code":"f037a"},"md-monitor_off":{"char":"󰶐","code":"f0d90"},"md-monitor_screenshot":{"char":"󰹑","code":"f0e51"},"md-monitor_share":{"char":"󱒃","code":"f1483"},"md-monitor_shimmer":{"char":"󱄄","code":"f1104"},"md-monitor_small":{"char":"󱡶","code":"f1876"},"md-monitor_speaker":{"char":"󰽟","code":"f0f5f"},"md-monitor_speaker_off":{"char":"󰽠","code":"f0f60"},"md-monitor_star":{"char":"󰷜","code":"f0ddc"},"md-moon_first_quarter":{"char":"󰽡","code":"f0f61"},"md-moon_full":{"char":"󰽢","code":"f0f62"},"md-moon_last_quarter":{"char":"󰽣","code":"f0f63"},"md-moon_new":{"char":"󰽤","code":"f0f64"},"md-moon_waning_crescent":{"char":"󰽥","code":"f0f65"},"md-moon_waning_gibbous":{"char":"󰽦","code":"f0f66"},"md-moon_waxing_crescent":{"char":"󰽧","code":"f0f67"},"md-moon_waxing_gibbous":{"char":"󰽨","code":"f0f68"},"md-moped":{"char":"󱂆","code":"f1086"},"md-moped_electric":{"char":"󱖷","code":"f15b7"},"md-moped_electric_outline":{"char":"󱖸","code":"f15b8"},"md-moped_outline":{"char":"󱖹","code":"f15b9"},"md-more":{"char":"󰍻","code":"f037b"},"md-mortar_pestle":{"char":"󱝈","code":"f1748"},"md-mortar_pestle_plus":{"char":"󰏱","code":"f03f1"},"md-mosque":{"char":"󱠧","code":"f1827"},"md-mother_heart":{"char":"󱌔","code":"f1314"},"md-mother_nurse":{"char":"󰴡","code":"f0d21"},"md-motion":{"char":"󱖲","code":"f15b2"},"md-motion_outline":{"char":"󱖳","code":"f15b3"},"md-motion_pause":{"char":"󱖐","code":"f1590"},"md-motion_pause_outline":{"char":"󱖒","code":"f1592"},"md-motion_play":{"char":"󱖏","code":"f158f"},"md-motion_play_outline":{"char":"󱖑","code":"f1591"},"md-motion_sensor":{"char":"󰶑","code":"f0d91"},"md-motion_sensor_off":{"char":"󱐵","code":"f1435"},"md-motorbike":{"char":"󰍼","code":"f037c"},"md-motorbike_electric":{"char":"󱖺","code":"f15ba"},"md-mouse":{"char":"󰍽","code":"f037d"},"md-mouse_bluetooth":{"char":"󰦋","code":"f098b"},"md-mouse_move_down":{"char":"󱕐","code":"f1550"},"md-mouse_move_up":{"char":"󱕑","code":"f1551"},"md-mouse_move_vertical":{"char":"󱕒","code":"f1552"},"md-mouse_off":{"char":"󰍾","code":"f037e"},"md-mouse_variant":{"char":"󰍿","code":"f037f"},"md-mouse_variant_off":{"char":"󰎀","code":"f0380"},"md-move_resize":{"char":"󰙕","code":"f0655"},"md-move_resize_variant":{"char":"󰙖","code":"f0656"},"md-movie":{"char":"󰎁","code":"f0381"},"md-movie_check":{"char":"󱛳","code":"f16f3"},"md-movie_check_outline":{"char":"󱛴","code":"f16f4"},"md-movie_cog":{"char":"󱛵","code":"f16f5"},"md-movie_cog_outline":{"char":"󱛶","code":"f16f6"},"md-movie_edit":{"char":"󱄢","code":"f1122"},"md-movie_edit_outline":{"char":"󱄣","code":"f1123"},"md-movie_filter":{"char":"󱄤","code":"f1124"},"md-movie_filter_outline":{"char":"󱄥","code":"f1125"},"md-movie_minus":{"char":"󱛷","code":"f16f7"},"md-movie_minus_outline":{"char":"󱛸","code":"f16f8"},"md-movie_off":{"char":"󱛹","code":"f16f9"},"md-movie_off_outline":{"char":"󱛺","code":"f16fa"},"md-movie_open":{"char":"󰿎","code":"f0fce"},"md-movie_open_check":{"char":"󱛻","code":"f16fb"},"md-movie_open_check_outline":{"char":"󱛼","code":"f16fc"},"md-movie_open_cog":{"char":"󱛽","code":"f16fd"},"md-movie_open_cog_outline":{"char":"󱛾","code":"f16fe"},"md-movie_open_edit":{"char":"󱛿","code":"f16ff"},"md-movie_open_edit_outline":{"char":"󱜀","code":"f1700"},"md-movie_open_minus":{"char":"󱜁","code":"f1701"},"md-movie_open_minus_outline":{"char":"󱜂","code":"f1702"},"md-movie_open_off":{"char":"󱜃","code":"f1703"},"md-movie_open_off_outline":{"char":"󱜄","code":"f1704"},"md-movie_open_outline":{"char":"󰿏","code":"f0fcf"},"md-movie_open_play":{"char":"󱜅","code":"f1705"},"md-movie_open_play_outline":{"char":"󱜆","code":"f1706"},"md-movie_open_plus":{"char":"󱜇","code":"f1707"},"md-movie_open_plus_outline":{"char":"󱜈","code":"f1708"},"md-movie_open_remove":{"char":"󱜉","code":"f1709"},"md-movie_open_remove_outline":{"char":"󱜊","code":"f170a"},"md-movie_open_settings":{"char":"󱜋","code":"f170b"},"md-movie_open_settings_outline":{"char":"󱜌","code":"f170c"},"md-movie_open_star":{"char":"󱜍","code":"f170d"},"md-movie_open_star_outline":{"char":"󱜎","code":"f170e"},"md-movie_outline":{"char":"󰷝","code":"f0ddd"},"md-movie_play":{"char":"󱜏","code":"f170f"},"md-movie_play_outline":{"char":"󱜐","code":"f1710"},"md-movie_plus":{"char":"󱜑","code":"f1711"},"md-movie_plus_outline":{"char":"󱜒","code":"f1712"},"md-movie_remove":{"char":"󱜓","code":"f1713"},"md-movie_remove_outline":{"char":"󱜔","code":"f1714"},"md-movie_roll":{"char":"󰟞","code":"f07de"},"md-movie_search":{"char":"󱇒","code":"f11d2"},"md-movie_search_outline":{"char":"󱇓","code":"f11d3"},"md-movie_settings":{"char":"󱜕","code":"f1715"},"md-movie_settings_outline":{"char":"󱜖","code":"f1716"},"md-movie_star":{"char":"󱜗","code":"f1717"},"md-movie_star_outline":{"char":"󱜘","code":"f1718"},"md-mower":{"char":"󱙯","code":"f166f"},"md-mower_bag":{"char":"󱙰","code":"f1670"},"md-muffin":{"char":"󰦌","code":"f098c"},"md-multicast":{"char":"󱢓","code":"f1893"},"md-multiplication":{"char":"󰎂","code":"f0382"},"md-multiplication_box":{"char":"󰎃","code":"f0383"},"md-mushroom":{"char":"󰟟","code":"f07df"},"md-mushroom_off":{"char":"󱏺","code":"f13fa"},"md-mushroom_off_outline":{"char":"󱏻","code":"f13fb"},"md-mushroom_outline":{"char":"󰟠","code":"f07e0"},"md-music":{"char":"󰝚","code":"f075a"},"md-music_accidental_double_flat":{"char":"󰽩","code":"f0f69"},"md-music_accidental_double_sharp":{"char":"󰽪","code":"f0f6a"},"md-music_accidental_flat":{"char":"󰽫","code":"f0f6b"},"md-music_accidental_natural":{"char":"󰽬","code":"f0f6c"},"md-music_accidental_sharp":{"char":"󰽭","code":"f0f6d"},"md-music_box":{"char":"󰎄","code":"f0384"},"md-music_box_multiple":{"char":"󰌳","code":"f0333"},"md-music_box_multiple_outline":{"char":"󰼄","code":"f0f04"},"md-music_box_outline":{"char":"󰎅","code":"f0385"},"md-music_circle":{"char":"󰎆","code":"f0386"},"md-music_circle_outline":{"char":"󰫔","code":"f0ad4"},"md-music_clef_alto":{"char":"󰽮","code":"f0f6e"},"md-music_clef_bass":{"char":"󰽯","code":"f0f6f"},"md-music_clef_treble":{"char":"󰽰","code":"f0f70"},"md-music_note":{"char":"󰎈","code":"f0388"},"md-music_note_bluetooth":{"char":"󰗾","code":"f05fe"},"md-music_note_bluetooth_off":{"char":"󰗿","code":"f05ff"},"md-music_note_eighth_dotted":{"char":"󰽱","code":"f0f71"},"md-music_note_half":{"char":"󰎉","code":"f0389"},"md-music_note_half_dotted":{"char":"󰽲","code":"f0f72"},"md-music_note_off":{"char":"󰎊","code":"f038a"},"md-music_note_off_outline":{"char":"󰽳","code":"f0f73"},"md-music_note_outline":{"char":"󰽴","code":"f0f74"},"md-music_note_plus":{"char":"󰷞","code":"f0dde"},"md-music_note_quarter":{"char":"󰎋","code":"f038b"},"md-music_note_quarter_dotted":{"char":"󰽵","code":"f0f75"},"md-music_note_sixteenth":{"char":"󰎌","code":"f038c"},"md-music_note_sixteenth_dotted":{"char":"󰽶","code":"f0f76"},"md-music_note_whole":{"char":"󰎍","code":"f038d"},"md-music_note_whole_dotted":{"char":"󰽷","code":"f0f77"},"md-music_off":{"char":"󰝛","code":"f075b"},"md-music_rest_eighth":{"char":"󰽸","code":"f0f78"},"md-music_rest_half":{"char":"󰽹","code":"f0f79"},"md-music_rest_quarter":{"char":"󰽺","code":"f0f7a"},"md-music_rest_sixteenth":{"char":"󰽻","code":"f0f7b"},"md-music_rest_whole":{"char":"󰽼","code":"f0f7c"},"md-mustache":{"char":"󱗞","code":"f15de"},"md-nail":{"char":"󰷟","code":"f0ddf"},"md-nas":{"char":"󰣳","code":"f08f3"},"md-nativescript":{"char":"󰢀","code":"f0880"},"md-nature":{"char":"󰎎","code":"f038e"},"md-nature_people":{"char":"󰎏","code":"f038f"},"md-navigation":{"char":"󰎐","code":"f0390"},"md-navigation_outline":{"char":"󱘇","code":"f1607"},"md-navigation_variant_outline":{"char":"󱣱","code":"f18f1"},"md-near_me":{"char":"󱣰","code":"f18f0"},"md-necklace":{"char":"󰼋","code":"f0f0b"},"md-needle":{"char":"󰎑","code":"f0391"},"md-needle_off":{"char":"󱧒","code":"f19d2"},"md-netflix":{"char":"󰝆","code":"f0746"},"md-network":{"char":"󰛳","code":"f06f3"},"md-network_off":{"char":"󰲛","code":"f0c9b"},"md-network_off_outline":{"char":"󰲜","code":"f0c9c"},"md-network_outline":{"char":"󰲝","code":"f0c9d"},"md-network_pos":{"char":"󱫋","code":"f1acb"},"md-network_strength_1":{"char":"󰣴","code":"f08f4"},"md-network_strength_1_alert":{"char":"󰣵","code":"f08f5"},"md-network_strength_2":{"char":"󰣶","code":"f08f6"},"md-network_strength_2_alert":{"char":"󰣷","code":"f08f7"},"md-network_strength_3":{"char":"󰣸","code":"f08f8"},"md-network_strength_3_alert":{"char":"󰣹","code":"f08f9"},"md-network_strength_4":{"char":"󰣺","code":"f08fa"},"md-network_strength_4_alert":{"char":"󰣻","code":"f08fb"},"md-network_strength_4_cog":{"char":"󱤚","code":"f191a"},"md-network_strength_off":{"char":"󰣼","code":"f08fc"},"md-network_strength_off_outline":{"char":"󰣽","code":"f08fd"},"md-network_strength_outline":{"char":"󰣾","code":"f08fe"},"md-new_box":{"char":"󰎔","code":"f0394"},"md-newspaper":{"char":"󰎕","code":"f0395"},"md-newspaper_check":{"char":"󱥃","code":"f1943"},"md-newspaper_minus":{"char":"󰼌","code":"f0f0c"},"md-newspaper_plus":{"char":"󰼍","code":"f0f0d"},"md-newspaper_remove":{"char":"󱥄","code":"f1944"},"md-newspaper_variant":{"char":"󱀁","code":"f1001"},"md-newspaper_variant_multiple":{"char":"󱀂","code":"f1002"},"md-newspaper_variant_multiple_outline":{"char":"󱀃","code":"f1003"},"md-newspaper_variant_outline":{"char":"󱀄","code":"f1004"},"md-nfc":{"char":"󰎖","code":"f0396"},"md-nfc_search_variant":{"char":"󰹓","code":"f0e53"},"md-nfc_tap":{"char":"󰎗","code":"f0397"},"md-nfc_variant":{"char":"󰎘","code":"f0398"},"md-nfc_variant_off":{"char":"󰹔","code":"f0e54"},"md-ninja":{"char":"󰝴","code":"f0774"},"md-nintendo_game_boy":{"char":"󱎓","code":"f1393"},"md-nintendo_switch":{"char":"󰟡","code":"f07e1"},"md-nintendo_wii":{"char":"󰖫","code":"f05ab"},"md-nintendo_wiiu":{"char":"󰜭","code":"f072d"},"md-nix":{"char":"󱄅","code":"f1105"},"md-nodejs":{"char":"󰎙","code":"f0399"},"md-noodles":{"char":"󱅾","code":"f117e"},"md-not_equal":{"char":"󰦍","code":"f098d"},"md-not_equal_variant":{"char":"󰦎","code":"f098e"},"md-note":{"char":"󰎚","code":"f039a"},"md-note_alert":{"char":"󱝽","code":"f177d"},"md-note_alert_outline":{"char":"󱝾","code":"f177e"},"md-note_check":{"char":"󱝿","code":"f177f"},"md-note_check_outline":{"char":"󱞀","code":"f1780"},"md-note_edit":{"char":"󱞁","code":"f1781"},"md-note_edit_outline":{"char":"󱞂","code":"f1782"},"md-note_minus":{"char":"󱙏","code":"f164f"},"md-note_minus_outline":{"char":"󱙐","code":"f1650"},"md-note_multiple":{"char":"󰚸","code":"f06b8"},"md-note_multiple_outline":{"char":"󰚹","code":"f06b9"},"md-note_off":{"char":"󱞃","code":"f1783"},"md-note_off_outline":{"char":"󱞄","code":"f1784"},"md-note_outline":{"char":"󰎛","code":"f039b"},"md-note_plus":{"char":"󰎜","code":"f039c"},"md-note_plus_outline":{"char":"󰎝","code":"f039d"},"md-note_remove":{"char":"󱙑","code":"f1651"},"md-note_remove_outline":{"char":"󱙒","code":"f1652"},"md-note_search":{"char":"󱙓","code":"f1653"},"md-note_search_outline":{"char":"󱙔","code":"f1654"},"md-note_text":{"char":"󰎞","code":"f039e"},"md-note_text_outline":{"char":"󱇗","code":"f11d7"},"md-notebook":{"char":"󰠮","code":"f082e"},"md-notebook_check":{"char":"󱓵","code":"f14f5"},"md-notebook_check_outline":{"char":"󱓶","code":"f14f6"},"md-notebook_edit":{"char":"󱓧","code":"f14e7"},"md-notebook_edit_outline":{"char":"󱓩","code":"f14e9"},"md-notebook_heart":{"char":"󱨋","code":"f1a0b"},"md-notebook_heart_outline":{"char":"󱨌","code":"f1a0c"},"md-notebook_minus":{"char":"󱘐","code":"f1610"},"md-notebook_minus_outline":{"char":"󱘑","code":"f1611"},"md-notebook_multiple":{"char":"󰹕","code":"f0e55"},"md-notebook_outline":{"char":"󰺿","code":"f0ebf"},"md-notebook_plus":{"char":"󱘒","code":"f1612"},"md-notebook_plus_outline":{"char":"󱘓","code":"f1613"},"md-notebook_remove":{"char":"󱘔","code":"f1614"},"md-notebook_remove_outline":{"char":"󱘕","code":"f1615"},"md-notification_clear_all":{"char":"󰎟","code":"f039f"},"md-npm":{"char":"󰛷","code":"f06f7"},"md-nuke":{"char":"󰚤","code":"f06a4"},"md-null":{"char":"󰟢","code":"f07e2"},"md-numeric":{"char":"󰎠","code":"f03a0"},"md-numeric_0_box":{"char":"󰎡","code":"f03a1"},"md-numeric_0_box_multiple":{"char":"󰼎","code":"f0f0e"},"md-numeric_0_box_multiple_outline":{"char":"󰎢","code":"f03a2"},"md-numeric_0_box_outline":{"char":"󰎣","code":"f03a3"},"md-numeric_1":{"char":"󰬺","code":"f0b3a"},"md-numeric_10":{"char":"󰿩","code":"f0fe9"},"md-numeric_10_box":{"char":"󰽽","code":"f0f7d"},"md-numeric_10_box_multiple":{"char":"󰿪","code":"f0fea"},"md-numeric_10_box_multiple_outline":{"char":"󰿫","code":"f0feb"},"md-numeric_10_box_outline":{"char":"󰽾","code":"f0f7e"},"md-numeric_10_circle":{"char":"󰿬","code":"f0fec"},"md-numeric_10_circle_outline":{"char":"󰿭","code":"f0fed"},"md-numeric_1_box":{"char":"󰎤","code":"f03a4"},"md-numeric_1_box_multiple":{"char":"󰼏","code":"f0f0f"},"md-numeric_1_box_multiple_outline":{"char":"󰎥","code":"f03a5"},"md-numeric_1_box_outline":{"char":"󰎦","code":"f03a6"},"md-numeric_1_circle":{"char":"󰲠","code":"f0ca0"},"md-numeric_1_circle_outline":{"char":"󰲡","code":"f0ca1"},"md-numeric_2":{"char":"󰬻","code":"f0b3b"},"md-numeric_2_box":{"char":"󰎧","code":"f03a7"},"md-numeric_2_box_multiple":{"char":"󰼐","code":"f0f10"},"md-numeric_2_box_multiple_outline":{"char":"󰎨","code":"f03a8"},"md-numeric_2_box_outline":{"char":"󰎩","code":"f03a9"},"md-numeric_2_circle":{"char":"󰲢","code":"f0ca2"},"md-numeric_2_circle_outline":{"char":"󰲣","code":"f0ca3"},"md-numeric_3":{"char":"󰬼","code":"f0b3c"},"md-numeric_3_box":{"char":"󰎪","code":"f03aa"},"md-numeric_3_box_multiple":{"char":"󰼑","code":"f0f11"},"md-numeric_3_box_multiple_outline":{"char":"󰎫","code":"f03ab"},"md-numeric_3_box_outline":{"char":"󰎬","code":"f03ac"},"md-numeric_3_circle":{"char":"󰲤","code":"f0ca4"},"md-numeric_3_circle_outline":{"char":"󰲥","code":"f0ca5"},"md-numeric_4":{"char":"󰬽","code":"f0b3d"},"md-numeric_4_box":{"char":"󰎭","code":"f03ad"},"md-numeric_4_box_multiple":{"char":"󰼒","code":"f0f12"},"md-numeric_4_box_multiple_outline":{"char":"󰎲","code":"f03b2"},"md-numeric_4_box_outline":{"char":"󰎮","code":"f03ae"},"md-numeric_4_circle":{"char":"󰲦","code":"f0ca6"},"md-numeric_4_circle_outline":{"char":"󰲧","code":"f0ca7"},"md-numeric_5":{"char":"󰬾","code":"f0b3e"},"md-numeric_5_box":{"char":"󰎱","code":"f03b1"},"md-numeric_5_box_multiple":{"char":"󰼓","code":"f0f13"},"md-numeric_5_box_multiple_outline":{"char":"󰎯","code":"f03af"},"md-numeric_5_box_outline":{"char":"󰎰","code":"f03b0"},"md-numeric_5_circle":{"char":"󰲨","code":"f0ca8"},"md-numeric_5_circle_outline":{"char":"󰲩","code":"f0ca9"},"md-numeric_6":{"char":"󰬿","code":"f0b3f"},"md-numeric_6_box":{"char":"󰎳","code":"f03b3"},"md-numeric_6_box_multiple":{"char":"󰼔","code":"f0f14"},"md-numeric_6_box_multiple_outline":{"char":"󰎴","code":"f03b4"},"md-numeric_6_box_outline":{"char":"󰎵","code":"f03b5"},"md-numeric_6_circle":{"char":"󰲪","code":"f0caa"},"md-numeric_6_circle_outline":{"char":"󰲫","code":"f0cab"},"md-numeric_7":{"char":"󰭀","code":"f0b40"},"md-numeric_7_box":{"char":"󰎶","code":"f03b6"},"md-numeric_7_box_multiple":{"char":"󰼕","code":"f0f15"},"md-numeric_7_box_multiple_outline":{"char":"󰎷","code":"f03b7"},"md-numeric_7_box_outline":{"char":"󰎸","code":"f03b8"},"md-numeric_7_circle":{"char":"󰲬","code":"f0cac"},"md-numeric_7_circle_outline":{"char":"󰲭","code":"f0cad"},"md-numeric_8":{"char":"󰭁","code":"f0b41"},"md-numeric_8_box":{"char":"󰎹","code":"f03b9"},"md-numeric_8_box_multiple":{"char":"󰼖","code":"f0f16"},"md-numeric_8_box_multiple_outline":{"char":"󰎺","code":"f03ba"},"md-numeric_8_box_outline":{"char":"󰎻","code":"f03bb"},"md-numeric_8_circle":{"char":"󰲮","code":"f0cae"},"md-numeric_8_circle_outline":{"char":"󰲯","code":"f0caf"},"md-numeric_9":{"char":"󰭂","code":"f0b42"},"md-numeric_9_box":{"char":"󰎼","code":"f03bc"},"md-numeric_9_box_multiple":{"char":"󰼗","code":"f0f17"},"md-numeric_9_box_multiple_outline":{"char":"󰎽","code":"f03bd"},"md-numeric_9_box_outline":{"char":"󰎾","code":"f03be"},"md-numeric_9_circle":{"char":"󰲰","code":"f0cb0"},"md-numeric_9_circle_outline":{"char":"󰲱","code":"f0cb1"},"md-numeric_9_plus":{"char":"󰿮","code":"f0fee"},"md-numeric_9_plus_box":{"char":"󰎿","code":"f03bf"},"md-numeric_9_plus_box_multiple":{"char":"󰼘","code":"f0f18"},"md-numeric_9_plus_box_multiple_outline":{"char":"󰏀","code":"f03c0"},"md-numeric_9_plus_box_outline":{"char":"󰏁","code":"f03c1"},"md-numeric_9_plus_circle":{"char":"󰲲","code":"f0cb2"},"md-numeric_9_plus_circle_outline":{"char":"󰲳","code":"f0cb3"},"md-numeric_negative_1":{"char":"󱁒","code":"f1052"},"md-numeric_off":{"char":"󱧓","code":"f19d3"},"md-numeric_positive_1":{"char":"󱗋","code":"f15cb"},"md-nut":{"char":"󰛸","code":"f06f8"},"md-nutrition":{"char":"󰏂","code":"f03c2"},"md-nuxt":{"char":"󱄆","code":"f1106"},"md-oar":{"char":"󰙼","code":"f067c"},"md-ocarina":{"char":"󰷠","code":"f0de0"},"md-oci":{"char":"󱋩","code":"f12e9"},"md-ocr":{"char":"󱄺","code":"f113a"},"md-octagon":{"char":"󰏃","code":"f03c3"},"md-octagon_outline":{"char":"󰏄","code":"f03c4"},"md-octagram":{"char":"󰛹","code":"f06f9"},"md-octagram_outline":{"char":"󰝵","code":"f0775"},"md-octahedron":{"char":"󱥐","code":"f1950"},"md-octahedron_off":{"char":"󱥑","code":"f1951"},"md-odnoklassniki":{"char":"󰏅","code":"f03c5"},"md-offer":{"char":"󱈛","code":"f121b"},"md-office_building":{"char":"󰦑","code":"f0991"},"md-office_building_cog":{"char":"󱥉","code":"f1949"},"md-office_building_cog_outline":{"char":"󱥊","code":"f194a"},"md-office_building_marker":{"char":"󱔠","code":"f1520"},"md-office_building_marker_outline":{"char":"󱔡","code":"f1521"},"md-office_building_outline":{"char":"󱔟","code":"f151f"},"md-oil":{"char":"󰏇","code":"f03c7"},"md-oil_lamp":{"char":"󰼙","code":"f0f19"},"md-oil_level":{"char":"󱁓","code":"f1053"},"md-oil_temperature":{"char":"󰿸","code":"f0ff8"},"md-om":{"char":"󰥳","code":"f0973"},"md-omega":{"char":"󰏉","code":"f03c9"},"md-one_up":{"char":"󰮭","code":"f0bad"},"md-onepassword":{"char":"󰢁","code":"f0881"},"md-opacity":{"char":"󰗌","code":"f05cc"},"md-open_in_app":{"char":"󰏋","code":"f03cb"},"md-open_in_new":{"char":"󰏌","code":"f03cc"},"md-open_source_initiative":{"char":"󰮮","code":"f0bae"},"md-openid":{"char":"󰏍","code":"f03cd"},"md-opera":{"char":"󰏎","code":"f03ce"},"md-orbit":{"char":"󰀘","code":"f0018"},"md-orbit_variant":{"char":"󱗛","code":"f15db"},"md-order_alphabetical_ascending":{"char":"󰈍","code":"f020d"},"md-order_alphabetical_descending":{"char":"󰴇","code":"f0d07"},"md-order_bool_ascending":{"char":"󰊾","code":"f02be"},"md-order_bool_ascending_variant":{"char":"󰦏","code":"f098f"},"md-order_bool_descending":{"char":"󱎄","code":"f1384"},"md-order_bool_descending_variant":{"char":"󰦐","code":"f0990"},"md-order_numeric_ascending":{"char":"󰕅","code":"f0545"},"md-order_numeric_descending":{"char":"󰕆","code":"f0546"},"md-origin":{"char":"󰭃","code":"f0b43"},"md-ornament":{"char":"󰏏","code":"f03cf"},"md-ornament_variant":{"char":"󰏐","code":"f03d0"},"md-outdoor_lamp":{"char":"󱁔","code":"f1054"},"md-overscan":{"char":"󱀅","code":"f1005"},"md-owl":{"char":"󰏒","code":"f03d2"},"md-pac_man":{"char":"󰮯","code":"f0baf"},"md-package":{"char":"󰏓","code":"f03d3"},"md-package_down":{"char":"󰏔","code":"f03d4"},"md-package_up":{"char":"󰏕","code":"f03d5"},"md-package_variant":{"char":"󰏖","code":"f03d6"},"md-package_variant_closed":{"char":"󰏗","code":"f03d7"},"md-package_variant_closed_minus":{"char":"󱧔","code":"f19d4"},"md-package_variant_closed_plus":{"char":"󱧕","code":"f19d5"},"md-package_variant_closed_remove":{"char":"󱧖","code":"f19d6"},"md-package_variant_minus":{"char":"󱧗","code":"f19d7"},"md-package_variant_plus":{"char":"󱧘","code":"f19d8"},"md-package_variant_remove":{"char":"󱧙","code":"f19d9"},"md-page_first":{"char":"󰘀","code":"f0600"},"md-page_last":{"char":"󰘁","code":"f0601"},"md-page_layout_body":{"char":"󰛺","code":"f06fa"},"md-page_layout_footer":{"char":"󰛻","code":"f06fb"},"md-page_layout_header":{"char":"󰛼","code":"f06fc"},"md-page_layout_header_footer":{"char":"󰽿","code":"f0f7f"},"md-page_layout_sidebar_left":{"char":"󰛽","code":"f06fd"},"md-page_layout_sidebar_right":{"char":"󰛾","code":"f06fe"},"md-page_next":{"char":"󰮰","code":"f0bb0"},"md-page_next_outline":{"char":"󰮱","code":"f0bb1"},"md-page_previous":{"char":"󰮲","code":"f0bb2"},"md-page_previous_outline":{"char":"󰮳","code":"f0bb3"},"md-pail":{"char":"󱐗","code":"f1417"},"md-pail_minus":{"char":"󱐷","code":"f1437"},"md-pail_minus_outline":{"char":"󱐼","code":"f143c"},"md-pail_off":{"char":"󱐹","code":"f1439"},"md-pail_off_outline":{"char":"󱐾","code":"f143e"},"md-pail_outline":{"char":"󱐺","code":"f143a"},"md-pail_plus":{"char":"󱐶","code":"f1436"},"md-pail_plus_outline":{"char":"󱐻","code":"f143b"},"md-pail_remove":{"char":"󱐸","code":"f1438"},"md-pail_remove_outline":{"char":"󱐽","code":"f143d"},"md-palette":{"char":"󰏘","code":"f03d8"},"md-palette_advanced":{"char":"󰏙","code":"f03d9"},"md-palette_outline":{"char":"󰸌","code":"f0e0c"},"md-palette_swatch":{"char":"󰢵","code":"f08b5"},"md-palette_swatch_outline":{"char":"󱍜","code":"f135c"},"md-palette_swatch_variant":{"char":"󱥚","code":"f195a"},"md-palm_tree":{"char":"󱁕","code":"f1055"},"md-pan":{"char":"󰮴","code":"f0bb4"},"md-pan_bottom_left":{"char":"󰮵","code":"f0bb5"},"md-pan_bottom_right":{"char":"󰮶","code":"f0bb6"},"md-pan_down":{"char":"󰮷","code":"f0bb7"},"md-pan_horizontal":{"char":"󰮸","code":"f0bb8"},"md-pan_left":{"char":"󰮹","code":"f0bb9"},"md-pan_right":{"char":"󰮺","code":"f0bba"},"md-pan_top_left":{"char":"󰮻","code":"f0bbb"},"md-pan_top_right":{"char":"󰮼","code":"f0bbc"},"md-pan_up":{"char":"󰮽","code":"f0bbd"},"md-pan_vertical":{"char":"󰮾","code":"f0bbe"},"md-panda":{"char":"󰏚","code":"f03da"},"md-pandora":{"char":"󰏛","code":"f03db"},"md-panorama":{"char":"󰏜","code":"f03dc"},"md-panorama_fisheye":{"char":"󰏝","code":"f03dd"},"md-panorama_horizontal":{"char":"󱤨","code":"f1928"},"md-panorama_horizontal_outline":{"char":"󰏞","code":"f03de"},"md-panorama_outline":{"char":"󱦌","code":"f198c"},"md-panorama_sphere":{"char":"󱦍","code":"f198d"},"md-panorama_sphere_outline":{"char":"󱦎","code":"f198e"},"md-panorama_variant":{"char":"󱦏","code":"f198f"},"md-panorama_variant_outline":{"char":"󱦐","code":"f1990"},"md-panorama_vertical":{"char":"󱤩","code":"f1929"},"md-panorama_vertical_outline":{"char":"󰏟","code":"f03df"},"md-panorama_wide_angle":{"char":"󱥟","code":"f195f"},"md-panorama_wide_angle_outline":{"char":"󰏠","code":"f03e0"},"md-paper_cut_vertical":{"char":"󰏡","code":"f03e1"},"md-paper_roll":{"char":"󱅗","code":"f1157"},"md-paper_roll_outline":{"char":"󱅘","code":"f1158"},"md-paperclip":{"char":"󰏢","code":"f03e2"},"md-paperclip_check":{"char":"󱫆","code":"f1ac6"},"md-paperclip_lock":{"char":"󱧚","code":"f19da"},"md-paperclip_minus":{"char":"󱫇","code":"f1ac7"},"md-paperclip_off":{"char":"󱫈","code":"f1ac8"},"md-paperclip_plus":{"char":"󱫉","code":"f1ac9"},"md-paperclip_remove":{"char":"󱫊","code":"f1aca"},"md-parachute":{"char":"󰲴","code":"f0cb4"},"md-parachute_outline":{"char":"󰲵","code":"f0cb5"},"md-paragliding":{"char":"󱝅","code":"f1745"},"md-parking":{"char":"󰏣","code":"f03e3"},"md-party_popper":{"char":"󱁖","code":"f1056"},"md-passport":{"char":"󰟣","code":"f07e3"},"md-passport_biometric":{"char":"󰷡","code":"f0de1"},"md-pasta":{"char":"󱅠","code":"f1160"},"md-patio_heater":{"char":"󰾀","code":"f0f80"},"md-patreon":{"char":"󰢂","code":"f0882"},"md-pause":{"char":"󰏤","code":"f03e4"},"md-pause_circle":{"char":"󰏥","code":"f03e5"},"md-pause_circle_outline":{"char":"󰏦","code":"f03e6"},"md-pause_octagon":{"char":"󰏧","code":"f03e7"},"md-pause_octagon_outline":{"char":"󰏨","code":"f03e8"},"md-paw":{"char":"󰏩","code":"f03e9"},"md-paw_off":{"char":"󰙗","code":"f0657"},"md-paw_off_outline":{"char":"󱙶","code":"f1676"},"md-paw_outline":{"char":"󱙵","code":"f1675"},"md-peace":{"char":"󰢄","code":"f0884"},"md-peanut":{"char":"󰿼","code":"f0ffc"},"md-peanut_off":{"char":"󰿽","code":"f0ffd"},"md-peanut_off_outline":{"char":"󰿿","code":"f0fff"},"md-peanut_outline":{"char":"󰿾","code":"f0ffe"},"md-pen":{"char":"󰏪","code":"f03ea"},"md-pen_lock":{"char":"󰷢","code":"f0de2"},"md-pen_minus":{"char":"󰷣","code":"f0de3"},"md-pen_off":{"char":"󰷤","code":"f0de4"},"md-pen_plus":{"char":"󰷥","code":"f0de5"},"md-pen_remove":{"char":"󰷦","code":"f0de6"},"md-pencil":{"char":"󰏫","code":"f03eb"},"md-pencil_box":{"char":"󰏬","code":"f03ec"},"md-pencil_box_multiple":{"char":"󱅄","code":"f1144"},"md-pencil_box_multiple_outline":{"char":"󱅅","code":"f1145"},"md-pencil_box_outline":{"char":"󰏭","code":"f03ed"},"md-pencil_circle":{"char":"󰛿","code":"f06ff"},"md-pencil_circle_outline":{"char":"󰝶","code":"f0776"},"md-pencil_lock":{"char":"󰏮","code":"f03ee"},"md-pencil_lock_outline":{"char":"󰷧","code":"f0de7"},"md-pencil_minus":{"char":"󰷨","code":"f0de8"},"md-pencil_minus_outline":{"char":"󰷩","code":"f0de9"},"md-pencil_off":{"char":"󰏯","code":"f03ef"},"md-pencil_off_outline":{"char":"󰷪","code":"f0dea"},"md-pencil_outline":{"char":"󰲶","code":"f0cb6"},"md-pencil_plus":{"char":"󰷫","code":"f0deb"},"md-pencil_plus_outline":{"char":"󰷬","code":"f0dec"},"md-pencil_remove":{"char":"󰷭","code":"f0ded"},"md-pencil_remove_outline":{"char":"󰷮","code":"f0dee"},"md-pencil_ruler":{"char":"󱍓","code":"f1353"},"md-penguin":{"char":"󰻀","code":"f0ec0"},"md-pentagon":{"char":"󰜁","code":"f0701"},"md-pentagon_outline":{"char":"󰜀","code":"f0700"},"md-pentagram":{"char":"󱙧","code":"f1667"},"md-percent":{"char":"󰏰","code":"f03f0"},"md-percent_box":{"char":"󱨂","code":"f1a02"},"md-percent_box_outline":{"char":"󱨃","code":"f1a03"},"md-percent_circle":{"char":"󱨄","code":"f1a04"},"md-percent_circle_outline":{"char":"󱨅","code":"f1a05"},"md-percent_outline":{"char":"󱉸","code":"f1278"},"md-periodic_table":{"char":"󰢶","code":"f08b6"},"md-perspective_less":{"char":"󰴣","code":"f0d23"},"md-perspective_more":{"char":"󰴤","code":"f0d24"},"md-ph":{"char":"󱟅","code":"f17c5"},"md-phone":{"char":"󰏲","code":"f03f2"},"md-phone_alert":{"char":"󰼚","code":"f0f1a"},"md-phone_alert_outline":{"char":"󱆎","code":"f118e"},"md-phone_bluetooth":{"char":"󰏳","code":"f03f3"},"md-phone_bluetooth_outline":{"char":"󱆏","code":"f118f"},"md-phone_cancel":{"char":"󱂼","code":"f10bc"},"md-phone_cancel_outline":{"char":"󱆐","code":"f1190"},"md-phone_check":{"char":"󱆩","code":"f11a9"},"md-phone_check_outline":{"char":"󱆪","code":"f11aa"},"md-phone_classic":{"char":"󰘂","code":"f0602"},"md-phone_classic_off":{"char":"󱉹","code":"f1279"},"md-phone_clock":{"char":"󱧛","code":"f19db"},"md-phone_dial":{"char":"󱕙","code":"f1559"},"md-phone_dial_outline":{"char":"󱕚","code":"f155a"},"md-phone_forward":{"char":"󰏴","code":"f03f4"},"md-phone_forward_outline":{"char":"󱆑","code":"f1191"},"md-phone_hangup":{"char":"󰏵","code":"f03f5"},"md-phone_hangup_outline":{"char":"󱆒","code":"f1192"},"md-phone_in_talk":{"char":"󰏶","code":"f03f6"},"md-phone_in_talk_outline":{"char":"󱆂","code":"f1182"},"md-phone_incoming":{"char":"󰏷","code":"f03f7"},"md-phone_incoming_outline":{"char":"󱆓","code":"f1193"},"md-phone_lock":{"char":"󰏸","code":"f03f8"},"md-phone_lock_outline":{"char":"󱆔","code":"f1194"},"md-phone_log":{"char":"󰏹","code":"f03f9"},"md-phone_log_outline":{"char":"󱆕","code":"f1195"},"md-phone_message":{"char":"󱆖","code":"f1196"},"md-phone_message_outline":{"char":"󱆗","code":"f1197"},"md-phone_minus":{"char":"󰙘","code":"f0658"},"md-phone_minus_outline":{"char":"󱆘","code":"f1198"},"md-phone_missed":{"char":"󰏺","code":"f03fa"},"md-phone_missed_outline":{"char":"󱆥","code":"f11a5"},"md-phone_off":{"char":"󰷯","code":"f0def"},"md-phone_off_outline":{"char":"󱆦","code":"f11a6"},"md-phone_outgoing":{"char":"󰏻","code":"f03fb"},"md-phone_outgoing_outline":{"char":"󱆙","code":"f1199"},"md-phone_outline":{"char":"󰷰","code":"f0df0"},"md-phone_paused":{"char":"󰏼","code":"f03fc"},"md-phone_paused_outline":{"char":"󱆚","code":"f119a"},"md-phone_plus":{"char":"󰙙","code":"f0659"},"md-phone_plus_outline":{"char":"󱆛","code":"f119b"},"md-phone_refresh":{"char":"󱦓","code":"f1993"},"md-phone_refresh_outline":{"char":"󱦔","code":"f1994"},"md-phone_remove":{"char":"󱔯","code":"f152f"},"md-phone_remove_outline":{"char":"󱔰","code":"f1530"},"md-phone_return":{"char":"󰠯","code":"f082f"},"md-phone_return_outline":{"char":"󱆜","code":"f119c"},"md-phone_ring":{"char":"󱆫","code":"f11ab"},"md-phone_ring_outline":{"char":"󱆬","code":"f11ac"},"md-phone_rotate_landscape":{"char":"󰢅","code":"f0885"},"md-phone_rotate_portrait":{"char":"󰢆","code":"f0886"},"md-phone_settings":{"char":"󰏽","code":"f03fd"},"md-phone_settings_outline":{"char":"󱆝","code":"f119d"},"md-phone_sync":{"char":"󱦕","code":"f1995"},"md-phone_sync_outline":{"char":"󱦖","code":"f1996"},"md-phone_voip":{"char":"󰏾","code":"f03fe"},"md-pi":{"char":"󰏿","code":"f03ff"},"md-pi_box":{"char":"󰐀","code":"f0400"},"md-pi_hole":{"char":"󰷱","code":"f0df1"},"md-piano":{"char":"󰙽","code":"f067d"},"md-piano_off":{"char":"󰚘","code":"f0698"},"md-pickaxe":{"char":"󰢷","code":"f08b7"},"md-picture_in_picture_bottom_right":{"char":"󰹗","code":"f0e57"},"md-picture_in_picture_bottom_right_outline":{"char":"󰹘","code":"f0e58"},"md-picture_in_picture_top_right":{"char":"󰹙","code":"f0e59"},"md-picture_in_picture_top_right_outline":{"char":"󰹚","code":"f0e5a"},"md-pier":{"char":"󰢇","code":"f0887"},"md-pier_crane":{"char":"󰢈","code":"f0888"},"md-pig":{"char":"󰐁","code":"f0401"},"md-pig_variant":{"char":"󱀆","code":"f1006"},"md-pig_variant_outline":{"char":"󱙸","code":"f1678"},"md-piggy_bank":{"char":"󱀇","code":"f1007"},"md-piggy_bank_outline":{"char":"󱙹","code":"f1679"},"md-pill":{"char":"󰐂","code":"f0402"},"md-pill_off":{"char":"󱩜","code":"f1a5c"},"md-pillar":{"char":"󰜂","code":"f0702"},"md-pin":{"char":"󰐃","code":"f0403"},"md-pin_off":{"char":"󰐄","code":"f0404"},"md-pin_off_outline":{"char":"󰤰","code":"f0930"},"md-pin_outline":{"char":"󰤱","code":"f0931"},"md-pine_tree":{"char":"󰐅","code":"f0405"},"md-pine_tree_box":{"char":"󰐆","code":"f0406"},"md-pine_tree_fire":{"char":"󱐚","code":"f141a"},"md-pinterest":{"char":"󰐇","code":"f0407"},"md-pinwheel":{"char":"󰫕","code":"f0ad5"},"md-pinwheel_outline":{"char":"󰫖","code":"f0ad6"},"md-pipe":{"char":"󰟥","code":"f07e5"},"md-pipe_disconnected":{"char":"󰟦","code":"f07e6"},"md-pipe_leak":{"char":"󰢉","code":"f0889"},"md-pipe_valve":{"char":"󱡍","code":"f184d"},"md-pipe_wrench":{"char":"󱍔","code":"f1354"},"md-pirate":{"char":"󰨈","code":"f0a08"},"md-pistol":{"char":"󰜃","code":"f0703"},"md-piston":{"char":"󰢊","code":"f088a"},"md-pitchfork":{"char":"󱕓","code":"f1553"},"md-pizza":{"char":"󰐉","code":"f0409"},"md-play":{"char":"󰐊","code":"f040a"},"md-play_box":{"char":"󱉺","code":"f127a"},"md-play_box_lock":{"char":"󱨖","code":"f1a16"},"md-play_box_lock_open":{"char":"󱨗","code":"f1a17"},"md-play_box_lock_open_outline":{"char":"󱨘","code":"f1a18"},"md-play_box_lock_outline":{"char":"󱨙","code":"f1a19"},"md-play_box_multiple":{"char":"󰴙","code":"f0d19"},"md-play_box_multiple_outline":{"char":"󱏦","code":"f13e6"},"md-play_box_outline":{"char":"󰐋","code":"f040b"},"md-play_circle":{"char":"󰐌","code":"f040c"},"md-play_circle_outline":{"char":"󰐍","code":"f040d"},"md-play_network":{"char":"󰢋","code":"f088b"},"md-play_network_outline":{"char":"󰲷","code":"f0cb7"},"md-play_outline":{"char":"󰼛","code":"f0f1b"},"md-play_pause":{"char":"󰐎","code":"f040e"},"md-play_protected_content":{"char":"󰐏","code":"f040f"},"md-play_speed":{"char":"󰣿","code":"f08ff"},"md-playlist_check":{"char":"󰗇","code":"f05c7"},"md-playlist_edit":{"char":"󰤀","code":"f0900"},"md-playlist_minus":{"char":"󰐐","code":"f0410"},"md-playlist_music":{"char":"󰲸","code":"f0cb8"},"md-playlist_music_outline":{"char":"󰲹","code":"f0cb9"},"md-playlist_play":{"char":"󰐑","code":"f0411"},"md-playlist_plus":{"char":"󰐒","code":"f0412"},"md-playlist_remove":{"char":"󰐓","code":"f0413"},"md-playlist_star":{"char":"󰷲","code":"f0df2"},"md-plex":{"char":"󰚺","code":"f06ba"},"md-pliers":{"char":"󱦤","code":"f19a4"},"md-plus":{"char":"󰐕","code":"f0415"},"md-plus_box":{"char":"󰐖","code":"f0416"},"md-plus_box_multiple":{"char":"󰌴","code":"f0334"},"md-plus_box_multiple_outline":{"char":"󱅃","code":"f1143"},"md-plus_box_outline":{"char":"󰜄","code":"f0704"},"md-plus_circle":{"char":"󰐗","code":"f0417"},"md-plus_circle_multiple":{"char":"󰍌","code":"f034c"},"md-plus_circle_multiple_outline":{"char":"󰐘","code":"f0418"},"md-plus_circle_outline":{"char":"󰐙","code":"f0419"},"md-plus_lock":{"char":"󱩝","code":"f1a5d"},"md-plus_lock_open":{"char":"󱩞","code":"f1a5e"},"md-plus_minus":{"char":"󰦒","code":"f0992"},"md-plus_minus_box":{"char":"󰦓","code":"f0993"},"md-plus_minus_variant":{"char":"󱓉","code":"f14c9"},"md-plus_network":{"char":"󰐚","code":"f041a"},"md-plus_network_outline":{"char":"󰲺","code":"f0cba"},"md-plus_outline":{"char":"󰜅","code":"f0705"},"md-plus_thick":{"char":"󱇬","code":"f11ec"},"md-podcast":{"char":"󰦔","code":"f0994"},"md-podium":{"char":"󰴥","code":"f0d25"},"md-podium_bronze":{"char":"󰴦","code":"f0d26"},"md-podium_gold":{"char":"󰴧","code":"f0d27"},"md-podium_silver":{"char":"󰴨","code":"f0d28"},"md-point_of_sale":{"char":"󰶒","code":"f0d92"},"md-pokeball":{"char":"󰐝","code":"f041d"},"md-pokemon_go":{"char":"󰨉","code":"f0a09"},"md-poker_chip":{"char":"󰠰","code":"f0830"},"md-polaroid":{"char":"󰐞","code":"f041e"},"md-police_badge":{"char":"󱅧","code":"f1167"},"md-police_badge_outline":{"char":"󱅨","code":"f1168"},"md-police_station":{"char":"󱠹","code":"f1839"},"md-poll":{"char":"󰐟","code":"f041f"},"md-polo":{"char":"󱓃","code":"f14c3"},"md-polymer":{"char":"󰐡","code":"f0421"},"md-pool":{"char":"󰘆","code":"f0606"},"md-pool_thermometer":{"char":"󱩟","code":"f1a5f"},"md-popcorn":{"char":"󰐢","code":"f0422"},"md-post":{"char":"󱀈","code":"f1008"},"md-post_lamp":{"char":"󱩠","code":"f1a60"},"md-post_outline":{"char":"󱀉","code":"f1009"},"md-postage_stamp":{"char":"󰲻","code":"f0cbb"},"md-pot":{"char":"󰋥","code":"f02e5"},"md-pot_mix":{"char":"󰙛","code":"f065b"},"md-pot_mix_outline":{"char":"󰙷","code":"f0677"},"md-pot_outline":{"char":"󰋿","code":"f02ff"},"md-pot_steam":{"char":"󰙚","code":"f065a"},"md-pot_steam_outline":{"char":"󰌦","code":"f0326"},"md-pound":{"char":"󰐣","code":"f0423"},"md-pound_box":{"char":"󰐤","code":"f0424"},"md-pound_box_outline":{"char":"󱅿","code":"f117f"},"md-power":{"char":"󰐥","code":"f0425"},"md-power_cycle":{"char":"󰤁","code":"f0901"},"md-power_off":{"char":"󰤂","code":"f0902"},"md-power_on":{"char":"󰤃","code":"f0903"},"md-power_plug":{"char":"󰚥","code":"f06a5"},"md-power_plug_off":{"char":"󰚦","code":"f06a6"},"md-power_plug_off_outline":{"char":"󱐤","code":"f1424"},"md-power_plug_outline":{"char":"󱐥","code":"f1425"},"md-power_settings":{"char":"󰐦","code":"f0426"},"md-power_sleep":{"char":"󰤄","code":"f0904"},"md-power_socket":{"char":"󰐧","code":"f0427"},"md-power_socket_au":{"char":"󰤅","code":"f0905"},"md-power_socket_ch":{"char":"󰾳","code":"f0fb3"},"md-power_socket_de":{"char":"󱄇","code":"f1107"},"md-power_socket_eu":{"char":"󰟧","code":"f07e7"},"md-power_socket_fr":{"char":"󱄈","code":"f1108"},"md-power_socket_it":{"char":"󱓿","code":"f14ff"},"md-power_socket_jp":{"char":"󱄉","code":"f1109"},"md-power_socket_uk":{"char":"󰟨","code":"f07e8"},"md-power_socket_us":{"char":"󰟩","code":"f07e9"},"md-power_standby":{"char":"󰤆","code":"f0906"},"md-powershell":{"char":"󰨊","code":"f0a0a"},"md-prescription":{"char":"󰜆","code":"f0706"},"md-presentation":{"char":"󰐨","code":"f0428"},"md-presentation_play":{"char":"󰐩","code":"f0429"},"md-pretzel":{"char":"󱕢","code":"f1562"},"md-printer":{"char":"󰐪","code":"f042a"},"md-printer_3d":{"char":"󰐫","code":"f042b"},"md-printer_3d_nozzle":{"char":"󰹛","code":"f0e5b"},"md-printer_3d_nozzle_alert":{"char":"󱇀","code":"f11c0"},"md-printer_3d_nozzle_alert_outline":{"char":"󱇁","code":"f11c1"},"md-printer_3d_nozzle_heat":{"char":"󱢸","code":"f18b8"},"md-printer_3d_nozzle_heat_outline":{"char":"󱢹","code":"f18b9"},"md-printer_3d_nozzle_outline":{"char":"󰹜","code":"f0e5c"},"md-printer_alert":{"char":"󰐬","code":"f042c"},"md-printer_check":{"char":"󱅆","code":"f1146"},"md-printer_eye":{"char":"󱑘","code":"f1458"},"md-printer_off":{"char":"󰹝","code":"f0e5d"},"md-printer_off_outline":{"char":"󱞅","code":"f1785"},"md-printer_outline":{"char":"󱞆","code":"f1786"},"md-printer_pos":{"char":"󱁗","code":"f1057"},"md-printer_search":{"char":"󱑗","code":"f1457"},"md-printer_settings":{"char":"󰜇","code":"f0707"},"md-printer_wireless":{"char":"󰨋","code":"f0a0b"},"md-priority_high":{"char":"󰘃","code":"f0603"},"md-priority_low":{"char":"󰘄","code":"f0604"},"md-professional_hexagon":{"char":"󰐭","code":"f042d"},"md-progress_alert":{"char":"󰲼","code":"f0cbc"},"md-progress_check":{"char":"󰦕","code":"f0995"},"md-progress_clock":{"char":"󰦖","code":"f0996"},"md-progress_close":{"char":"󱄊","code":"f110a"},"md-progress_download":{"char":"󰦗","code":"f0997"},"md-progress_pencil":{"char":"󱞇","code":"f1787"},"md-progress_question":{"char":"󱔢","code":"f1522"},"md-progress_star":{"char":"󱞈","code":"f1788"},"md-progress_upload":{"char":"󰦘","code":"f0998"},"md-progress_wrench":{"char":"󰲽","code":"f0cbd"},"md-projector":{"char":"󰐮","code":"f042e"},"md-projector_off":{"char":"󱨣","code":"f1a23"},"md-projector_screen":{"char":"󰐯","code":"f042f"},"md-projector_screen_off":{"char":"󱠍","code":"f180d"},"md-projector_screen_off_outline":{"char":"󱠎","code":"f180e"},"md-projector_screen_outline":{"char":"󱜤","code":"f1724"},"md-projector_screen_variant":{"char":"󱠏","code":"f180f"},"md-projector_screen_variant_off":{"char":"󱠐","code":"f1810"},"md-projector_screen_variant_off_outline":{"char":"󱠑","code":"f1811"},"md-projector_screen_variant_outline":{"char":"󱠒","code":"f1812"},"md-propane_tank":{"char":"󱍗","code":"f1357"},"md-propane_tank_outline":{"char":"󱍘","code":"f1358"},"md-protocol":{"char":"󰿘","code":"f0fd8"},"md-publish":{"char":"󰚧","code":"f06a7"},"md-publish_off":{"char":"󱥅","code":"f1945"},"md-pulse":{"char":"󰐰","code":"f0430"},"md-pump":{"char":"󱐂","code":"f1402"},"md-pumpkin":{"char":"󰮿","code":"f0bbf"},"md-purse":{"char":"󰼜","code":"f0f1c"},"md-purse_outline":{"char":"󰼝","code":"f0f1d"},"md-puzzle":{"char":"󰐱","code":"f0431"},"md-puzzle_check":{"char":"󱐦","code":"f1426"},"md-puzzle_check_outline":{"char":"󱐧","code":"f1427"},"md-puzzle_edit":{"char":"󱓓","code":"f14d3"},"md-puzzle_edit_outline":{"char":"󱓙","code":"f14d9"},"md-puzzle_heart":{"char":"󱓔","code":"f14d4"},"md-puzzle_heart_outline":{"char":"󱓚","code":"f14da"},"md-puzzle_minus":{"char":"󱓑","code":"f14d1"},"md-puzzle_minus_outline":{"char":"󱓗","code":"f14d7"},"md-puzzle_outline":{"char":"󰩦","code":"f0a66"},"md-puzzle_plus":{"char":"󱓐","code":"f14d0"},"md-puzzle_plus_outline":{"char":"󱓖","code":"f14d6"},"md-puzzle_remove":{"char":"󱓒","code":"f14d2"},"md-puzzle_remove_outline":{"char":"󱓘","code":"f14d8"},"md-puzzle_star":{"char":"󱓕","code":"f14d5"},"md-puzzle_star_outline":{"char":"󱓛","code":"f14db"},"md-pyramid":{"char":"󱥒","code":"f1952"},"md-pyramid_off":{"char":"󱥓","code":"f1953"},"md-qi":{"char":"󰦙","code":"f0999"},"md-qqchat":{"char":"󰘅","code":"f0605"},"md-qrcode":{"char":"󰐲","code":"f0432"},"md-qrcode_edit":{"char":"󰢸","code":"f08b8"},"md-qrcode_minus":{"char":"󱆌","code":"f118c"},"md-qrcode_plus":{"char":"󱆋","code":"f118b"},"md-qrcode_remove":{"char":"󱆍","code":"f118d"},"md-qrcode_scan":{"char":"󰐳","code":"f0433"},"md-quadcopter":{"char":"󰐴","code":"f0434"},"md-quality_high":{"char":"󰐵","code":"f0435"},"md-quality_low":{"char":"󰨌","code":"f0a0c"},"md-quality_medium":{"char":"󰨍","code":"f0a0d"},"md-quora":{"char":"󰴩","code":"f0d29"},"md-rabbit":{"char":"󰤇","code":"f0907"},"md-rabbit_variant":{"char":"󱩡","code":"f1a61"},"md-rabbit_variant_outline":{"char":"󱩢","code":"f1a62"},"md-racing_helmet":{"char":"󰶓","code":"f0d93"},"md-racquetball":{"char":"󰶔","code":"f0d94"},"md-radar":{"char":"󰐷","code":"f0437"},"md-radiator":{"char":"󰐸","code":"f0438"},"md-radiator_disabled":{"char":"󰫗","code":"f0ad7"},"md-radiator_off":{"char":"󰫘","code":"f0ad8"},"md-radio":{"char":"󰐹","code":"f0439"},"md-radio_am":{"char":"󰲾","code":"f0cbe"},"md-radio_fm":{"char":"󰲿","code":"f0cbf"},"md-radio_handheld":{"char":"󰐺","code":"f043a"},"md-radio_off":{"char":"󱈜","code":"f121c"},"md-radio_tower":{"char":"󰐻","code":"f043b"},"md-radioactive":{"char":"󰐼","code":"f043c"},"md-radioactive_circle":{"char":"󱡝","code":"f185d"},"md-radioactive_circle_outline":{"char":"󱡞","code":"f185e"},"md-radioactive_off":{"char":"󰻁","code":"f0ec1"},"md-radiobox_marked":{"char":"󰐾","code":"f043e"},"md-radiology_box":{"char":"󱓅","code":"f14c5"},"md-radiology_box_outline":{"char":"󱓆","code":"f14c6"},"md-radius":{"char":"󰳀","code":"f0cc0"},"md-radius_outline":{"char":"󰳁","code":"f0cc1"},"md-railroad_light":{"char":"󰼞","code":"f0f1e"},"md-rake":{"char":"󱕄","code":"f1544"},"md-raspberry_pi":{"char":"󰐿","code":"f043f"},"md-raw":{"char":"󱨏","code":"f1a0f"},"md-raw_off":{"char":"󱨐","code":"f1a10"},"md-ray_end":{"char":"󰑀","code":"f0440"},"md-ray_end_arrow":{"char":"󰑁","code":"f0441"},"md-ray_start":{"char":"󰑂","code":"f0442"},"md-ray_start_arrow":{"char":"󰑃","code":"f0443"},"md-ray_start_end":{"char":"󰑄","code":"f0444"},"md-ray_start_vertex_end":{"char":"󱗘","code":"f15d8"},"md-ray_vertex":{"char":"󰑅","code":"f0445"},"md-razor_double_edge":{"char":"󱦗","code":"f1997"},"md-razor_single_edge":{"char":"󱦘","code":"f1998"},"md-react":{"char":"󰜈","code":"f0708"},"md-read":{"char":"󰑇","code":"f0447"},"md-receipt":{"char":"󰑉","code":"f0449"},"md-receipt_outline":{"char":"󱧜","code":"f19dc"},"md-receipt_text_check":{"char":"󱩣","code":"f1a63"},"md-receipt_text_check_outline":{"char":"󱩤","code":"f1a64"},"md-receipt_text_minus":{"char":"󱩥","code":"f1a65"},"md-receipt_text_minus_outline":{"char":"󱩦","code":"f1a66"},"md-receipt_text_plus":{"char":"󱩧","code":"f1a67"},"md-receipt_text_plus_outline":{"char":"󱩨","code":"f1a68"},"md-receipt_text_remove":{"char":"󱩩","code":"f1a69"},"md-receipt_text_remove_outline":{"char":"󱩪","code":"f1a6a"},"md-record":{"char":"󰑊","code":"f044a"},"md-record_circle":{"char":"󰻂","code":"f0ec2"},"md-record_circle_outline":{"char":"󰻃","code":"f0ec3"},"md-record_player":{"char":"󰦚","code":"f099a"},"md-record_rec":{"char":"󰑋","code":"f044b"},"md-rectangle":{"char":"󰹞","code":"f0e5e"},"md-rectangle_outline":{"char":"󰹟","code":"f0e5f"},"md-recycle":{"char":"󰑌","code":"f044c"},"md-recycle_variant":{"char":"󱎝","code":"f139d"},"md-reddit":{"char":"󰑍","code":"f044d"},"md-redhat":{"char":"󱄛","code":"f111b"},"md-redo":{"char":"󰑎","code":"f044e"},"md-redo_variant":{"char":"󰑏","code":"f044f"},"md-reflect_horizontal":{"char":"󰨎","code":"f0a0e"},"md-reflect_vertical":{"char":"󰨏","code":"f0a0f"},"md-refresh":{"char":"󰑐","code":"f0450"},"md-refresh_auto":{"char":"󱣲","code":"f18f2"},"md-refresh_circle":{"char":"󱍷","code":"f1377"},"md-regex":{"char":"󰑑","code":"f0451"},"md-registered_trademark":{"char":"󰩧","code":"f0a67"},"md-reiterate":{"char":"󱖈","code":"f1588"},"md-relation_many_to_many":{"char":"󱒖","code":"f1496"},"md-relation_many_to_one":{"char":"󱒗","code":"f1497"},"md-relation_many_to_one_or_many":{"char":"󱒘","code":"f1498"},"md-relation_many_to_only_one":{"char":"󱒙","code":"f1499"},"md-relation_many_to_zero_or_many":{"char":"󱒚","code":"f149a"},"md-relation_many_to_zero_or_one":{"char":"󱒛","code":"f149b"},"md-relation_one_or_many_to_many":{"char":"󱒜","code":"f149c"},"md-relation_one_or_many_to_one":{"char":"󱒝","code":"f149d"},"md-relation_one_or_many_to_one_or_many":{"char":"󱒞","code":"f149e"},"md-relation_one_or_many_to_only_one":{"char":"󱒟","code":"f149f"},"md-relation_one_or_many_to_zero_or_many":{"char":"󱒠","code":"f14a0"},"md-relation_one_or_many_to_zero_or_one":{"char":"󱒡","code":"f14a1"},"md-relation_one_to_many":{"char":"󱒢","code":"f14a2"},"md-relation_one_to_one":{"char":"󱒣","code":"f14a3"},"md-relation_one_to_one_or_many":{"char":"󱒤","code":"f14a4"},"md-relation_one_to_only_one":{"char":"󱒥","code":"f14a5"},"md-relation_one_to_zero_or_many":{"char":"󱒦","code":"f14a6"},"md-relation_one_to_zero_or_one":{"char":"󱒧","code":"f14a7"},"md-relation_only_one_to_many":{"char":"󱒨","code":"f14a8"},"md-relation_only_one_to_one":{"char":"󱒩","code":"f14a9"},"md-relation_only_one_to_one_or_many":{"char":"󱒪","code":"f14aa"},"md-relation_only_one_to_only_one":{"char":"󱒫","code":"f14ab"},"md-relation_only_one_to_zero_or_many":{"char":"󱒬","code":"f14ac"},"md-relation_only_one_to_zero_or_one":{"char":"󱒭","code":"f14ad"},"md-relation_zero_or_many_to_many":{"char":"󱒮","code":"f14ae"},"md-relation_zero_or_many_to_one":{"char":"󱒯","code":"f14af"},"md-relation_zero_or_many_to_one_or_many":{"char":"󱒰","code":"f14b0"},"md-relation_zero_or_many_to_only_one":{"char":"󱒱","code":"f14b1"},"md-relation_zero_or_many_to_zero_or_many":{"char":"󱒲","code":"f14b2"},"md-relation_zero_or_many_to_zero_or_one":{"char":"󱒳","code":"f14b3"},"md-relation_zero_or_one_to_many":{"char":"󱒴","code":"f14b4"},"md-relation_zero_or_one_to_one":{"char":"󱒵","code":"f14b5"},"md-relation_zero_or_one_to_one_or_many":{"char":"󱒶","code":"f14b6"},"md-relation_zero_or_one_to_only_one":{"char":"󱒷","code":"f14b7"},"md-relation_zero_or_one_to_zero_or_many":{"char":"󱒸","code":"f14b8"},"md-relation_zero_or_one_to_zero_or_one":{"char":"󱒹","code":"f14b9"},"md-relative_scale":{"char":"󰑒","code":"f0452"},"md-reload":{"char":"󰑓","code":"f0453"},"md-reload_alert":{"char":"󱄋","code":"f110b"},"md-reminder":{"char":"󰢌","code":"f088c"},"md-remote":{"char":"󰑔","code":"f0454"},"md-remote_desktop":{"char":"󰢹","code":"f08b9"},"md-remote_off":{"char":"󰻄","code":"f0ec4"},"md-remote_tv":{"char":"󰻅","code":"f0ec5"},"md-remote_tv_off":{"char":"󰻆","code":"f0ec6"},"md-rename_box":{"char":"󰑕","code":"f0455"},"md-reorder_horizontal":{"char":"󰚈","code":"f0688"},"md-reorder_vertical":{"char":"󰚉","code":"f0689"},"md-repeat":{"char":"󰑖","code":"f0456"},"md-repeat_off":{"char":"󰑗","code":"f0457"},"md-repeat_once":{"char":"󰑘","code":"f0458"},"md-repeat_variant":{"char":"󰕇","code":"f0547"},"md-replay":{"char":"󰑙","code":"f0459"},"md-reply":{"char":"󰑚","code":"f045a"},"md-reply_all":{"char":"󰑛","code":"f045b"},"md-reply_all_outline":{"char":"󰼟","code":"f0f1f"},"md-reply_circle":{"char":"󱆮","code":"f11ae"},"md-reply_outline":{"char":"󰼠","code":"f0f20"},"md-reproduction":{"char":"󰑜","code":"f045c"},"md-resistor":{"char":"󰭄","code":"f0b44"},"md-resistor_nodes":{"char":"󰭅","code":"f0b45"},"md-resize":{"char":"󰩨","code":"f0a68"},"md-resize_bottom_right":{"char":"󰑝","code":"f045d"},"md-responsive":{"char":"󰑞","code":"f045e"},"md-restart":{"char":"󰜉","code":"f0709"},"md-restart_alert":{"char":"󱄌","code":"f110c"},"md-restart_off":{"char":"󰶕","code":"f0d95"},"md-restore":{"char":"󰦛","code":"f099b"},"md-restore_alert":{"char":"󱄍","code":"f110d"},"md-rewind":{"char":"󰑟","code":"f045f"},"md-rewind_10":{"char":"󰴪","code":"f0d2a"},"md-rewind_15":{"char":"󱥆","code":"f1946"},"md-rewind_30":{"char":"󰶖","code":"f0d96"},"md-rewind_5":{"char":"󱇹","code":"f11f9"},"md-rewind_60":{"char":"󱘌","code":"f160c"},"md-rewind_outline":{"char":"󰜊","code":"f070a"},"md-rhombus":{"char":"󰜋","code":"f070b"},"md-rhombus_medium":{"char":"󰨐","code":"f0a10"},"md-rhombus_medium_outline":{"char":"󱓜","code":"f14dc"},"md-rhombus_outline":{"char":"󰜌","code":"f070c"},"md-rhombus_split":{"char":"󰨑","code":"f0a11"},"md-rhombus_split_outline":{"char":"󱓝","code":"f14dd"},"md-ribbon":{"char":"󰑠","code":"f0460"},"md-rice":{"char":"󰟪","code":"f07ea"},"md-rickshaw":{"char":"󱖻","code":"f15bb"},"md-rickshaw_electric":{"char":"󱖼","code":"f15bc"},"md-ring":{"char":"󰟫","code":"f07eb"},"md-rivet":{"char":"󰹠","code":"f0e60"},"md-road":{"char":"󰑡","code":"f0461"},"md-road_variant":{"char":"󰑢","code":"f0462"},"md-robber":{"char":"󱁘","code":"f1058"},"md-robot":{"char":"󰚩","code":"f06a9"},"md-robot_angry":{"char":"󱚝","code":"f169d"},"md-robot_angry_outline":{"char":"󱚞","code":"f169e"},"md-robot_confused":{"char":"󱚟","code":"f169f"},"md-robot_confused_outline":{"char":"󱚠","code":"f16a0"},"md-robot_dead":{"char":"󱚡","code":"f16a1"},"md-robot_dead_outline":{"char":"󱚢","code":"f16a2"},"md-robot_excited":{"char":"󱚣","code":"f16a3"},"md-robot_excited_outline":{"char":"󱚤","code":"f16a4"},"md-robot_happy":{"char":"󱜙","code":"f1719"},"md-robot_happy_outline":{"char":"󱜚","code":"f171a"},"md-robot_industrial":{"char":"󰭆","code":"f0b46"},"md-robot_industrial_outline":{"char":"󱨚","code":"f1a1a"},"md-robot_love":{"char":"󱚥","code":"f16a5"},"md-robot_love_outline":{"char":"󱚦","code":"f16a6"},"md-robot_mower":{"char":"󱇷","code":"f11f7"},"md-robot_mower_outline":{"char":"󱇳","code":"f11f3"},"md-robot_off":{"char":"󱚧","code":"f16a7"},"md-robot_off_outline":{"char":"󱙻","code":"f167b"},"md-robot_outline":{"char":"󱙺","code":"f167a"},"md-robot_vacuum":{"char":"󰜍","code":"f070d"},"md-robot_vacuum_variant":{"char":"󰤈","code":"f0908"},"md-rocket":{"char":"󰑣","code":"f0463"},"md-rocket_launch":{"char":"󱓞","code":"f14de"},"md-rocket_launch_outline":{"char":"󱓟","code":"f14df"},"md-rocket_outline":{"char":"󱎯","code":"f13af"},"md-rodent":{"char":"󱌧","code":"f1327"},"md-roller_shade":{"char":"󱩫","code":"f1a6b"},"md-roller_shade_closed":{"char":"󱩬","code":"f1a6c"},"md-roller_skate":{"char":"󰴫","code":"f0d2b"},"md-roller_skate_off":{"char":"󰅅","code":"f0145"},"md-rollerblade":{"char":"󰴬","code":"f0d2c"},"md-rollerblade_off":{"char":"󰀮","code":"f002e"},"md-rollupjs":{"char":"󰯀","code":"f0bc0"},"md-rolodex":{"char":"󱪹","code":"f1ab9"},"md-rolodex_outline":{"char":"󱪺","code":"f1aba"},"md-roman_numeral_2":{"char":"󱂉","code":"f1089"},"md-roman_numeral_3":{"char":"󱂊","code":"f108a"},"md-roman_numeral_4":{"char":"󱂋","code":"f108b"},"md-roman_numeral_6":{"char":"󱂍","code":"f108d"},"md-roman_numeral_7":{"char":"󱂎","code":"f108e"},"md-roman_numeral_8":{"char":"󱂏","code":"f108f"},"md-roman_numeral_9":{"char":"󱂐","code":"f1090"},"md-room_service":{"char":"󰢍","code":"f088d"},"md-room_service_outline":{"char":"󰶗","code":"f0d97"},"md-rotate_360":{"char":"󱦙","code":"f1999"},"md-rotate_3d":{"char":"󰻇","code":"f0ec7"},"md-rotate_3d_variant":{"char":"󰑤","code":"f0464"},"md-rotate_left":{"char":"󰑥","code":"f0465"},"md-rotate_left_variant":{"char":"󰑦","code":"f0466"},"md-rotate_orbit":{"char":"󰶘","code":"f0d98"},"md-rotate_right":{"char":"󰑧","code":"f0467"},"md-rotate_right_variant":{"char":"󰑨","code":"f0468"},"md-rounded_corner":{"char":"󰘇","code":"f0607"},"md-router":{"char":"󱇢","code":"f11e2"},"md-router_network":{"char":"󱂇","code":"f1087"},"md-router_wireless":{"char":"󰑩","code":"f0469"},"md-router_wireless_off":{"char":"󱖣","code":"f15a3"},"md-router_wireless_settings":{"char":"󰩩","code":"f0a69"},"md-routes":{"char":"󰑪","code":"f046a"},"md-routes_clock":{"char":"󱁙","code":"f1059"},"md-rowing":{"char":"󰘈","code":"f0608"},"md-rss":{"char":"󰑫","code":"f046b"},"md-rss_box":{"char":"󰑬","code":"f046c"},"md-rss_off":{"char":"󰼡","code":"f0f21"},"md-rug":{"char":"󱑵","code":"f1475"},"md-rugby":{"char":"󰶙","code":"f0d99"},"md-ruler":{"char":"󰑭","code":"f046d"},"md-ruler_square":{"char":"󰳂","code":"f0cc2"},"md-ruler_square_compass":{"char":"󰺾","code":"f0ebe"},"md-run":{"char":"󰜎","code":"f070e"},"md-run_fast":{"char":"󰑮","code":"f046e"},"md-rv_truck":{"char":"󱇔","code":"f11d4"},"md-sack":{"char":"󰴮","code":"f0d2e"},"md-sack_percent":{"char":"󰴯","code":"f0d2f"},"md-safe":{"char":"󰩪","code":"f0a6a"},"md-safe_square":{"char":"󱉼","code":"f127c"},"md-safe_square_outline":{"char":"󱉽","code":"f127d"},"md-safety_goggles":{"char":"󰴰","code":"f0d30"},"md-sail_boat":{"char":"󰻈","code":"f0ec8"},"md-sail_boat_sink":{"char":"󱫯","code":"f1aef"},"md-sale":{"char":"󰑯","code":"f046f"},"md-sale_outline":{"char":"󱨆","code":"f1a06"},"md-salesforce":{"char":"󰢎","code":"f088e"},"md-sass":{"char":"󰟬","code":"f07ec"},"md-satellite":{"char":"󰑰","code":"f0470"},"md-satellite_uplink":{"char":"󰤉","code":"f0909"},"md-satellite_variant":{"char":"󰑱","code":"f0471"},"md-sausage":{"char":"󰢺","code":"f08ba"},"md-sausage_off":{"char":"󱞉","code":"f1789"},"md-saw_blade":{"char":"󰹡","code":"f0e61"},"md-sawtooth_wave":{"char":"󱑺","code":"f147a"},"md-saxophone":{"char":"󰘉","code":"f0609"},"md-scale":{"char":"󰑲","code":"f0472"},"md-scale_balance":{"char":"󰗑","code":"f05d1"},"md-scale_bathroom":{"char":"󰑳","code":"f0473"},"md-scale_off":{"char":"󱁚","code":"f105a"},"md-scale_unbalanced":{"char":"󱦸","code":"f19b8"},"md-scan_helper":{"char":"󱏘","code":"f13d8"},"md-scanner":{"char":"󰚫","code":"f06ab"},"md-scanner_off":{"char":"󰤊","code":"f090a"},"md-scatter_plot":{"char":"󰻉","code":"f0ec9"},"md-scatter_plot_outline":{"char":"󰻊","code":"f0eca"},"md-scent":{"char":"󱥘","code":"f1958"},"md-scent_off":{"char":"󱥙","code":"f1959"},"md-school":{"char":"󰑴","code":"f0474"},"md-school_outline":{"char":"󱆀","code":"f1180"},"md-scissors_cutting":{"char":"󰩫","code":"f0a6b"},"md-scooter":{"char":"󱖽","code":"f15bd"},"md-scooter_electric":{"char":"󱖾","code":"f15be"},"md-scoreboard":{"char":"󱉾","code":"f127e"},"md-scoreboard_outline":{"char":"󱉿","code":"f127f"},"md-screen_rotation":{"char":"󰑵","code":"f0475"},"md-screen_rotation_lock":{"char":"󰑸","code":"f0478"},"md-screw_flat_top":{"char":"󰷳","code":"f0df3"},"md-screw_lag":{"char":"󰷴","code":"f0df4"},"md-screw_machine_flat_top":{"char":"󰷵","code":"f0df5"},"md-screw_machine_round_top":{"char":"󰷶","code":"f0df6"},"md-screw_round_top":{"char":"󰷷","code":"f0df7"},"md-screwdriver":{"char":"󰑶","code":"f0476"},"md-script":{"char":"󰯁","code":"f0bc1"},"md-script_outline":{"char":"󰑷","code":"f0477"},"md-script_text":{"char":"󰯂","code":"f0bc2"},"md-script_text_key":{"char":"󱜥","code":"f1725"},"md-script_text_key_outline":{"char":"󱜦","code":"f1726"},"md-script_text_outline":{"char":"󰯃","code":"f0bc3"},"md-script_text_play":{"char":"󱜧","code":"f1727"},"md-script_text_play_outline":{"char":"󱜨","code":"f1728"},"md-sd":{"char":"󰑹","code":"f0479"},"md-seal":{"char":"󰑺","code":"f047a"},"md-seal_variant":{"char":"󰿙","code":"f0fd9"},"md-search_web":{"char":"󰜏","code":"f070f"},"md-seat":{"char":"󰳃","code":"f0cc3"},"md-seat_flat":{"char":"󰑻","code":"f047b"},"md-seat_flat_angled":{"char":"󰑼","code":"f047c"},"md-seat_individual_suite":{"char":"󰑽","code":"f047d"},"md-seat_legroom_extra":{"char":"󰑾","code":"f047e"},"md-seat_legroom_normal":{"char":"󰑿","code":"f047f"},"md-seat_legroom_reduced":{"char":"󰒀","code":"f0480"},"md-seat_outline":{"char":"󰳄","code":"f0cc4"},"md-seat_passenger":{"char":"󱉉","code":"f1249"},"md-seat_recline_extra":{"char":"󰒁","code":"f0481"},"md-seat_recline_normal":{"char":"󰒂","code":"f0482"},"md-seatbelt":{"char":"󰳅","code":"f0cc5"},"md-security":{"char":"󰒃","code":"f0483"},"md-security_network":{"char":"󰒄","code":"f0484"},"md-seed":{"char":"󰹢","code":"f0e62"},"md-seed_off":{"char":"󱏽","code":"f13fd"},"md-seed_off_outline":{"char":"󱏾","code":"f13fe"},"md-seed_outline":{"char":"󰹣","code":"f0e63"},"md-seed_plus":{"char":"󱩭","code":"f1a6d"},"md-seed_plus_outline":{"char":"󱩮","code":"f1a6e"},"md-seesaw":{"char":"󱖤","code":"f15a4"},"md-segment":{"char":"󰻋","code":"f0ecb"},"md-select":{"char":"󰒅","code":"f0485"},"md-select_all":{"char":"󰒆","code":"f0486"},"md-select_color":{"char":"󰴱","code":"f0d31"},"md-select_compare":{"char":"󰫙","code":"f0ad9"},"md-select_drag":{"char":"󰩬","code":"f0a6c"},"md-select_group":{"char":"󰾂","code":"f0f82"},"md-select_inverse":{"char":"󰒇","code":"f0487"},"md-select_marker":{"char":"󱊀","code":"f1280"},"md-select_multiple":{"char":"󱊁","code":"f1281"},"md-select_multiple_marker":{"char":"󱊂","code":"f1282"},"md-select_off":{"char":"󰒈","code":"f0488"},"md-select_place":{"char":"󰿚","code":"f0fda"},"md-select_remove":{"char":"󱟁","code":"f17c1"},"md-select_search":{"char":"󱈄","code":"f1204"},"md-selection":{"char":"󰒉","code":"f0489"},"md-selection_drag":{"char":"󰩭","code":"f0a6d"},"md-selection_ellipse":{"char":"󰴲","code":"f0d32"},"md-selection_ellipse_arrow_inside":{"char":"󰼢","code":"f0f22"},"md-selection_ellipse_remove":{"char":"󱟂","code":"f17c2"},"md-selection_marker":{"char":"󱊃","code":"f1283"},"md-selection_multiple":{"char":"󱊅","code":"f1285"},"md-selection_multiple_marker":{"char":"󱊄","code":"f1284"},"md-selection_off":{"char":"󰝷","code":"f0777"},"md-selection_remove":{"char":"󱟃","code":"f17c3"},"md-selection_search":{"char":"󱈅","code":"f1205"},"md-semantic_web":{"char":"󱌖","code":"f1316"},"md-send":{"char":"󰒊","code":"f048a"},"md-send_check":{"char":"󱅡","code":"f1161"},"md-send_check_outline":{"char":"󱅢","code":"f1162"},"md-send_circle":{"char":"󰷸","code":"f0df8"},"md-send_circle_outline":{"char":"󰷹","code":"f0df9"},"md-send_clock":{"char":"󱅣","code":"f1163"},"md-send_clock_outline":{"char":"󱅤","code":"f1164"},"md-send_lock":{"char":"󰟭","code":"f07ed"},"md-send_lock_outline":{"char":"󱅦","code":"f1166"},"md-send_outline":{"char":"󱅥","code":"f1165"},"md-serial_port":{"char":"󰙜","code":"f065c"},"md-server":{"char":"󰒋","code":"f048b"},"md-server_minus":{"char":"󰒌","code":"f048c"},"md-server_network":{"char":"󰒍","code":"f048d"},"md-server_network_off":{"char":"󰒎","code":"f048e"},"md-server_off":{"char":"󰒏","code":"f048f"},"md-server_plus":{"char":"󰒐","code":"f0490"},"md-server_remove":{"char":"󰒑","code":"f0491"},"md-server_security":{"char":"󰒒","code":"f0492"},"md-set_all":{"char":"󰝸","code":"f0778"},"md-set_center":{"char":"󰝹","code":"f0779"},"md-set_center_right":{"char":"󰝺","code":"f077a"},"md-set_left":{"char":"󰝻","code":"f077b"},"md-set_left_center":{"char":"󰝼","code":"f077c"},"md-set_left_right":{"char":"󰝽","code":"f077d"},"md-set_merge":{"char":"󱓠","code":"f14e0"},"md-set_none":{"char":"󰝾","code":"f077e"},"md-set_right":{"char":"󰝿","code":"f077f"},"md-set_split":{"char":"󱓡","code":"f14e1"},"md-set_square":{"char":"󱑝","code":"f145d"},"md-set_top_box":{"char":"󰦟","code":"f099f"},"md-settings_helper":{"char":"󰩮","code":"f0a6e"},"md-shaker":{"char":"󱄎","code":"f110e"},"md-shaker_outline":{"char":"󱄏","code":"f110f"},"md-shape":{"char":"󰠱","code":"f0831"},"md-shape_circle_plus":{"char":"󰙝","code":"f065d"},"md-shape_outline":{"char":"󰠲","code":"f0832"},"md-shape_oval_plus":{"char":"󱇺","code":"f11fa"},"md-shape_plus":{"char":"󰒕","code":"f0495"},"md-shape_polygon_plus":{"char":"󰙞","code":"f065e"},"md-shape_rectangle_plus":{"char":"󰙟","code":"f065f"},"md-shape_square_plus":{"char":"󰙠","code":"f0660"},"md-shape_square_rounded_plus":{"char":"󱓺","code":"f14fa"},"md-share":{"char":"󰒖","code":"f0496"},"md-share_all":{"char":"󱇴","code":"f11f4"},"md-share_all_outline":{"char":"󱇵","code":"f11f5"},"md-share_circle":{"char":"󱆭","code":"f11ad"},"md-share_off":{"char":"󰼣","code":"f0f23"},"md-share_off_outline":{"char":"󰼤","code":"f0f24"},"md-share_outline":{"char":"󰤲","code":"f0932"},"md-share_variant":{"char":"󰒗","code":"f0497"},"md-share_variant_outline":{"char":"󱔔","code":"f1514"},"md-shark":{"char":"󱢺","code":"f18ba"},"md-shark_fin":{"char":"󱙳","code":"f1673"},"md-shark_fin_outline":{"char":"󱙴","code":"f1674"},"md-shark_off":{"char":"󱢻","code":"f18bb"},"md-sheep":{"char":"󰳆","code":"f0cc6"},"md-shield":{"char":"󰒘","code":"f0498"},"md-shield_account":{"char":"󰢏","code":"f088f"},"md-shield_account_outline":{"char":"󰨒","code":"f0a12"},"md-shield_account_variant":{"char":"󱖧","code":"f15a7"},"md-shield_account_variant_outline":{"char":"󱖨","code":"f15a8"},"md-shield_airplane":{"char":"󰚻","code":"f06bb"},"md-shield_airplane_outline":{"char":"󰳇","code":"f0cc7"},"md-shield_alert":{"char":"󰻌","code":"f0ecc"},"md-shield_alert_outline":{"char":"󰻍","code":"f0ecd"},"md-shield_bug":{"char":"󱏚","code":"f13da"},"md-shield_bug_outline":{"char":"󱏛","code":"f13db"},"md-shield_car":{"char":"󰾃","code":"f0f83"},"md-shield_check":{"char":"󰕥","code":"f0565"},"md-shield_check_outline":{"char":"󰳈","code":"f0cc8"},"md-shield_cross":{"char":"󰳉","code":"f0cc9"},"md-shield_cross_outline":{"char":"󰳊","code":"f0cca"},"md-shield_crown":{"char":"󱢼","code":"f18bc"},"md-shield_crown_outline":{"char":"󱢽","code":"f18bd"},"md-shield_edit":{"char":"󱆠","code":"f11a0"},"md-shield_edit_outline":{"char":"󱆡","code":"f11a1"},"md-shield_half":{"char":"󱍠","code":"f1360"},"md-shield_half_full":{"char":"󰞀","code":"f0780"},"md-shield_home":{"char":"󰚊","code":"f068a"},"md-shield_home_outline":{"char":"󰳋","code":"f0ccb"},"md-shield_key":{"char":"󰯄","code":"f0bc4"},"md-shield_key_outline":{"char":"󰯅","code":"f0bc5"},"md-shield_link_variant":{"char":"󰴳","code":"f0d33"},"md-shield_link_variant_outline":{"char":"󰴴","code":"f0d34"},"md-shield_lock":{"char":"󰦝","code":"f099d"},"md-shield_lock_open":{"char":"󱦚","code":"f199a"},"md-shield_lock_open_outline":{"char":"󱦛","code":"f199b"},"md-shield_lock_outline":{"char":"󰳌","code":"f0ccc"},"md-shield_moon":{"char":"󱠨","code":"f1828"},"md-shield_moon_outline":{"char":"󱠩","code":"f1829"},"md-shield_off":{"char":"󰦞","code":"f099e"},"md-shield_off_outline":{"char":"󰦜","code":"f099c"},"md-shield_outline":{"char":"󰒙","code":"f0499"},"md-shield_plus":{"char":"󰫚","code":"f0ada"},"md-shield_plus_outline":{"char":"󰫛","code":"f0adb"},"md-shield_refresh":{"char":"󰂪","code":"f00aa"},"md-shield_refresh_outline":{"char":"󰇠","code":"f01e0"},"md-shield_remove":{"char":"󰫜","code":"f0adc"},"md-shield_remove_outline":{"char":"󰫝","code":"f0add"},"md-shield_search":{"char":"󰶚","code":"f0d9a"},"md-shield_star":{"char":"󱄻","code":"f113b"},"md-shield_star_outline":{"char":"󱄼","code":"f113c"},"md-shield_sun":{"char":"󱁝","code":"f105d"},"md-shield_sun_outline":{"char":"󱁞","code":"f105e"},"md-shield_sword":{"char":"󱢾","code":"f18be"},"md-shield_sword_outline":{"char":"󱢿","code":"f18bf"},"md-shield_sync":{"char":"󱆢","code":"f11a2"},"md-shield_sync_outline":{"char":"󱆣","code":"f11a3"},"md-shimmer":{"char":"󱕅","code":"f1545"},"md-ship_wheel":{"char":"󰠳","code":"f0833"},"md-shipping_pallet":{"char":"󱡎","code":"f184e"},"md-shoe_ballet":{"char":"󱗊","code":"f15ca"},"md-shoe_cleat":{"char":"󱗇","code":"f15c7"},"md-shoe_formal":{"char":"󰭇","code":"f0b47"},"md-shoe_heel":{"char":"󰭈","code":"f0b48"},"md-shoe_print":{"char":"󰷺","code":"f0dfa"},"md-shoe_sneaker":{"char":"󱗈","code":"f15c8"},"md-shopping":{"char":"󰒚","code":"f049a"},"md-shopping_music":{"char":"󰒛","code":"f049b"},"md-shopping_outline":{"char":"󱇕","code":"f11d5"},"md-shopping_search":{"char":"󰾄","code":"f0f84"},"md-shopping_search_outline":{"char":"󱩯","code":"f1a6f"},"md-shore":{"char":"󱓹","code":"f14f9"},"md-shovel":{"char":"󰜐","code":"f0710"},"md-shovel_off":{"char":"󰜑","code":"f0711"},"md-shower":{"char":"󰦠","code":"f09a0"},"md-shower_head":{"char":"󰦡","code":"f09a1"},"md-shredder":{"char":"󰒜","code":"f049c"},"md-shuffle":{"char":"󰒝","code":"f049d"},"md-shuffle_disabled":{"char":"󰒞","code":"f049e"},"md-shuffle_variant":{"char":"󰒟","code":"f049f"},"md-shuriken":{"char":"󱍿","code":"f137f"},"md-sickle":{"char":"󱣀","code":"f18c0"},"md-sigma":{"char":"󰒠","code":"f04a0"},"md-sigma_lower":{"char":"󰘫","code":"f062b"},"md-sign_caution":{"char":"󰒡","code":"f04a1"},"md-sign_direction":{"char":"󰞁","code":"f0781"},"md-sign_direction_minus":{"char":"󱀀","code":"f1000"},"md-sign_direction_plus":{"char":"󰿜","code":"f0fdc"},"md-sign_direction_remove":{"char":"󰿝","code":"f0fdd"},"md-sign_pole":{"char":"󱓸","code":"f14f8"},"md-sign_real_estate":{"char":"󱄘","code":"f1118"},"md-sign_text":{"char":"󰞂","code":"f0782"},"md-signal":{"char":"󰒢","code":"f04a2"},"md-signal_2g":{"char":"󰜒","code":"f0712"},"md-signal_3g":{"char":"󰜓","code":"f0713"},"md-signal_4g":{"char":"󰜔","code":"f0714"},"md-signal_5g":{"char":"󰩯","code":"f0a6f"},"md-signal_cellular_1":{"char":"󰢼","code":"f08bc"},"md-signal_cellular_2":{"char":"󰢽","code":"f08bd"},"md-signal_cellular_3":{"char":"󰢾","code":"f08be"},"md-signal_cellular_outline":{"char":"󰢿","code":"f08bf"},"md-signal_distance_variant":{"char":"󰹤","code":"f0e64"},"md-signal_hspa":{"char":"󰜕","code":"f0715"},"md-signal_hspa_plus":{"char":"󰜖","code":"f0716"},"md-signal_off":{"char":"󰞃","code":"f0783"},"md-signal_variant":{"char":"󰘊","code":"f060a"},"md-signature":{"char":"󰷻","code":"f0dfb"},"md-signature_freehand":{"char":"󰷼","code":"f0dfc"},"md-signature_image":{"char":"󰷽","code":"f0dfd"},"md-signature_text":{"char":"󰷾","code":"f0dfe"},"md-silo":{"char":"󰭉","code":"f0b49"},"md-silverware":{"char":"󰒣","code":"f04a3"},"md-silverware_clean":{"char":"󰿞","code":"f0fde"},"md-silverware_fork":{"char":"󰒤","code":"f04a4"},"md-silverware_fork_knife":{"char":"󰩰","code":"f0a70"},"md-silverware_spoon":{"char":"󰒥","code":"f04a5"},"md-silverware_variant":{"char":"󰒦","code":"f04a6"},"md-sim":{"char":"󰒧","code":"f04a7"},"md-sim_alert":{"char":"󰒨","code":"f04a8"},"md-sim_alert_outline":{"char":"󱗓","code":"f15d3"},"md-sim_off":{"char":"󰒩","code":"f04a9"},"md-sim_off_outline":{"char":"󱗔","code":"f15d4"},"md-sim_outline":{"char":"󱗕","code":"f15d5"},"md-simple_icons":{"char":"󱌝","code":"f131d"},"md-sina_weibo":{"char":"󰫟","code":"f0adf"},"md-sine_wave":{"char":"󰥛","code":"f095b"},"md-sitemap":{"char":"󰒪","code":"f04aa"},"md-sitemap_outline":{"char":"󱦜","code":"f199c"},"md-size_m":{"char":"󱎥","code":"f13a5"},"md-size_s":{"char":"󱎤","code":"f13a4"},"md-size_xl":{"char":"󱎧","code":"f13a7"},"md-size_xs":{"char":"󱎣","code":"f13a3"},"md-size_xxl":{"char":"󱎨","code":"f13a8"},"md-size_xxs":{"char":"󱎢","code":"f13a2"},"md-size_xxxl":{"char":"󱎩","code":"f13a9"},"md-skate":{"char":"󰴵","code":"f0d35"},"md-skate_off":{"char":"󰚙","code":"f0699"},"md-skateboard":{"char":"󱓂","code":"f14c2"},"md-skateboarding":{"char":"󰔁","code":"f0501"},"md-skew_less":{"char":"󰴶","code":"f0d36"},"md-skew_more":{"char":"󰴷","code":"f0d37"},"md-ski":{"char":"󱌄","code":"f1304"},"md-ski_cross_country":{"char":"󱌅","code":"f1305"},"md-ski_water":{"char":"󱌆","code":"f1306"},"md-skip_backward":{"char":"󰒫","code":"f04ab"},"md-skip_backward_outline":{"char":"󰼥","code":"f0f25"},"md-skip_forward":{"char":"󰒬","code":"f04ac"},"md-skip_forward_outline":{"char":"󰼦","code":"f0f26"},"md-skip_next":{"char":"󰒭","code":"f04ad"},"md-skip_next_circle":{"char":"󰙡","code":"f0661"},"md-skip_next_circle_outline":{"char":"󰙢","code":"f0662"},"md-skip_next_outline":{"char":"󰼧","code":"f0f27"},"md-skip_previous":{"char":"󰒮","code":"f04ae"},"md-skip_previous_circle":{"char":"󰙣","code":"f0663"},"md-skip_previous_circle_outline":{"char":"󰙤","code":"f0664"},"md-skip_previous_outline":{"char":"󰼨","code":"f0f28"},"md-skull":{"char":"󰚌","code":"f068c"},"md-skull_crossbones":{"char":"󰯆","code":"f0bc6"},"md-skull_crossbones_outline":{"char":"󰯇","code":"f0bc7"},"md-skull_outline":{"char":"󰯈","code":"f0bc8"},"md-skull_scan":{"char":"󱓇","code":"f14c7"},"md-skull_scan_outline":{"char":"󱓈","code":"f14c8"},"md-skype":{"char":"󰒯","code":"f04af"},"md-skype_business":{"char":"󰒰","code":"f04b0"},"md-slack":{"char":"󰒱","code":"f04b1"},"md-slash_forward":{"char":"󰿟","code":"f0fdf"},"md-slash_forward_box":{"char":"󰿠","code":"f0fe0"},"md-sledding":{"char":"󰐛","code":"f041b"},"md-sleep":{"char":"󰒲","code":"f04b2"},"md-sleep_off":{"char":"󰒳","code":"f04b3"},"md-slide":{"char":"󱖥","code":"f15a5"},"md-slope_downhill":{"char":"󰷿","code":"f0dff"},"md-slope_uphill":{"char":"󰸀","code":"f0e00"},"md-slot_machine":{"char":"󱄔","code":"f1114"},"md-slot_machine_outline":{"char":"󱄕","code":"f1115"},"md-smart_card":{"char":"󱂽","code":"f10bd"},"md-smart_card_off":{"char":"󱣷","code":"f18f7"},"md-smart_card_off_outline":{"char":"󱣸","code":"f18f8"},"md-smart_card_outline":{"char":"󱂾","code":"f10be"},"md-smart_card_reader":{"char":"󱂿","code":"f10bf"},"md-smart_card_reader_outline":{"char":"󱃀","code":"f10c0"},"md-smog":{"char":"󰩱","code":"f0a71"},"md-smoke":{"char":"󱞙","code":"f1799"},"md-smoke_detector":{"char":"󰎒","code":"f0392"},"md-smoke_detector_alert":{"char":"󱤮","code":"f192e"},"md-smoke_detector_alert_outline":{"char":"󱤯","code":"f192f"},"md-smoke_detector_off":{"char":"󱠉","code":"f1809"},"md-smoke_detector_off_outline":{"char":"󱠊","code":"f180a"},"md-smoke_detector_outline":{"char":"󱠈","code":"f1808"},"md-smoke_detector_variant":{"char":"󱠋","code":"f180b"},"md-smoke_detector_variant_alert":{"char":"󱤰","code":"f1930"},"md-smoke_detector_variant_off":{"char":"󱠌","code":"f180c"},"md-smoking":{"char":"󰒴","code":"f04b4"},"md-smoking_off":{"char":"󰒵","code":"f04b5"},"md-smoking_pipe":{"char":"󱐍","code":"f140d"},"md-smoking_pipe_off":{"char":"󱐨","code":"f1428"},"md-snail":{"char":"󱙷","code":"f1677"},"md-snake":{"char":"󱔎","code":"f150e"},"md-snapchat":{"char":"󰒶","code":"f04b6"},"md-snowboard":{"char":"󱌇","code":"f1307"},"md-snowflake":{"char":"󰜗","code":"f0717"},"md-snowflake_alert":{"char":"󰼩","code":"f0f29"},"md-snowflake_check":{"char":"󱩰","code":"f1a70"},"md-snowflake_melt":{"char":"󱋋","code":"f12cb"},"md-snowflake_off":{"char":"󱓣","code":"f14e3"},"md-snowflake_thermometer":{"char":"󱩱","code":"f1a71"},"md-snowflake_variant":{"char":"󰼪","code":"f0f2a"},"md-snowman":{"char":"󰒷","code":"f04b7"},"md-snowmobile":{"char":"󰛝","code":"f06dd"},"md-snowshoeing":{"char":"󱩲","code":"f1a72"},"md-soccer":{"char":"󰒸","code":"f04b8"},"md-soccer_field":{"char":"󰠴","code":"f0834"},"md-social_distance_2_meters":{"char":"󱕹","code":"f1579"},"md-social_distance_6_feet":{"char":"󱕺","code":"f157a"},"md-sofa":{"char":"󰒹","code":"f04b9"},"md-sofa_outline":{"char":"󱕭","code":"f156d"},"md-sofa_single":{"char":"󱕮","code":"f156e"},"md-sofa_single_outline":{"char":"󱕯","code":"f156f"},"md-solar_panel":{"char":"󰶛","code":"f0d9b"},"md-solar_panel_large":{"char":"󰶜","code":"f0d9c"},"md-solar_power":{"char":"󰩲","code":"f0a72"},"md-solar_power_variant":{"char":"󱩳","code":"f1a73"},"md-solar_power_variant_outline":{"char":"󱩴","code":"f1a74"},"md-soldering_iron":{"char":"󱂒","code":"f1092"},"md-solid":{"char":"󰚍","code":"f068d"},"md-sony_playstation":{"char":"󰐔","code":"f0414"},"md-sort":{"char":"󰒺","code":"f04ba"},"md-sort_alphabetical_ascending":{"char":"󰖽","code":"f05bd"},"md-sort_alphabetical_ascending_variant":{"char":"󱅈","code":"f1148"},"md-sort_alphabetical_descending":{"char":"󰖿","code":"f05bf"},"md-sort_alphabetical_descending_variant":{"char":"󱅉","code":"f1149"},"md-sort_alphabetical_variant":{"char":"󰒻","code":"f04bb"},"md-sort_ascending":{"char":"󰒼","code":"f04bc"},"md-sort_bool_ascending":{"char":"󱎅","code":"f1385"},"md-sort_bool_ascending_variant":{"char":"󱎆","code":"f1386"},"md-sort_bool_descending":{"char":"󱎇","code":"f1387"},"md-sort_bool_descending_variant":{"char":"󱎈","code":"f1388"},"md-sort_calendar_ascending":{"char":"󱕇","code":"f1547"},"md-sort_calendar_descending":{"char":"󱕈","code":"f1548"},"md-sort_clock_ascending":{"char":"󱕉","code":"f1549"},"md-sort_clock_ascending_outline":{"char":"󱕊","code":"f154a"},"md-sort_clock_descending":{"char":"󱕋","code":"f154b"},"md-sort_clock_descending_outline":{"char":"󱕌","code":"f154c"},"md-sort_descending":{"char":"󰒽","code":"f04bd"},"md-sort_numeric_ascending":{"char":"󱎉","code":"f1389"},"md-sort_numeric_ascending_variant":{"char":"󰤍","code":"f090d"},"md-sort_numeric_descending":{"char":"󱎊","code":"f138a"},"md-sort_numeric_descending_variant":{"char":"󰫒","code":"f0ad2"},"md-sort_numeric_variant":{"char":"󰒾","code":"f04be"},"md-sort_reverse_variant":{"char":"󰌼","code":"f033c"},"md-sort_variant":{"char":"󰒿","code":"f04bf"},"md-sort_variant_lock":{"char":"󰳍","code":"f0ccd"},"md-sort_variant_lock_open":{"char":"󰳎","code":"f0cce"},"md-sort_variant_off":{"char":"󱪻","code":"f1abb"},"md-sort_variant_remove":{"char":"󱅇","code":"f1147"},"md-soundbar":{"char":"󱟛","code":"f17db"},"md-soundcloud":{"char":"󰓀","code":"f04c0"},"md-source_branch":{"char":"󰘬","code":"f062c"},"md-source_branch_check":{"char":"󱓏","code":"f14cf"},"md-source_branch_minus":{"char":"󱓋","code":"f14cb"},"md-source_branch_plus":{"char":"󱓊","code":"f14ca"},"md-source_branch_refresh":{"char":"󱓍","code":"f14cd"},"md-source_branch_remove":{"char":"󱓌","code":"f14cc"},"md-source_branch_sync":{"char":"󱓎","code":"f14ce"},"md-source_commit":{"char":"󰜘","code":"f0718"},"md-source_commit_end":{"char":"󰜙","code":"f0719"},"md-source_commit_end_local":{"char":"󰜚","code":"f071a"},"md-source_commit_local":{"char":"󰜛","code":"f071b"},"md-source_commit_next_local":{"char":"󰜜","code":"f071c"},"md-source_commit_start":{"char":"󰜝","code":"f071d"},"md-source_commit_start_next_local":{"char":"󰜞","code":"f071e"},"md-source_fork":{"char":"󰓁","code":"f04c1"},"md-source_merge":{"char":"󰘭","code":"f062d"},"md-source_pull":{"char":"󰓂","code":"f04c2"},"md-source_repository":{"char":"󰳏","code":"f0ccf"},"md-source_repository_multiple":{"char":"󰳐","code":"f0cd0"},"md-soy_sauce":{"char":"󰟮","code":"f07ee"},"md-soy_sauce_off":{"char":"󱏼","code":"f13fc"},"md-spa":{"char":"󰳑","code":"f0cd1"},"md-spa_outline":{"char":"󰳒","code":"f0cd2"},"md-space_invaders":{"char":"󰯉","code":"f0bc9"},"md-space_station":{"char":"󱎃","code":"f1383"},"md-spade":{"char":"󰹥","code":"f0e65"},"md-speaker":{"char":"󰓃","code":"f04c3"},"md-speaker_bluetooth":{"char":"󰦢","code":"f09a2"},"md-speaker_multiple":{"char":"󰴸","code":"f0d38"},"md-speaker_off":{"char":"󰓄","code":"f04c4"},"md-speaker_wireless":{"char":"󰜟","code":"f071f"},"md-spear":{"char":"󱡅","code":"f1845"},"md-speedometer":{"char":"󰓅","code":"f04c5"},"md-speedometer_medium":{"char":"󰾅","code":"f0f85"},"md-speedometer_slow":{"char":"󰾆","code":"f0f86"},"md-spellcheck":{"char":"󰓆","code":"f04c6"},"md-sphere":{"char":"󱥔","code":"f1954"},"md-sphere_off":{"char":"󱥕","code":"f1955"},"md-spider":{"char":"󱇪","code":"f11ea"},"md-spider_thread":{"char":"󱇫","code":"f11eb"},"md-spider_web":{"char":"󰯊","code":"f0bca"},"md-spirit_level":{"char":"󱓱","code":"f14f1"},"md-spoon_sugar":{"char":"󱐩","code":"f1429"},"md-spotify":{"char":"󰓇","code":"f04c7"},"md-spotlight":{"char":"󰓈","code":"f04c8"},"md-spotlight_beam":{"char":"󰓉","code":"f04c9"},"md-spray":{"char":"󰙥","code":"f0665"},"md-spray_bottle":{"char":"󰫠","code":"f0ae0"},"md-sprinkler":{"char":"󱁟","code":"f105f"},"md-sprinkler_fire":{"char":"󱦝","code":"f199d"},"md-sprinkler_variant":{"char":"󱁠","code":"f1060"},"md-sprout":{"char":"󰹦","code":"f0e66"},"md-sprout_outline":{"char":"󰹧","code":"f0e67"},"md-square":{"char":"󰝤","code":"f0764"},"md-square_circle":{"char":"󱔀","code":"f1500"},"md-square_edit_outline":{"char":"󰤌","code":"f090c"},"md-square_medium":{"char":"󰨓","code":"f0a13"},"md-square_medium_outline":{"char":"󰨔","code":"f0a14"},"md-square_off":{"char":"󱋮","code":"f12ee"},"md-square_off_outline":{"char":"󱋯","code":"f12ef"},"md-square_opacity":{"char":"󱡔","code":"f1854"},"md-square_outline":{"char":"󰝣","code":"f0763"},"md-square_root":{"char":"󰞄","code":"f0784"},"md-square_root_box":{"char":"󰦣","code":"f09a3"},"md-square_rounded":{"char":"󱓻","code":"f14fb"},"md-square_rounded_badge":{"char":"󱨇","code":"f1a07"},"md-square_rounded_badge_outline":{"char":"󱨈","code":"f1a08"},"md-square_rounded_outline":{"char":"󱓼","code":"f14fc"},"md-square_small":{"char":"󰨕","code":"f0a15"},"md-square_wave":{"char":"󱑻","code":"f147b"},"md-squeegee":{"char":"󰫡","code":"f0ae1"},"md-ssh":{"char":"󰣀","code":"f08c0"},"md-stack_exchange":{"char":"󰘋","code":"f060b"},"md-stack_overflow":{"char":"󰓌","code":"f04cc"},"md-stackpath":{"char":"󰍙","code":"f0359"},"md-stadium":{"char":"󰿹","code":"f0ff9"},"md-stadium_variant":{"char":"󰜠","code":"f0720"},"md-stairs":{"char":"󰓍","code":"f04cd"},"md-stairs_box":{"char":"󱎞","code":"f139e"},"md-stairs_down":{"char":"󱊾","code":"f12be"},"md-stairs_up":{"char":"󱊽","code":"f12bd"},"md-stamper":{"char":"󰴹","code":"f0d39"},"md-standard_definition":{"char":"󰟯","code":"f07ef"},"md-star":{"char":"󰓎","code":"f04ce"},"md-star_box":{"char":"󰩳","code":"f0a73"},"md-star_box_multiple":{"char":"󱊆","code":"f1286"},"md-star_box_multiple_outline":{"char":"󱊇","code":"f1287"},"md-star_box_outline":{"char":"󰩴","code":"f0a74"},"md-star_check":{"char":"󱕦","code":"f1566"},"md-star_check_outline":{"char":"󱕪","code":"f156a"},"md-star_circle":{"char":"󰓏","code":"f04cf"},"md-star_circle_outline":{"char":"󰦤","code":"f09a4"},"md-star_cog":{"char":"󱙨","code":"f1668"},"md-star_cog_outline":{"char":"󱙩","code":"f1669"},"md-star_crescent":{"char":"󰥹","code":"f0979"},"md-star_david":{"char":"󰥺","code":"f097a"},"md-star_face":{"char":"󰦥","code":"f09a5"},"md-star_four_points":{"char":"󰫢","code":"f0ae2"},"md-star_four_points_outline":{"char":"󰫣","code":"f0ae3"},"md-star_half":{"char":"󰉆","code":"f0246"},"md-star_half_full":{"char":"󰓐","code":"f04d0"},"md-star_minus":{"char":"󱕤","code":"f1564"},"md-star_minus_outline":{"char":"󱕨","code":"f1568"},"md-star_off":{"char":"󰓑","code":"f04d1"},"md-star_off_outline":{"char":"󱕛","code":"f155b"},"md-star_outline":{"char":"󰓒","code":"f04d2"},"md-star_plus":{"char":"󱕣","code":"f1563"},"md-star_plus_outline":{"char":"󱕧","code":"f1567"},"md-star_remove":{"char":"󱕥","code":"f1565"},"md-star_remove_outline":{"char":"󱕩","code":"f1569"},"md-star_settings":{"char":"󱙪","code":"f166a"},"md-star_settings_outline":{"char":"󱙫","code":"f166b"},"md-star_shooting":{"char":"󱝁","code":"f1741"},"md-star_shooting_outline":{"char":"󱝂","code":"f1742"},"md-star_three_points":{"char":"󰫤","code":"f0ae4"},"md-star_three_points_outline":{"char":"󰫥","code":"f0ae5"},"md-state_machine":{"char":"󱇯","code":"f11ef"},"md-steam":{"char":"󰓓","code":"f04d3"},"md-steering":{"char":"󰓔","code":"f04d4"},"md-steering_off":{"char":"󰤎","code":"f090e"},"md-step_backward":{"char":"󰓕","code":"f04d5"},"md-step_backward_2":{"char":"󰓖","code":"f04d6"},"md-step_forward":{"char":"󰓗","code":"f04d7"},"md-step_forward_2":{"char":"󰓘","code":"f04d8"},"md-stethoscope":{"char":"󰓙","code":"f04d9"},"md-sticker":{"char":"󱍤","code":"f1364"},"md-sticker_alert":{"char":"󱍥","code":"f1365"},"md-sticker_alert_outline":{"char":"󱍦","code":"f1366"},"md-sticker_check":{"char":"󱍧","code":"f1367"},"md-sticker_check_outline":{"char":"󱍨","code":"f1368"},"md-sticker_circle_outline":{"char":"󰗐","code":"f05d0"},"md-sticker_emoji":{"char":"󰞅","code":"f0785"},"md-sticker_minus":{"char":"󱍩","code":"f1369"},"md-sticker_minus_outline":{"char":"󱍪","code":"f136a"},"md-sticker_outline":{"char":"󱍫","code":"f136b"},"md-sticker_plus":{"char":"󱍬","code":"f136c"},"md-sticker_plus_outline":{"char":"󱍭","code":"f136d"},"md-sticker_remove":{"char":"󱍮","code":"f136e"},"md-sticker_remove_outline":{"char":"󱍯","code":"f136f"},"md-sticker_text":{"char":"󱞎","code":"f178e"},"md-sticker_text_outline":{"char":"󱞏","code":"f178f"},"md-stocking":{"char":"󰓚","code":"f04da"},"md-stomach":{"char":"󱂓","code":"f1093"},"md-stool":{"char":"󱥝","code":"f195d"},"md-stool_outline":{"char":"󱥞","code":"f195e"},"md-stop":{"char":"󰓛","code":"f04db"},"md-stop_circle":{"char":"󰙦","code":"f0666"},"md-stop_circle_outline":{"char":"󰙧","code":"f0667"},"md-storage_tank":{"char":"󱩵","code":"f1a75"},"md-storage_tank_outline":{"char":"󱩶","code":"f1a76"},"md-store":{"char":"󰓜","code":"f04dc"},"md-store_24_hour":{"char":"󰓝","code":"f04dd"},"md-store_alert":{"char":"󱣁","code":"f18c1"},"md-store_alert_outline":{"char":"󱣂","code":"f18c2"},"md-store_check":{"char":"󱣃","code":"f18c3"},"md-store_check_outline":{"char":"󱣄","code":"f18c4"},"md-store_clock":{"char":"󱣅","code":"f18c5"},"md-store_clock_outline":{"char":"󱣆","code":"f18c6"},"md-store_cog":{"char":"󱣇","code":"f18c7"},"md-store_cog_outline":{"char":"󱣈","code":"f18c8"},"md-store_edit":{"char":"󱣉","code":"f18c9"},"md-store_edit_outline":{"char":"󱣊","code":"f18ca"},"md-store_marker":{"char":"󱣋","code":"f18cb"},"md-store_marker_outline":{"char":"󱣌","code":"f18cc"},"md-store_minus":{"char":"󱙞","code":"f165e"},"md-store_minus_outline":{"char":"󱣍","code":"f18cd"},"md-store_off":{"char":"󱣎","code":"f18ce"},"md-store_off_outline":{"char":"󱣏","code":"f18cf"},"md-store_outline":{"char":"󱍡","code":"f1361"},"md-store_plus":{"char":"󱙟","code":"f165f"},"md-store_plus_outline":{"char":"󱣐","code":"f18d0"},"md-store_remove":{"char":"󱙠","code":"f1660"},"md-store_remove_outline":{"char":"󱣑","code":"f18d1"},"md-store_search":{"char":"󱣒","code":"f18d2"},"md-store_search_outline":{"char":"󱣓","code":"f18d3"},"md-store_settings":{"char":"󱣔","code":"f18d4"},"md-store_settings_outline":{"char":"󱣕","code":"f18d5"},"md-storefront":{"char":"󰟇","code":"f07c7"},"md-storefront_outline":{"char":"󱃁","code":"f10c1"},"md-stove":{"char":"󰓞","code":"f04de"},"md-strategy":{"char":"󱇖","code":"f11d6"},"md-stretch_to_page":{"char":"󰼫","code":"f0f2b"},"md-stretch_to_page_outline":{"char":"󰼬","code":"f0f2c"},"md-string_lights":{"char":"󱊺","code":"f12ba"},"md-string_lights_off":{"char":"󱊻","code":"f12bb"},"md-subdirectory_arrow_left":{"char":"󰘌","code":"f060c"},"md-subdirectory_arrow_right":{"char":"󰘍","code":"f060d"},"md-submarine":{"char":"󱕬","code":"f156c"},"md-subtitles":{"char":"󰨖","code":"f0a16"},"md-subtitles_outline":{"char":"󰨗","code":"f0a17"},"md-subway":{"char":"󰚬","code":"f06ac"},"md-subway_alert_variant":{"char":"󰶝","code":"f0d9d"},"md-subway_variant":{"char":"󰓟","code":"f04df"},"md-summit":{"char":"󰞆","code":"f0786"},"md-sun_clock":{"char":"󱩷","code":"f1a77"},"md-sun_clock_outline":{"char":"󱩸","code":"f1a78"},"md-sun_compass":{"char":"󱦥","code":"f19a5"},"md-sun_snowflake":{"char":"󱞖","code":"f1796"},"md-sun_snowflake_variant":{"char":"󱩹","code":"f1a79"},"md-sun_thermometer":{"char":"󱣖","code":"f18d6"},"md-sun_thermometer_outline":{"char":"󱣗","code":"f18d7"},"md-sun_wireless":{"char":"󱟾","code":"f17fe"},"md-sun_wireless_outline":{"char":"󱟿","code":"f17ff"},"md-sunglasses":{"char":"󰓠","code":"f04e0"},"md-surfing":{"char":"󱝆","code":"f1746"},"md-surround_sound":{"char":"󰗅","code":"f05c5"},"md-surround_sound_2_0":{"char":"󰟰","code":"f07f0"},"md-surround_sound_2_1":{"char":"󱜩","code":"f1729"},"md-surround_sound_3_1":{"char":"󰟱","code":"f07f1"},"md-surround_sound_5_1":{"char":"󰟲","code":"f07f2"},"md-surround_sound_5_1_2":{"char":"󱜪","code":"f172a"},"md-surround_sound_7_1":{"char":"󰟳","code":"f07f3"},"md-svg":{"char":"󰜡","code":"f0721"},"md-swap_horizontal":{"char":"󰓡","code":"f04e1"},"md-swap_horizontal_bold":{"char":"󰯍","code":"f0bcd"},"md-swap_horizontal_circle":{"char":"󰿡","code":"f0fe1"},"md-swap_horizontal_circle_outline":{"char":"󰿢","code":"f0fe2"},"md-swap_horizontal_variant":{"char":"󰣁","code":"f08c1"},"md-swap_vertical":{"char":"󰓢","code":"f04e2"},"md-swap_vertical_bold":{"char":"󰯎","code":"f0bce"},"md-swap_vertical_circle":{"char":"󰿣","code":"f0fe3"},"md-swap_vertical_circle_outline":{"char":"󰿤","code":"f0fe4"},"md-swap_vertical_variant":{"char":"󰣂","code":"f08c2"},"md-swim":{"char":"󰓣","code":"f04e3"},"md-switch":{"char":"󰓤","code":"f04e4"},"md-sword":{"char":"󰓥","code":"f04e5"},"md-sword_cross":{"char":"󰞇","code":"f0787"},"md-syllabary_hangul":{"char":"󱌳","code":"f1333"},"md-syllabary_hiragana":{"char":"󱌴","code":"f1334"},"md-syllabary_katakana":{"char":"󱌵","code":"f1335"},"md-syllabary_katakana_halfwidth":{"char":"󱌶","code":"f1336"},"md-symbol":{"char":"󱔁","code":"f1501"},"md-symfony":{"char":"󰫦","code":"f0ae6"},"md-sync":{"char":"󰓦","code":"f04e6"},"md-sync_alert":{"char":"󰓧","code":"f04e7"},"md-sync_circle":{"char":"󱍸","code":"f1378"},"md-sync_off":{"char":"󰓨","code":"f04e8"},"md-tab":{"char":"󰓩","code":"f04e9"},"md-tab_minus":{"char":"󰭋","code":"f0b4b"},"md-tab_plus":{"char":"󰝜","code":"f075c"},"md-tab_remove":{"char":"󰭌","code":"f0b4c"},"md-tab_search":{"char":"󱦞","code":"f199e"},"md-tab_unselected":{"char":"󰓪","code":"f04ea"},"md-table":{"char":"󰓫","code":"f04eb"},"md-table_account":{"char":"󱎹","code":"f13b9"},"md-table_alert":{"char":"󱎺","code":"f13ba"},"md-table_arrow_down":{"char":"󱎻","code":"f13bb"},"md-table_arrow_left":{"char":"󱎼","code":"f13bc"},"md-table_arrow_right":{"char":"󱎽","code":"f13bd"},"md-table_arrow_up":{"char":"󱎾","code":"f13be"},"md-table_border":{"char":"󰨘","code":"f0a18"},"md-table_cancel":{"char":"󱎿","code":"f13bf"},"md-table_chair":{"char":"󱁡","code":"f1061"},"md-table_check":{"char":"󱏀","code":"f13c0"},"md-table_clock":{"char":"󱏁","code":"f13c1"},"md-table_cog":{"char":"󱏂","code":"f13c2"},"md-table_column":{"char":"󰠵","code":"f0835"},"md-table_column_plus_after":{"char":"󰓬","code":"f04ec"},"md-table_column_plus_before":{"char":"󰓭","code":"f04ed"},"md-table_column_remove":{"char":"󰓮","code":"f04ee"},"md-table_column_width":{"char":"󰓯","code":"f04ef"},"md-table_edit":{"char":"󰓰","code":"f04f0"},"md-table_eye":{"char":"󱂔","code":"f1094"},"md-table_eye_off":{"char":"󱏃","code":"f13c3"},"md-table_furniture":{"char":"󰖼","code":"f05bc"},"md-table_headers_eye":{"char":"󱈝","code":"f121d"},"md-table_headers_eye_off":{"char":"󱈞","code":"f121e"},"md-table_heart":{"char":"󱏄","code":"f13c4"},"md-table_key":{"char":"󱏅","code":"f13c5"},"md-table_large":{"char":"󰓱","code":"f04f1"},"md-table_large_plus":{"char":"󰾇","code":"f0f87"},"md-table_large_remove":{"char":"󰾈","code":"f0f88"},"md-table_lock":{"char":"󱏆","code":"f13c6"},"md-table_merge_cells":{"char":"󰦦","code":"f09a6"},"md-table_minus":{"char":"󱏇","code":"f13c7"},"md-table_multiple":{"char":"󱏈","code":"f13c8"},"md-table_network":{"char":"󱏉","code":"f13c9"},"md-table_of_contents":{"char":"󰠶","code":"f0836"},"md-table_off":{"char":"󱏊","code":"f13ca"},"md-table_picnic":{"char":"󱝃","code":"f1743"},"md-table_pivot":{"char":"󱠼","code":"f183c"},"md-table_plus":{"char":"󰩵","code":"f0a75"},"md-table_refresh":{"char":"󱎠","code":"f13a0"},"md-table_remove":{"char":"󰩶","code":"f0a76"},"md-table_row":{"char":"󰠷","code":"f0837"},"md-table_row_height":{"char":"󰓲","code":"f04f2"},"md-table_row_plus_after":{"char":"󰓳","code":"f04f3"},"md-table_row_plus_before":{"char":"󰓴","code":"f04f4"},"md-table_row_remove":{"char":"󰓵","code":"f04f5"},"md-table_search":{"char":"󰤏","code":"f090f"},"md-table_settings":{"char":"󰠸","code":"f0838"},"md-table_split_cell":{"char":"󱐪","code":"f142a"},"md-table_star":{"char":"󱏋","code":"f13cb"},"md-table_sync":{"char":"󱎡","code":"f13a1"},"md-table_tennis":{"char":"󰹨","code":"f0e68"},"md-tablet":{"char":"󰓶","code":"f04f6"},"md-tablet_android":{"char":"󰓷","code":"f04f7"},"md-tablet_cellphone":{"char":"󰦧","code":"f09a7"},"md-tablet_dashboard":{"char":"󰻎","code":"f0ece"},"md-taco":{"char":"󰝢","code":"f0762"},"md-tag":{"char":"󰓹","code":"f04f9"},"md-tag_arrow_down":{"char":"󱜫","code":"f172b"},"md-tag_arrow_down_outline":{"char":"󱜬","code":"f172c"},"md-tag_arrow_left":{"char":"󱜭","code":"f172d"},"md-tag_arrow_left_outline":{"char":"󱜮","code":"f172e"},"md-tag_arrow_right":{"char":"󱜯","code":"f172f"},"md-tag_arrow_right_outline":{"char":"󱜰","code":"f1730"},"md-tag_arrow_up":{"char":"󱜱","code":"f1731"},"md-tag_arrow_up_outline":{"char":"󱜲","code":"f1732"},"md-tag_check":{"char":"󱩺","code":"f1a7a"},"md-tag_check_outline":{"char":"󱩻","code":"f1a7b"},"md-tag_faces":{"char":"󰓺","code":"f04fa"},"md-tag_heart":{"char":"󰚋","code":"f068b"},"md-tag_heart_outline":{"char":"󰯏","code":"f0bcf"},"md-tag_minus":{"char":"󰤐","code":"f0910"},"md-tag_minus_outline":{"char":"󱈟","code":"f121f"},"md-tag_multiple":{"char":"󰓻","code":"f04fb"},"md-tag_multiple_outline":{"char":"󱋷","code":"f12f7"},"md-tag_off":{"char":"󱈠","code":"f1220"},"md-tag_off_outline":{"char":"󱈡","code":"f1221"},"md-tag_outline":{"char":"󰓼","code":"f04fc"},"md-tag_plus":{"char":"󰜢","code":"f0722"},"md-tag_plus_outline":{"char":"󱈢","code":"f1222"},"md-tag_remove":{"char":"󰜣","code":"f0723"},"md-tag_remove_outline":{"char":"󱈣","code":"f1223"},"md-tag_search":{"char":"󱤇","code":"f1907"},"md-tag_search_outline":{"char":"󱤈","code":"f1908"},"md-tag_text":{"char":"󱈤","code":"f1224"},"md-tag_text_outline":{"char":"󰓽","code":"f04fd"},"md-tailwind":{"char":"󱏿","code":"f13ff"},"md-tally_mark_1":{"char":"󱪼","code":"f1abc"},"md-tally_mark_2":{"char":"󱪽","code":"f1abd"},"md-tally_mark_3":{"char":"󱪾","code":"f1abe"},"md-tally_mark_4":{"char":"󱪿","code":"f1abf"},"md-tally_mark_5":{"char":"󱫀","code":"f1ac0"},"md-tangram":{"char":"󰓸","code":"f04f8"},"md-tank":{"char":"󰴺","code":"f0d3a"},"md-tanker_truck":{"char":"󰿥","code":"f0fe5"},"md-tape_drive":{"char":"󱛟","code":"f16df"},"md-tape_measure":{"char":"󰭍","code":"f0b4d"},"md-target":{"char":"󰓾","code":"f04fe"},"md-target_account":{"char":"󰯐","code":"f0bd0"},"md-target_variant":{"char":"󰩷","code":"f0a77"},"md-taxi":{"char":"󰓿","code":"f04ff"},"md-tea":{"char":"󰶞","code":"f0d9e"},"md-tea_outline":{"char":"󰶟","code":"f0d9f"},"md-teamviewer":{"char":"󰔀","code":"f0500"},"md-teddy_bear":{"char":"󱣻","code":"f18fb"},"md-telescope":{"char":"󰭎","code":"f0b4e"},"md-television":{"char":"󰔂","code":"f0502"},"md-television_ambient_light":{"char":"󱍖","code":"f1356"},"md-television_box":{"char":"󰠹","code":"f0839"},"md-television_classic":{"char":"󰟴","code":"f07f4"},"md-television_classic_off":{"char":"󰠺","code":"f083a"},"md-television_guide":{"char":"󰔃","code":"f0503"},"md-television_off":{"char":"󰠻","code":"f083b"},"md-television_pause":{"char":"󰾉","code":"f0f89"},"md-television_play":{"char":"󰻏","code":"f0ecf"},"md-television_shimmer":{"char":"󱄐","code":"f1110"},"md-television_stop":{"char":"󰾊","code":"f0f8a"},"md-temperature_celsius":{"char":"󰔄","code":"f0504"},"md-temperature_fahrenheit":{"char":"󰔅","code":"f0505"},"md-temperature_kelvin":{"char":"󰔆","code":"f0506"},"md-tennis":{"char":"󰶠","code":"f0da0"},"md-tennis_ball":{"char":"󰔇","code":"f0507"},"md-tent":{"char":"󰔈","code":"f0508"},"md-terraform":{"char":"󱁢","code":"f1062"},"md-test_tube":{"char":"󰙨","code":"f0668"},"md-test_tube_empty":{"char":"󰤑","code":"f0911"},"md-test_tube_off":{"char":"󰤒","code":"f0912"},"md-text":{"char":"󰦨","code":"f09a8"},"md-text_account":{"char":"󱕰","code":"f1570"},"md-text_box":{"char":"󰈚","code":"f021a"},"md-text_box_check":{"char":"󰺦","code":"f0ea6"},"md-text_box_check_outline":{"char":"󰺧","code":"f0ea7"},"md-text_box_edit":{"char":"󱩼","code":"f1a7c"},"md-text_box_edit_outline":{"char":"󱩽","code":"f1a7d"},"md-text_box_minus":{"char":"󰺨","code":"f0ea8"},"md-text_box_minus_outline":{"char":"󰺩","code":"f0ea9"},"md-text_box_multiple":{"char":"󰪷","code":"f0ab7"},"md-text_box_multiple_outline":{"char":"󰪸","code":"f0ab8"},"md-text_box_outline":{"char":"󰧭","code":"f09ed"},"md-text_box_plus":{"char":"󰺪","code":"f0eaa"},"md-text_box_plus_outline":{"char":"󰺫","code":"f0eab"},"md-text_box_remove":{"char":"󰺬","code":"f0eac"},"md-text_box_remove_outline":{"char":"󰺭","code":"f0ead"},"md-text_box_search":{"char":"󰺮","code":"f0eae"},"md-text_box_search_outline":{"char":"󰺯","code":"f0eaf"},"md-text_long":{"char":"󰦪","code":"f09aa"},"md-text_recognition":{"char":"󱄽","code":"f113d"},"md-text_search":{"char":"󱎸","code":"f13b8"},"md-text_search_variant":{"char":"󱩾","code":"f1a7e"},"md-text_shadow":{"char":"󰙩","code":"f0669"},"md-text_short":{"char":"󰦩","code":"f09a9"},"md-text_to_speech":{"char":"󰔊","code":"f050a"},"md-text_to_speech_off":{"char":"󰔋","code":"f050b"},"md-texture":{"char":"󰔌","code":"f050c"},"md-texture_box":{"char":"󰿦","code":"f0fe6"},"md-theater":{"char":"󰔍","code":"f050d"},"md-theme_light_dark":{"char":"󰔎","code":"f050e"},"md-thermometer":{"char":"󰔏","code":"f050f"},"md-thermometer_alert":{"char":"󰸁","code":"f0e01"},"md-thermometer_bluetooth":{"char":"󱢕","code":"f1895"},"md-thermometer_check":{"char":"󱩿","code":"f1a7f"},"md-thermometer_chevron_down":{"char":"󰸂","code":"f0e02"},"md-thermometer_chevron_up":{"char":"󰸃","code":"f0e03"},"md-thermometer_high":{"char":"󱃂","code":"f10c2"},"md-thermometer_lines":{"char":"󰔐","code":"f0510"},"md-thermometer_low":{"char":"󱃃","code":"f10c3"},"md-thermometer_minus":{"char":"󰸄","code":"f0e04"},"md-thermometer_off":{"char":"󱔱","code":"f1531"},"md-thermometer_plus":{"char":"󰸅","code":"f0e05"},"md-thermometer_water":{"char":"󱪀","code":"f1a80"},"md-thermostat":{"char":"󰎓","code":"f0393"},"md-thermostat_box":{"char":"󰢑","code":"f0891"},"md-thought_bubble":{"char":"󰟶","code":"f07f6"},"md-thought_bubble_outline":{"char":"󰟷","code":"f07f7"},"md-thumb_down":{"char":"󰔑","code":"f0511"},"md-thumb_down_outline":{"char":"󰔒","code":"f0512"},"md-thumb_up":{"char":"󰔓","code":"f0513"},"md-thumb_up_outline":{"char":"󰔔","code":"f0514"},"md-thumbs_up_down":{"char":"󰔕","code":"f0515"},"md-thumbs_up_down_outline":{"char":"󱤔","code":"f1914"},"md-ticket":{"char":"󰔖","code":"f0516"},"md-ticket_account":{"char":"󰔗","code":"f0517"},"md-ticket_confirmation":{"char":"󰔘","code":"f0518"},"md-ticket_confirmation_outline":{"char":"󱎪","code":"f13aa"},"md-ticket_outline":{"char":"󰤓","code":"f0913"},"md-ticket_percent":{"char":"󰜤","code":"f0724"},"md-ticket_percent_outline":{"char":"󱐫","code":"f142b"},"md-tie":{"char":"󰔙","code":"f0519"},"md-tilde":{"char":"󰜥","code":"f0725"},"md-tilde_off":{"char":"󱣳","code":"f18f3"},"md-timelapse":{"char":"󰔚","code":"f051a"},"md-timeline":{"char":"󰯑","code":"f0bd1"},"md-timeline_alert":{"char":"󰾕","code":"f0f95"},"md-timeline_alert_outline":{"char":"󰾘","code":"f0f98"},"md-timeline_check":{"char":"󱔲","code":"f1532"},"md-timeline_check_outline":{"char":"󱔳","code":"f1533"},"md-timeline_clock":{"char":"󱇻","code":"f11fb"},"md-timeline_clock_outline":{"char":"󱇼","code":"f11fc"},"md-timeline_help":{"char":"󰾙","code":"f0f99"},"md-timeline_help_outline":{"char":"󰾚","code":"f0f9a"},"md-timeline_minus":{"char":"󱔴","code":"f1534"},"md-timeline_minus_outline":{"char":"󱔵","code":"f1535"},"md-timeline_outline":{"char":"󰯒","code":"f0bd2"},"md-timeline_plus":{"char":"󰾖","code":"f0f96"},"md-timeline_plus_outline":{"char":"󰾗","code":"f0f97"},"md-timeline_remove":{"char":"󱔶","code":"f1536"},"md-timeline_remove_outline":{"char":"󱔷","code":"f1537"},"md-timeline_text":{"char":"󰯓","code":"f0bd3"},"md-timeline_text_outline":{"char":"󰯔","code":"f0bd4"},"md-timer":{"char":"󱎫","code":"f13ab"},"md-timer_10":{"char":"󰔜","code":"f051c"},"md-timer_3":{"char":"󰔝","code":"f051d"},"md-timer_alert":{"char":"󱫌","code":"f1acc"},"md-timer_alert_outline":{"char":"󱫍","code":"f1acd"},"md-timer_cancel":{"char":"󱫎","code":"f1ace"},"md-timer_cancel_outline":{"char":"󱫏","code":"f1acf"},"md-timer_check":{"char":"󱫐","code":"f1ad0"},"md-timer_check_outline":{"char":"󱫑","code":"f1ad1"},"md-timer_cog":{"char":"󱤥","code":"f1925"},"md-timer_cog_outline":{"char":"󱤦","code":"f1926"},"md-timer_edit":{"char":"󱫒","code":"f1ad2"},"md-timer_edit_outline":{"char":"󱫓","code":"f1ad3"},"md-timer_lock":{"char":"󱫔","code":"f1ad4"},"md-timer_lock_open":{"char":"󱫕","code":"f1ad5"},"md-timer_lock_open_outline":{"char":"󱫖","code":"f1ad6"},"md-timer_lock_outline":{"char":"󱫗","code":"f1ad7"},"md-timer_marker":{"char":"󱫘","code":"f1ad8"},"md-timer_marker_outline":{"char":"󱫙","code":"f1ad9"},"md-timer_minus":{"char":"󱫚","code":"f1ada"},"md-timer_minus_outline":{"char":"󱫛","code":"f1adb"},"md-timer_music":{"char":"󱫜","code":"f1adc"},"md-timer_music_outline":{"char":"󱫝","code":"f1add"},"md-timer_off":{"char":"󱎬","code":"f13ac"},"md-timer_off_outline":{"char":"󰔞","code":"f051e"},"md-timer_outline":{"char":"󰔛","code":"f051b"},"md-timer_pause":{"char":"󱫞","code":"f1ade"},"md-timer_pause_outline":{"char":"󱫟","code":"f1adf"},"md-timer_play":{"char":"󱫠","code":"f1ae0"},"md-timer_play_outline":{"char":"󱫡","code":"f1ae1"},"md-timer_plus":{"char":"󱫢","code":"f1ae2"},"md-timer_plus_outline":{"char":"󱫣","code":"f1ae3"},"md-timer_refresh":{"char":"󱫤","code":"f1ae4"},"md-timer_refresh_outline":{"char":"󱫥","code":"f1ae5"},"md-timer_remove":{"char":"󱫦","code":"f1ae6"},"md-timer_remove_outline":{"char":"󱫧","code":"f1ae7"},"md-timer_sand":{"char":"󰔟","code":"f051f"},"md-timer_sand_complete":{"char":"󱦟","code":"f199f"},"md-timer_sand_empty":{"char":"󰚭","code":"f06ad"},"md-timer_sand_full":{"char":"󰞌","code":"f078c"},"md-timer_sand_paused":{"char":"󱦠","code":"f19a0"},"md-timer_settings":{"char":"󱤣","code":"f1923"},"md-timer_settings_outline":{"char":"󱤤","code":"f1924"},"md-timer_star":{"char":"󱫨","code":"f1ae8"},"md-timer_star_outline":{"char":"󱫩","code":"f1ae9"},"md-timer_stop":{"char":"󱫪","code":"f1aea"},"md-timer_stop_outline":{"char":"󱫫","code":"f1aeb"},"md-timer_sync":{"char":"󱫬","code":"f1aec"},"md-timer_sync_outline":{"char":"󱫭","code":"f1aed"},"md-timetable":{"char":"󰔠","code":"f0520"},"md-tire":{"char":"󱢖","code":"f1896"},"md-toaster":{"char":"󱁣","code":"f1063"},"md-toaster_off":{"char":"󱆷","code":"f11b7"},"md-toaster_oven":{"char":"󰳓","code":"f0cd3"},"md-toggle_switch":{"char":"󰔡","code":"f0521"},"md-toggle_switch_off":{"char":"󰔢","code":"f0522"},"md-toggle_switch_off_outline":{"char":"󰨙","code":"f0a19"},"md-toggle_switch_outline":{"char":"󰨚","code":"f0a1a"},"md-toggle_switch_variant":{"char":"󱨥","code":"f1a25"},"md-toggle_switch_variant_off":{"char":"󱨦","code":"f1a26"},"md-toilet":{"char":"󰦫","code":"f09ab"},"md-toolbox":{"char":"󰦬","code":"f09ac"},"md-toolbox_outline":{"char":"󰦭","code":"f09ad"},"md-tools":{"char":"󱁤","code":"f1064"},"md-tooltip":{"char":"󰔣","code":"f0523"},"md-tooltip_account":{"char":"󰀌","code":"f000c"},"md-tooltip_cellphone":{"char":"󱠻","code":"f183b"},"md-tooltip_check":{"char":"󱕜","code":"f155c"},"md-tooltip_check_outline":{"char":"󱕝","code":"f155d"},"md-tooltip_edit":{"char":"󰔤","code":"f0524"},"md-tooltip_edit_outline":{"char":"󱋅","code":"f12c5"},"md-tooltip_image":{"char":"󰔥","code":"f0525"},"md-tooltip_image_outline":{"char":"󰯕","code":"f0bd5"},"md-tooltip_minus":{"char":"󱕞","code":"f155e"},"md-tooltip_minus_outline":{"char":"󱕟","code":"f155f"},"md-tooltip_outline":{"char":"󰔦","code":"f0526"},"md-tooltip_plus":{"char":"󰯖","code":"f0bd6"},"md-tooltip_plus_outline":{"char":"󰔧","code":"f0527"},"md-tooltip_remove":{"char":"󱕠","code":"f1560"},"md-tooltip_remove_outline":{"char":"󱕡","code":"f1561"},"md-tooltip_text":{"char":"󰔨","code":"f0528"},"md-tooltip_text_outline":{"char":"󰯗","code":"f0bd7"},"md-tooth":{"char":"󰣃","code":"f08c3"},"md-tooth_outline":{"char":"󰔩","code":"f0529"},"md-toothbrush":{"char":"󱄩","code":"f1129"},"md-toothbrush_electric":{"char":"󱄬","code":"f112c"},"md-toothbrush_paste":{"char":"󱄪","code":"f112a"},"md-torch":{"char":"󱘆","code":"f1606"},"md-tortoise":{"char":"󰴻","code":"f0d3b"},"md-toslink":{"char":"󱊸","code":"f12b8"},"md-tournament":{"char":"󰦮","code":"f09ae"},"md-tow_truck":{"char":"󰠼","code":"f083c"},"md-tower_beach":{"char":"󰚁","code":"f0681"},"md-tower_fire":{"char":"󰚂","code":"f0682"},"md-town_hall":{"char":"󱡵","code":"f1875"},"md-toy_brick":{"char":"󱊈","code":"f1288"},"md-toy_brick_marker":{"char":"󱊉","code":"f1289"},"md-toy_brick_marker_outline":{"char":"󱊊","code":"f128a"},"md-toy_brick_minus":{"char":"󱊋","code":"f128b"},"md-toy_brick_minus_outline":{"char":"󱊌","code":"f128c"},"md-toy_brick_outline":{"char":"󱊍","code":"f128d"},"md-toy_brick_plus":{"char":"󱊎","code":"f128e"},"md-toy_brick_plus_outline":{"char":"󱊏","code":"f128f"},"md-toy_brick_remove":{"char":"󱊐","code":"f1290"},"md-toy_brick_remove_outline":{"char":"󱊑","code":"f1291"},"md-toy_brick_search":{"char":"󱊒","code":"f1292"},"md-toy_brick_search_outline":{"char":"󱊓","code":"f1293"},"md-track_light":{"char":"󰤔","code":"f0914"},"md-trackpad":{"char":"󰟸","code":"f07f8"},"md-trackpad_lock":{"char":"󰤳","code":"f0933"},"md-tractor":{"char":"󰢒","code":"f0892"},"md-tractor_variant":{"char":"󱓄","code":"f14c4"},"md-trademark":{"char":"󰩸","code":"f0a78"},"md-traffic_cone":{"char":"󱍼","code":"f137c"},"md-traffic_light":{"char":"󰔫","code":"f052b"},"md-traffic_light_outline":{"char":"󱠪","code":"f182a"},"md-train":{"char":"󰔬","code":"f052c"},"md-train_car":{"char":"󰯘","code":"f0bd8"},"md-train_car_passenger":{"char":"󱜳","code":"f1733"},"md-train_car_passenger_door":{"char":"󱜴","code":"f1734"},"md-train_car_passenger_door_open":{"char":"󱜵","code":"f1735"},"md-train_car_passenger_variant":{"char":"󱜶","code":"f1736"},"md-train_variant":{"char":"󰣄","code":"f08c4"},"md-tram":{"char":"󰔭","code":"f052d"},"md-tram_side":{"char":"󰿧","code":"f0fe7"},"md-transcribe":{"char":"󰔮","code":"f052e"},"md-transcribe_close":{"char":"󰔯","code":"f052f"},"md-transfer":{"char":"󱁥","code":"f1065"},"md-transfer_down":{"char":"󰶡","code":"f0da1"},"md-transfer_left":{"char":"󰶢","code":"f0da2"},"md-transfer_right":{"char":"󰔰","code":"f0530"},"md-transfer_up":{"char":"󰶣","code":"f0da3"},"md-transit_connection":{"char":"󰴼","code":"f0d3c"},"md-transit_connection_horizontal":{"char":"󱕆","code":"f1546"},"md-transit_connection_variant":{"char":"󰴽","code":"f0d3d"},"md-transit_detour":{"char":"󰾋","code":"f0f8b"},"md-transit_skip":{"char":"󱔕","code":"f1515"},"md-transit_transfer":{"char":"󰚮","code":"f06ae"},"md-transition":{"char":"󰤕","code":"f0915"},"md-transition_masked":{"char":"󰤖","code":"f0916"},"md-translate":{"char":"󰗊","code":"f05ca"},"md-translate_off":{"char":"󰸆","code":"f0e06"},"md-transmission_tower":{"char":"󰴾","code":"f0d3e"},"md-transmission_tower_export":{"char":"󱤬","code":"f192c"},"md-transmission_tower_import":{"char":"󱤭","code":"f192d"},"md-transmission_tower_off":{"char":"󱧝","code":"f19dd"},"md-trash_can":{"char":"󰩹","code":"f0a79"},"md-trash_can_outline":{"char":"󰩺","code":"f0a7a"},"md-tray":{"char":"󱊔","code":"f1294"},"md-tray_alert":{"char":"󱊕","code":"f1295"},"md-tray_arrow_down":{"char":"󰄠","code":"f0120"},"md-tray_arrow_up":{"char":"󰄝","code":"f011d"},"md-tray_full":{"char":"󱊖","code":"f1296"},"md-tray_minus":{"char":"󱊗","code":"f1297"},"md-tray_plus":{"char":"󱊘","code":"f1298"},"md-tray_remove":{"char":"󱊙","code":"f1299"},"md-treasure_chest":{"char":"󰜦","code":"f0726"},"md-tree":{"char":"󰔱","code":"f0531"},"md-tree_outline":{"char":"󰹩","code":"f0e69"},"md-trello":{"char":"󰔲","code":"f0532"},"md-trending_down":{"char":"󰔳","code":"f0533"},"md-trending_neutral":{"char":"󰔴","code":"f0534"},"md-trending_up":{"char":"󰔵","code":"f0535"},"md-triangle":{"char":"󰔶","code":"f0536"},"md-triangle_outline":{"char":"󰔷","code":"f0537"},"md-triangle_small_down":{"char":"󱨉","code":"f1a09"},"md-triangle_small_up":{"char":"󱨊","code":"f1a0a"},"md-triangle_wave":{"char":"󱑼","code":"f147c"},"md-triforce":{"char":"󰯙","code":"f0bd9"},"md-trophy":{"char":"󰔸","code":"f0538"},"md-trophy_award":{"char":"󰔹","code":"f0539"},"md-trophy_broken":{"char":"󰶤","code":"f0da4"},"md-trophy_outline":{"char":"󰔺","code":"f053a"},"md-trophy_variant":{"char":"󰔻","code":"f053b"},"md-trophy_variant_outline":{"char":"󰔼","code":"f053c"},"md-truck":{"char":"󰔽","code":"f053d"},"md-truck_alert":{"char":"󱧞","code":"f19de"},"md-truck_alert_outline":{"char":"󱧟","code":"f19df"},"md-truck_cargo_container":{"char":"󱣘","code":"f18d8"},"md-truck_check":{"char":"󰳔","code":"f0cd4"},"md-truck_check_outline":{"char":"󱊚","code":"f129a"},"md-truck_delivery":{"char":"󰔾","code":"f053e"},"md-truck_delivery_outline":{"char":"󱊛","code":"f129b"},"md-truck_fast":{"char":"󰞈","code":"f0788"},"md-truck_fast_outline":{"char":"󱊜","code":"f129c"},"md-truck_flatbed":{"char":"󱢑","code":"f1891"},"md-truck_minus":{"char":"󱦮","code":"f19ae"},"md-truck_minus_outline":{"char":"󱦽","code":"f19bd"},"md-truck_outline":{"char":"󱊝","code":"f129d"},"md-truck_plus":{"char":"󱦭","code":"f19ad"},"md-truck_plus_outline":{"char":"󱦼","code":"f19bc"},"md-truck_remove":{"char":"󱦯","code":"f19af"},"md-truck_remove_outline":{"char":"󱦾","code":"f19be"},"md-truck_snowflake":{"char":"󱦦","code":"f19a6"},"md-truck_trailer":{"char":"󰜧","code":"f0727"},"md-trumpet":{"char":"󱂖","code":"f1096"},"md-tshirt_crew":{"char":"󰩻","code":"f0a7b"},"md-tshirt_crew_outline":{"char":"󰔿","code":"f053f"},"md-tshirt_v":{"char":"󰩼","code":"f0a7c"},"md-tshirt_v_outline":{"char":"󰕀","code":"f0540"},"md-tsunami":{"char":"󱪁","code":"f1a81"},"md-tumble_dryer":{"char":"󰤗","code":"f0917"},"md-tumble_dryer_alert":{"char":"󱆺","code":"f11ba"},"md-tumble_dryer_off":{"char":"󱆻","code":"f11bb"},"md-tune":{"char":"󰘮","code":"f062e"},"md-tune_variant":{"char":"󱕂","code":"f1542"},"md-tune_vertical":{"char":"󰙪","code":"f066a"},"md-tune_vertical_variant":{"char":"󱕃","code":"f1543"},"md-tunnel":{"char":"󱠽","code":"f183d"},"md-tunnel_outline":{"char":"󱠾","code":"f183e"},"md-turbine":{"char":"󱪂","code":"f1a82"},"md-turkey":{"char":"󱜛","code":"f171b"},"md-turnstile":{"char":"󰳕","code":"f0cd5"},"md-turnstile_outline":{"char":"󰳖","code":"f0cd6"},"md-turtle":{"char":"󰳗","code":"f0cd7"},"md-twitch":{"char":"󰕃","code":"f0543"},"md-twitter":{"char":"󰕄","code":"f0544"},"md-two_factor_authentication":{"char":"󰦯","code":"f09af"},"md-typewriter":{"char":"󰼭","code":"f0f2d"},"md-ubisoft":{"char":"󰯚","code":"f0bda"},"md-ubuntu":{"char":"󰕈","code":"f0548"},"md-ufo":{"char":"󱃄","code":"f10c4"},"md-ufo_outline":{"char":"󱃅","code":"f10c5"},"md-ultra_high_definition":{"char":"󰟹","code":"f07f9"},"md-umbraco":{"char":"󰕉","code":"f0549"},"md-umbrella":{"char":"󰕊","code":"f054a"},"md-umbrella_beach":{"char":"󱢊","code":"f188a"},"md-umbrella_beach_outline":{"char":"󱢋","code":"f188b"},"md-umbrella_closed":{"char":"󰦰","code":"f09b0"},"md-umbrella_closed_outline":{"char":"󱏢","code":"f13e2"},"md-umbrella_closed_variant":{"char":"󱏡","code":"f13e1"},"md-umbrella_outline":{"char":"󰕋","code":"f054b"},"md-undo":{"char":"󰕌","code":"f054c"},"md-undo_variant":{"char":"󰕍","code":"f054d"},"md-unfold_less_horizontal":{"char":"󰕎","code":"f054e"},"md-unfold_less_vertical":{"char":"󰝠","code":"f0760"},"md-unfold_more_horizontal":{"char":"󰕏","code":"f054f"},"md-unfold_more_vertical":{"char":"󰝡","code":"f0761"},"md-ungroup":{"char":"󰕐","code":"f0550"},"md-unicode":{"char":"󰻐","code":"f0ed0"},"md-unicorn":{"char":"󱗂","code":"f15c2"},"md-unicorn_variant":{"char":"󱗃","code":"f15c3"},"md-unicycle":{"char":"󱗥","code":"f15e5"},"md-unity":{"char":"󰚯","code":"f06af"},"md-unreal":{"char":"󰦱","code":"f09b1"},"md-update":{"char":"󰚰","code":"f06b0"},"md-upload":{"char":"󰕒","code":"f0552"},"md-upload_lock":{"char":"󱍳","code":"f1373"},"md-upload_lock_outline":{"char":"󱍴","code":"f1374"},"md-upload_multiple":{"char":"󰠽","code":"f083d"},"md-upload_network":{"char":"󰛶","code":"f06f6"},"md-upload_network_outline":{"char":"󰳘","code":"f0cd8"},"md-upload_off":{"char":"󱃆","code":"f10c6"},"md-upload_off_outline":{"char":"󱃇","code":"f10c7"},"md-upload_outline":{"char":"󰸇","code":"f0e07"},"md-usb":{"char":"󰕓","code":"f0553"},"md-usb_flash_drive":{"char":"󱊞","code":"f129e"},"md-usb_flash_drive_outline":{"char":"󱊟","code":"f129f"},"md-usb_port":{"char":"󱇰","code":"f11f0"},"md-vacuum":{"char":"󱦡","code":"f19a1"},"md-vacuum_outline":{"char":"󱦢","code":"f19a2"},"md-valve":{"char":"󱁦","code":"f1066"},"md-valve_closed":{"char":"󱁧","code":"f1067"},"md-valve_open":{"char":"󱁨","code":"f1068"},"md-van_passenger":{"char":"󰟺","code":"f07fa"},"md-van_utility":{"char":"󰟻","code":"f07fb"},"md-vanish":{"char":"󰟼","code":"f07fc"},"md-vanish_quarter":{"char":"󱕔","code":"f1554"},"md-vanity_light":{"char":"󱇡","code":"f11e1"},"md-variable":{"char":"󰫧","code":"f0ae7"},"md-variable_box":{"char":"󱄑","code":"f1111"},"md-vector_arrange_above":{"char":"󰕔","code":"f0554"},"md-vector_arrange_below":{"char":"󰕕","code":"f0555"},"md-vector_bezier":{"char":"󰫨","code":"f0ae8"},"md-vector_circle":{"char":"󰕖","code":"f0556"},"md-vector_circle_variant":{"char":"󰕗","code":"f0557"},"md-vector_combine":{"char":"󰕘","code":"f0558"},"md-vector_curve":{"char":"󰕙","code":"f0559"},"md-vector_difference":{"char":"󰕚","code":"f055a"},"md-vector_difference_ab":{"char":"󰕛","code":"f055b"},"md-vector_difference_ba":{"char":"󰕜","code":"f055c"},"md-vector_ellipse":{"char":"󰢓","code":"f0893"},"md-vector_intersection":{"char":"󰕝","code":"f055d"},"md-vector_line":{"char":"󰕞","code":"f055e"},"md-vector_link":{"char":"󰿨","code":"f0fe8"},"md-vector_point":{"char":"󰕟","code":"f055f"},"md-vector_polygon":{"char":"󰕠","code":"f0560"},"md-vector_polygon_variant":{"char":"󱡖","code":"f1856"},"md-vector_polyline":{"char":"󰕡","code":"f0561"},"md-vector_polyline_edit":{"char":"󱈥","code":"f1225"},"md-vector_polyline_minus":{"char":"󱈦","code":"f1226"},"md-vector_polyline_plus":{"char":"󱈧","code":"f1227"},"md-vector_polyline_remove":{"char":"󱈨","code":"f1228"},"md-vector_radius":{"char":"󰝊","code":"f074a"},"md-vector_rectangle":{"char":"󰗆","code":"f05c6"},"md-vector_selection":{"char":"󰕢","code":"f0562"},"md-vector_square":{"char":"󰀁","code":"f0001"},"md-vector_square_close":{"char":"󱡗","code":"f1857"},"md-vector_square_edit":{"char":"󱣙","code":"f18d9"},"md-vector_square_minus":{"char":"󱣚","code":"f18da"},"md-vector_square_open":{"char":"󱡘","code":"f1858"},"md-vector_square_plus":{"char":"󱣛","code":"f18db"},"md-vector_square_remove":{"char":"󱣜","code":"f18dc"},"md-vector_triangle":{"char":"󰕣","code":"f0563"},"md-vector_union":{"char":"󰕤","code":"f0564"},"md-vhs":{"char":"󰨛","code":"f0a1b"},"md-vibrate":{"char":"󰕦","code":"f0566"},"md-vibrate_off":{"char":"󰳙","code":"f0cd9"},"md-video":{"char":"󰕧","code":"f0567"},"md-video_2d":{"char":"󱨜","code":"f1a1c"},"md-video_3d":{"char":"󰟽","code":"f07fd"},"md-video_3d_off":{"char":"󱏙","code":"f13d9"},"md-video_3d_variant":{"char":"󰻑","code":"f0ed1"},"md-video_4k_box":{"char":"󰠾","code":"f083e"},"md-video_account":{"char":"󰤙","code":"f0919"},"md-video_box":{"char":"󰃽","code":"f00fd"},"md-video_box_off":{"char":"󰃾","code":"f00fe"},"md-video_check":{"char":"󱁩","code":"f1069"},"md-video_check_outline":{"char":"󱁪","code":"f106a"},"md-video_high_definition":{"char":"󱔮","code":"f152e"},"md-video_image":{"char":"󰤚","code":"f091a"},"md-video_input_antenna":{"char":"󰠿","code":"f083f"},"md-video_input_component":{"char":"󰡀","code":"f0840"},"md-video_input_hdmi":{"char":"󰡁","code":"f0841"},"md-video_input_scart":{"char":"󰾌","code":"f0f8c"},"md-video_input_svideo":{"char":"󰡂","code":"f0842"},"md-video_marker":{"char":"󱦩","code":"f19a9"},"md-video_marker_outline":{"char":"󱦪","code":"f19aa"},"md-video_minus":{"char":"󰦲","code":"f09b2"},"md-video_minus_outline":{"char":"󰊺","code":"f02ba"},"md-video_off":{"char":"󰕨","code":"f0568"},"md-video_off_outline":{"char":"󰯛","code":"f0bdb"},"md-video_outline":{"char":"󰯜","code":"f0bdc"},"md-video_plus":{"char":"󰦳","code":"f09b3"},"md-video_plus_outline":{"char":"󰇓","code":"f01d3"},"md-video_stabilization":{"char":"󰤛","code":"f091b"},"md-video_switch":{"char":"󰕩","code":"f0569"},"md-video_switch_outline":{"char":"󰞐","code":"f0790"},"md-video_vintage":{"char":"󰨜","code":"f0a1c"},"md-video_wireless":{"char":"󰻒","code":"f0ed2"},"md-video_wireless_outline":{"char":"󰻓","code":"f0ed3"},"md-view_agenda":{"char":"󰕪","code":"f056a"},"md-view_agenda_outline":{"char":"󱇘","code":"f11d8"},"md-view_array":{"char":"󰕫","code":"f056b"},"md-view_array_outline":{"char":"󱒅","code":"f1485"},"md-view_carousel":{"char":"󰕬","code":"f056c"},"md-view_carousel_outline":{"char":"󱒆","code":"f1486"},"md-view_column":{"char":"󰕭","code":"f056d"},"md-view_column_outline":{"char":"󱒇","code":"f1487"},"md-view_comfy":{"char":"󰹪","code":"f0e6a"},"md-view_comfy_outline":{"char":"󱒈","code":"f1488"},"md-view_compact":{"char":"󰹫","code":"f0e6b"},"md-view_compact_outline":{"char":"󰹬","code":"f0e6c"},"md-view_dashboard":{"char":"󰕮","code":"f056e"},"md-view_dashboard_edit":{"char":"󱥇","code":"f1947"},"md-view_dashboard_edit_outline":{"char":"󱥈","code":"f1948"},"md-view_dashboard_outline":{"char":"󰨝","code":"f0a1d"},"md-view_dashboard_variant":{"char":"󰡃","code":"f0843"},"md-view_dashboard_variant_outline":{"char":"󱒉","code":"f1489"},"md-view_day":{"char":"󰕯","code":"f056f"},"md-view_day_outline":{"char":"󱒊","code":"f148a"},"md-view_gallery":{"char":"󱢈","code":"f1888"},"md-view_gallery_outline":{"char":"󱢉","code":"f1889"},"md-view_grid":{"char":"󰕰","code":"f0570"},"md-view_grid_outline":{"char":"󱇙","code":"f11d9"},"md-view_grid_plus":{"char":"󰾍","code":"f0f8d"},"md-view_grid_plus_outline":{"char":"󱇚","code":"f11da"},"md-view_headline":{"char":"󰕱","code":"f0571"},"md-view_list":{"char":"󰕲","code":"f0572"},"md-view_list_outline":{"char":"󱒋","code":"f148b"},"md-view_module":{"char":"󰕳","code":"f0573"},"md-view_module_outline":{"char":"󱒌","code":"f148c"},"md-view_parallel":{"char":"󰜨","code":"f0728"},"md-view_parallel_outline":{"char":"󱒍","code":"f148d"},"md-view_quilt":{"char":"󰕴","code":"f0574"},"md-view_quilt_outline":{"char":"󱒎","code":"f148e"},"md-view_sequential":{"char":"󰜩","code":"f0729"},"md-view_sequential_outline":{"char":"󱒏","code":"f148f"},"md-view_split_horizontal":{"char":"󰯋","code":"f0bcb"},"md-view_split_vertical":{"char":"󰯌","code":"f0bcc"},"md-view_stream":{"char":"󰕵","code":"f0575"},"md-view_stream_outline":{"char":"󱒐","code":"f1490"},"md-view_week":{"char":"󰕶","code":"f0576"},"md-view_week_outline":{"char":"󱒑","code":"f1491"},"md-vimeo":{"char":"󰕷","code":"f0577"},"md-violin":{"char":"󰘏","code":"f060f"},"md-virtual_reality":{"char":"󰢔","code":"f0894"},"md-virus":{"char":"󱎶","code":"f13b6"},"md-virus_off":{"char":"󱣡","code":"f18e1"},"md-virus_off_outline":{"char":"󱣢","code":"f18e2"},"md-virus_outline":{"char":"󱎷","code":"f13b7"},"md-vlc":{"char":"󰕼","code":"f057c"},"md-voicemail":{"char":"󰕽","code":"f057d"},"md-volcano":{"char":"󱪃","code":"f1a83"},"md-volcano_outline":{"char":"󱪄","code":"f1a84"},"md-volleyball":{"char":"󰦴","code":"f09b4"},"md-volume_high":{"char":"󰕾","code":"f057e"},"md-volume_low":{"char":"󰕿","code":"f057f"},"md-volume_medium":{"char":"󰖀","code":"f0580"},"md-volume_minus":{"char":"󰝞","code":"f075e"},"md-volume_mute":{"char":"󰝟","code":"f075f"},"md-volume_off":{"char":"󰖁","code":"f0581"},"md-volume_plus":{"char":"󰝝","code":"f075d"},"md-volume_source":{"char":"󱄠","code":"f1120"},"md-volume_variant_off":{"char":"󰸈","code":"f0e08"},"md-volume_vibrate":{"char":"󱄡","code":"f1121"},"md-vote":{"char":"󰨟","code":"f0a1f"},"md-vote_outline":{"char":"󰨠","code":"f0a20"},"md-vpn":{"char":"󰖂","code":"f0582"},"md-vuejs":{"char":"󰡄","code":"f0844"},"md-vuetify":{"char":"󰹭","code":"f0e6d"},"md-walk":{"char":"󰖃","code":"f0583"},"md-wall":{"char":"󰟾","code":"f07fe"},"md-wall_fire":{"char":"󱨑","code":"f1a11"},"md-wall_sconce":{"char":"󰤜","code":"f091c"},"md-wall_sconce_flat":{"char":"󰤝","code":"f091d"},"md-wall_sconce_flat_outline":{"char":"󱟉","code":"f17c9"},"md-wall_sconce_flat_variant":{"char":"󰐜","code":"f041c"},"md-wall_sconce_flat_variant_outline":{"char":"󱟊","code":"f17ca"},"md-wall_sconce_outline":{"char":"󱟋","code":"f17cb"},"md-wall_sconce_round":{"char":"󰝈","code":"f0748"},"md-wall_sconce_round_outline":{"char":"󱟌","code":"f17cc"},"md-wall_sconce_round_variant":{"char":"󰤞","code":"f091e"},"md-wall_sconce_round_variant_outline":{"char":"󱟍","code":"f17cd"},"md-wallet":{"char":"󰖄","code":"f0584"},"md-wallet_giftcard":{"char":"󰖅","code":"f0585"},"md-wallet_membership":{"char":"󰖆","code":"f0586"},"md-wallet_outline":{"char":"󰯝","code":"f0bdd"},"md-wallet_plus":{"char":"󰾎","code":"f0f8e"},"md-wallet_plus_outline":{"char":"󰾏","code":"f0f8f"},"md-wallet_travel":{"char":"󰖇","code":"f0587"},"md-wallpaper":{"char":"󰸉","code":"f0e09"},"md-wan":{"char":"󰖈","code":"f0588"},"md-wardrobe":{"char":"󰾐","code":"f0f90"},"md-wardrobe_outline":{"char":"󰾑","code":"f0f91"},"md-warehouse":{"char":"󰾁","code":"f0f81"},"md-washing_machine":{"char":"󰜪","code":"f072a"},"md-washing_machine_alert":{"char":"󱆼","code":"f11bc"},"md-washing_machine_off":{"char":"󱆽","code":"f11bd"},"md-watch":{"char":"󰖉","code":"f0589"},"md-watch_export":{"char":"󰖊","code":"f058a"},"md-watch_export_variant":{"char":"󰢕","code":"f0895"},"md-watch_import":{"char":"󰖋","code":"f058b"},"md-watch_import_variant":{"char":"󰢖","code":"f0896"},"md-watch_variant":{"char":"󰢗","code":"f0897"},"md-watch_vibrate":{"char":"󰚱","code":"f06b1"},"md-watch_vibrate_off":{"char":"󰳚","code":"f0cda"},"md-water":{"char":"󰖌","code":"f058c"},"md-water_alert":{"char":"󱔂","code":"f1502"},"md-water_alert_outline":{"char":"󱔃","code":"f1503"},"md-water_boiler":{"char":"󰾒","code":"f0f92"},"md-water_boiler_alert":{"char":"󱆳","code":"f11b3"},"md-water_boiler_off":{"char":"󱆴","code":"f11b4"},"md-water_check":{"char":"󱔄","code":"f1504"},"md-water_check_outline":{"char":"󱔅","code":"f1505"},"md-water_circle":{"char":"󱠆","code":"f1806"},"md-water_minus":{"char":"󱔆","code":"f1506"},"md-water_minus_outline":{"char":"󱔇","code":"f1507"},"md-water_off":{"char":"󰖍","code":"f058d"},"md-water_off_outline":{"char":"󱔈","code":"f1508"},"md-water_opacity":{"char":"󱡕","code":"f1855"},"md-water_outline":{"char":"󰸊","code":"f0e0a"},"md-water_percent":{"char":"󰖎","code":"f058e"},"md-water_percent_alert":{"char":"󱔉","code":"f1509"},"md-water_plus":{"char":"󱔊","code":"f150a"},"md-water_plus_outline":{"char":"󱔋","code":"f150b"},"md-water_polo":{"char":"󱊠","code":"f12a0"},"md-water_pump":{"char":"󰖏","code":"f058f"},"md-water_pump_off":{"char":"󰾓","code":"f0f93"},"md-water_remove":{"char":"󱔌","code":"f150c"},"md-water_remove_outline":{"char":"󱔍","code":"f150d"},"md-water_sync":{"char":"󱟆","code":"f17c6"},"md-water_thermometer":{"char":"󱪅","code":"f1a85"},"md-water_thermometer_outline":{"char":"󱪆","code":"f1a86"},"md-water_well":{"char":"󱁫","code":"f106b"},"md-water_well_outline":{"char":"󱁬","code":"f106c"},"md-waterfall":{"char":"󱡉","code":"f1849"},"md-watering_can":{"char":"󱒁","code":"f1481"},"md-watering_can_outline":{"char":"󱒂","code":"f1482"},"md-watermark":{"char":"󰘒","code":"f0612"},"md-wave":{"char":"󰼮","code":"f0f2e"},"md-waveform":{"char":"󱑽","code":"f147d"},"md-waves":{"char":"󰞍","code":"f078d"},"md-waves_arrow_left":{"char":"󱡙","code":"f1859"},"md-waves_arrow_right":{"char":"󱡚","code":"f185a"},"md-waves_arrow_up":{"char":"󱡛","code":"f185b"},"md-waze":{"char":"󰯞","code":"f0bde"},"md-weather_cloudy":{"char":"󰖐","code":"f0590"},"md-weather_cloudy_alert":{"char":"󰼯","code":"f0f2f"},"md-weather_cloudy_arrow_right":{"char":"󰹮","code":"f0e6e"},"md-weather_cloudy_clock":{"char":"󱣶","code":"f18f6"},"md-weather_fog":{"char":"󰖑","code":"f0591"},"md-weather_hail":{"char":"󰖒","code":"f0592"},"md-weather_hazy":{"char":"󰼰","code":"f0f30"},"md-weather_hurricane":{"char":"󰢘","code":"f0898"},"md-weather_lightning":{"char":"󰖓","code":"f0593"},"md-weather_lightning_rainy":{"char":"󰙾","code":"f067e"},"md-weather_night":{"char":"󰖔","code":"f0594"},"md-weather_night_partly_cloudy":{"char":"󰼱","code":"f0f31"},"md-weather_partly_cloudy":{"char":"󰖕","code":"f0595"},"md-weather_partly_lightning":{"char":"󰼲","code":"f0f32"},"md-weather_partly_rainy":{"char":"󰼳","code":"f0f33"},"md-weather_partly_snowy":{"char":"󰼴","code":"f0f34"},"md-weather_partly_snowy_rainy":{"char":"󰼵","code":"f0f35"},"md-weather_pouring":{"char":"󰖖","code":"f0596"},"md-weather_rainy":{"char":"󰖗","code":"f0597"},"md-weather_snowy":{"char":"󰖘","code":"f0598"},"md-weather_snowy_heavy":{"char":"󰼶","code":"f0f36"},"md-weather_snowy_rainy":{"char":"󰙿","code":"f067f"},"md-weather_sunny":{"char":"󰖙","code":"f0599"},"md-weather_sunny_alert":{"char":"󰼷","code":"f0f37"},"md-weather_sunny_off":{"char":"󱓤","code":"f14e4"},"md-weather_sunset":{"char":"󰖚","code":"f059a"},"md-weather_sunset_down":{"char":"󰖛","code":"f059b"},"md-weather_sunset_up":{"char":"󰖜","code":"f059c"},"md-weather_tornado":{"char":"󰼸","code":"f0f38"},"md-weather_windy":{"char":"󰖝","code":"f059d"},"md-weather_windy_variant":{"char":"󰖞","code":"f059e"},"md-web":{"char":"󰖟","code":"f059f"},"md-web_box":{"char":"󰾔","code":"f0f94"},"md-web_cancel":{"char":"󱞐","code":"f1790"},"md-web_check":{"char":"󰞉","code":"f0789"},"md-web_clock":{"char":"󱉊","code":"f124a"},"md-web_minus":{"char":"󱂠","code":"f10a0"},"md-web_off":{"char":"󰪎","code":"f0a8e"},"md-web_plus":{"char":"󰀳","code":"f0033"},"md-web_refresh":{"char":"󱞑","code":"f1791"},"md-web_remove":{"char":"󰕑","code":"f0551"},"md-web_sync":{"char":"󱞒","code":"f1792"},"md-webcam":{"char":"󰖠","code":"f05a0"},"md-webcam_off":{"char":"󱜷","code":"f1737"},"md-webhook":{"char":"󰘯","code":"f062f"},"md-webpack":{"char":"󰜫","code":"f072b"},"md-webrtc":{"char":"󱉈","code":"f1248"},"md-wechat":{"char":"󰘑","code":"f0611"},"md-weight":{"char":"󰖡","code":"f05a1"},"md-weight_gram":{"char":"󰴿","code":"f0d3f"},"md-weight_kilogram":{"char":"󰖢","code":"f05a2"},"md-weight_lifter":{"char":"󱅝","code":"f115d"},"md-weight_pound":{"char":"󰦵","code":"f09b5"},"md-whatsapp":{"char":"󰖣","code":"f05a3"},"md-wheel_barrow":{"char":"󱓲","code":"f14f2"},"md-wheelchair":{"char":"󱪇","code":"f1a87"},"md-wheelchair_accessibility":{"char":"󰖤","code":"f05a4"},"md-whistle":{"char":"󰦶","code":"f09b6"},"md-whistle_outline":{"char":"󱊼","code":"f12bc"},"md-white_balance_auto":{"char":"󰖥","code":"f05a5"},"md-white_balance_incandescent":{"char":"󰖦","code":"f05a6"},"md-white_balance_iridescent":{"char":"󰖧","code":"f05a7"},"md-white_balance_sunny":{"char":"󰖨","code":"f05a8"},"md-widgets":{"char":"󰜬","code":"f072c"},"md-widgets_outline":{"char":"󱍕","code":"f1355"},"md-wifi":{"char":"󰖩","code":"f05a9"},"md-wifi_alert":{"char":"󱚵","code":"f16b5"},"md-wifi_arrow_down":{"char":"󱚶","code":"f16b6"},"md-wifi_arrow_left":{"char":"󱚷","code":"f16b7"},"md-wifi_arrow_left_right":{"char":"󱚸","code":"f16b8"},"md-wifi_arrow_right":{"char":"󱚹","code":"f16b9"},"md-wifi_arrow_up":{"char":"󱚺","code":"f16ba"},"md-wifi_arrow_up_down":{"char":"󱚻","code":"f16bb"},"md-wifi_cancel":{"char":"󱚼","code":"f16bc"},"md-wifi_check":{"char":"󱚽","code":"f16bd"},"md-wifi_cog":{"char":"󱚾","code":"f16be"},"md-wifi_lock":{"char":"󱚿","code":"f16bf"},"md-wifi_lock_open":{"char":"󱛀","code":"f16c0"},"md-wifi_marker":{"char":"󱛁","code":"f16c1"},"md-wifi_minus":{"char":"󱛂","code":"f16c2"},"md-wifi_off":{"char":"󰖪","code":"f05aa"},"md-wifi_plus":{"char":"󱛃","code":"f16c3"},"md-wifi_refresh":{"char":"󱛄","code":"f16c4"},"md-wifi_remove":{"char":"󱛅","code":"f16c5"},"md-wifi_settings":{"char":"󱛆","code":"f16c6"},"md-wifi_star":{"char":"󰸋","code":"f0e0b"},"md-wifi_strength_1":{"char":"󰤟","code":"f091f"},"md-wifi_strength_1_alert":{"char":"󰤠","code":"f0920"},"md-wifi_strength_1_lock":{"char":"󰤡","code":"f0921"},"md-wifi_strength_1_lock_open":{"char":"󱛋","code":"f16cb"},"md-wifi_strength_2":{"char":"󰤢","code":"f0922"},"md-wifi_strength_2_alert":{"char":"󰤣","code":"f0923"},"md-wifi_strength_2_lock":{"char":"󰤤","code":"f0924"},"md-wifi_strength_2_lock_open":{"char":"󱛌","code":"f16cc"},"md-wifi_strength_3":{"char":"󰤥","code":"f0925"},"md-wifi_strength_3_alert":{"char":"󰤦","code":"f0926"},"md-wifi_strength_3_lock":{"char":"󰤧","code":"f0927"},"md-wifi_strength_3_lock_open":{"char":"󱛍","code":"f16cd"},"md-wifi_strength_4":{"char":"󰤨","code":"f0928"},"md-wifi_strength_4_alert":{"char":"󰤩","code":"f0929"},"md-wifi_strength_4_lock":{"char":"󰤪","code":"f092a"},"md-wifi_strength_4_lock_open":{"char":"󱛎","code":"f16ce"},"md-wifi_strength_alert_outline":{"char":"󰤫","code":"f092b"},"md-wifi_strength_lock_open_outline":{"char":"󱛏","code":"f16cf"},"md-wifi_strength_lock_outline":{"char":"󰤬","code":"f092c"},"md-wifi_strength_off":{"char":"󰤭","code":"f092d"},"md-wifi_strength_off_outline":{"char":"󰤮","code":"f092e"},"md-wifi_strength_outline":{"char":"󰤯","code":"f092f"},"md-wifi_sync":{"char":"󱛇","code":"f16c7"},"md-wikipedia":{"char":"󰖬","code":"f05ac"},"md-wind_power":{"char":"󱪈","code":"f1a88"},"md-wind_power_outline":{"char":"󱪉","code":"f1a89"},"md-wind_turbine":{"char":"󰶥","code":"f0da5"},"md-wind_turbine_alert":{"char":"󱦫","code":"f19ab"},"md-wind_turbine_check":{"char":"󱦬","code":"f19ac"},"md-window_close":{"char":"󰖭","code":"f05ad"},"md-window_closed":{"char":"󰖮","code":"f05ae"},"md-window_closed_variant":{"char":"󱇛","code":"f11db"},"md-window_maximize":{"char":"󰖯","code":"f05af"},"md-window_minimize":{"char":"󰖰","code":"f05b0"},"md-window_open":{"char":"󰖱","code":"f05b1"},"md-window_open_variant":{"char":"󱇜","code":"f11dc"},"md-window_restore":{"char":"󰖲","code":"f05b2"},"md-window_shutter":{"char":"󱄜","code":"f111c"},"md-window_shutter_alert":{"char":"󱄝","code":"f111d"},"md-window_shutter_cog":{"char":"󱪊","code":"f1a8a"},"md-window_shutter_open":{"char":"󱄞","code":"f111e"},"md-window_shutter_settings":{"char":"󱪋","code":"f1a8b"},"md-windsock":{"char":"󱗺","code":"f15fa"},"md-wiper":{"char":"󰫩","code":"f0ae9"},"md-wiper_wash":{"char":"󰶦","code":"f0da6"},"md-wiper_wash_alert":{"char":"󱣟","code":"f18df"},"md-wizard_hat":{"char":"󱑷","code":"f1477"},"md-wordpress":{"char":"󰖴","code":"f05b4"},"md-wrap":{"char":"󰖶","code":"f05b6"},"md-wrap_disabled":{"char":"󰯟","code":"f0bdf"},"md-wrench":{"char":"󰖷","code":"f05b7"},"md-wrench_clock":{"char":"󱦣","code":"f19a3"},"md-wrench_outline":{"char":"󰯠","code":"f0be0"},"md-xamarin":{"char":"󰡅","code":"f0845"},"md-xml":{"char":"󰗀","code":"f05c0"},"md-xmpp":{"char":"󰟿","code":"f07ff"},"md-yahoo":{"char":"󰭏","code":"f0b4f"},"md-yeast":{"char":"󰗁","code":"f05c1"},"md-yin_yang":{"char":"󰚀","code":"f0680"},"md-yoga":{"char":"󱅼","code":"f117c"},"md-youtube":{"char":"󰗃","code":"f05c3"},"md-youtube_gaming":{"char":"󰡈","code":"f0848"},"md-youtube_studio":{"char":"󰡇","code":"f0847"},"md-youtube_subscription":{"char":"󰵀","code":"f0d40"},"md-youtube_tv":{"char":"󰑈","code":"f0448"},"md-yurt":{"char":"󱔖","code":"f1516"},"md-z_wave":{"char":"󰫪","code":"f0aea"},"md-zend":{"char":"󰫫","code":"f0aeb"},"md-zigbee":{"char":"󰵁","code":"f0d41"},"md-zip_box":{"char":"󰗄","code":"f05c4"},"md-zip_box_outline":{"char":"󰿺","code":"f0ffa"},"md-zip_disk":{"char":"󰨣","code":"f0a23"},"md-zodiac_aquarius":{"char":"󰩽","code":"f0a7d"},"md-zodiac_aries":{"char":"󰩾","code":"f0a7e"},"md-zodiac_cancer":{"char":"󰩿","code":"f0a7f"},"md-zodiac_capricorn":{"char":"󰪀","code":"f0a80"},"md-zodiac_gemini":{"char":"󰪁","code":"f0a81"},"md-zodiac_leo":{"char":"󰪂","code":"f0a82"},"md-zodiac_libra":{"char":"󰪃","code":"f0a83"},"md-zodiac_pisces":{"char":"󰪄","code":"f0a84"},"md-zodiac_sagittarius":{"char":"󰪅","code":"f0a85"},"md-zodiac_scorpio":{"char":"󰪆","code":"f0a86"},"md-zodiac_taurus":{"char":"󰪇","code":"f0a87"},"md-zodiac_virgo":{"char":"󰪈","code":"f0a88"},"oct-accessibility":{"char":"","code":"f406"},"oct-accessibility_inset":{"char":"","code":"f40b"},"oct-alert":{"char":"","code":"f421"},"oct-alert_fill":{"char":"","code":"f40c"},"oct-apps":{"char":"","code":"f40e"},"oct-archive":{"char":"","code":"f411"},"oct-arrow_both":{"char":"","code":"f416"},"oct-arrow_down":{"char":"","code":"f433"},"oct-arrow_down_left":{"char":"","code":"f424"},"oct-arrow_down_right":{"char":"","code":"f43e"},"oct-arrow_left":{"char":"","code":"f434"},"oct-arrow_right":{"char":"","code":"f432"},"oct-arrow_switch":{"char":"","code":"f443"},"oct-arrow_up":{"char":"","code":"f431"},"oct-arrow_up_left":{"char":"","code":"f45c"},"oct-arrow_up_right":{"char":"","code":"f46c"},"oct-beaker":{"char":"","code":"f499"},"oct-bell":{"char":"","code":"f49a"},"oct-bell_fill":{"char":"","code":"f476"},"oct-bell_slash":{"char":"","code":"f478"},"oct-blocked":{"char":"","code":"f479"},"oct-bold":{"char":"","code":"f49d"},"oct-book":{"char":"","code":"f405"},"oct-bookmark":{"char":"","code":"f461"},"oct-bookmark_fill":{"char":"","code":"f47a"},"oct-bookmark_slash":{"char":"","code":"f533"},"oct-bookmark_slash_fill":{"char":"","code":"f493"},"oct-briefcase":{"char":"","code":"f491"},"oct-broadcast":{"char":"","code":"f43c"},"oct-browser":{"char":"","code":"f488"},"oct-bug":{"char":"","code":"f46f"},"oct-cache":{"char":"","code":"f49b"},"oct-calendar":{"char":"","code":"f455"},"oct-check":{"char":"","code":"f42e"},"oct-check_circle":{"char":"","code":"f49e"},"oct-check_circle_fill":{"char":"","code":"f4a4"},"oct-checkbox":{"char":"","code":"f4a7"},"oct-checklist":{"char":"","code":"f45e"},"oct-chevron_down":{"char":"","code":"f47c"},"oct-chevron_left":{"char":"","code":"f47d"},"oct-chevron_right":{"char":"","code":"f460"},"oct-chevron_up":{"char":"","code":"f47b"},"oct-circle":{"char":"","code":"f4aa"},"oct-circle_slash":{"char":"","code":"f468"},"oct-clock":{"char":"","code":"f43a"},"oct-clock_fill":{"char":"","code":"f4ab"},"oct-cloud":{"char":"","code":"f4ac"},"oct-cloud_offline":{"char":"","code":"f4ad"},"oct-code":{"char":"","code":"f44f"},"oct-code_of_conduct":{"char":"","code":"f4ae"},"oct-code_review":{"char":"","code":"f4af"},"oct-code_square":{"char":"","code":"f4b0"},"oct-codescan":{"char":"","code":"f4b1"},"oct-codescan_checkmark":{"char":"","code":"f4b2"},"oct-codespaces":{"char":"","code":"f4b3"},"oct-columns":{"char":"","code":"f4b4"},"oct-command_palette":{"char":"","code":"f4b5"},"oct-comment":{"char":"","code":"f41f"},"oct-comment_discussion":{"char":"","code":"f442"},"oct-commit":{"char":"","code":"f4b6"},"oct-container":{"char":"","code":"f4b7"},"oct-copilot":{"char":"","code":"f4b8"},"oct-copilot_error":{"char":"","code":"f4b9"},"oct-copilot_warning":{"char":"","code":"f4ba"},"oct-copy":{"char":"","code":"f4bb"},"oct-cpu":{"char":"","code":"f4bc"},"oct-credit_card":{"char":"","code":"f439"},"oct-cross_reference":{"char":"","code":"f4bd"},"oct-dash":{"char":"","code":"f48b"},"oct-database":{"char":"","code":"f472"},"oct-dependabot":{"char":"","code":"f4be"},"oct-desktop_download":{"char":"","code":"f498"},"oct-device_camera":{"char":"","code":"f446"},"oct-device_camera_video":{"char":"","code":"f447"},"oct-device_desktop":{"char":"","code":"f4a9"},"oct-device_mobile":{"char":"","code":"f42c"},"oct-diamond":{"char":"","code":"f4bf"},"oct-diff":{"char":"","code":"f440"},"oct-diff_added":{"char":"","code":"f457"},"oct-diff_ignored":{"char":"","code":"f474"},"oct-diff_modified":{"char":"","code":"f459"},"oct-diff_removed":{"char":"","code":"f458"},"oct-diff_renamed":{"char":"","code":"f45a"},"oct-discussion_closed":{"char":"","code":"f4c0"},"oct-discussion_duplicate":{"char":"","code":"f4c1"},"oct-discussion_outdated":{"char":"","code":"f4c2"},"oct-dot":{"char":"","code":"f4c3"},"oct-dot_fill":{"char":"","code":"f444"},"oct-download":{"char":"","code":"f409"},"oct-duplicate":{"char":"","code":"f4c4"},"oct-ellipsis":{"char":"","code":"f475"},"oct-eye":{"char":"","code":"f441"},"oct-eye_closed":{"char":"","code":"f4c5"},"oct-feed_discussion":{"char":"","code":"f4c6"},"oct-feed_forked":{"char":"","code":"f4c7"},"oct-feed_heart":{"char":"","code":"f4c8"},"oct-feed_merged":{"char":"","code":"f4c9"},"oct-feed_person":{"char":"","code":"f4ca"},"oct-feed_repo":{"char":"","code":"f4cb"},"oct-feed_rocket":{"char":"","code":"f4cc"},"oct-feed_star":{"char":"","code":"f4cd"},"oct-feed_tag":{"char":"","code":"f4ce"},"oct-feed_trophy":{"char":"","code":"f4cf"},"oct-file":{"char":"","code":"f4a5"},"oct-file_added":{"char":"","code":"f4d0"},"oct-file_badge":{"char":"","code":"f4d1"},"oct-file_binary":{"char":"","code":"f471"},"oct-file_code":{"char":"","code":"f40d"},"oct-file_diff":{"char":"","code":"f4d2"},"oct-file_directory":{"char":"","code":"f413"},"oct-file_directory_fill":{"char":"","code":"f4d3"},"oct-file_directory_open_fill":{"char":"","code":"f4d4"},"oct-file_media":{"char":"","code":"f40f"},"oct-file_moved":{"char":"","code":"f4d5"},"oct-file_removed":{"char":"","code":"f4d6"},"oct-file_submodule":{"char":"","code":"f414"},"oct-file_symlink_directory":{"char":"","code":"f482"},"oct-file_symlink_file":{"char":"","code":"f481"},"oct-file_zip":{"char":"","code":"f410"},"oct-filter":{"char":"","code":"f4d7"},"oct-fiscal_host":{"char":"","code":"f4d8"},"oct-flame":{"char":"","code":"f490"},"oct-fold":{"char":"","code":"f48c"},"oct-fold_down":{"char":"","code":"f4d9"},"oct-fold_up":{"char":"","code":"f4da"},"oct-gear":{"char":"","code":"f423"},"oct-gift":{"char":"","code":"f436"},"oct-git_branch":{"char":"","code":"f418"},"oct-git_commit":{"char":"","code":"f417"},"oct-git_compare":{"char":"","code":"f47f"},"oct-git_merge":{"char":"","code":"f419"},"oct-git_merge_queue":{"char":"","code":"f4db"},"oct-git_pull_request":{"char":"","code":"f407"},"oct-git_pull_request_closed":{"char":"","code":"f4dc"},"oct-git_pull_request_draft":{"char":"","code":"f4dd"},"oct-globe":{"char":"","code":"f484"},"oct-goal":{"char":"","code":"f4de"},"oct-grabber":{"char":"","code":"f4a6"},"oct-graph":{"char":"","code":"f437"},"oct-hash":{"char":"","code":"f4df"},"oct-heading":{"char":"","code":"f4e0"},"oct-heart":{"char":"♥","code":"2665"},"oct-heart_fill":{"char":"","code":"f4e1"},"oct-history":{"char":"","code":"f464"},"oct-home":{"char":"","code":"f46d"},"oct-home_fill":{"char":"","code":"f4e2"},"oct-horizontal_rule":{"char":"","code":"f45b"},"oct-hourglass":{"char":"","code":"f4e3"},"oct-hubot":{"char":"","code":"f477"},"oct-id_badge":{"char":"","code":"f4e4"},"oct-image":{"char":"","code":"f4e5"},"oct-inbox":{"char":"","code":"f48d"},"oct-infinity":{"char":"","code":"f4e6"},"oct-info":{"char":"","code":"f449"},"oct-issue_closed":{"char":"","code":"f41d"},"oct-issue_draft":{"char":"","code":"f4e7"},"oct-issue_opened":{"char":"","code":"f41b"},"oct-issue_reopened":{"char":"","code":"f41c"},"oct-issue_tracked_by":{"char":"","code":"f4e8"},"oct-issue_tracks":{"char":"","code":"f4e9"},"oct-italic":{"char":"","code":"f49f"},"oct-iterations":{"char":"","code":"f4ea"},"oct-kebab_horizontal":{"char":"","code":"f4eb"},"oct-key":{"char":"","code":"f43d"},"oct-key_asterisk":{"char":"","code":"f4ec"},"oct-law":{"char":"","code":"f495"},"oct-light_bulb":{"char":"","code":"f400"},"oct-link":{"char":"","code":"f44c"},"oct-link_external":{"char":"","code":"f465"},"oct-list_ordered":{"char":"","code":"f452"},"oct-list_unordered":{"char":"","code":"f451"},"oct-location":{"char":"","code":"f450"},"oct-lock":{"char":"","code":"f456"},"oct-log":{"char":"","code":"f4ed"},"oct-logo_gist":{"char":"","code":"f480"},"oct-logo_github":{"char":"","code":"f470"},"oct-mail":{"char":"","code":"f42f"},"oct-mark_github":{"char":"","code":"f408"},"oct-markdown":{"char":"","code":"f48a"},"oct-megaphone":{"char":"","code":"f45f"},"oct-mention":{"char":"","code":"f486"},"oct-meter":{"char":"","code":"f463"},"oct-milestone":{"char":"","code":"f45d"},"oct-mirror":{"char":"","code":"f41a"},"oct-moon":{"char":"","code":"f4ee"},"oct-mortar_board":{"char":"","code":"f494"},"oct-move_to_bottom":{"char":"","code":"f4ef"},"oct-move_to_end":{"char":"","code":"f4f0"},"oct-move_to_start":{"char":"","code":"f4f1"},"oct-move_to_top":{"char":"","code":"f4f2"},"oct-multi_select":{"char":"","code":"f4f3"},"oct-mute":{"char":"","code":"f466"},"oct-no_entry":{"char":"","code":"f4f4"},"oct-north_star":{"char":"","code":"f4f5"},"oct-note":{"char":"","code":"f4f6"},"oct-number":{"char":"","code":"f4f7"},"oct-organization":{"char":"","code":"f42b"},"oct-package":{"char":"","code":"f487"},"oct-package_dependencies":{"char":"","code":"f4f8"},"oct-package_dependents":{"char":"","code":"f4f9"},"oct-paintbrush":{"char":"","code":"f48f"},"oct-paper_airplane":{"char":"","code":"f4fa"},"oct-paperclip":{"char":"","code":"f4fb"},"oct-passkey_fill":{"char":"","code":"f4fc"},"oct-paste":{"char":"","code":"f429"},"oct-pencil":{"char":"","code":"f448"},"oct-people":{"char":"","code":"f4fd"},"oct-person":{"char":"","code":"f415"},"oct-person_add":{"char":"","code":"f4fe"},"oct-person_fill":{"char":"","code":"f4ff"},"oct-pin":{"char":"","code":"f435"},"oct-play":{"char":"","code":"f500"},"oct-plug":{"char":"","code":"f492"},"oct-plus":{"char":"","code":"f44d"},"oct-plus_circle":{"char":"","code":"f501"},"oct-project":{"char":"","code":"f502"},"oct-project_roadmap":{"char":"","code":"f503"},"oct-project_symlink":{"char":"","code":"f504"},"oct-project_template":{"char":"","code":"f505"},"oct-pulse":{"char":"","code":"f469"},"oct-question":{"char":"","code":"f420"},"oct-quote":{"char":"","code":"f453"},"oct-read":{"char":"","code":"f430"},"oct-rel_file_path":{"char":"","code":"f506"},"oct-reply":{"char":"","code":"f4a8"},"oct-repo":{"char":"","code":"f401"},"oct-repo_clone":{"char":"","code":"f43f"},"oct-repo_deleted":{"char":"","code":"f507"},"oct-repo_forked":{"char":"","code":"f402"},"oct-repo_locked":{"char":"","code":"f508"},"oct-repo_pull":{"char":"","code":"f404"},"oct-repo_push":{"char":"","code":"f403"},"oct-repo_template":{"char":"","code":"f509"},"oct-report":{"char":"","code":"f50a"},"oct-rocket":{"char":"","code":"f427"},"oct-rows":{"char":"","code":"f50b"},"oct-rss":{"char":"","code":"f428"},"oct-ruby":{"char":"","code":"f43b"},"oct-screen_full":{"char":"","code":"f50c"},"oct-screen_normal":{"char":"","code":"f50d"},"oct-search":{"char":"","code":"f422"},"oct-server":{"char":"","code":"f473"},"oct-share":{"char":"","code":"f50e"},"oct-share_android":{"char":"","code":"f50f"},"oct-shield":{"char":"","code":"f49c"},"oct-shield_check":{"char":"","code":"f510"},"oct-shield_lock":{"char":"","code":"f511"},"oct-shield_slash":{"char":"","code":"f512"},"oct-shield_x":{"char":"","code":"f513"},"oct-sidebar_collapse":{"char":"","code":"f514"},"oct-sidebar_expand":{"char":"","code":"f515"},"oct-sign_in":{"char":"","code":"f42a"},"oct-sign_out":{"char":"","code":"f426"},"oct-single_select":{"char":"","code":"f516"},"oct-skip":{"char":"","code":"f517"},"oct-skip_fill":{"char":"","code":"f518"},"oct-sliders":{"char":"","code":"f462"},"oct-smiley":{"char":"","code":"f4a2"},"oct-sort_asc":{"char":"","code":"f519"},"oct-sort_desc":{"char":"","code":"f51a"},"oct-sparkle_fill":{"char":"","code":"f51b"},"oct-sponsor_tiers":{"char":"","code":"f51c"},"oct-square":{"char":"","code":"f51d"},"oct-square_fill":{"char":"","code":"f445"},"oct-squirrel":{"char":"","code":"f483"},"oct-stack":{"char":"","code":"f51e"},"oct-star":{"char":"","code":"f41e"},"oct-star_fill":{"char":"","code":"f51f"},"oct-stop":{"char":"","code":"f46e"},"oct-stopwatch":{"char":"","code":"f520"},"oct-strikethrough":{"char":"","code":"f521"},"oct-sun":{"char":"","code":"f522"},"oct-sync":{"char":"","code":"f46a"},"oct-tab":{"char":"","code":"f523"},"oct-tab_external":{"char":"","code":"f524"},"oct-table":{"char":"","code":"f525"},"oct-tag":{"char":"","code":"f412"},"oct-tasklist":{"char":"","code":"f4a0"},"oct-telescope":{"char":"","code":"f46b"},"oct-telescope_fill":{"char":"","code":"f526"},"oct-terminal":{"char":"","code":"f489"},"oct-three_bars":{"char":"","code":"f44e"},"oct-thumbsdown":{"char":"","code":"f497"},"oct-thumbsup":{"char":"","code":"f496"},"oct-tools":{"char":"","code":"f425"},"oct-trash":{"char":"","code":"f48e"},"oct-triangle_down":{"char":"","code":"f44b"},"oct-triangle_left":{"char":"","code":"f438"},"oct-triangle_right":{"char":"","code":"f44a"},"oct-triangle_up":{"char":"","code":"f47e"},"oct-trophy":{"char":"","code":"f527"},"oct-typography":{"char":"","code":"f528"},"oct-unfold":{"char":"","code":"f42d"},"oct-unlink":{"char":"","code":"f529"},"oct-unlock":{"char":"","code":"f52a"},"oct-unmute":{"char":"","code":"f485"},"oct-unread":{"char":"","code":"f52b"},"oct-unverified":{"char":"","code":"f4a3"},"oct-upload":{"char":"","code":"f40a"},"oct-verified":{"char":"","code":"f4a1"},"oct-versions":{"char":"","code":"f454"},"oct-video":{"char":"","code":"f52c"},"oct-webhook":{"char":"","code":"f52d"},"oct-workflow":{"char":"","code":"f52e"},"oct-x":{"char":"","code":"f467"},"oct-x_circle":{"char":"","code":"f52f"},"oct-x_circle_fill":{"char":"","code":"f530"},"oct-zap":{"char":"⚡","code":"26a1"},"oct-zoom_in":{"char":"","code":"f531"},"oct-zoom_out":{"char":"","code":"f532"},"pl-branch":{"char":"","code":"e0a0"},"pl-current_line":{"char":"","code":"e0a1"},"pl-hostname":{"char":"","code":"e0a2"},"pl-left_hard_divider":{"char":"","code":"e0b0"},"pl-left_soft_divider":{"char":"","code":"e0b1"},"pl-line_number":{"char":"","code":"e0a1"},"pl-readonly":{"char":"","code":"e0a2"},"pl-right_hard_divider":{"char":"","code":"e0b2"},"pl-right_soft_divider":{"char":"","code":"e0b3"},"ple-backslash_separator":{"char":"","code":"e0b9"},"ple-backslash_separator_redundant":{"char":"","code":"e0bf"},"ple-column_number":{"char":"","code":"e0a3"},"ple-current_column":{"char":"","code":"e0a3"},"ple-flame_thick":{"char":"","code":"e0c0"},"ple-flame_thick_mirrored":{"char":"","code":"e0c2"},"ple-flame_thin":{"char":"","code":"e0c1"},"ple-flame_thin_mirrored":{"char":"","code":"e0c3"},"ple-forwardslash_separator":{"char":"","code":"e0bb"},"ple-forwardslash_separator_redundant":{"char":"","code":"e0bd"},"ple-honeycomb":{"char":"","code":"e0cc"},"ple-honeycomb_outline":{"char":"","code":"e0cd"},"ple-ice_waveform":{"char":"","code":"e0c8"},"ple-ice_waveform_mirrored":{"char":"","code":"e0ca"},"ple-left_half_circle_thick":{"char":"","code":"e0b6"},"ple-left_half_circle_thin":{"char":"","code":"e0b7"},"ple-lego_block_facing":{"char":"","code":"e0d0"},"ple-lego_block_sideways":{"char":"","code":"e0d1"},"ple-lego_separator":{"char":"","code":"e0ce"},"ple-lego_separator_thin":{"char":"","code":"e0cf"},"ple-lower_left_triangle":{"char":"","code":"e0b8"},"ple-lower_right_triangle":{"char":"","code":"e0ba"},"ple-pixelated_squares_big":{"char":"","code":"e0c6"},"ple-pixelated_squares_big_mirrored":{"char":"","code":"e0c7"},"ple-pixelated_squares_small":{"char":"","code":"e0c4"},"ple-pixelated_squares_small_mirrored":{"char":"","code":"e0c5"},"ple-right_half_circle_thick":{"char":"","code":"e0b4"},"ple-right_half_circle_thin":{"char":"","code":"e0b5"},"ple-trapezoid_top_bottom":{"char":"","code":"e0d2"},"ple-trapezoid_top_bottom_mirrored":{"char":"","code":"e0d4"},"ple-upper_left_triangle":{"char":"","code":"e0bc"},"ple-upper_right_triangle":{"char":"","code":"e0be"},"pom-away":{"char":"","code":"e007"},"pom-clean_code":{"char":"","code":"e000"},"pom-external_interruption":{"char":"","code":"e00a"},"pom-internal_interruption":{"char":"","code":"e009"},"pom-long_pause":{"char":"","code":"e006"},"pom-pair_programming":{"char":"","code":"e008"},"pom-pomodoro_done":{"char":"","code":"e001"},"pom-pomodoro_estimated":{"char":"","code":"e002"},"pom-pomodoro_squashed":{"char":"","code":"e004"},"pom-pomodoro_ticking":{"char":"","code":"e003"},"pom-short_pause":{"char":"","code":"e005"},"seti-apple":{"char":"","code":"e635"},"seti-argdown":{"char":"","code":"e636"},"seti-asm":{"char":"","code":"e637"},"seti-audio":{"char":"","code":"e638"},"seti-babel":{"char":"","code":"e639"},"seti-bazel":{"char":"","code":"e63a"},"seti-bicep":{"char":"","code":"e63b"},"seti-bower":{"char":"","code":"e61a"},"seti-bsl":{"char":"","code":"e63c"},"seti-c":{"char":"","code":"e649"},"seti-c_sharp":{"char":"","code":"e648"},"seti-cake":{"char":"","code":"e63e"},"seti-cake_php":{"char":"","code":"e63d"},"seti-checkbox":{"char":"","code":"e63f"},"seti-checkbox_unchecked":{"char":"","code":"e640"},"seti-cjsx":{"char":"","code":"e61b"},"seti-clock":{"char":"","code":"e641"},"seti-clojure":{"char":"","code":"e642"},"seti-code_climate":{"char":"","code":"e643"},"seti-code_search":{"char":"","code":"e644"},"seti-coffee":{"char":"","code":"e61b"},"seti-coldfusion":{"char":"","code":"e645"},"seti-config":{"char":"","code":"e615"},"seti-cpp":{"char":"","code":"e646"},"seti-crystal":{"char":"","code":"e62f"},"seti-crystal_embedded":{"char":"","code":"e647"},"seti-css":{"char":"","code":"e614"},"seti-csv":{"char":"","code":"e64a"},"seti-cu":{"char":"","code":"e64b"},"seti-d":{"char":"","code":"e651"},"seti-dart":{"char":"","code":"e64c"},"seti-db":{"char":"","code":"e64d"},"seti-default":{"char":"","code":"e64e"},"seti-deprecation_cop":{"char":"","code":"e64f"},"seti-docker":{"char":"","code":"e650"},"seti-editorconfig":{"char":"","code":"e652"},"seti-ejs":{"char":"","code":"e618"},"seti-elixir":{"char":"","code":"e62d"},"seti-elixir_script":{"char":"","code":"e653"},"seti-elm":{"char":"","code":"e62c"},"seti-error":{"char":"","code":"e654"},"seti-eslint":{"char":"","code":"e655"},"seti-ethereum":{"char":"","code":"e656"},"seti-f_sharp":{"char":"","code":"e65a"},"seti-favicon":{"char":"","code":"e623"},"seti-firebase":{"char":"","code":"e657"},"seti-firefox":{"char":"","code":"e658"},"seti-folder":{"char":"","code":"e613"},"seti-font":{"char":"","code":"e659"},"seti-git":{"char":"","code":"e65d"},"seti-git_folder":{"char":"","code":"e65d"},"seti-git_ignore":{"char":"","code":"e65d"},"seti-github":{"char":"","code":"e65b"},"seti-gitlab":{"char":"","code":"e65c"},"seti-go":{"char":"","code":"e627"},"seti-go2":{"char":"","code":"e65e"},"seti-godot":{"char":"","code":"e65f"},"seti-gradle":{"char":"","code":"e660"},"seti-grails":{"char":"","code":"e661"},"seti-graphql":{"char":"","code":"e662"},"seti-grunt":{"char":"","code":"e611"},"seti-gulp":{"char":"","code":"e610"},"seti-hacklang":{"char":"","code":"e663"},"seti-haml":{"char":"","code":"e664"},"seti-happenings":{"char":"","code":"e665"},"seti-haskell":{"char":"","code":"e61f"},"seti-haxe":{"char":"","code":"e666"},"seti-heroku":{"char":"","code":"e607"},"seti-hex":{"char":"","code":"e667"},"seti-home":{"char":"","code":"e617"},"seti-html":{"char":"","code":"e60e"},"seti-ignored":{"char":"","code":"e668"},"seti-illustrator":{"char":"","code":"e669"},"seti-image":{"char":"","code":"e60d"},"seti-info":{"char":"","code":"e66a"},"seti-ionic":{"char":"","code":"e66b"},"seti-jade":{"char":"","code":"e66c"},"seti-java":{"char":"","code":"e66d"},"seti-javascript":{"char":"","code":"e60c"},"seti-jenkins":{"char":"","code":"e66e"},"seti-jinja":{"char":"","code":"e66f"},"seti-json":{"char":"","code":"e60b"},"seti-julia":{"char":"","code":"e624"},"seti-karma":{"char":"","code":"e622"},"seti-kotlin":{"char":"","code":"e634"},"seti-less":{"char":"","code":"e60b"},"seti-license":{"char":"","code":"e60a"},"seti-liquid":{"char":"","code":"e670"},"seti-livescript":{"char":"","code":"e671"},"seti-lock":{"char":"","code":"e672"},"seti-lua":{"char":"","code":"e620"},"seti-makefile":{"char":"","code":"e673"},"seti-markdown":{"char":"","code":"e609"},"seti-maven":{"char":"","code":"e674"},"seti-mdo":{"char":"","code":"e675"},"seti-mustache":{"char":"","code":"e60f"},"seti-new_file":{"char":"","code":"e676"},"seti-nim":{"char":"","code":"e677"},"seti-notebook":{"char":"","code":"e678"},"seti-npm":{"char":"","code":"e616"},"seti-npm_ignored":{"char":"","code":"e616"},"seti-nunjucks":{"char":"","code":"e679"},"seti-ocaml":{"char":"","code":"e67a"},"seti-odata":{"char":"","code":"e67b"},"seti-pddl":{"char":"","code":"e67c"},"seti-pdf":{"char":"","code":"e67d"},"seti-perl":{"char":"","code":"e67e"},"seti-photoshop":{"char":"","code":"e67f"},"seti-php":{"char":"","code":"e608"},"seti-pipeline":{"char":"","code":"e680"},"seti-plan":{"char":"","code":"e681"},"seti-platformio":{"char":"","code":"e682"},"seti-play_arrow":{"char":"","code":"e602"},"seti-powershell":{"char":"","code":"e683"},"seti-prisma":{"char":"","code":"e684"},"seti-project":{"char":"","code":"e601"},"seti-prolog":{"char":"","code":"e685"},"seti-pug":{"char":"","code":"e686"},"seti-puppet":{"char":"","code":"e631"},"seti-purescript":{"char":"","code":"e630"},"seti-python":{"char":"","code":"e606"},"seti-r":{"char":"","code":"e68a"},"seti-rails":{"char":"","code":"e604"},"seti-react":{"char":"","code":"e625"},"seti-reasonml":{"char":"","code":"e687"},"seti-rescript":{"char":"","code":"e688"},"seti-rollup":{"char":"","code":"e689"},"seti-ruby":{"char":"","code":"e605"},"seti-rust":{"char":"","code":"e68b"},"seti-salesforce":{"char":"","code":"e68c"},"seti-sass":{"char":"","code":"e603"},"seti-sbt":{"char":"","code":"e68d"},"seti-scala":{"char":"","code":"e68e"},"seti-search":{"char":"","code":"e68f"},"seti-settings":{"char":"","code":"e690"},"seti-shell":{"char":"","code":"e691"},"seti-slim":{"char":"","code":"e692"},"seti-smarty":{"char":"","code":"e693"},"seti-spring":{"char":"","code":"e694"},"seti-stylelint":{"char":"","code":"e695"},"seti-stylus":{"char":"","code":"e600"},"seti-sublime":{"char":"","code":"e696"},"seti-svelte":{"char":"","code":"e697"},"seti-svg":{"char":"","code":"e698"},"seti-swift":{"char":"","code":"e699"},"seti-terraform":{"char":"","code":"e69a"},"seti-tex":{"char":"","code":"e69b"},"seti-text":{"char":"","code":"e612"},"seti-time_cop":{"char":"","code":"e641"},"seti-todo":{"char":"","code":"e69c"},"seti-tsconfig":{"char":"","code":"e69d"},"seti-twig":{"char":"","code":"e61c"},"seti-typescript":{"char":"","code":"e628"},"seti-vala":{"char":"","code":"e69e"},"seti-video":{"char":"","code":"e69f"},"seti-vue":{"char":"","code":"e6a0"},"seti-wasm":{"char":"","code":"e6a1"},"seti-wat":{"char":"","code":"e6a2"},"seti-webpack":{"char":"","code":"e6a3"},"seti-wgt":{"char":"","code":"e6a4"},"seti-word":{"char":"","code":"e6a5"},"seti-xls":{"char":"","code":"e6a6"},"seti-xml":{"char":"","code":"e619"},"seti-yarn":{"char":"","code":"e6a7"},"seti-yml":{"char":"","code":"e6a8"},"seti-zig":{"char":"","code":"e6a9"},"seti-zip":{"char":"","code":"e6aa"},"weather-alien":{"char":"","code":"e36e"},"weather-aliens":{"char":"","code":"e345"},"weather-barometer":{"char":"","code":"e372"},"weather-celsius":{"char":"","code":"e339"},"weather-cloud":{"char":"","code":"e33d"},"weather-cloud_down":{"char":"","code":"e33a"},"weather-cloud_refresh":{"char":"","code":"e33b"},"weather-cloud_up":{"char":"","code":"e33c"},"weather-cloudy":{"char":"","code":"e312"},"weather-cloudy_gusts":{"char":"","code":"e310"},"weather-cloudy_windy":{"char":"","code":"e311"},"weather-day_cloudy":{"char":"","code":"e302"},"weather-day_cloudy_gusts":{"char":"","code":"e300"},"weather-day_cloudy_high":{"char":"","code":"e376"},"weather-day_cloudy_windy":{"char":"","code":"e301"},"weather-day_fog":{"char":"","code":"e303"},"weather-day_hail":{"char":"","code":"e304"},"weather-day_haze":{"char":"","code":"e3ae"},"weather-day_light_wind":{"char":"","code":"e3bc"},"weather-day_lightning":{"char":"","code":"e305"},"weather-day_rain":{"char":"","code":"e308"},"weather-day_rain_mix":{"char":"","code":"e306"},"weather-day_rain_wind":{"char":"","code":"e307"},"weather-day_showers":{"char":"","code":"e309"},"weather-day_sleet":{"char":"","code":"e3aa"},"weather-day_sleet_storm":{"char":"","code":"e362"},"weather-day_snow":{"char":"","code":"e30a"},"weather-day_snow_thunderstorm":{"char":"","code":"e365"},"weather-day_snow_wind":{"char":"","code":"e35f"},"weather-day_sprinkle":{"char":"","code":"e30b"},"weather-day_storm_showers":{"char":"","code":"e30e"},"weather-day_sunny":{"char":"","code":"e30d"},"weather-day_sunny_overcast":{"char":"","code":"e30c"},"weather-day_thunderstorm":{"char":"","code":"e30f"},"weather-day_windy":{"char":"","code":"e37d"},"weather-degrees":{"char":"","code":"e33e"},"weather-direction_down":{"char":"","code":"e340"},"weather-direction_down_left":{"char":"","code":"e33f"},"weather-direction_down_right":{"char":"","code":"e380"},"weather-direction_left":{"char":"","code":"e344"},"weather-direction_right":{"char":"","code":"e349"},"weather-direction_up":{"char":"","code":"e353"},"weather-direction_up_left":{"char":"","code":"e37f"},"weather-direction_up_right":{"char":"","code":"e352"},"weather-dust":{"char":"","code":"e35d"},"weather-earthquake":{"char":"","code":"e3be"},"weather-fahrenheit":{"char":"","code":"e341"},"weather-fire":{"char":"","code":"e3bf"},"weather-flood":{"char":"","code":"e375"},"weather-fog":{"char":"","code":"e313"},"weather-gale_warning":{"char":"","code":"e3c5"},"weather-hail":{"char":"","code":"e314"},"weather-horizon":{"char":"","code":"e343"},"weather-horizon_alt":{"char":"","code":"e342"},"weather-hot":{"char":"","code":"e36b"},"weather-humidity":{"char":"","code":"e373"},"weather-hurricane":{"char":"","code":"e36c"},"weather-hurricane_warning":{"char":"","code":"e3c7"},"weather-lightning":{"char":"","code":"e315"},"weather-lunar_eclipse":{"char":"","code":"e369"},"weather-meteor":{"char":"","code":"e36a"},"weather-moon_alt_first_quarter":{"char":"","code":"e3ce"},"weather-moon_alt_full":{"char":"","code":"e3d5"},"weather-moon_alt_new":{"char":"","code":"e3e3"},"weather-moon_alt_third_quarter":{"char":"","code":"e3dc"},"weather-moon_alt_waning_crescent_1":{"char":"","code":"e3dd"},"weather-moon_alt_waning_crescent_2":{"char":"","code":"e3de"},"weather-moon_alt_waning_crescent_3":{"char":"","code":"e3df"},"weather-moon_alt_waning_crescent_4":{"char":"","code":"e3e0"},"weather-moon_alt_waning_crescent_5":{"char":"","code":"e3e1"},"weather-moon_alt_waning_crescent_6":{"char":"","code":"e3e2"},"weather-moon_alt_waning_gibbous_1":{"char":"","code":"e3d6"},"weather-moon_alt_waning_gibbous_2":{"char":"","code":"e3d7"},"weather-moon_alt_waning_gibbous_3":{"char":"","code":"e3d8"},"weather-moon_alt_waning_gibbous_4":{"char":"","code":"e3d9"},"weather-moon_alt_waning_gibbous_5":{"char":"","code":"e3da"},"weather-moon_alt_waning_gibbous_6":{"char":"","code":"e3db"},"weather-moon_alt_waxing_crescent_1":{"char":"","code":"e3c8"},"weather-moon_alt_waxing_crescent_2":{"char":"","code":"e3c9"},"weather-moon_alt_waxing_crescent_3":{"char":"","code":"e3ca"},"weather-moon_alt_waxing_crescent_4":{"char":"","code":"e3cb"},"weather-moon_alt_waxing_crescent_5":{"char":"","code":"e3cc"},"weather-moon_alt_waxing_crescent_6":{"char":"","code":"e3cd"},"weather-moon_alt_waxing_gibbous_1":{"char":"","code":"e3cf"},"weather-moon_alt_waxing_gibbous_2":{"char":"","code":"e3d0"},"weather-moon_alt_waxing_gibbous_3":{"char":"","code":"e3d1"},"weather-moon_alt_waxing_gibbous_4":{"char":"","code":"e3d2"},"weather-moon_alt_waxing_gibbous_5":{"char":"","code":"e3d3"},"weather-moon_alt_waxing_gibbous_6":{"char":"","code":"e3d4"},"weather-moon_first_quarter":{"char":"","code":"e394"},"weather-moon_full":{"char":"","code":"e39b"},"weather-moon_new":{"char":"","code":"e38d"},"weather-moon_third_quarter":{"char":"","code":"e3a2"},"weather-moon_waning_crescent_1":{"char":"","code":"e3a3"},"weather-moon_waning_crescent_2":{"char":"","code":"e3a4"},"weather-moon_waning_crescent_3":{"char":"","code":"e3a5"},"weather-moon_waning_crescent_4":{"char":"","code":"e3a6"},"weather-moon_waning_crescent_5":{"char":"","code":"e3a7"},"weather-moon_waning_crescent_6":{"char":"","code":"e3a8"},"weather-moon_waning_gibbous_1":{"char":"","code":"e39c"},"weather-moon_waning_gibbous_2":{"char":"","code":"e39d"},"weather-moon_waning_gibbous_3":{"char":"","code":"e39e"},"weather-moon_waning_gibbous_4":{"char":"","code":"e39f"},"weather-moon_waning_gibbous_5":{"char":"","code":"e3a0"},"weather-moon_waning_gibbous_6":{"char":"","code":"e3a1"},"weather-moon_waxing_crescent_1":{"char":"","code":"e38e"},"weather-moon_waxing_crescent_2":{"char":"","code":"e38f"},"weather-moon_waxing_crescent_3":{"char":"","code":"e390"},"weather-moon_waxing_crescent_4":{"char":"","code":"e391"},"weather-moon_waxing_crescent_5":{"char":"","code":"e392"},"weather-moon_waxing_crescent_6":{"char":"","code":"e393"},"weather-moon_waxing_gibbous_1":{"char":"","code":"e395"},"weather-moon_waxing_gibbous_2":{"char":"","code":"e396"},"weather-moon_waxing_gibbous_3":{"char":"","code":"e397"},"weather-moon_waxing_gibbous_4":{"char":"","code":"e398"},"weather-moon_waxing_gibbous_5":{"char":"","code":"e399"},"weather-moon_waxing_gibbous_6":{"char":"","code":"e39a"},"weather-moonrise":{"char":"","code":"e3c1"},"weather-moonset":{"char":"","code":"e3c2"},"weather-na":{"char":"","code":"e374"},"weather-night_alt_cloudy":{"char":"","code":"e37e"},"weather-night_alt_cloudy_gusts":{"char":"","code":"e31f"},"weather-night_alt_cloudy_high":{"char":"","code":"e377"},"weather-night_alt_cloudy_windy":{"char":"","code":"e320"},"weather-night_alt_hail":{"char":"","code":"e321"},"weather-night_alt_lightning":{"char":"","code":"e322"},"weather-night_alt_partly_cloudy":{"char":"","code":"e379"},"weather-night_alt_rain":{"char":"","code":"e325"},"weather-night_alt_rain_mix":{"char":"","code":"e323"},"weather-night_alt_rain_wind":{"char":"","code":"e324"},"weather-night_alt_showers":{"char":"","code":"e326"},"weather-night_alt_sleet":{"char":"","code":"e3ac"},"weather-night_alt_sleet_storm":{"char":"","code":"e364"},"weather-night_alt_snow":{"char":"","code":"e327"},"weather-night_alt_snow_thunderstorm":{"char":"","code":"e367"},"weather-night_alt_snow_wind":{"char":"","code":"e361"},"weather-night_alt_sprinkle":{"char":"","code":"e328"},"weather-night_alt_storm_showers":{"char":"","code":"e329"},"weather-night_alt_thunderstorm":{"char":"","code":"e32a"},"weather-night_clear":{"char":"","code":"e32b"},"weather-night_cloudy":{"char":"","code":"e32e"},"weather-night_cloudy_gusts":{"char":"","code":"e32c"},"weather-night_cloudy_high":{"char":"","code":"e378"},"weather-night_cloudy_windy":{"char":"","code":"e32d"},"weather-night_fog":{"char":"","code":"e346"},"weather-night_hail":{"char":"","code":"e32f"},"weather-night_lightning":{"char":"","code":"e330"},"weather-night_partly_cloudy":{"char":"","code":"e37b"},"weather-night_rain":{"char":"","code":"e333"},"weather-night_rain_mix":{"char":"","code":"e331"},"weather-night_rain_wind":{"char":"","code":"e332"},"weather-night_showers":{"char":"","code":"e334"},"weather-night_sleet":{"char":"","code":"e3ab"},"weather-night_sleet_storm":{"char":"","code":"e363"},"weather-night_snow":{"char":"","code":"e335"},"weather-night_snow_thunderstorm":{"char":"","code":"e366"},"weather-night_snow_wind":{"char":"","code":"e360"},"weather-night_sprinkle":{"char":"","code":"e336"},"weather-night_storm_showers":{"char":"","code":"e337"},"weather-night_thunderstorm":{"char":"","code":"e338"},"weather-rain":{"char":"","code":"e318"},"weather-rain_mix":{"char":"","code":"e316"},"weather-rain_wind":{"char":"","code":"e317"},"weather-raindrop":{"char":"","code":"e371"},"weather-raindrops":{"char":"","code":"e34a"},"weather-refresh":{"char":"","code":"e348"},"weather-refresh_alt":{"char":"","code":"e347"},"weather-sandstorm":{"char":"","code":"e37a"},"weather-showers":{"char":"","code":"e319"},"weather-sleet":{"char":"","code":"e3ad"},"weather-small_craft_advisory":{"char":"","code":"e3c4"},"weather-smog":{"char":"","code":"e36d"},"weather-smoke":{"char":"","code":"e35c"},"weather-snow":{"char":"","code":"e31a"},"weather-snow_wind":{"char":"","code":"e35e"},"weather-snowflake_cold":{"char":"","code":"e36f"},"weather-solar_eclipse":{"char":"","code":"e368"},"weather-sprinkle":{"char":"","code":"e31b"},"weather-stars":{"char":"","code":"e370"},"weather-storm_showers":{"char":"","code":"e31c"},"weather-storm_warning":{"char":"","code":"e3c6"},"weather-strong_wind":{"char":"","code":"e34b"},"weather-sunrise":{"char":"","code":"e34c"},"weather-sunset":{"char":"","code":"e34d"},"weather-thermometer":{"char":"","code":"e350"},"weather-thermometer_exterior":{"char":"","code":"e34e"},"weather-thermometer_internal":{"char":"","code":"e34f"},"weather-thunderstorm":{"char":"","code":"e31d"},"weather-time_1":{"char":"","code":"e382"},"weather-time_10":{"char":"","code":"e38b"},"weather-time_11":{"char":"","code":"e38c"},"weather-time_12":{"char":"","code":"e381"},"weather-time_2":{"char":"","code":"e383"},"weather-time_3":{"char":"","code":"e384"},"weather-time_4":{"char":"","code":"e385"},"weather-time_5":{"char":"","code":"e386"},"weather-time_6":{"char":"","code":"e387"},"weather-time_7":{"char":"","code":"e388"},"weather-time_8":{"char":"","code":"e389"},"weather-time_9":{"char":"","code":"e38a"},"weather-tornado":{"char":"","code":"e351"},"weather-train":{"char":"","code":"e3c3"},"weather-tsunami":{"char":"","code":"e3bd"},"weather-umbrella":{"char":"","code":"e37c"},"weather-volcano":{"char":"","code":"e3c0"},"weather-wind_beaufort_0":{"char":"","code":"e3af"},"weather-wind_beaufort_1":{"char":"","code":"e3b0"},"weather-wind_beaufort_10":{"char":"","code":"e3b9"},"weather-wind_beaufort_11":{"char":"","code":"e3ba"},"weather-wind_beaufort_12":{"char":"","code":"e3bb"},"weather-wind_beaufort_2":{"char":"","code":"e3b1"},"weather-wind_beaufort_3":{"char":"","code":"e3b2"},"weather-wind_beaufort_4":{"char":"","code":"e3b3"},"weather-wind_beaufort_5":{"char":"","code":"e3b4"},"weather-wind_beaufort_6":{"char":"","code":"e3b5"},"weather-wind_beaufort_7":{"char":"","code":"e3b6"},"weather-wind_beaufort_8":{"char":"","code":"e3b7"},"weather-wind_beaufort_9":{"char":"","code":"e3b8"},"weather-wind_direction":{"char":"","code":"e3a9"},"weather-wind_east":{"char":"","code":"e35b"},"weather-wind_north":{"char":"","code":"e35a"},"weather-wind_north_east":{"char":"","code":"e359"},"weather-wind_north_west":{"char":"","code":"e358"},"weather-wind_south":{"char":"","code":"e357"},"weather-wind_south_east":{"char":"","code":"e356"},"weather-wind_south_west":{"char":"","code":"e355"},"weather-wind_west":{"char":"","code":"e354"},"weather-windy":{"char":"","code":"e31e"}} diff --git a/css-class-migration/icons-default.lua b/css-class-migration/icons-default.lua new file mode 120000 index 000000000..6e96c52e7 --- /dev/null +++ b/css-class-migration/icons-default.lua @@ -0,0 +1 @@ +../lua/nvim-web-devicons/icons-default.lua \ No newline at end of file From 2fadcedf7ed0efd62b2d21153266e5727ec3fa6e Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 14:57:52 +1100 Subject: [PATCH 2/9] specify css class when there is ambiguity --- css-class-migration/Makefile | 1 + css-class-migration/gen-check.lua | 4 ++- css-class-migration/gen-glyphs.lua | 39 ++++++++++++++++++++++++++++++ css-class-migration/gen-icons.lua | 22 ++++++++++++----- 4 files changed, 59 insertions(+), 7 deletions(-) diff --git a/css-class-migration/Makefile b/css-class-migration/Makefile index b79ebfae7..84c5d4d27 100644 --- a/css-class-migration/Makefile +++ b/css-class-migration/Makefile @@ -1,5 +1,6 @@ check: icons lua gen-check.lua + icons: glyphs lua gen-icons.lua diff --git a/css-class-migration/gen-check.lua b/css-class-migration/gen-check.lua index 710f1f095..93d7208a2 100644 --- a/css-class-migration/gen-check.lua +++ b/css-class-migration/gen-check.lua @@ -30,8 +30,10 @@ for var, typ in pairs(SOURCES) do if not to then fail = true io.stderr:write(string.format("ERR: icons-by-%s.lua missing %s\n", typ, k)) - elseif from.color ~= to.color or from.icon ~= to.icon or from.name ~= to.name then + elseif from.icon ~= to.icon then fail = true + io.stderr:write(string.format("ERR: %-25s %s ~= %s\n", k, from.icon, to.icon)) + elseif from.color ~= to.color or from.name ~= to.name then io.stderr:write(string.format("ERR: %s ~= %s\n", inspect(from), inspect(to))) end end diff --git a/css-class-migration/gen-glyphs.lua b/css-class-migration/gen-glyphs.lua index 3ed3fa1fa..e6ce93064 100644 --- a/css-class-migration/gen-glyphs.lua +++ b/css-class-migration/gen-glyphs.lua @@ -9,6 +9,41 @@ local SOURCES = { icons_by_operating_system = "os", } +-- multiple or no css class +local OVERRIDES = { + -- by filename + [".babelrc"] = "seti-less", + ["mix.lock"] = "seti-elixir", + [".prettierrc"] = "custom-prettier", + -- by extension + ["elm"] = "seti-elm", + ["exs"] = "seti-elixir", + ["coffee"] = "seti-coffee", + ["json5"] = "seti-json", + ["eex"] = "seti-elixir", + ["ex"] = "seti-elixir", + ["json"] = "seti-json", + ["nswag"] = "seti-json", + ["cson"] = "seti-json", + ["cr"] = "seti-crystal", + ["jsonc"] = "seti-json", + ["pp"] = "seti-puppet", + ["webmanifest"] = "seti-json", + ["kt"] = "seti-kotlin", + ["heex"] = "seti-elixir", + ["leex"] = "seti-elixir", + ["kts"] = "seti-kotlin", + ["epp"] = "seti-puppet", + ["cob"] = "seti-config", + ["cbl"] = "seti-config", + ["cobol"] = "seti-config", + ["cpy"] = "seti-config", + ["sml"] = "md-lambda", + ["sig"] = "md-lambda", + ["mo"] = "md-infinity", + ["nu"] = "fa-chevron_right", +} + -- map name by codepoint value local names_by_codepoint = {} for name, data in pairs(glyphnames) do @@ -31,6 +66,10 @@ for var, typ in pairs(SOURCES) do local cp = utf8.codepoint(icon.icon) local names = names_by_codepoint[cp] + if OVERRIDES[key] then + names = { OVERRIDES[key] } + end + local class if not names then local err = string.format("ERR: %-25s no class for %s", key, icon.icon) diff --git a/css-class-migration/gen-icons.lua b/css-class-migration/gen-icons.lua index 6744ed01d..7c8dcef53 100644 --- a/css-class-migration/gen-icons.lua +++ b/css-class-migration/gen-icons.lua @@ -9,6 +9,12 @@ local SOURCES = { "os", } +-- icons not yet available, non-nerd or alpha +local OVERRIDES = { + -- by filename + [".prettierrc"] = "", +} + -- generate all "by" for _, typ in pairs(SOURCES) do print(string.format("glyphs-by-%s.lua -> icons-by-%s.lua", typ, typ)) @@ -18,13 +24,17 @@ for _, typ in pairs(SOURCES) do for key, glyph in pairs(require("glyphs-by-" .. typ)) do local icon - local glyphname = glyphnames[glyph.class] - if not glyphname then - local err = string.format("ERR: %-25s no icon for class %s", key, glyph.class) - icon = err - io.stderr:write(err .. "\n") + if OVERRIDES[key] then + icon = OVERRIDES[key] else - icon = glyphname.char + local glyphname = glyphnames[glyph.class] + if not glyphname then + local err = string.format("ERR: %-25s no icon for class %s", key, glyph.class) + icon = err + io.stderr:write(err .. "\n") + else + icon = glyphname.char + end end icons[key] = { From 23d6e8ae2186876c69b7adc7a5ee745f70d169ff Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 16:22:47 +1100 Subject: [PATCH 3/9] generate icons from src --- Makefile | 17 +- css-class-migration/Makefile | 17 - css-class-migration/gen-check.lua | 44 - css-class-migration/gen-glyphs.lua | 103 - css-class-migration/gen-icons.lua | 58 - css-class-migration/icons-default.lua | 1 - .../icons-default-cb0c967.lua | 2265 + lua/nvim-web-devicons/icons-default.lua | 1915 +- lua/nvim-web-devicons/icons-light-cb0c967.lua | 2265 + lua/nvim-web-devicons/icons-light.lua | 1915 +- scripts/gen-check.lua | 42 + scripts/gen-icons.lua | 65 + scripts/generate_colors.lua | 19 +- src/by-ext.lua | 1347 + src/by-name.lua | 342 + src/by-os.lua | 192 + {css-class-migration => src}/glyphnames.json | 0 src/glyphnames.lua | 37310 ++++++++++++++++ 18 files changed, 46140 insertions(+), 1777 deletions(-) delete mode 100644 css-class-migration/Makefile delete mode 100644 css-class-migration/gen-check.lua delete mode 100644 css-class-migration/gen-glyphs.lua delete mode 100644 css-class-migration/gen-icons.lua delete mode 120000 css-class-migration/icons-default.lua create mode 100644 lua/nvim-web-devicons/icons-default-cb0c967.lua create mode 100644 lua/nvim-web-devicons/icons-light-cb0c967.lua create mode 100644 scripts/gen-check.lua create mode 100644 scripts/gen-icons.lua create mode 100644 src/by-ext.lua create mode 100644 src/by-name.lua create mode 100644 src/by-os.lua rename {css-class-migration => src}/glyphnames.json (100%) create mode 100644 src/glyphnames.lua diff --git a/Makefile b/Makefile index 5f3344b0f..f82dc9cce 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,20 @@ VIM_COLORTEMPLATE_VERSION = 2.2.3 all: colors style-check lint -colors: vim-colortemplate +icons: src/glyphnames.lua + lua scripts/gen-icons.lua + stylua lua/nvim-web-devicons/icons-*.lua + +# TODO remove following migration to css classes +gen-check: colors + lua scripts/gen-check.lua + +# only needed when updating nerd font classes +src/glyphnames.lua: src/glyphnames.json + yq '.METADATA' $(^) -oy + yq 'del(.METADATA)' $(^) -ol > $(@) + +colors: vim-colortemplate icons nvim \ --clean \ --headless \ @@ -29,4 +42,4 @@ lint: clean: rm -rf vim-colortemplate -.PHONY: all colors style-check style-fix lint +.PHONY: all icons colors style-check style-fix lint diff --git a/css-class-migration/Makefile b/css-class-migration/Makefile deleted file mode 100644 index 84c5d4d27..000000000 --- a/css-class-migration/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -check: icons - lua gen-check.lua - -icons: glyphs - lua gen-icons.lua - -glyphs: glyphnames.lua - lua gen-glyphs.lua - -glyphnames.lua: glyphnames.json - yq '.METADATA' glyphnames.json -oy - yq 'del(.METADATA)' glyphnames.json -ol > glyphnames.lua - -clean: - rm -f glyphnames.lua glyphs-by*.lua icons-by*.lua - -.PHONY: icons glyphs clean diff --git a/css-class-migration/gen-check.lua b/css-class-migration/gen-check.lua deleted file mode 100644 index 93d7208a2..000000000 --- a/css-class-migration/gen-check.lua +++ /dev/null @@ -1,44 +0,0 @@ ---- one off task to check icons-by-*.lua from original icons-default.lua - -local inspect = require "inspect" - -local SOURCES = { - icons_by_filename = "name", - icons_by_file_extension = "ext", - icons_by_operating_system = "os", -} - -local fail = false - --- process all "by" -for var, typ in pairs(SOURCES) do - print(string.format("icons-default.lua[%s] <-> icons-by-%s.lua", var, typ)) - - -- original source - local froms = require("icons-default")[var] - local tos = require("icons-by-" .. typ) - - -- size - if #froms ~= #tos then - io.stderr:write(string.format("ERR: %d ~= %d\n", #froms, #tos)) - os.exit(1) - end - - for k, from in pairs(froms) do - local to = tos[k] - - if not to then - fail = true - io.stderr:write(string.format("ERR: icons-by-%s.lua missing %s\n", typ, k)) - elseif from.icon ~= to.icon then - fail = true - io.stderr:write(string.format("ERR: %-25s %s ~= %s\n", k, from.icon, to.icon)) - elseif from.color ~= to.color or from.name ~= to.name then - io.stderr:write(string.format("ERR: %s ~= %s\n", inspect(from), inspect(to))) - end - end -end - -if fail then - os.exit(1) -end diff --git a/css-class-migration/gen-glyphs.lua b/css-class-migration/gen-glyphs.lua deleted file mode 100644 index e6ce93064..000000000 --- a/css-class-migration/gen-glyphs.lua +++ /dev/null @@ -1,103 +0,0 @@ ---- one off task to generate glyphs-by-*.lua from original icons-default.lua - -local inspect = require "inspect" -local glyphnames = require "glyphnames" - -local SOURCES = { - icons_by_filename = "name", - icons_by_file_extension = "ext", - icons_by_operating_system = "os", -} - --- multiple or no css class -local OVERRIDES = { - -- by filename - [".babelrc"] = "seti-less", - ["mix.lock"] = "seti-elixir", - [".prettierrc"] = "custom-prettier", - -- by extension - ["elm"] = "seti-elm", - ["exs"] = "seti-elixir", - ["coffee"] = "seti-coffee", - ["json5"] = "seti-json", - ["eex"] = "seti-elixir", - ["ex"] = "seti-elixir", - ["json"] = "seti-json", - ["nswag"] = "seti-json", - ["cson"] = "seti-json", - ["cr"] = "seti-crystal", - ["jsonc"] = "seti-json", - ["pp"] = "seti-puppet", - ["webmanifest"] = "seti-json", - ["kt"] = "seti-kotlin", - ["heex"] = "seti-elixir", - ["leex"] = "seti-elixir", - ["kts"] = "seti-kotlin", - ["epp"] = "seti-puppet", - ["cob"] = "seti-config", - ["cbl"] = "seti-config", - ["cobol"] = "seti-config", - ["cpy"] = "seti-config", - ["sml"] = "md-lambda", - ["sig"] = "md-lambda", - ["mo"] = "md-infinity", - ["nu"] = "fa-chevron_right", -} - --- map name by codepoint value -local names_by_codepoint = {} -for name, data in pairs(glyphnames) do - if name and data and data.code then - local code = tonumber(data.code, 16) - if not names_by_codepoint[code] then - names_by_codepoint[code] = {} - end - table.insert(names_by_codepoint[code], name) - end -end - --- generate all "by" -for var, typ in pairs(SOURCES) do - print(string.format("icons-default.lua[%s] -> icons-by-%s.lua", var, typ)) - - -- generate classy glyphs from original - local glyphs = {} - for key, icon in pairs(require("icons-default")[var]) do - local cp = utf8.codepoint(icon.icon) - local names = names_by_codepoint[cp] - - if OVERRIDES[key] then - names = { OVERRIDES[key] } - end - - local class - if not names then - local err = string.format("ERR: %-25s no class for %s", key, icon.icon) - class = err - io.stderr:write(err .. "\n") - elseif #names ~= 1 then - local err = string.format("ERR: %-25s too many classes for %s %s", key, icon.icon, inspect(names)) - class = err - io.stderr:write(err .. "\n") - else - class = names[1] - end - - glyphs[key] = { - class = class, - color = icon.color, - name = icon.name, - } - end - - -- output as lua - local name = string.format("glyphs-by-%s.lua", typ) - os.remove(name) - local file = io.open(name, "a") - if file then - io.output(file) - io.write "return " - io.write(inspect(glyphs)) - io.close(file) - end -end diff --git a/css-class-migration/gen-icons.lua b/css-class-migration/gen-icons.lua deleted file mode 100644 index 7c8dcef53..000000000 --- a/css-class-migration/gen-icons.lua +++ /dev/null @@ -1,58 +0,0 @@ ---- generate icons-by-*.lua from glyphs-by-*.lua - -local inspect = require "inspect" -local glyphnames = require "glyphnames" - -local SOURCES = { - "name", - "ext", - "os", -} - --- icons not yet available, non-nerd or alpha -local OVERRIDES = { - -- by filename - [".prettierrc"] = "", -} - --- generate all "by" -for _, typ in pairs(SOURCES) do - print(string.format("glyphs-by-%s.lua -> icons-by-%s.lua", typ, typ)) - - -- generate populated icons - local icons = {} - for key, glyph in pairs(require("glyphs-by-" .. typ)) do - local icon - - if OVERRIDES[key] then - icon = OVERRIDES[key] - else - local glyphname = glyphnames[glyph.class] - if not glyphname then - local err = string.format("ERR: %-25s no icon for class %s", key, glyph.class) - icon = err - io.stderr:write(err .. "\n") - else - icon = glyphname.char - end - end - - icons[key] = { - icon = icon, - class = glyph.class, - color = glyph.color, - name = glyph.name, - } - end - - -- output as lua - local name = string.format("icons-by-%s.lua", typ) - os.remove(name) - local file = io.open(name, "a") - if file then - io.output(file) - io.write "return " - io.write(inspect(icons)) - io.close(file) - end -end diff --git a/css-class-migration/icons-default.lua b/css-class-migration/icons-default.lua deleted file mode 120000 index 6e96c52e7..000000000 --- a/css-class-migration/icons-default.lua +++ /dev/null @@ -1 +0,0 @@ -../lua/nvim-web-devicons/icons-default.lua \ No newline at end of file diff --git a/lua/nvim-web-devicons/icons-default-cb0c967.lua b/lua/nvim-web-devicons/icons-default-cb0c967.lua new file mode 100644 index 000000000..5bd5e6293 --- /dev/null +++ b/lua/nvim-web-devicons/icons-default-cb0c967.lua @@ -0,0 +1,2265 @@ +-- TODO remove following migration to css classes +local icons_by_filename = { + [".babelrc"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Babelrc", + }, + [".bash_profile"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "BashProfile", + }, + [".bashrc"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Bashrc", + }, + [".dockerignore"] = { + icon = "󰡨", + color = "#458ee6", + cterm_color = "68", + name = "Dockerfile", + }, + [".ds_store"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "DsStore", + }, + [".editorconfig"] = { + icon = "", + color = "#fff2f2", + cterm_color = "255", + name = "EditorConfig", + }, + [".env"] = { + icon = "", + color = "#faf743", + cterm_color = "227", + name = "Env", + }, + [".eslintrc"] = { + icon = "", + color = "#4b32c3", + cterm_color = "56", + name = "Eslintrc", + }, + [".eslintignore"] = { + icon = "", + color = "#4b32c3", + cterm_color = "56", + name = "EslintIgnore", + }, + [".gitattributes"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitAttributes", + }, + [".gitconfig"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitConfig", + }, + [".gitignore"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitIgnore", + }, + [".gitlab-ci.yml"] = { + icon = "", + color = "#e24329", + cterm_color = "196", + name = "GitlabCI", + }, + [".gitmodules"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitModules", + }, + [".gvimrc"] = { + icon = "", + color = "#019833", + cterm_color = "28", + name = "Gvimrc", + }, + [".luaurc"] = { + icon = "", + color = "#00a2ff", + cterm_color = "75", + name = "Luaurc", + }, + [".npmignore"] = { + icon = "", + color = "#E8274B", + cterm_color = "197", + name = "NPMIgnore", + }, + [".npmrc"] = { + icon = "", + color = "#E8274B", + cterm_color = "197", + name = "NPMrc", + }, + [".prettierrc"] = { + icon = "", + color = "#4285F4", + cterm_color = "33", + name = "PrettierConfig", + }, + [".settings.json"] = { + icon = "", + color = "#854CC7", + cterm_color = "98", + name = "SettingsJson", + }, + [".vimrc"] = { + icon = "", + color = "#019833", + cterm_color = "28", + name = "Vimrc", + }, + [".zprofile"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Zshprofile", + }, + [".zshenv"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Zshenv", + }, + [".zshrc"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Zshrc", + }, + ["_gvimrc"] = { + icon = "", + color = "#019833", + cterm_color = "28", + name = "Gvimrc", + }, + ["_vimrc"] = { + icon = "", + color = "#019833", + cterm_color = "28", + name = "Vimrc", + }, + ["R"] = { + icon = "󰟔", + color = "#2266ba", + cterm_color = "25", + name = "R", + }, + ["avif"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Avif", + }, + ["brewfile"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Brewfile", + }, + ["build"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "BazelBuild", + }, + ["checkhealth"] = { + icon = "󰓙", + color = "#75B4FB", + cterm_color = "75", + name = "Checkhealth", + }, + ["cmakelists.txt"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "CMakeLists", + }, + ["commit_editmsg"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitCommit", + }, + ["compose.yaml"] = { + icon = "󰡨", + color = "#458ee6", + cterm_color = "68", + name = "Dockerfile", + }, + ["compose.yml"] = { + icon = "󰡨", + color = "#458ee6", + cterm_color = "68", + name = "Dockerfile", + }, + ["containerfile"] = { + icon = "󰡨", + color = "#458ee6", + cterm_color = "68", + name = "Dockerfile", + }, + ["copying"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "License", + }, + ["copying.lesser"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "License", + }, + ["docker-compose.yaml"] = { + icon = "󰡨", + color = "#458ee6", + cterm_color = "68", + name = "Dockerfile", + }, + ["docker-compose.yml"] = { + icon = "󰡨", + color = "#458ee6", + cterm_color = "68", + name = "Dockerfile", + }, + ["dockerfile"] = { + icon = "󰡨", + color = "#458ee6", + cterm_color = "68", + name = "Dockerfile", + }, + ["favicon.ico"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Favicon", + }, + ["gemfile$"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Gemfile", + }, + ["gnumakefile"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Makefile", + }, + ["groovy"] = { + icon = "", + color = "#4a687c", + cterm_color = "24", + name = "Groovy", + }, + ["gruntfile"] = { + icon = "", + color = "#e37933", + cterm_color = "166", + name = "Gruntfile", + }, + ["gulpfile"] = { + icon = "", + color = "#cc3e44", + cterm_color = "167", + name = "Gulpfile", + }, + ["license"] = { + icon = "", + color = "#d0bf41", + cterm_color = "185", + name = "License", + }, + ["makefile"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Makefile", + }, + ["mix.lock"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "MixLock", + }, + ["node_modules"] = { + icon = "", + color = "#E8274B", + cterm_color = "197", + name = "NodeModules", + }, + ["package.json"] = { + icon = "", + color = "#e8274b", + cterm_color = "197", + name = "PackageJson", + }, + ["package-lock.json"] = { + icon = "", + color = "#7a0d21", + cterm_color = "52", + name = "PackageLockJson", + }, + ["procfile"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Procfile", + }, + ["py.typed"] = { + icon = "", + color = "#ffbc03", + cterm_color = "214", + name = "Py.typed", + }, + ["r"] = { + icon = "󰟔", + color = "#2266ba", + cterm_color = "25", + name = "R", + }, + ["rakefile"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Rakefile", + }, + ["rmd"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Rmd", + }, + ["svelte.config.js"] = { + icon = "", + color = "#ff3e00", + cterm_color = "196", + name = "SvelteConfig", + }, + ["tailwind.config.js"] = { + icon = "󱏿", + color = "#20c2e3", + cterm_color = "45", + name = "TailwindConfig", + }, + ["tailwind.config.mjs"] = { + icon = "󱏿", + color = "#20c2e3", + cterm_color = "45", + name = "TailwindConfig", + }, + ["tailwind.config.ts"] = { + icon = "󱏿", + color = "#20c2e3", + cterm_color = "45", + name = "TailwindConfig", + }, + ["tsconfig.json"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "TSConfig", + }, + ["unlicense"] = { + icon = "", + color = "#d0bf41", + cterm_color = "185", + name = "License", + }, + ["vagrantfile$"] = { + icon = "", + color = "#1563FF", + cterm_color = "27", + name = "Vagrantfile", + }, + ["webpack"] = { + icon = "󰜫", + color = "#519aba", + cterm_color = "74", + name = "Webpack", + }, + ["workspace"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "BazelWorkspace", + }, + ["build.zig.zon"] = { + icon = "", + color = "#f69a1b", + cterm_color = "172", + name = "ZigObjectNotation", + }, +} + +local icons_by_file_extension = { + ["Dockerfile"] = { + icon = "󰡨", + color = "#458ee6", + cterm_color = "68", + name = "Dockerfile", + }, + ["R"] = { + icon = "󰟔", + color = "#2266ba", + cterm_color = "25", + name = "R", + }, + ["aac"] = { + icon = "", + color = "#66D8EF", + cterm_color = "45", + name = "Aac", + }, + ["ai"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Ai", + }, + ["app"] = { + icon = "", + color = "#9F0500", + cterm_color = "124", + name = "App", + }, + ["applescript"] = { + icon = "", + color = "#6d8085", + cterm_color = "66", + name = "AppleScript", + }, + ["awk"] = { + icon = "", + color = "#4d5a5e", + cterm_color = "240", + name = "Awk", + }, + ["azcli"] = { + icon = "", + color = "#0078d4", + cterm_color = "32", + name = "AzureCli", + }, + ["bak"] = { + icon = "󰁯", + color = "#6d8086", + cterm_color = "66", + name = "Backup", + }, + ["bash"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Bash", + }, + ["bat"] = { + icon = "", + color = "#C1F12E", + cterm_color = "191", + name = "Bat", + }, + ["bazel"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Bazel", + }, + ["bib"] = { + icon = "󱉟", + color = "#cbcb41", + cterm_color = "185", + name = "BibTeX", + }, + ["bmp"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Bmp", + }, + ["bzl"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Bzl", + }, + ["c"] = { + icon = "", + color = "#599eff", + cterm_color = "111", + name = "C", + }, + ["c++"] = { + icon = "", + color = "#f34b7d", + cterm_color = "204", + name = "CPlusPlus", + }, + ["cbl"] = { + icon = "⚙", + color = "#005ca5", + cterm_color = "25", + name = "Cobol", + }, + ["cc"] = { + icon = "", + color = "#f34b7d", + cterm_color = "204", + name = "CPlusPlus", + }, + ["ccm"] = { + icon = "", + color = "#f34b7d", + cterm_color = "204", + name = "CPlusPlusModule", + }, + ["cfg"] = { + icon = "", + color = "#ECECEC", + cterm_color = "255", + name = "Configuration", + }, + ["cjs"] = { + icon = "󰌞", + color = "#F1F134", + cterm_color = "227", + name = "Cjs", + }, + ["clj"] = { + icon = "", + color = "#8dc149", + cterm_color = "113", + name = "Clojure", + }, + ["cljc"] = { + icon = "", + color = "#8dc149", + cterm_color = "113", + name = "ClojureC", + }, + ["cljs"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "ClojureJS", + }, + ["cljd"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "ClojureDart", + }, + ["cmake"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "CMake", + }, + ["cob"] = { + icon = "⚙", + color = "#005ca5", + cterm_color = "25", + name = "Cobol", + }, + ["cobol"] = { + icon = "⚙", + color = "#005ca5", + cterm_color = "25", + name = "Cobol", + }, + ["coffee"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Coffee", + }, + ["conf"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Conf", + }, + ["config.ru"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "ConfigRu", + }, + ["cp"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Cp", + }, + ["cpp"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Cpp", + }, + ["cppm"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Cppm", + }, + ["cpy"] = { + icon = "⚙", + color = "#005ca5", + cterm_color = "25", + name = "Cobol", + }, + ["cr"] = { + icon = "", + color = "#c8c8c8", + cterm_color = "251", + name = "Crystal", + }, + ["cs"] = { + icon = "󰌛", + color = "#596706", + cterm_color = "58", + name = "Cs", + }, + ["csh"] = { + icon = "", + color = "#4d5a5e", + cterm_color = "240", + name = "Csh", + }, + ["cshtml"] = { + icon = "󱦗", + color = "#512bd4", + cterm_color = "56", + name = "RazorPage", + }, + ["cson"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Cson", + }, + ["csproj"] = { + icon = "󰪮", + color = "#512bd4", + cterm_color = "56", + name = "CSharpProject", + }, + ["css"] = { + icon = "", + color = "#42a5f5", + cterm_color = "75", + name = "Css", + }, + ["csv"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Csv", + }, + ["cts"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Cts", + }, + ["cu"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "cuda", + }, + ["cuh"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "cudah", + }, + ["cxx"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Cxx", + }, + ["cxxm"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Cxxm", + }, + ["d"] = { + icon = "", + color = "#427819", + cterm_color = "28", + name = "D", + }, + ["dart"] = { + icon = "", + color = "#03589C", + cterm_color = "25", + name = "Dart", + }, + ["db"] = { + icon = "", + color = "#dad8d8", + cterm_color = "188", + name = "Db", + }, + ["desktop"] = { + icon = "", + color = "#563d7c", + cterm_color = "54", + name = "DesktopEntry", + }, + ["diff"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "Diff", + }, + ["doc"] = { + icon = "󰈬", + color = "#185abd", + cterm_color = "26", + name = "Doc", + }, + ["docx"] = { + icon = "󰈬", + color = "#185abd", + cterm_color = "26", + name = "Docx", + }, + ["drl"] = { + icon = "", + color = "#ffafaf", + cterm_color = "217", + name = "Drools", + }, + ["dropbox"] = { + icon = "", + color = "#0061FE", + cterm_color = "27", + name = "Dropbox", + }, + ["dump"] = { + icon = "", + color = "#dad8d8", + cterm_color = "188", + name = "Dump", + }, + ["edn"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Edn", + }, + ["eex"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Eex", + }, + ["ejs"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Ejs", + }, + ["elf"] = { + icon = "", + color = "#9F0500", + cterm_color = "124", + name = "Elf", + }, + ["elm"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Elm", + }, + ["eot"] = { + icon = "", + color = "#ECECEC", + cterm_color = "255", + name = "EmbeddedOpenTypeFont", + }, + ["epp"] = { + icon = "", + color = "#FFA61A", + cterm_color = "214", + name = "Epp", + }, + ["erb"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Erb", + }, + ["erl"] = { + icon = "", + color = "#B83998", + cterm_color = "163", + name = "Erl", + }, + ["ex"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Ex", + }, + ["exe"] = { + icon = "", + color = "#9F0500", + cterm_color = "124", + name = "Exe", + }, + ["exs"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Exs", + }, + ["f#"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Fsharp", + }, + ["f90"] = { + icon = "󱈚", + color = "#734f96", + cterm_color = "97", + name = "Fortran", + }, + ["flac"] = { + icon = "", + color = "#66D8EF", + cterm_color = "45", + name = "Flac", + }, + ["fnl"] = { + icon = "", + color = "#fff3d7", + cterm_color = "230", + name = "Fennel", + }, + ["fish"] = { + icon = "", + color = "#4d5a5e", + cterm_color = "240", + name = "Fish", + }, + ["fs"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Fs", + }, + ["fsi"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Fsi", + }, + ["fsscript"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Fsscript", + }, + ["fsx"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Fsx", + }, + ["gd"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "GDScript", + }, + ["gemspec"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Gemspec", + }, + ["gif"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Gif", + }, + ["git"] = { + icon = "", + color = "#F14C28", + cterm_color = "196", + name = "GitLogo", + }, + ["glb"] = { + icon = "", + color = "#FFB13B", + cterm_color = "214", + name = "BinaryGLTF", + }, + ["gnumakefile"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Makefile", + }, + ["go"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Go", + }, + ["godot"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "GodotProject", + }, + ["gql"] = { + icon = "", + color = "#e535ab", + cterm_color = "199", + name = "GraphQL", + }, + ["graphql"] = { + icon = "", + color = "#e535ab", + cterm_color = "199", + name = "GraphQL", + }, + ["h"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "H", + }, + ["haml"] = { + icon = "", + color = "#eaeae1", + cterm_color = "255", + name = "Haml", + }, + ["hx"] = { + icon = "", + color = "#ea8220", + cterm_color = "208", + name = "Haxe", + }, + ["hbs"] = { + icon = "", + color = "#f0772b", + cterm_color = "202", + name = "Hbs", + }, + ["heex"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Heex", + }, + ["hh"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Hh", + }, + ["hpp"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Hpp", + }, + ["hrl"] = { + icon = "", + color = "#B83998", + cterm_color = "163", + name = "Hrl", + }, + ["hs"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Hs", + }, + ["htm"] = { + icon = "", + color = "#e34c26", + cterm_color = "196", + name = "Htm", + }, + ["html"] = { + icon = "", + color = "#e44d26", + cterm_color = "196", + name = "Html", + }, + ["huff"] = { + icon = "󰡘", + color = "#4242c7", + cterm_color = "56", + name = "Huff", + }, + ["hurl"] = { + icon = "", + color = "#ff0288", + cterm_color = "198", + name = "Hurl", + }, + ["hxx"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Hxx", + }, + ["ixx"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Ixx", + }, + ["ico"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Ico", + }, + ["import"] = { + icon = "", + color = "#ECECEC", + cterm_color = "255", + name = "ImportConfiguration", + }, + ["ini"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Ini", + }, + ["ino"] = { + icon = "", + color = "#56b6c2", + cterm_color = "73", + name = "arduino", + }, + ["ipynb"] = { + icon = "", + color = "#51a0cf", + cterm_color = "74", + name = "Notebook", + }, + ["java"] = { + icon = "", + color = "#cc3e44", + cterm_color = "167", + name = "Java", + }, + ["jl"] = { + icon = "", + color = "#a270ba", + cterm_color = "133", + name = "Jl", + }, + ["jpeg"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Jpeg", + }, + ["jpg"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Jpg", + }, + ["js"] = { + icon = "󰌞", + color = "#F1F134", + cterm_color = "227", + name = "Js", + }, + ["json"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Json", + }, + ["json5"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Json5", + }, + ["jsonc"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "Jsonc", + }, + ["jsx"] = { + icon = "", + color = "#20c2e3", + cterm_color = "45", + name = "Jsx", + }, + ["jxl"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "JpegXl", + }, + ["ksh"] = { + icon = "", + color = "#4d5a5e", + cterm_color = "240", + name = "Ksh", + }, + ["kt"] = { + icon = "", + color = "#7F52FF", + cterm_color = "99", + name = "Kotlin", + }, + ["kts"] = { + icon = "", + color = "#7F52FF", + cterm_color = "99", + name = "KotlinScript", + }, + ["leex"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Leex", + }, + ["less"] = { + icon = "", + color = "#563d7c", + cterm_color = "54", + name = "Less", + }, + ["lhs"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Lhs", + }, + ["license"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "License", + }, + ["liquid"] = { + icon = "", + color = "#95BF47", + cterm_color = "106", + name = "Liquid", + }, + ["lock"] = { + icon = "", + color = "#bbbbbb", + cterm_color = "250", + name = "Lock", + }, + ["log"] = { + icon = "󰌱", + color = "#dddddd", + cterm_color = "253", + name = "Log", + }, + ["lua"] = { + icon = "", + color = "#51a0cf", + cterm_color = "74", + name = "Lua", + }, + ["luau"] = { + icon = "", + color = "#00a2ff", + cterm_color = "75", + name = "Luau", + }, + ["mpp"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Mpp", + }, + ["m4a"] = { + icon = "", + color = "#66D8EF", + cterm_color = "45", + name = "M4A", + }, + ["m4v"] = { + icon = "", + color = "#FD971F", + cterm_color = "208", + name = "M4V", + }, + ["makefile"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Makefile", + }, + ["markdown"] = { + icon = "", + color = "#dddddd", + cterm_color = "253", + name = "Markdown", + }, + ["material"] = { + icon = "󰔉", + color = "#B83998", + cterm_color = "163", + name = "Material", + }, + ["md"] = { + icon = "", + color = "#dddddd", + cterm_color = "253", + name = "Md", + }, + ["mdx"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Mdx", + }, + ["mint"] = { + icon = "󰌪", + color = "#87c095", + cterm_color = "108", + name = "Mint", + }, + ["mjs"] = { + icon = "󰌞", + color = "#F1F134", + cterm_color = "227", + name = "Mjs", + }, + ["mk"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Makefile", + }, + ["mkv"] = { + icon = "", + color = "#FD971F", + cterm_color = "208", + name = "Mkv", + }, + ["ml"] = { + icon = "", + color = "#e37933", + cterm_color = "166", + name = "Ml", + }, + ["mli"] = { + icon = "", + color = "#e37933", + cterm_color = "166", + name = "Mli", + }, + ["mo"] = { + icon = "∞", + color = "#9772FB", + cterm_color = "135", + name = "Motoko", + }, + ["mov"] = { + icon = "", + color = "#FD971F", + cterm_color = "208", + name = "MOV", + }, + ["mp3"] = { + icon = "", + color = "#66D8EF", + cterm_color = "45", + name = "Mp3", + }, + ["mp4"] = { + icon = "", + color = "#FD971F", + cterm_color = "208", + name = "Mp4", + }, + ["mts"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Mts", + }, + ["mustache"] = { + icon = "", + color = "#e37933", + cterm_color = "166", + name = "Mustache", + }, + ["nim"] = { + icon = "", + color = "#f3d400", + cterm_color = "220", + name = "Nim", + }, + ["nix"] = { + icon = "", + color = "#7ebae4", + cterm_color = "110", + name = "Nix", + }, + ["nswag"] = { + icon = "", + color = "#85ea2d", + cterm_color = "112", + name = "Nswag", + }, + ["nu"] = { + icon = ">", + color = "#3aa675", + cterm_color = "36", + name = "Nushell", + }, + ["ogg"] = { + icon = "", + color = "#66D8EF", + cterm_color = "45", + name = "Ogg", + }, + ["opus"] = { + icon = "󰈣", + color = "#F88A02", + cterm_color = "208", + name = "OPUS", + }, + ["org"] = { + icon = "", + color = "#77AA99", + cterm_color = "73", + name = "OrgMode", + }, + ["otf"] = { + icon = "", + color = "#ECECEC", + cterm_color = "255", + name = "OpenTypeFont", + }, + ["out"] = { + icon = "", + color = "#9F0500", + cterm_color = "124", + name = "Out", + }, + ["pck"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "PackedResource", + }, + ["pdf"] = { + icon = "", + color = "#b30b00", + cterm_color = "124", + name = "Pdf", + }, + ["php"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Php", + }, + ["pl"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Pl", + }, + ["pm"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Pm", + }, + ["png"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Png", + }, + ["pp"] = { + icon = "", + color = "#FFA61A", + cterm_color = "214", + name = "Pp", + }, + ["ppt"] = { + icon = "󰈧", + color = "#cb4a32", + cterm_color = "160", + name = "Ppt", + }, + ["prisma"] = { + icon = "", + color = "#5a67d8", + cterm_color = "62", + name = "Prisma", + }, + ["pro"] = { + icon = "", + color = "#e4b854", + cterm_color = "179", + name = "Prolog", + }, + ["ps1"] = { + icon = "󰨊", + color = "#4273ca", + cterm_color = "68", + name = "PsScriptfile", + }, + ["psd1"] = { + icon = "󰨊", + color = "#6975c4", + cterm_color = "68", + name = "PsManifestfile", + }, + ["psm1"] = { + icon = "󰨊", + color = "#6975c4", + cterm_color = "68", + name = "PsScriptModulefile", + }, + ["psb"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Psb", + }, + ["psd"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Psd", + }, + ["pxd"] = { + icon = "", + color = "#5aa7e4", + cterm_color = "39", + name = "Pxd", + }, + ["pxi"] = { + icon = "", + color = "#5aa7e4", + cterm_color = "39", + name = "Pxi", + }, + ["py"] = { + icon = "", + color = "#ffbc03", + cterm_color = "214", + name = "Py", + }, + ["pyc"] = { + icon = "", + color = "#ffe291", + cterm_color = "222", + name = "Pyc", + }, + ["pyd"] = { + icon = "", + color = "#ffe291", + cterm_color = "222", + name = "Pyd", + }, + ["pyi"] = { + icon = "", + color = "#ffbc03", + cterm_color = "214", + name = "Pyi", + }, + ["pyo"] = { + icon = "", + color = "#ffe291", + cterm_color = "222", + name = "Pyo", + }, + ["pyx"] = { + icon = "", + color = "#5aa7e4", + cterm_color = "39", + name = "Pyx", + }, + ["query"] = { + icon = "", + color = "#90a850", + cterm_color = "107", + name = "Query", + }, + ["r"] = { + icon = "󰟔", + color = "#2266ba", + cterm_color = "25", + name = "R", + }, + ["rake"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Rake", + }, + ["razor"] = { + icon = "󱦘", + color = "#512bd4", + cterm_color = "56", + name = "RazorPage", + }, + ["rb"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Rb", + }, + ["res"] = { + icon = "", + color = "#cc3e44", + cterm_color = "167", + name = "ReScript", + }, + ["resi"] = { + icon = "", + color = "#f55385", + cterm_color = "204", + name = "ReScriptInterface", + }, + ["rlib"] = { + icon = "", + color = "#dea584", + cterm_color = "216", + name = "Rlib", + }, + ["rmd"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Rmd", + }, + ["rproj"] = { + icon = "󰗆", + color = "#358a5b", + cterm_color = "29", + name = "Rproj", + }, + ["rs"] = { + icon = "", + color = "#dea584", + cterm_color = "216", + name = "Rs", + }, + ["rss"] = { + icon = "", + color = "#FB9D3B", + cterm_color = "215", + name = "Rss", + }, + ["sass"] = { + icon = "", + color = "#f55385", + cterm_color = "204", + name = "Sass", + }, + ["sbt"] = { + icon = "", + color = "#cc3e44", + cterm_color = "167", + name = "sbt", + }, + ["scad"] = { + icon = "", + color = "#f9d72c", + cterm_color = "220", + name = "OpenSCAD", + }, + ["scala"] = { + icon = "", + color = "#cc3e44", + cterm_color = "167", + name = "Scala", + }, + ["scm"] = { + icon = "󰘧", + color = "#eeeeee", + cterm_color = "255", + name = "Scheme", + }, + ["scss"] = { + icon = "", + color = "#f55385", + cterm_color = "204", + name = "Scss", + }, + ["sh"] = { + icon = "", + color = "#4d5a5e", + cterm_color = "240", + name = "Sh", + }, + ["sig"] = { + icon = "λ", + color = "#e37933", + cterm_color = "166", + name = "Sig", + }, + ["slim"] = { + icon = "", + color = "#e34c26", + cterm_color = "196", + name = "Slim", + }, + ["sln"] = { + icon = "", + color = "#854CC7", + cterm_color = "98", + name = "Sln", + }, + ["sml"] = { + icon = "λ", + color = "#e37933", + cterm_color = "166", + name = "Sml", + }, + ["sol"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Solidity", + }, + ["spec.js"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "SpecJs", + }, + ["spec.jsx"] = { + icon = "", + color = "#20c2e3", + cterm_color = "45", + name = "JavaScriptReactSpec", + }, + ["spec.ts"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "SpecTs", + }, + ["spec.tsx"] = { + icon = "", + color = "#1354bf", + cterm_color = "26", + name = "TypeScriptReactSpec", + }, + ["sql"] = { + icon = "", + color = "#dad8d8", + cterm_color = "188", + name = "Sql", + }, + ["sqlite"] = { + icon = "", + color = "#dad8d8", + cterm_color = "188", + name = "Sql", + }, + ["sqlite3"] = { + icon = "", + color = "#dad8d8", + cterm_color = "188", + name = "Sql", + }, + ["styl"] = { + icon = "", + color = "#8dc149", + cterm_color = "113", + name = "Styl", + }, + ["sublime"] = { + icon = "", + color = "#e37933", + cterm_color = "166", + name = "Suo", + }, + ["suo"] = { + icon = "", + color = "#854CC7", + cterm_color = "98", + name = "Suo", + }, + ["sv"] = { + icon = "󰍛", + color = "#019833", + cterm_color = "28", + name = "SystemVerilog", + }, + ["svelte"] = { + icon = "", + color = "#ff3e00", + cterm_color = "196", + name = "Svelte", + }, + ["svh"] = { + icon = "󰍛", + color = "#019833", + cterm_color = "28", + name = "SystemVerilog", + }, + ["svg"] = { + icon = "󰜡", + color = "#FFB13B", + cterm_color = "214", + name = "Svg", + }, + ["swift"] = { + icon = "", + color = "#e37933", + cterm_color = "166", + name = "Swift", + }, + ["t"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Tor", + }, + ["tbc"] = { + icon = "󰛓", + color = "#1e5cb3", + cterm_color = "25", + name = "Tcl", + }, + ["tcl"] = { + icon = "󰛓", + color = "#1e5cb3", + cterm_color = "25", + name = "Tcl", + }, + ["templ"] = { + icon = "", + color = "#dbbd30", + cterm_color = "178", + name = "Templ", + }, + ["terminal"] = { + icon = "", + color = "#31B53E", + cterm_color = "34", + name = "Terminal", + }, + ["test.js"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "TestJs", + }, + ["test.jsx"] = { + icon = "", + color = "#20c2e3", + cterm_color = "45", + name = "JavaScriptReactTest", + }, + ["test.ts"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "TestTs", + }, + ["test.tsx"] = { + icon = "", + color = "#1354bf", + cterm_color = "26", + name = "TypeScriptReactTest", + }, + ["tex"] = { + icon = "󰙩", + color = "#3D6117", + cterm_color = "22", + name = "Tex", + }, + ["tf"] = { + icon = "", + color = "#5F43E9", + cterm_color = "93", + name = "Terraform", + }, + ["tfvars"] = { + icon = "", + color = "#5F43E9", + cterm_color = "93", + name = "TFVars", + }, + ["toml"] = { + icon = "", + color = "#9c4221", + cterm_color = "124", + name = "Toml", + }, + ["tres"] = { + icon = "", + color = "#cbcb41", + cterm_color = "185", + name = "TextResource", + }, + ["ts"] = { + icon = "", + color = "#519aba", + cterm_color = "74", + name = "Ts", + }, + ["tscn"] = { + icon = "󰎁", + color = "#a074c4", + cterm_color = "140", + name = "TextScene", + }, + ["tsx"] = { + icon = "", + color = "#1354bf", + cterm_color = "26", + name = "Tsx", + }, + ["ttf"] = { + icon = "", + color = "#ECECEC", + cterm_color = "255", + name = "TrueTypeFont", + }, + ["twig"] = { + icon = "", + color = "#8dc149", + cterm_color = "113", + name = "Twig", + }, + ["txt"] = { + icon = "󰈙", + color = "#89e051", + cterm_color = "113", + name = "Txt", + }, + ["v"] = { + icon = "󰍛", + color = "#019833", + cterm_color = "28", + name = "Verilog", + }, + ["vala"] = { + icon = "", + color = "#7239b3", + cterm_color = "91", + name = "Vala", + }, + ["vh"] = { + icon = "󰍛", + color = "#019833", + cterm_color = "28", + name = "Verilog", + }, + ["vhd"] = { + icon = "󰍛", + color = "#019833", + cterm_color = "28", + name = "VHDL", + }, + ["vhdl"] = { + icon = "󰍛", + color = "#019833", + cterm_color = "28", + name = "VHDL", + }, + ["vim"] = { + icon = "", + color = "#019833", + cterm_color = "28", + name = "Vim", + }, + ["vsh"] = { + icon = "", + color = "#5d87bf", + cterm_color = "67", + name = "Vlang", + }, + ["vue"] = { + icon = "", + color = "#8dc149", + cterm_color = "113", + name = "Vue", + }, + ["wav"] = { + icon = "", + color = "#66D8EF", + cterm_color = "45", + name = "Wav", + }, + ["webm"] = { + icon = "", + color = "#FD971F", + cterm_color = "208", + name = "Webm", + }, + ["webmanifest"] = { + icon = "", + color = "#f1e05a", + cterm_color = "185", + name = "Webmanifest", + }, + ["webp"] = { + icon = "", + color = "#a074c4", + cterm_color = "140", + name = "Webp", + }, + ["webpack"] = { + icon = "󰜫", + color = "#519aba", + cterm_color = "74", + name = "Webpack", + }, + ["woff"] = { + icon = "", + color = "#ECECEC", + cterm_color = "255", + name = "WebOpenFontFormat", + }, + ["woff2"] = { + icon = "", + color = "#ECECEC", + cterm_color = "255", + name = "WebOpenFontFormat", + }, + ["xaml"] = { + icon = "󰙳", + color = "#512bd4", + cterm_color = "56", + name = "Xaml", + }, + ["xcplayground"] = { + icon = "", + color = "#e37933", + cterm_color = "166", + name = "XcPlayground", + }, + ["xls"] = { + icon = "󰈛", + color = "#207245", + cterm_color = "29", + name = "Xls", + }, + ["xlsx"] = { + icon = "󰈛", + color = "#207245", + cterm_color = "29", + name = "Xlsx", + }, + ["xml"] = { + icon = "󰗀", + color = "#e37933", + cterm_color = "166", + name = "Xml", + }, + ["xul"] = { + icon = "", + color = "#e37933", + cterm_color = "166", + name = "Xul", + }, + ["yaml"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Yaml", + }, + ["yml"] = { + icon = "", + color = "#6d8086", + cterm_color = "66", + name = "Yml", + }, + ["zig"] = { + icon = "", + color = "#f69a1b", + cterm_color = "172", + name = "Zig", + }, + ["zsh"] = { + icon = "", + color = "#89e051", + cterm_color = "113", + name = "Zsh", + }, + ["wasm"] = { + icon = "", + color = "#5c4cdb", + cterm_color = "62", + name = "Wasm", + }, +} + +local icons_by_operating_system = { + ["apple"] = { + icon = "", + color = "#A2AAAD", + cterm_color = "248", + name = "Apple", + }, + ["windows"] = { + icon = "", + color = "#00A4EF", + cterm_color = "39", + name = "Windows", + }, + ["linux"] = { + icon = "", + color = "#fdfdfb", + cterm_color = "231", + name = "Linux", + }, + ["alma"] = { + icon = "", + color = "#ff4649", + cterm_color = "203", + name = "Almalinux", + }, + ["alpine"] = { + icon = "", + color = "#0d597f", + cterm_color = "24", + name = "Alpine", + }, + ["aosc"] = { + icon = "", + color = "#c00000", + cterm_color = "124", + name = "AOSC", + }, + ["arch"] = { + icon = "󰣇", + color = "#0f94d2", + cterm_color = "67", + name = "Arch", + }, + ["artix"] = { + icon = "", + color = "#41b4d7", + cterm_color = "38", + name = "Artix", + }, + ["budgie"] = { + icon = "", + color = "#5195e3", + cterm_color = "68", + name = "Budgie", + }, + ["centos"] = { + icon = "", + color = "#a2518d", + cterm_color = "132", + name = "Centos", + }, + ["debian"] = { + icon = "", + color = "#a80030", + cterm_color = "88", + name = "Debian", + }, + ["deepin"] = { + icon = "", + color = "#2ca7f8", + cterm_color = "39", + name = "Deepin", + }, + ["devuan"] = { + icon = "", + color = "#404a52", + cterm_color = "238", + name = "Devuan", + }, + ["elementary"] = { + icon = "", + color = "#5890c2", + cterm_color = "67", + name = "Elementary", + }, + ["endeavour"] = { + icon = "", + color = "#7b3db9", + cterm_color = "91", + name = "Endeavour", + }, + ["fedora"] = { + icon = "", + color = "#072a5e", + cterm_color = "17", + name = "Fedora", + }, + ["freebsd"] = { + icon = "", + color = "#c90f02", + cterm_color = "160", + name = "FreeBSD", + }, + ["gentoo"] = { + icon = "󰣨", + color = "#b1abce", + cterm_color = "146", + name = "Gentoo", + }, + ["guix"] = { + icon = "", + color = "#ffcc00", + cterm_color = "220", + name = "Guix", + }, + ["illumos"] = { + icon = "", + color = "#ff430f", + cterm_color = "196", + name = "Illumos", + }, + ["kali"] = { + icon = "", + color = "#2777ff", + cterm_color = "69", + name = "Kali", + }, + ["mint"] = { + icon = "󰣭", + color = "#66af3d", + cterm_color = "70", + name = "Mint", + }, + ["mageia"] = { + icon = "", + color = "#2397d4", + cterm_color = "67", + name = "Mageia", + }, + ["manjaro"] = { + icon = "", + color = "#33b959", + cterm_color = "35", + name = "Manjaro", + }, + ["nixos"] = { + icon = "", + color = "#7ab1db", + cterm_color = "110", + name = "NixOS", + }, + ["openbsd"] = { + icon = "", + color = "#f2ca30", + cterm_color = "220", + name = "OpenBSD", + }, + ["opensuse"] = { + icon = "", + color = "#6fb424", + cterm_color = "70", + name = "openSUSE", + }, + ["parrot"] = { + icon = "", + color = "#54deff", + cterm_color = "45", + name = "Parrot", + }, + ["pop_os"] = { + icon = "", + color = "#48b9c7", + cterm_color = "73", + name = "Pop_OS", + }, + ["raspberry_pi"] = { + icon = "", + color = "#be1848", + cterm_color = "161", + name = "RaspberryPiOS", + }, + ["redhat"] = { + icon = "󱄛", + color = "#EE0000", + cterm_color = "196", + name = "Redhat", + }, + ["rocky"] = { + icon = "", + color = "#0fb37d", + cterm_color = "36", + name = "RockyLinux", + }, + ["sabayon"] = { + icon = "", + color = "#c6c6c6", + cterm_color = "251", + name = "Sabayon", + }, + ["slackware"] = { + icon = "", + color = "#475fa9", + cterm_color = "61", + name = "Slackware", + }, + ["solus"] = { + icon = "", + color = "#4b5163", + cterm_color = "239", + name = "Solus", + }, + ["ubuntu"] = { + icon = "", + color = "#dd4814", + cterm_color = "196", + name = "Ubuntu", + }, + ["void"] = { + icon = "", + color = "#295340", + cterm_color = "23", + name = "Void", + }, + ["zorin"] = { + icon = "", + color = "#14a1e8", + cterm_color = "39", + name = "Zorin", + }, +} + +return { + icons_by_filename = icons_by_filename, + icons_by_file_extension = icons_by_file_extension, + icons_by_operating_system = icons_by_operating_system, +} diff --git a/lua/nvim-web-devicons/icons-default.lua b/lua/nvim-web-devicons/icons-default.lua index 1f082c8b4..51ed0c9e4 100644 --- a/lua/nvim-web-devicons/icons-default.lua +++ b/lua/nvim-web-devicons/icons-default.lua @@ -1,2264 +1,2637 @@ -local icons_by_filename = { +local M = {} + +M.icons_by_filename = { [".babelrc"] = { - icon = "", + class = "seti-less", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Babelrc", }, [".bash_profile"] = { - icon = "", + class = "seti-config", color = "#89e051", cterm_color = "113", + icon = "", name = "BashProfile", }, [".bashrc"] = { - icon = "", + class = "seti-config", color = "#89e051", cterm_color = "113", + icon = "", name = "Bashrc", }, [".dockerignore"] = { - icon = "󰡨", + class = "md-docker", color = "#458ee6", cterm_color = "68", + icon = "󰡨", name = "Dockerfile", }, [".ds_store"] = { - icon = "", + class = "seti-config", color = "#41535b", cterm_color = "239", + icon = "", name = "DsStore", }, [".editorconfig"] = { - icon = "", + class = "seti-editorconfig", color = "#fff2f2", cterm_color = "255", + icon = "", name = "EditorConfig", }, [".env"] = { - icon = "", + class = "oct-sliders", color = "#faf743", cterm_color = "227", + icon = "", name = "Env", }, - [".eslintrc"] = { - icon = "", + [".eslintignore"] = { + class = "seti-eslint", color = "#4b32c3", cterm_color = "56", - name = "Eslintrc", - }, - [".eslintignore"] = { icon = "", + name = "EslintIgnore", + }, + [".eslintrc"] = { + class = "seti-eslint", color = "#4b32c3", cterm_color = "56", - name = "EslintIgnore", + icon = "", + name = "Eslintrc", }, [".gitattributes"] = { - icon = "", + class = "dev-git", color = "#41535b", cterm_color = "239", + icon = "", name = "GitAttributes", }, [".gitconfig"] = { - icon = "", + class = "seti-config", color = "#41535b", cterm_color = "239", + icon = "", name = "GitConfig", }, [".gitignore"] = { - icon = "", + class = "dev-git", color = "#41535b", cterm_color = "239", + icon = "", name = "GitIgnore", }, [".gitlab-ci.yml"] = { - icon = "", + class = "fa-gitlab", color = "#e24329", cterm_color = "196", + icon = "", name = "GitlabCI", }, [".gitmodules"] = { - icon = "", + class = "dev-git", color = "#41535b", cterm_color = "239", + icon = "", name = "GitModules", }, [".gvimrc"] = { - icon = "", + class = "custom-vim", color = "#019833", cterm_color = "28", + icon = "", name = "Gvimrc", }, [".luaurc"] = { - icon = "", + class = "seti-config", color = "#00a2ff", cterm_color = "75", + icon = "", name = "Luaurc", }, [".npmignore"] = { - icon = "", + class = "dev-npm", color = "#E8274B", cterm_color = "197", + icon = "", name = "NPMIgnore", }, [".npmrc"] = { - icon = "", + class = "dev-npm", color = "#E8274B", cterm_color = "197", + icon = "", name = "NPMrc", }, [".prettierrc"] = { - icon = "", + class = "custom-prettier", color = "#4285F4", cterm_color = "33", + icon = "", name = "PrettierConfig", }, [".settings.json"] = { - icon = "", + class = "dev-visualstudio", color = "#854CC7", cterm_color = "98", + icon = "", name = "SettingsJson", }, [".vimrc"] = { - icon = "", + class = "custom-vim", color = "#019833", cterm_color = "28", + icon = "", name = "Vimrc", }, [".zprofile"] = { - icon = "", + class = "seti-config", color = "#89e051", cterm_color = "113", + icon = "", name = "Zshprofile", }, [".zshenv"] = { - icon = "", + class = "seti-config", color = "#89e051", cterm_color = "113", + icon = "", name = "Zshenv", }, [".zshrc"] = { - icon = "", + class = "seti-config", color = "#89e051", cterm_color = "113", + icon = "", name = "Zshrc", }, - ["_gvimrc"] = { - icon = "", + R = { + class = "md-language_r", + color = "#2266ba", + cterm_color = "25", + icon = "󰟔", + name = "R", + }, + _gvimrc = { + class = "custom-vim", color = "#019833", cterm_color = "28", + icon = "", name = "Gvimrc", }, - ["_vimrc"] = { - icon = "", + _vimrc = { + class = "custom-vim", color = "#019833", cterm_color = "28", + icon = "", name = "Vimrc", }, - ["R"] = { - icon = "󰟔", - color = "#2266ba", - cterm_color = "25", - name = "R", - }, - ["avif"] = { - icon = "", + avif = { + class = "seti-image", color = "#a074c4", cterm_color = "140", + icon = "", name = "Avif", }, - ["brewfile"] = { - icon = "", + brewfile = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Brewfile", }, - ["build"] = { - icon = "", + build = { + class = "seti-bazel", color = "#89e051", cterm_color = "113", + icon = "", name = "BazelBuild", }, - ["checkhealth"] = { - icon = "󰓙", + ["build.zig.zon"] = { + class = "seti-zig", + color = "#f69a1b", + cterm_color = "172", + icon = "", + name = "ZigObjectNotation", + }, + checkhealth = { + class = "md-stethoscope", color = "#75B4FB", cterm_color = "75", + icon = "󰓙", name = "Checkhealth", }, ["cmakelists.txt"] = { - icon = "", + class = "seti-config", color = "#6d8086", cterm_color = "66", + icon = "", name = "CMakeLists", }, - ["commit_editmsg"] = { - icon = "", + commit_editmsg = { + class = "dev-git", color = "#41535b", cterm_color = "239", + icon = "", name = "GitCommit", }, ["compose.yaml"] = { - icon = "󰡨", + class = "md-docker", color = "#458ee6", cterm_color = "68", + icon = "󰡨", name = "Dockerfile", }, ["compose.yml"] = { - icon = "󰡨", + class = "md-docker", color = "#458ee6", cterm_color = "68", + icon = "󰡨", name = "Dockerfile", }, - ["containerfile"] = { - icon = "󰡨", + containerfile = { + class = "md-docker", color = "#458ee6", cterm_color = "68", + icon = "󰡨", name = "Dockerfile", }, - ["copying"] = { - icon = "", + copying = { + class = "seti-license", color = "#cbcb41", cterm_color = "185", + icon = "", name = "License", }, ["copying.lesser"] = { - icon = "", + class = "seti-license", color = "#cbcb41", cterm_color = "185", + icon = "", name = "License", }, ["docker-compose.yaml"] = { - icon = "󰡨", + class = "md-docker", color = "#458ee6", cterm_color = "68", + icon = "󰡨", name = "Dockerfile", }, ["docker-compose.yml"] = { - icon = "󰡨", + class = "md-docker", color = "#458ee6", cterm_color = "68", + icon = "󰡨", name = "Dockerfile", }, - ["dockerfile"] = { - icon = "󰡨", + dockerfile = { + class = "md-docker", color = "#458ee6", cterm_color = "68", + icon = "󰡨", name = "Dockerfile", }, ["favicon.ico"] = { - icon = "", + class = "seti-favicon", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Favicon", }, ["gemfile$"] = { - icon = "", + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Gemfile", }, - ["gnumakefile"] = { - icon = "", + gnumakefile = { + class = "dev-gnu", color = "#6d8086", cterm_color = "66", + icon = "", name = "Makefile", }, - ["groovy"] = { - icon = "", + groovy = { + class = "dev-groovy", color = "#4a687c", cterm_color = "24", + icon = "", name = "Groovy", }, - ["gruntfile"] = { - icon = "", + gruntfile = { + class = "seti-grunt", color = "#e37933", cterm_color = "166", + icon = "", name = "Gruntfile", }, - ["gulpfile"] = { - icon = "", + gulpfile = { + class = "seti-gulp", color = "#cc3e44", cterm_color = "167", + icon = "", name = "Gulpfile", }, - ["license"] = { - icon = "", + license = { + class = "seti-license", color = "#d0bf41", cterm_color = "185", + icon = "", name = "License", }, - ["makefile"] = { - icon = "", + makefile = { + class = "dev-gnu", color = "#6d8086", cterm_color = "66", + icon = "", name = "Makefile", }, ["mix.lock"] = { - icon = "", + class = "seti-elixir", color = "#a074c4", cterm_color = "140", + icon = "", name = "MixLock", }, - ["node_modules"] = { - icon = "", + node_modules = { + class = "dev-nodejs_small", color = "#E8274B", cterm_color = "197", + icon = "", name = "NodeModules", }, - ["package.json"] = { - icon = "", - color = "#e8274b", - cterm_color = "197", - name = "PackageJson", - }, ["package-lock.json"] = { - icon = "", + class = "dev-npm", color = "#7a0d21", cterm_color = "52", + icon = "", name = "PackageLockJson", }, - ["procfile"] = { - icon = "", + ["package.json"] = { + class = "dev-npm", + color = "#e8274b", + cterm_color = "197", + icon = "", + name = "PackageJson", + }, + procfile = { + class = "seti-heroku", color = "#a074c4", cterm_color = "140", + icon = "", name = "Procfile", }, ["py.typed"] = { - icon = "", + class = "seti-python", color = "#ffbc03", cterm_color = "214", + icon = "", name = "Py.typed", }, - ["r"] = { - icon = "󰟔", + r = { + class = "md-language_r", color = "#2266ba", cterm_color = "25", + icon = "󰟔", name = "R", }, - ["rakefile"] = { - icon = "", + rakefile = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Rakefile", }, - ["rmd"] = { - icon = "", + rmd = { + class = "seti-markdown", color = "#519aba", cterm_color = "74", + icon = "", name = "Rmd", }, ["svelte.config.js"] = { - icon = "", + class = "seti-svelte", color = "#ff3e00", cterm_color = "196", + icon = "", name = "SvelteConfig", }, ["tailwind.config.js"] = { - icon = "󱏿", + class = "md-tailwind", color = "#20c2e3", cterm_color = "45", + icon = "󱏿", name = "TailwindConfig", }, ["tailwind.config.mjs"] = { - icon = "󱏿", + class = "md-tailwind", color = "#20c2e3", cterm_color = "45", + icon = "󱏿", name = "TailwindConfig", }, ["tailwind.config.ts"] = { - icon = "󱏿", + class = "md-tailwind", color = "#20c2e3", cterm_color = "45", + icon = "󱏿", name = "TailwindConfig", }, ["tsconfig.json"] = { - icon = "", + class = "seti-tsconfig", color = "#519aba", cterm_color = "74", + icon = "", name = "TSConfig", }, - ["unlicense"] = { - icon = "", + unlicense = { + class = "seti-license", color = "#d0bf41", cterm_color = "185", + icon = "", name = "License", }, ["vagrantfile$"] = { - icon = "", + class = "fa-linode", color = "#1563FF", cterm_color = "27", + icon = "", name = "Vagrantfile", }, - ["webpack"] = { - icon = "󰜫", + webpack = { + class = "md-webpack", color = "#519aba", cterm_color = "74", + icon = "󰜫", name = "Webpack", }, - ["workspace"] = { - icon = "", + workspace = { + class = "seti-bazel", color = "#89e051", cterm_color = "113", + icon = "", name = "BazelWorkspace", }, - ["build.zig.zon"] = { - icon = "", - color = "#f69a1b", - cterm_color = "172", - name = "ZigObjectNotation", - }, } -local icons_by_file_extension = { - ["Dockerfile"] = { - icon = "󰡨", +M.icons_by_file_extension = { + Dockerfile = { + class = "md-docker", color = "#458ee6", cterm_color = "68", + icon = "󰡨", name = "Dockerfile", }, - ["R"] = { - icon = "󰟔", + R = { + class = "md-language_r", color = "#2266ba", cterm_color = "25", + icon = "󰟔", name = "R", }, - ["aac"] = { - icon = "", + aac = { + class = "fa-music", color = "#66D8EF", cterm_color = "45", + icon = "", name = "Aac", }, - ["ai"] = { - icon = "", + ai = { + class = "dev-illustrator", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Ai", }, - ["app"] = { - icon = "", + app = { + class = "cod-file_binary", color = "#9F0500", cterm_color = "124", + icon = "", name = "App", }, - ["applescript"] = { - icon = "", + applescript = { + class = "fa-apple", color = "#6d8085", cterm_color = "66", + icon = "", name = "AppleScript", }, - ["awk"] = { - icon = "", + awk = { + class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", + icon = "", name = "Awk", }, - ["azcli"] = { - icon = "", + azcli = { + class = "cod-azure_devops", color = "#0078d4", cterm_color = "32", + icon = "", name = "AzureCli", }, - ["bak"] = { - icon = "󰁯", + bak = { + class = "md-backup_restore", color = "#6d8086", cterm_color = "66", + icon = "󰁯", name = "Backup", }, - ["bash"] = { - icon = "", + bash = { + class = "dev-terminal", color = "#89e051", cterm_color = "113", + icon = "", name = "Bash", }, - ["bat"] = { - icon = "", + bat = { + class = "seti-config", color = "#C1F12E", cterm_color = "191", + icon = "", name = "Bat", }, - ["bazel"] = { - icon = "", + bazel = { + class = "seti-bazel", color = "#89e051", cterm_color = "113", + icon = "", name = "Bazel", }, - ["bib"] = { - icon = "󱉟", + bib = { + class = "md-bookshelf", color = "#cbcb41", cterm_color = "185", + icon = "󱉟", name = "BibTeX", }, - ["bmp"] = { - icon = "", + bmp = { + class = "seti-image", color = "#a074c4", cterm_color = "140", + icon = "", name = "Bmp", }, - ["bzl"] = { - icon = "", + bzl = { + class = "seti-bazel", color = "#89e051", cterm_color = "113", + icon = "", name = "Bzl", }, - ["c"] = { - icon = "", + c = { + class = "custom-c", color = "#599eff", cterm_color = "111", + icon = "", name = "C", }, ["c++"] = { - icon = "", + class = "custom-cpp", color = "#f34b7d", cterm_color = "204", + icon = "", name = "CPlusPlus", }, - ["cbl"] = { - icon = "⚙", + cbl = { + class = "seti-config", color = "#005ca5", cterm_color = "25", + icon = "", name = "Cobol", }, - ["cc"] = { - icon = "", + cc = { + class = "custom-cpp", color = "#f34b7d", cterm_color = "204", + icon = "", name = "CPlusPlus", }, - ["ccm"] = { - icon = "", + ccm = { + class = "custom-cpp", color = "#f34b7d", cterm_color = "204", + icon = "", name = "CPlusPlusModule", }, - ["cfg"] = { - icon = "", + cfg = { + class = "dev-code_badge", color = "#ECECEC", cterm_color = "255", + icon = "", name = "Configuration", }, - ["cjs"] = { - icon = "󰌞", + cjs = { + class = "md-language_javascript", color = "#F1F134", cterm_color = "227", + icon = "󰌞", name = "Cjs", }, - ["clj"] = { - icon = "", + clj = { + class = "dev-clojure", color = "#8dc149", cterm_color = "113", + icon = "", name = "Clojure", }, - ["cljc"] = { - icon = "", + cljc = { + class = "dev-clojure", color = "#8dc149", cterm_color = "113", + icon = "", name = "ClojureC", }, - ["cljs"] = { - icon = "", + cljd = { + class = "dev-clojure_alt", color = "#519aba", cterm_color = "74", - name = "ClojureJS", - }, - ["cljd"] = { icon = "", + name = "ClojureDart", + }, + cljs = { + class = "dev-clojure_alt", color = "#519aba", cterm_color = "74", - name = "ClojureDart", + icon = "", + name = "ClojureJS", }, - ["cmake"] = { - icon = "", + cmake = { + class = "seti-config", color = "#6d8086", cterm_color = "66", + icon = "", name = "CMake", }, - ["cob"] = { - icon = "⚙", + cob = { + class = "seti-config", color = "#005ca5", cterm_color = "25", + icon = "", name = "Cobol", }, - ["cobol"] = { - icon = "⚙", + cobol = { + class = "seti-config", color = "#005ca5", cterm_color = "25", + icon = "", name = "Cobol", }, - ["coffee"] = { - icon = "", + coffee = { + class = "seti-coffee", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Coffee", }, - ["conf"] = { - icon = "", + conf = { + class = "seti-config", color = "#6d8086", cterm_color = "66", + icon = "", name = "Conf", }, ["config.ru"] = { - icon = "", + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "ConfigRu", }, - ["cp"] = { - icon = "", + cp = { + class = "custom-cpp", color = "#519aba", cterm_color = "74", + icon = "", name = "Cp", }, - ["cpp"] = { - icon = "", + cpp = { + class = "custom-cpp", color = "#519aba", cterm_color = "74", + icon = "", name = "Cpp", }, - ["cppm"] = { - icon = "", + cppm = { + class = "custom-cpp", color = "#519aba", cterm_color = "74", + icon = "", name = "Cppm", }, - ["cpy"] = { - icon = "⚙", + cpy = { + class = "seti-config", color = "#005ca5", cterm_color = "25", + icon = "", name = "Cobol", }, - ["cr"] = { - icon = "", + cr = { + class = "seti-crystal", color = "#c8c8c8", cterm_color = "251", + icon = "", name = "Crystal", }, - ["cs"] = { - icon = "󰌛", + cs = { + class = "md-language_csharp", color = "#596706", cterm_color = "58", + icon = "󰌛", name = "Cs", }, - ["csh"] = { - icon = "", + csh = { + class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", + icon = "", name = "Csh", }, - ["cshtml"] = { - icon = "󱦗", + cshtml = { + class = "md-razor_double_edge", color = "#512bd4", cterm_color = "56", + icon = "󱦗", name = "RazorPage", }, - ["cson"] = { - icon = "", + cson = { + class = "seti-json", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Cson", }, - ["csproj"] = { - icon = "󰪮", + csproj = { + class = "md-dot_net", color = "#512bd4", cterm_color = "56", + icon = "󰪮", name = "CSharpProject", }, - ["css"] = { - icon = "", + css = { + class = "dev-css3", color = "#42a5f5", cterm_color = "75", + icon = "", name = "Css", }, - ["csv"] = { - icon = "", + csv = { + class = "seti-csv", color = "#89e051", cterm_color = "113", + icon = "", name = "Csv", }, - ["cts"] = { - icon = "", + cts = { + class = "seti-typescript", color = "#519aba", cterm_color = "74", + icon = "", name = "Cts", }, - ["cu"] = { - icon = "", + cu = { + class = "seti-cu", color = "#89e051", cterm_color = "113", + icon = "", name = "cuda", }, - ["cuh"] = { - icon = "", + cuh = { + class = "seti-cu", color = "#a074c4", cterm_color = "140", + icon = "", name = "cudah", }, - ["cxx"] = { - icon = "", + cxx = { + class = "custom-cpp", color = "#519aba", cterm_color = "74", + icon = "", name = "Cxx", }, - ["cxxm"] = { - icon = "", + cxxm = { + class = "custom-cpp", color = "#519aba", cterm_color = "74", + icon = "", name = "Cxxm", }, - ["d"] = { - icon = "", + d = { + class = "dev-dlang", color = "#427819", cterm_color = "28", + icon = "", name = "D", }, - ["dart"] = { - icon = "", + dart = { + class = "dev-dart", color = "#03589C", cterm_color = "25", + icon = "", name = "Dart", }, - ["db"] = { - icon = "", + db = { + class = "dev-database", color = "#dad8d8", cterm_color = "188", + icon = "", name = "Db", }, - ["desktop"] = { - icon = "", + desktop = { + class = "fa-desktop", color = "#563d7c", cterm_color = "54", + icon = "", name = "DesktopEntry", }, - ["diff"] = { - icon = "", + diff = { + class = "dev-git_compare", color = "#41535b", cterm_color = "239", + icon = "", name = "Diff", }, - ["doc"] = { - icon = "󰈬", + doc = { + class = "md-file_word", color = "#185abd", cterm_color = "26", + icon = "󰈬", name = "Doc", }, - ["docx"] = { - icon = "󰈬", + docx = { + class = "md-file_word", color = "#185abd", cterm_color = "26", + icon = "󰈬", name = "Docx", }, - ["drl"] = { - icon = "", + drl = { + class = "fae-brain", color = "#ffafaf", cterm_color = "217", + icon = "", name = "Drools", }, - ["dropbox"] = { - icon = "", + dropbox = { + class = "dev-dropbox", color = "#0061FE", cterm_color = "27", + icon = "", name = "Dropbox", }, - ["dump"] = { - icon = "", + dump = { + class = "dev-database", color = "#dad8d8", cterm_color = "188", + icon = "", name = "Dump", }, - ["edn"] = { - icon = "", + edn = { + class = "dev-clojure_alt", color = "#519aba", cterm_color = "74", + icon = "", name = "Edn", }, - ["eex"] = { - icon = "", + eex = { + class = "seti-elixir", color = "#a074c4", cterm_color = "140", + icon = "", name = "Eex", }, - ["ejs"] = { - icon = "", + ejs = { + class = "seti-html", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Ejs", }, - ["elf"] = { - icon = "", + elf = { + class = "cod-file_binary", color = "#9F0500", cterm_color = "124", + icon = "", name = "Elf", }, - ["elm"] = { - icon = "", + elm = { + class = "seti-elm", color = "#519aba", cterm_color = "74", + icon = "", name = "Elm", }, - ["eot"] = { - icon = "", + eot = { + class = "fa-font", color = "#ECECEC", cterm_color = "255", + icon = "", name = "EmbeddedOpenTypeFont", }, - ["epp"] = { - icon = "", + epp = { + class = "seti-puppet", color = "#FFA61A", cterm_color = "214", + icon = "", name = "Epp", }, - ["erb"] = { - icon = "", + erb = { + class = "seti-html", color = "#701516", cterm_color = "52", + icon = "", name = "Erb", }, - ["erl"] = { - icon = "", + erl = { + class = "dev-erlang", color = "#B83998", cterm_color = "163", + icon = "", name = "Erl", }, - ["ex"] = { - icon = "", + ex = { + class = "seti-elixir", color = "#a074c4", cterm_color = "140", + icon = "", name = "Ex", }, - ["exe"] = { - icon = "", + exe = { + class = "cod-file_binary", color = "#9F0500", cterm_color = "124", + icon = "", name = "Exe", }, - ["exs"] = { - icon = "", + exs = { + class = "seti-elixir", color = "#a074c4", cterm_color = "140", + icon = "", name = "Exs", }, ["f#"] = { - icon = "", + class = "dev-fsharp", color = "#519aba", cterm_color = "74", + icon = "", name = "Fsharp", }, - ["f90"] = { - icon = "󱈚", + f90 = { + class = "md-language_fortran", color = "#734f96", cterm_color = "97", + icon = "󱈚", name = "Fortran", }, - ["flac"] = { - icon = "", + fish = { + class = "dev-terminal", + color = "#4d5a5e", + cterm_color = "240", + icon = "", + name = "Fish", + }, + flac = { + class = "fa-music", color = "#66D8EF", cterm_color = "45", + icon = "", name = "Flac", }, - ["fnl"] = { - icon = "", + fnl = { + class = "custom-fennel", color = "#fff3d7", cterm_color = "230", + icon = "", name = "Fennel", }, - ["fish"] = { - icon = "", - color = "#4d5a5e", - cterm_color = "240", - name = "Fish", - }, - ["fs"] = { - icon = "", + fs = { + class = "dev-fsharp", color = "#519aba", cterm_color = "74", + icon = "", name = "Fs", }, - ["fsi"] = { - icon = "", + fsi = { + class = "dev-fsharp", color = "#519aba", cterm_color = "74", + icon = "", name = "Fsi", }, - ["fsscript"] = { - icon = "", + fsscript = { + class = "dev-fsharp", color = "#519aba", cterm_color = "74", + icon = "", name = "Fsscript", }, - ["fsx"] = { - icon = "", + fsx = { + class = "dev-fsharp", color = "#519aba", cterm_color = "74", + icon = "", name = "Fsx", }, - ["gd"] = { - icon = "", + gd = { + class = "seti-config", color = "#6d8086", cterm_color = "66", + icon = "", name = "GDScript", }, - ["gemspec"] = { - icon = "", + gemspec = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Gemspec", }, - ["gif"] = { - icon = "", + gif = { + class = "seti-image", color = "#a074c4", cterm_color = "140", + icon = "", name = "Gif", }, - ["git"] = { - icon = "", + git = { + class = "dev-git", color = "#F14C28", cterm_color = "196", + icon = "", name = "GitLogo", }, - ["glb"] = { - icon = "", + glb = { + class = "fa-cube", color = "#FFB13B", cterm_color = "214", + icon = "", name = "BinaryGLTF", }, - ["gnumakefile"] = { - icon = "", + gnumakefile = { + class = "dev-gnu", color = "#6d8086", cterm_color = "66", + icon = "", name = "Makefile", }, - ["go"] = { - icon = "", + go = { + class = "seti-go", color = "#519aba", cterm_color = "74", + icon = "", name = "Go", }, - ["godot"] = { - icon = "", + godot = { + class = "dev-code_badge", color = "#6d8086", cterm_color = "66", + icon = "", name = "GodotProject", }, - ["gql"] = { - icon = "", + gql = { + class = "fa-connectdevelop", color = "#e535ab", cterm_color = "199", + icon = "", name = "GraphQL", }, - ["graphql"] = { - icon = "", + graphql = { + class = "fa-connectdevelop", color = "#e535ab", cterm_color = "199", + icon = "", name = "GraphQL", }, - ["h"] = { - icon = "", + h = { + class = "fa-h_square", color = "#a074c4", cterm_color = "140", + icon = "", name = "H", }, - ["haml"] = { - icon = "", + haml = { + class = "seti-html", color = "#eaeae1", cterm_color = "255", + icon = "", name = "Haml", }, - ["hx"] = { - icon = "", - color = "#ea8220", - cterm_color = "208", - name = "Haxe", - }, - ["hbs"] = { - icon = "", + hbs = { + class = "seti-mustache", color = "#f0772b", cterm_color = "202", + icon = "", name = "Hbs", }, - ["heex"] = { - icon = "", + heex = { + class = "seti-elixir", color = "#a074c4", cterm_color = "140", + icon = "", name = "Heex", }, - ["hh"] = { - icon = "", + hh = { + class = "fa-h_square", color = "#a074c4", cterm_color = "140", + icon = "", name = "Hh", }, - ["hpp"] = { - icon = "", + hpp = { + class = "fa-h_square", color = "#a074c4", cterm_color = "140", + icon = "", name = "Hpp", }, - ["hrl"] = { - icon = "", + hrl = { + class = "dev-erlang", color = "#B83998", cterm_color = "163", + icon = "", name = "Hrl", }, - ["hs"] = { - icon = "", + hs = { + class = "seti-haskell", color = "#a074c4", cterm_color = "140", + icon = "", name = "Hs", }, - ["htm"] = { - icon = "", + htm = { + class = "seti-html", color = "#e34c26", cterm_color = "196", + icon = "", name = "Htm", }, - ["html"] = { - icon = "", + html = { + class = "dev-html5", color = "#e44d26", cterm_color = "196", + icon = "", name = "Html", }, - ["huff"] = { - icon = "󰡘", + huff = { + class = "md-chess_knight", color = "#4242c7", cterm_color = "56", + icon = "󰡘", name = "Huff", }, - ["hurl"] = { - icon = "", + hurl = { + class = "fa-exchange", color = "#ff0288", cterm_color = "198", + icon = "", name = "Hurl", }, - ["hxx"] = { - icon = "", + hx = { + class = "seti-haxe", + color = "#ea8220", + cterm_color = "208", + icon = "", + name = "Haxe", + }, + hxx = { + class = "fa-h_square", color = "#a074c4", cterm_color = "140", + icon = "", name = "Hxx", }, - ["ixx"] = { - icon = "", - color = "#519aba", - cterm_color = "74", - name = "Ixx", - }, - ["ico"] = { - icon = "", + ico = { + class = "seti-image", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Ico", }, - ["import"] = { - icon = "", + import = { + class = "fa-paperclip", color = "#ECECEC", cterm_color = "255", + icon = "", name = "ImportConfiguration", }, - ["ini"] = { - icon = "", + ini = { + class = "seti-config", color = "#6d8086", cterm_color = "66", + icon = "", name = "Ini", }, - ["ino"] = { - icon = "", + ino = { + class = "linux-arduino", color = "#56b6c2", cterm_color = "73", + icon = "", name = "arduino", }, - ["ipynb"] = { - icon = "", + ipynb = { + class = "seti-python", color = "#51a0cf", cterm_color = "74", + icon = "", name = "Notebook", }, - ["java"] = { - icon = "", + ixx = { + class = "custom-cpp", + color = "#519aba", + cterm_color = "74", + icon = "", + name = "Ixx", + }, + java = { + class = "dev-java", color = "#cc3e44", cterm_color = "167", + icon = "", name = "Java", }, - ["jl"] = { - icon = "", + jl = { + class = "seti-julia", color = "#a270ba", cterm_color = "133", + icon = "", name = "Jl", }, - ["jpeg"] = { - icon = "", + jpeg = { + class = "seti-image", color = "#a074c4", cterm_color = "140", + icon = "", name = "Jpeg", }, - ["jpg"] = { - icon = "", + jpg = { + class = "seti-image", color = "#a074c4", cterm_color = "140", + icon = "", name = "Jpg", }, - ["js"] = { - icon = "󰌞", + js = { + class = "md-language_javascript", color = "#F1F134", cterm_color = "227", + icon = "󰌞", name = "Js", }, - ["json"] = { - icon = "", + json = { + class = "seti-json", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Json", }, - ["json5"] = { - icon = "", + json5 = { + class = "seti-json", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Json5", }, - ["jsonc"] = { - icon = "", + jsonc = { + class = "seti-json", color = "#cbcb41", cterm_color = "185", + icon = "", name = "Jsonc", }, - ["jsx"] = { - icon = "", + jsx = { + class = "seti-react", color = "#20c2e3", cterm_color = "45", + icon = "", name = "Jsx", }, - ["jxl"] = { - icon = "", + jxl = { + class = "seti-image", color = "#a074c4", cterm_color = "140", + icon = "", name = "JpegXl", }, - ["ksh"] = { - icon = "", + ksh = { + class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", + icon = "", name = "Ksh", }, - ["kt"] = { - icon = "", + kt = { + class = "seti-kotlin", color = "#7F52FF", cterm_color = "99", + icon = "", name = "Kotlin", }, - ["kts"] = { - icon = "", + kts = { + class = "seti-kotlin", color = "#7F52FF", cterm_color = "99", + icon = "", name = "KotlinScript", }, - ["leex"] = { - icon = "", + leex = { + class = "seti-elixir", color = "#a074c4", cterm_color = "140", + icon = "", name = "Leex", }, - ["less"] = { - icon = "", + less = { + class = "seti-css", color = "#563d7c", cterm_color = "54", + icon = "", name = "Less", }, - ["lhs"] = { - icon = "", + lhs = { + class = "seti-haskell", color = "#a074c4", cterm_color = "140", + icon = "", name = "Lhs", }, - ["license"] = { - icon = "", + license = { + class = "seti-license", color = "#cbcb41", cterm_color = "185", + icon = "", name = "License", }, - ["liquid"] = { - icon = "", + liquid = { + class = "seti-liquid", color = "#95BF47", cterm_color = "106", + icon = "", name = "Liquid", }, - ["lock"] = { - icon = "", + lock = { + class = "fa-unlock_alt", color = "#bbbbbb", cterm_color = "250", + icon = "", name = "Lock", }, - ["log"] = { - icon = "󰌱", + log = { + class = "md-library", color = "#dddddd", cterm_color = "253", + icon = "󰌱", name = "Log", }, - ["lua"] = { - icon = "", + lua = { + class = "seti-lua", color = "#51a0cf", cterm_color = "74", + icon = "", name = "Lua", }, - ["luau"] = { - icon = "", + luau = { + class = "seti-lua", color = "#00a2ff", cterm_color = "75", + icon = "", name = "Luau", }, - ["mpp"] = { - icon = "", - color = "#519aba", - cterm_color = "74", - name = "Mpp", - }, - ["m4a"] = { - icon = "", + m4a = { + class = "fa-music", color = "#66D8EF", cterm_color = "45", + icon = "", name = "M4A", }, - ["m4v"] = { - icon = "", + m4v = { + class = "fa-video_camera", color = "#FD971F", cterm_color = "208", + icon = "", name = "M4V", }, - ["makefile"] = { - icon = "", + makefile = { + class = "dev-gnu", color = "#6d8086", cterm_color = "66", + icon = "", name = "Makefile", }, - ["markdown"] = { - icon = "", + markdown = { + class = "seti-markdown", color = "#dddddd", cterm_color = "253", + icon = "", name = "Markdown", }, - ["material"] = { - icon = "󰔉", + material = { + class = "md-image_filter_hdr", color = "#B83998", cterm_color = "163", + icon = "󰔉", name = "Material", }, - ["md"] = { - icon = "", + md = { + class = "oct-markdown", color = "#dddddd", cterm_color = "253", + icon = "", name = "Md", }, - ["mdx"] = { - icon = "", + mdx = { + class = "oct-markdown", color = "#519aba", cterm_color = "74", + icon = "", name = "Mdx", }, - ["mint"] = { - icon = "󰌪", + mint = { + class = "md-leaf", color = "#87c095", cterm_color = "108", + icon = "󰌪", name = "Mint", }, - ["mjs"] = { - icon = "󰌞", + mjs = { + class = "md-language_javascript", color = "#F1F134", cterm_color = "227", + icon = "󰌞", name = "Mjs", }, - ["mk"] = { - icon = "", + mk = { + class = "dev-gnu", color = "#6d8086", cterm_color = "66", + icon = "", name = "Makefile", }, - ["mkv"] = { - icon = "", + mkv = { + class = "fa-video_camera", color = "#FD971F", cterm_color = "208", + icon = "", name = "Mkv", }, - ["ml"] = { - icon = "", + ml = { + class = "seti-ocaml", color = "#e37933", cterm_color = "166", + icon = "", name = "Ml", }, - ["mli"] = { - icon = "", + mli = { + class = "seti-ocaml", color = "#e37933", cterm_color = "166", + icon = "", name = "Mli", }, - ["mo"] = { - icon = "∞", + mo = { + class = "md-infinity", color = "#9772FB", cterm_color = "135", + icon = "󰛤", name = "Motoko", }, - ["mov"] = { - icon = "", + mov = { + class = "fa-video_camera", color = "#FD971F", cterm_color = "208", + icon = "", name = "MOV", }, - ["mp3"] = { - icon = "", + mp3 = { + class = "fa-music", color = "#66D8EF", cterm_color = "45", + icon = "", name = "Mp3", }, - ["mp4"] = { - icon = "", + mp4 = { + class = "fa-video_camera", color = "#FD971F", cterm_color = "208", + icon = "", name = "Mp4", }, - ["mts"] = { - icon = "", + mpp = { + class = "custom-cpp", + color = "#519aba", + cterm_color = "74", + icon = "", + name = "Mpp", + }, + mts = { + class = "seti-typescript", color = "#519aba", cterm_color = "74", + icon = "", name = "Mts", }, - ["mustache"] = { - icon = "", + mustache = { + class = "seti-mustache", color = "#e37933", cterm_color = "166", + icon = "", name = "Mustache", }, - ["nim"] = { - icon = "", + nim = { + class = "seti-nim", color = "#f3d400", cterm_color = "220", + icon = "", name = "Nim", }, - ["nix"] = { - icon = "", + nix = { + class = "linux-nixos", color = "#7ebae4", cterm_color = "110", + icon = "", name = "Nix", }, - ["nswag"] = { - icon = "", + nswag = { + class = "seti-json", color = "#85ea2d", cterm_color = "112", + icon = "", name = "Nswag", }, - ["nu"] = { - icon = ">", + nu = { + class = "fa-chevron_right", color = "#3aa675", cterm_color = "36", + icon = "", name = "Nushell", }, - ["ogg"] = { - icon = "", + ogg = { + class = "fa-music", color = "#66D8EF", cterm_color = "45", + icon = "", name = "Ogg", }, - ["opus"] = { - icon = "󰈣", + opus = { + class = "md-file_music", color = "#F88A02", cterm_color = "208", + icon = "󰈣", name = "OPUS", }, - ["org"] = { - icon = "", + org = { + class = "custom-orgmode", color = "#77AA99", cterm_color = "73", + icon = "", name = "OrgMode", }, - ["otf"] = { - icon = "", + otf = { + class = "fa-font", color = "#ECECEC", cterm_color = "255", + icon = "", name = "OpenTypeFont", }, - ["out"] = { - icon = "", + out = { + class = "cod-file_binary", color = "#9F0500", cterm_color = "124", + icon = "", name = "Out", }, - ["pck"] = { - icon = "", + pck = { + class = "oct-package", color = "#6d8086", cterm_color = "66", + icon = "", name = "PackedResource", }, - ["pdf"] = { - icon = "", + pdf = { + class = "cod-file_pdf", color = "#b30b00", cterm_color = "124", + icon = "", name = "Pdf", }, - ["php"] = { - icon = "", + php = { + class = "seti-php", color = "#a074c4", cterm_color = "140", + icon = "", name = "Php", }, - ["pl"] = { - icon = "", + pl = { + class = "dev-perl", color = "#519aba", cterm_color = "74", + icon = "", name = "Pl", }, - ["pm"] = { - icon = "", + pm = { + class = "dev-perl", color = "#519aba", cterm_color = "74", + icon = "", name = "Pm", }, - ["png"] = { - icon = "", + png = { + class = "seti-image", color = "#a074c4", cterm_color = "140", + icon = "", name = "Png", }, - ["pp"] = { - icon = "", + pp = { + class = "seti-puppet", color = "#FFA61A", cterm_color = "214", + icon = "", name = "Pp", }, - ["ppt"] = { - icon = "󰈧", + ppt = { + class = "md-file_powerpoint", color = "#cb4a32", cterm_color = "160", + icon = "󰈧", name = "Ppt", }, - ["prisma"] = { - icon = "", + prisma = { + class = "seti-prisma", color = "#5a67d8", cterm_color = "62", + icon = "", name = "Prisma", }, - ["pro"] = { - icon = "", + pro = { + class = "dev-prolog", color = "#e4b854", cterm_color = "179", + icon = "", name = "Prolog", }, - ["ps1"] = { - icon = "󰨊", + ps1 = { + class = "md-powershell", color = "#4273ca", cterm_color = "68", - name = "PsScriptfile", - }, - ["psd1"] = { icon = "󰨊", - color = "#6975c4", - cterm_color = "68", - name = "PsManifestfile", - }, - ["psm1"] = { - icon = "󰨊", - color = "#6975c4", - cterm_color = "68", - name = "PsScriptModulefile", + name = "PsScriptfile", }, - ["psb"] = { - icon = "", + psb = { + class = "dev-photoshop", color = "#519aba", cterm_color = "74", + icon = "", name = "Psb", }, - ["psd"] = { - icon = "", + psd = { + class = "dev-photoshop", color = "#519aba", cterm_color = "74", + icon = "", name = "Psd", }, - ["pxd"] = { - icon = "", + psd1 = { + class = "md-powershell", + color = "#6975c4", + cterm_color = "68", + icon = "󰨊", + name = "PsManifestfile", + }, + psm1 = { + class = "md-powershell", + color = "#6975c4", + cterm_color = "68", + icon = "󰨊", + name = "PsScriptModulefile", + }, + pxd = { + class = "seti-python", color = "#5aa7e4", cterm_color = "39", + icon = "", name = "Pxd", }, - ["pxi"] = { - icon = "", + pxi = { + class = "seti-python", color = "#5aa7e4", cterm_color = "39", + icon = "", name = "Pxi", }, - ["py"] = { - icon = "", + py = { + class = "seti-python", color = "#ffbc03", cterm_color = "214", + icon = "", name = "Py", }, - ["pyc"] = { - icon = "", + pyc = { + class = "seti-python", color = "#ffe291", cterm_color = "222", + icon = "", name = "Pyc", }, - ["pyd"] = { - icon = "", + pyd = { + class = "seti-python", color = "#ffe291", cterm_color = "222", + icon = "", name = "Pyd", }, - ["pyi"] = { - icon = "", + pyi = { + class = "seti-python", color = "#ffbc03", cterm_color = "214", + icon = "", name = "Pyi", }, - ["pyo"] = { - icon = "", + pyo = { + class = "seti-python", color = "#ffe291", cterm_color = "222", + icon = "", name = "Pyo", }, - ["pyx"] = { - icon = "", + pyx = { + class = "seti-python", color = "#5aa7e4", cterm_color = "39", + icon = "", name = "Pyx", }, - ["query"] = { - icon = "", + query = { + class = "fae-tree", color = "#90a850", cterm_color = "107", + icon = "", name = "Query", }, - ["r"] = { - icon = "󰟔", + r = { + class = "md-language_r", color = "#2266ba", cterm_color = "25", + icon = "󰟔", name = "R", }, - ["rake"] = { - icon = "", + rake = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Rake", }, - ["razor"] = { - icon = "󱦘", + razor = { + class = "md-razor_single_edge", color = "#512bd4", cterm_color = "56", + icon = "󱦘", name = "RazorPage", }, - ["rb"] = { - icon = "", + rb = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Rb", }, - ["res"] = { - icon = "", + res = { + class = "seti-rescript", color = "#cc3e44", cterm_color = "167", + icon = "", name = "ReScript", }, - ["resi"] = { - icon = "", + resi = { + class = "seti-rescript", color = "#f55385", cterm_color = "204", + icon = "", name = "ReScriptInterface", }, - ["rlib"] = { - icon = "", + rlib = { + class = "dev-rust", color = "#dea584", cterm_color = "216", + icon = "", name = "Rlib", }, - ["rmd"] = { - icon = "", + rmd = { + class = "seti-markdown", color = "#519aba", cterm_color = "74", + icon = "", name = "Rmd", }, - ["rproj"] = { - icon = "󰗆", + rproj = { + class = "md-vector_rectangle", color = "#358a5b", cterm_color = "29", + icon = "󰗆", name = "Rproj", }, - ["rs"] = { - icon = "", + rs = { + class = "seti-rust", color = "#dea584", cterm_color = "216", + icon = "", name = "Rs", }, - ["rss"] = { - icon = "", + rss = { + class = "seti-xml", color = "#FB9D3B", cterm_color = "215", + icon = "", name = "Rss", }, - ["sass"] = { - icon = "", + sass = { + class = "seti-sass", color = "#f55385", cterm_color = "204", + icon = "", name = "Sass", }, - ["sbt"] = { - icon = "", + sbt = { + class = "dev-scala", color = "#cc3e44", cterm_color = "167", + icon = "", name = "sbt", }, - ["scad"] = { - icon = "", + scad = { + class = "linux-openscad", color = "#f9d72c", cterm_color = "220", + icon = "", name = "OpenSCAD", }, - ["scala"] = { - icon = "", + scala = { + class = "dev-scala", color = "#cc3e44", cterm_color = "167", + icon = "", name = "Scala", }, - ["scm"] = { - icon = "󰘧", + scm = { + class = "md-lambda", color = "#eeeeee", cterm_color = "255", + icon = "󰘧", name = "Scheme", }, - ["scss"] = { - icon = "", + scss = { + class = "seti-sass", color = "#f55385", cterm_color = "204", + icon = "", name = "Scss", }, - ["sh"] = { - icon = "", + sh = { + class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", + icon = "", name = "Sh", }, - ["sig"] = { - icon = "λ", + sig = { + class = "md-lambda", color = "#e37933", cterm_color = "166", + icon = "󰘧", name = "Sig", }, - ["slim"] = { - icon = "", + slim = { + class = "seti-html", color = "#e34c26", cterm_color = "196", + icon = "", name = "Slim", }, - ["sln"] = { - icon = "", + sln = { + class = "dev-visualstudio", color = "#854CC7", cterm_color = "98", + icon = "", name = "Sln", }, - ["sml"] = { - icon = "λ", + sml = { + class = "md-lambda", color = "#e37933", cterm_color = "166", + icon = "󰘧", name = "Sml", }, - ["sol"] = { - icon = "", + sol = { + class = "seti-ethereum", color = "#519aba", cterm_color = "74", + icon = "", name = "Solidity", }, ["spec.js"] = { - icon = "", + class = "oct-beaker", color = "#cbcb41", cterm_color = "185", + icon = "", name = "SpecJs", }, ["spec.jsx"] = { - icon = "", + class = "oct-beaker", color = "#20c2e3", cterm_color = "45", + icon = "", name = "JavaScriptReactSpec", }, ["spec.ts"] = { - icon = "", + class = "oct-beaker", color = "#519aba", cterm_color = "74", + icon = "", name = "SpecTs", }, ["spec.tsx"] = { - icon = "", + class = "oct-beaker", color = "#1354bf", cterm_color = "26", + icon = "", name = "TypeScriptReactSpec", }, - ["sql"] = { - icon = "", + sql = { + class = "dev-database", color = "#dad8d8", cterm_color = "188", + icon = "", name = "Sql", }, - ["sqlite"] = { - icon = "", + sqlite = { + class = "dev-database", color = "#dad8d8", cterm_color = "188", + icon = "", name = "Sql", }, - ["sqlite3"] = { - icon = "", + sqlite3 = { + class = "dev-database", color = "#dad8d8", cterm_color = "188", + icon = "", name = "Sql", }, - ["styl"] = { - icon = "", + styl = { + class = "seti-stylus", color = "#8dc149", cterm_color = "113", + icon = "", name = "Styl", }, - ["sublime"] = { - icon = "", + sublime = { + class = "dev-sublime", color = "#e37933", cterm_color = "166", + icon = "", name = "Suo", }, - ["suo"] = { - icon = "", + suo = { + class = "dev-visualstudio", color = "#854CC7", cterm_color = "98", + icon = "", name = "Suo", }, - ["sv"] = { - icon = "󰍛", + sv = { + class = "md-memory", color = "#019833", cterm_color = "28", + icon = "󰍛", name = "SystemVerilog", }, - ["svelte"] = { - icon = "", + svelte = { + class = "seti-svelte", color = "#ff3e00", cterm_color = "196", + icon = "", name = "Svelte", }, - ["svh"] = { - icon = "󰍛", - color = "#019833", - cterm_color = "28", - name = "SystemVerilog", - }, - ["svg"] = { - icon = "󰜡", + svg = { + class = "md-svg", color = "#FFB13B", cterm_color = "214", + icon = "󰜡", name = "Svg", }, - ["swift"] = { - icon = "", + svh = { + class = "md-memory", + color = "#019833", + cterm_color = "28", + icon = "󰍛", + name = "SystemVerilog", + }, + swift = { + class = "dev-swift", color = "#e37933", cterm_color = "166", + icon = "", name = "Swift", }, - ["t"] = { - icon = "", + t = { + class = "dev-perl", color = "#519aba", cterm_color = "74", + icon = "", name = "Tor", }, - ["tbc"] = { - icon = "󰛓", + tbc = { + class = "md-feather", color = "#1e5cb3", cterm_color = "25", + icon = "󰛓", name = "Tcl", }, - ["tcl"] = { - icon = "󰛓", + tcl = { + class = "md-feather", color = "#1e5cb3", cterm_color = "25", + icon = "󰛓", name = "Tcl", }, - ["templ"] = { - icon = "", + templ = { + class = "cod-code", color = "#dbbd30", cterm_color = "178", + icon = "", name = "Templ", }, - ["terminal"] = { - icon = "", + terminal = { + class = "oct-terminal", color = "#31B53E", cterm_color = "34", + icon = "", name = "Terminal", }, ["test.js"] = { - icon = "", + class = "oct-beaker", color = "#cbcb41", cterm_color = "185", + icon = "", name = "TestJs", }, ["test.jsx"] = { - icon = "", + class = "oct-beaker", color = "#20c2e3", cterm_color = "45", + icon = "", name = "JavaScriptReactTest", }, ["test.ts"] = { - icon = "", + class = "oct-beaker", color = "#519aba", cterm_color = "74", + icon = "", name = "TestTs", }, ["test.tsx"] = { - icon = "", + class = "oct-beaker", color = "#1354bf", cterm_color = "26", + icon = "", name = "TypeScriptReactTest", }, - ["tex"] = { - icon = "󰙩", + tex = { + class = "md-text_shadow", color = "#3D6117", cterm_color = "22", + icon = "󰙩", name = "Tex", }, - ["tf"] = { - icon = "", + tf = { + class = "seti-terraform", color = "#5F43E9", cterm_color = "93", + icon = "", name = "Terraform", }, - ["tfvars"] = { - icon = "", + tfvars = { + class = "fa-file", color = "#5F43E9", cterm_color = "93", + icon = "", name = "TFVars", }, - ["toml"] = { - icon = "", + toml = { + class = "custom-toml", color = "#9c4221", cterm_color = "124", + icon = "", name = "Toml", }, - ["tres"] = { - icon = "", + tres = { + class = "dev-database", color = "#cbcb41", cterm_color = "185", + icon = "", name = "TextResource", }, - ["ts"] = { - icon = "", + ts = { + class = "seti-typescript", color = "#519aba", cterm_color = "74", + icon = "", name = "Ts", }, - ["tscn"] = { - icon = "󰎁", + tscn = { + class = "md-movie", color = "#a074c4", cterm_color = "140", + icon = "󰎁", name = "TextScene", }, - ["tsx"] = { - icon = "", + tsx = { + class = "dev-react", color = "#1354bf", cterm_color = "26", + icon = "", name = "Tsx", }, - ["ttf"] = { - icon = "", + ttf = { + class = "fa-font", color = "#ECECEC", cterm_color = "255", + icon = "", name = "TrueTypeFont", }, - ["twig"] = { - icon = "", + twig = { + class = "seti-twig", color = "#8dc149", cterm_color = "113", + icon = "", name = "Twig", }, - ["txt"] = { - icon = "󰈙", + txt = { + class = "md-file_document", color = "#89e051", cterm_color = "113", + icon = "󰈙", name = "Txt", }, - ["v"] = { - icon = "󰍛", + v = { + class = "md-memory", color = "#019833", cterm_color = "28", + icon = "󰍛", name = "Verilog", }, - ["vala"] = { - icon = "", + vala = { + class = "seti-vala", color = "#7239b3", cterm_color = "91", + icon = "", name = "Vala", }, - ["vh"] = { - icon = "󰍛", + vh = { + class = "md-memory", color = "#019833", cterm_color = "28", + icon = "󰍛", name = "Verilog", }, - ["vhd"] = { - icon = "󰍛", + vhd = { + class = "md-memory", color = "#019833", cterm_color = "28", + icon = "󰍛", name = "VHDL", }, - ["vhdl"] = { - icon = "󰍛", + vhdl = { + class = "md-memory", color = "#019833", cterm_color = "28", + icon = "󰍛", name = "VHDL", }, - ["vim"] = { - icon = "", + vim = { + class = "custom-vim", color = "#019833", cterm_color = "28", + icon = "", name = "Vim", }, - ["vsh"] = { - icon = "", + vsh = { + class = "custom-v_lang", color = "#5d87bf", cterm_color = "67", + icon = "", name = "Vlang", }, - ["vue"] = { - icon = "", + vue = { + class = "seti-vue", color = "#8dc149", cterm_color = "113", + icon = "", name = "Vue", }, - ["wav"] = { - icon = "", + wasm = { + class = "seti-wasm", + color = "#5c4cdb", + cterm_color = "62", + icon = "", + name = "Wasm", + }, + wav = { + class = "fa-music", color = "#66D8EF", cterm_color = "45", + icon = "", name = "Wav", }, - ["webm"] = { - icon = "", + webm = { + class = "fa-video_camera", color = "#FD971F", cterm_color = "208", + icon = "", name = "Webm", }, - ["webmanifest"] = { - icon = "", + webmanifest = { + class = "seti-json", color = "#f1e05a", cterm_color = "185", + icon = "", name = "Webmanifest", }, - ["webp"] = { - icon = "", + webp = { + class = "seti-image", color = "#a074c4", cterm_color = "140", + icon = "", name = "Webp", }, - ["webpack"] = { - icon = "󰜫", + webpack = { + class = "md-webpack", color = "#519aba", cterm_color = "74", + icon = "󰜫", name = "Webpack", }, - ["woff"] = { - icon = "", + woff = { + class = "fa-font", color = "#ECECEC", cterm_color = "255", + icon = "", name = "WebOpenFontFormat", }, - ["woff2"] = { - icon = "", + woff2 = { + class = "fa-font", color = "#ECECEC", cterm_color = "255", + icon = "", name = "WebOpenFontFormat", }, - ["xaml"] = { - icon = "󰙳", + xaml = { + class = "md-language_xaml", color = "#512bd4", cterm_color = "56", + icon = "󰙳", name = "Xaml", }, - ["xcplayground"] = { - icon = "", + xcplayground = { + class = "dev-swift", color = "#e37933", cterm_color = "166", + icon = "", name = "XcPlayground", }, - ["xls"] = { - icon = "󰈛", + xls = { + class = "md-file_excel", color = "#207245", cterm_color = "29", + icon = "󰈛", name = "Xls", }, - ["xlsx"] = { - icon = "󰈛", + xlsx = { + class = "md-file_excel", color = "#207245", cterm_color = "29", + icon = "󰈛", name = "Xlsx", }, - ["xml"] = { - icon = "󰗀", + xml = { + class = "md-xml", color = "#e37933", cterm_color = "166", + icon = "󰗀", name = "Xml", }, - ["xul"] = { - icon = "", + xul = { + class = "dev-firefox", color = "#e37933", cterm_color = "166", + icon = "", name = "Xul", }, - ["yaml"] = { - icon = "", + yaml = { + class = "seti-config", color = "#6d8086", cterm_color = "66", + icon = "", name = "Yaml", }, - ["yml"] = { - icon = "", + yml = { + class = "seti-config", color = "#6d8086", cterm_color = "66", + icon = "", name = "Yml", }, - ["zig"] = { - icon = "", + zig = { + class = "seti-zig", color = "#f69a1b", cterm_color = "172", + icon = "", name = "Zig", }, - ["zsh"] = { - icon = "", + zsh = { + class = "dev-terminal", color = "#89e051", cterm_color = "113", + icon = "", name = "Zsh", }, - ["wasm"] = { - icon = "", - color = "#5c4cdb", - cterm_color = "62", - name = "Wasm", - }, } -local icons_by_operating_system = { - ["apple"] = { - icon = "", - color = "#A2AAAD", - cterm_color = "248", - name = "Apple", - }, - ["windows"] = { - icon = "", - color = "#00A4EF", - cterm_color = "39", - name = "Windows", - }, - ["linux"] = { - icon = "", - color = "#fdfdfb", - cterm_color = "231", - name = "Linux", - }, - ["alma"] = { - icon = "", +M.icons_by_operating_system = { + alma = { + class = "linux-almalinux", color = "#ff4649", cterm_color = "203", + icon = "", name = "Almalinux", }, - ["alpine"] = { - icon = "", + alpine = { + class = "linux-alpine", color = "#0d597f", cterm_color = "24", + icon = "", name = "Alpine", }, - ["aosc"] = { - icon = "", + aosc = { + class = "linux-aosc", color = "#c00000", cterm_color = "124", + icon = "", name = "AOSC", }, - ["arch"] = { - icon = "󰣇", + apple = { + class = "seti-apple", + color = "#A2AAAD", + cterm_color = "248", + icon = "", + name = "Apple", + }, + arch = { + class = "md-arch", color = "#0f94d2", cterm_color = "67", + icon = "󰣇", name = "Arch", }, - ["artix"] = { - icon = "", + artix = { + class = "linux-artix", color = "#41b4d7", cterm_color = "38", + icon = "", name = "Artix", }, - ["budgie"] = { - icon = "", + budgie = { + class = "linux-budgie", color = "#5195e3", cterm_color = "68", + icon = "", name = "Budgie", }, - ["centos"] = { - icon = "", + centos = { + class = "linux-centos", color = "#a2518d", cterm_color = "132", + icon = "", name = "Centos", }, - ["debian"] = { - icon = "", + debian = { + class = "linux-debian", color = "#a80030", cterm_color = "88", + icon = "", name = "Debian", }, - ["deepin"] = { - icon = "", + deepin = { + class = "linux-deepin", color = "#2ca7f8", cterm_color = "39", + icon = "", name = "Deepin", }, - ["devuan"] = { - icon = "", + devuan = { + class = "linux-devuan", color = "#404a52", cterm_color = "238", + icon = "", name = "Devuan", }, - ["elementary"] = { - icon = "", + elementary = { + class = "linux-elementary", color = "#5890c2", cterm_color = "67", + icon = "", name = "Elementary", }, - ["endeavour"] = { - icon = "", + endeavour = { + class = "linux-endeavour", color = "#7b3db9", cterm_color = "91", + icon = "", name = "Endeavour", }, - ["fedora"] = { - icon = "", + fedora = { + class = "linux-fedora", color = "#072a5e", cterm_color = "17", + icon = "", name = "Fedora", }, - ["freebsd"] = { - icon = "", + freebsd = { + class = "linux-freebsd", color = "#c90f02", cterm_color = "160", + icon = "", name = "FreeBSD", }, - ["gentoo"] = { - icon = "󰣨", + gentoo = { + class = "md-gentoo", color = "#b1abce", cterm_color = "146", + icon = "󰣨", name = "Gentoo", }, - ["guix"] = { - icon = "", + guix = { + class = "linux-gnu_guix", color = "#ffcc00", cterm_color = "220", + icon = "", name = "Guix", }, - ["illumos"] = { - icon = "", + illumos = { + class = "linux-illumos", color = "#ff430f", cterm_color = "196", + icon = "", name = "Illumos", }, - ["kali"] = { - icon = "", + kali = { + class = "linux-kali_linux", color = "#2777ff", cterm_color = "69", + icon = "", name = "Kali", }, - ["mint"] = { - icon = "󰣭", - color = "#66af3d", - cterm_color = "70", - name = "Mint", + linux = { + class = "cod-terminal_linux", + color = "#fdfdfb", + cterm_color = "231", + icon = "", + name = "Linux", }, - ["mageia"] = { - icon = "", + mageia = { + class = "linux-mageia", color = "#2397d4", cterm_color = "67", + icon = "", name = "Mageia", }, - ["manjaro"] = { - icon = "", + manjaro = { + class = "linux-manjaro", color = "#33b959", cterm_color = "35", + icon = "", name = "Manjaro", }, - ["nixos"] = { - icon = "", + mint = { + class = "md-linux_mint", + color = "#66af3d", + cterm_color = "70", + icon = "󰣭", + name = "Mint", + }, + nixos = { + class = "linux-nixos", color = "#7ab1db", cterm_color = "110", + icon = "", name = "NixOS", }, - ["openbsd"] = { - icon = "", + openbsd = { + class = "linux-openbsd", color = "#f2ca30", cterm_color = "220", + icon = "", name = "OpenBSD", }, - ["opensuse"] = { - icon = "", + opensuse = { + class = "linux-opensuse", color = "#6fb424", cterm_color = "70", + icon = "", name = "openSUSE", }, - ["parrot"] = { - icon = "", + parrot = { + class = "linux-parrot", color = "#54deff", cterm_color = "45", + icon = "", name = "Parrot", }, - ["pop_os"] = { - icon = "", + pop_os = { + class = "linux-pop_os", color = "#48b9c7", cterm_color = "73", + icon = "", name = "Pop_OS", }, - ["raspberry_pi"] = { - icon = "", + raspberry_pi = { + class = "linux-raspberry_pi", color = "#be1848", cterm_color = "161", + icon = "", name = "RaspberryPiOS", }, - ["redhat"] = { - icon = "󱄛", + redhat = { + class = "md-redhat", color = "#EE0000", cterm_color = "196", + icon = "󱄛", name = "Redhat", }, - ["rocky"] = { - icon = "", + rocky = { + class = "linux-rocky_linux", color = "#0fb37d", cterm_color = "36", + icon = "", name = "RockyLinux", }, - ["sabayon"] = { - icon = "", + sabayon = { + class = "linux-sabayon", color = "#c6c6c6", cterm_color = "251", + icon = "", name = "Sabayon", }, - ["slackware"] = { - icon = "", + slackware = { + class = "linux-slackware", color = "#475fa9", cterm_color = "61", + icon = "", name = "Slackware", }, - ["solus"] = { - icon = "", + solus = { + class = "linux-solus", color = "#4b5163", cterm_color = "239", + icon = "", name = "Solus", }, - ["ubuntu"] = { - icon = "", + ubuntu = { + class = "dev-ubuntu", color = "#dd4814", cterm_color = "196", + icon = "", name = "Ubuntu", }, - ["void"] = { - icon = "", + void = { + class = "linux-void", color = "#295340", cterm_color = "23", + icon = "", name = "Void", }, - ["zorin"] = { - icon = "", + windows = { + class = "fa-windows", + color = "#00A4EF", + cterm_color = "39", + icon = "", + name = "Windows", + }, + zorin = { + class = "linux-zorin", color = "#14a1e8", cterm_color = "39", + icon = "", name = "Zorin", }, } -return { - icons_by_filename = icons_by_filename, - icons_by_file_extension = icons_by_file_extension, - icons_by_operating_system = icons_by_operating_system, -} +return M diff --git a/lua/nvim-web-devicons/icons-light-cb0c967.lua b/lua/nvim-web-devicons/icons-light-cb0c967.lua new file mode 100644 index 000000000..e16e3e343 --- /dev/null +++ b/lua/nvim-web-devicons/icons-light-cb0c967.lua @@ -0,0 +1,2265 @@ +-- TODO remove following migration to css classes +local icons_by_filename = { + [".babelrc"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Babelrc", + }, + [".bash_profile"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "BashProfile", + }, + [".bashrc"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Bashrc", + }, + [".dockerignore"] = { + icon = "󰡨", + color = "#2e5f99", + cterm_color = "25", + name = "Dockerfile", + }, + [".ds_store"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "DsStore", + }, + [".editorconfig"] = { + icon = "", + color = "#333030", + cterm_color = "236", + name = "EditorConfig", + }, + [".env"] = { + icon = "", + color = "#32310d", + cterm_color = "236", + name = "Env", + }, + [".eslintrc"] = { + icon = "", + color = "#4b32c3", + cterm_color = "56", + name = "Eslintrc", + }, + [".eslintignore"] = { + icon = "", + color = "#4b32c3", + cterm_color = "56", + name = "EslintIgnore", + }, + [".gitattributes"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitAttributes", + }, + [".gitconfig"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitConfig", + }, + [".gitignore"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitIgnore", + }, + [".gitlab-ci.yml"] = { + icon = "", + color = "#aa321f", + cterm_color = "124", + name = "GitlabCI", + }, + [".gitmodules"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitModules", + }, + [".gvimrc"] = { + icon = "", + color = "#017226", + cterm_color = "22", + name = "Gvimrc", + }, + [".luaurc"] = { + icon = "", + color = "#007abf", + cterm_color = "32", + name = "Luaurc", + }, + [".npmignore"] = { + icon = "", + color = "#ae1d38", + cterm_color = "161", + name = "NPMIgnore", + }, + [".npmrc"] = { + icon = "", + color = "#ae1d38", + cterm_color = "161", + name = "NPMrc", + }, + [".prettierrc"] = { + icon = "", + color = "#3264b7", + cterm_color = "25", + name = "PrettierConfig", + }, + [".settings.json"] = { + icon = "", + color = "#643995", + cterm_color = "91", + name = "SettingsJson", + }, + [".vimrc"] = { + icon = "", + color = "#017226", + cterm_color = "22", + name = "Vimrc", + }, + [".zprofile"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Zshprofile", + }, + [".zshenv"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Zshenv", + }, + [".zshrc"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Zshrc", + }, + ["_gvimrc"] = { + icon = "", + color = "#017226", + cterm_color = "22", + name = "Gvimrc", + }, + ["_vimrc"] = { + icon = "", + color = "#017226", + cterm_color = "22", + name = "Vimrc", + }, + ["R"] = { + icon = "󰟔", + color = "#1a4c8c", + cterm_color = "25", + name = "R", + }, + ["avif"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Avif", + }, + ["brewfile"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Brewfile", + }, + ["build"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "BazelBuild", + }, + ["checkhealth"] = { + icon = "󰓙", + color = "#3a5a7e", + cterm_color = "24", + name = "Checkhealth", + }, + ["cmakelists.txt"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "CMakeLists", + }, + ["commit_editmsg"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "GitCommit", + }, + ["compose.yaml"] = { + icon = "󰡨", + color = "#2e5f99", + cterm_color = "25", + name = "Dockerfile", + }, + ["compose.yml"] = { + icon = "󰡨", + color = "#2e5f99", + cterm_color = "25", + name = "Dockerfile", + }, + ["containerfile"] = { + icon = "󰡨", + color = "#2e5f99", + cterm_color = "25", + name = "Dockerfile", + }, + ["copying"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "License", + }, + ["copying.lesser"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "License", + }, + ["docker-compose.yaml"] = { + icon = "󰡨", + color = "#2e5f99", + cterm_color = "25", + name = "Dockerfile", + }, + ["docker-compose.yml"] = { + icon = "󰡨", + color = "#2e5f99", + cterm_color = "25", + name = "Dockerfile", + }, + ["dockerfile"] = { + icon = "󰡨", + color = "#2e5f99", + cterm_color = "25", + name = "Dockerfile", + }, + ["favicon.ico"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Favicon", + }, + ["gemfile$"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Gemfile", + }, + ["gnumakefile"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Makefile", + }, + ["groovy"] = { + icon = "", + color = "#384e5d", + cterm_color = "239", + name = "Groovy", + }, + ["gruntfile"] = { + icon = "", + color = "#975122", + cterm_color = "130", + name = "Gruntfile", + }, + ["gulpfile"] = { + icon = "", + color = "#992e33", + cterm_color = "88", + name = "Gulpfile", + }, + ["license"] = { + icon = "", + color = "#686020", + cterm_color = "58", + name = "License", + }, + ["makefile"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Makefile", + }, + ["mix.lock"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "MixLock", + }, + ["node_modules"] = { + icon = "", + color = "#ae1d38", + cterm_color = "161", + name = "NodeModules", + }, + ["package.json"] = { + icon = "", + color = "#ae1d38", + cterm_color = "161", + name = "PackageJson", + }, + ["package-lock.json"] = { + icon = "", + color = "#7a0d21", + cterm_color = "52", + name = "PackageLockJson", + }, + ["procfile"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Procfile", + }, + ["py.typed"] = { + icon = "", + color = "#805e02", + cterm_color = "94", + name = "Py.typed", + }, + ["r"] = { + icon = "󰟔", + color = "#1a4c8c", + cterm_color = "25", + name = "R", + }, + ["rakefile"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Rakefile", + }, + ["rmd"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Rmd", + }, + ["svelte.config.js"] = { + icon = "", + color = "#bf2e00", + cterm_color = "160", + name = "SvelteConfig", + }, + ["tailwind.config.js"] = { + icon = "󱏿", + color = "#158197", + cterm_color = "31", + name = "TailwindConfig", + }, + ["tailwind.config.mjs"] = { + icon = "󱏿", + color = "#158197", + cterm_color = "31", + name = "TailwindConfig", + }, + ["tailwind.config.ts"] = { + icon = "󱏿", + color = "#158197", + cterm_color = "31", + name = "TailwindConfig", + }, + ["tsconfig.json"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "TSConfig", + }, + ["unlicense"] = { + icon = "", + color = "#686020", + cterm_color = "58", + name = "License", + }, + ["vagrantfile$"] = { + icon = "", + color = "#104abf", + cterm_color = "26", + name = "Vagrantfile", + }, + ["webpack"] = { + icon = "󰜫", + color = "#36677c", + cterm_color = "24", + name = "Webpack", + }, + ["workspace"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "BazelWorkspace", + }, + ["build.zig.zon"] = { + icon = "", + color = "#7b4d0e", + cterm_color = "94", + name = "ZigObjectNotation", + }, +} + +local icons_by_file_extension = { + ["Dockerfile"] = { + icon = "󰡨", + color = "#2e5f99", + cterm_color = "25", + name = "Dockerfile", + }, + ["R"] = { + icon = "󰟔", + color = "#1a4c8c", + cterm_color = "25", + name = "R", + }, + ["aac"] = { + icon = "", + color = "#336c78", + cterm_color = "23", + name = "Aac", + }, + ["ai"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Ai", + }, + ["app"] = { + icon = "", + color = "#9F0500", + cterm_color = "124", + name = "App", + }, + ["applescript"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "AppleScript", + }, + ["awk"] = { + icon = "", + color = "#3a4446", + cterm_color = "238", + name = "Awk", + }, + ["azcli"] = { + icon = "", + color = "#005a9f", + cterm_color = "25", + name = "AzureCli", + }, + ["bak"] = { + icon = "󰁯", + color = "#526064", + cterm_color = "59", + name = "Backup", + }, + ["bash"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Bash", + }, + ["bat"] = { + icon = "", + color = "#40500f", + cterm_color = "58", + name = "Bat", + }, + ["bazel"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Bazel", + }, + ["bib"] = { + icon = "󱉟", + color = "#666620", + cterm_color = "58", + name = "BibTeX", + }, + ["bmp"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Bmp", + }, + ["bzl"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Bzl", + }, + ["c"] = { + icon = "", + color = "#3b69aa", + cterm_color = "25", + name = "C", + }, + ["c++"] = { + icon = "", + color = "#a23253", + cterm_color = "125", + name = "CPlusPlus", + }, + ["cbl"] = { + icon = "⚙", + color = "#005ca5", + cterm_color = "25", + name = "Cobol", + }, + ["cc"] = { + icon = "", + color = "#a23253", + cterm_color = "125", + name = "CPlusPlus", + }, + ["ccm"] = { + icon = "", + color = "#a23253", + cterm_color = "125", + name = "CPlusPlusModule", + }, + ["cfg"] = { + icon = "", + color = "#2f2f2f", + cterm_color = "236", + name = "Configuration", + }, + ["cjs"] = { + icon = "󰌞", + color = "#505011", + cterm_color = "58", + name = "Cjs", + }, + ["clj"] = { + icon = "", + color = "#466024", + cterm_color = "22", + name = "Clojure", + }, + ["cljc"] = { + icon = "", + color = "#466024", + cterm_color = "22", + name = "ClojureC", + }, + ["cljs"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "ClojureJS", + }, + ["cljd"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "ClojureDart", + }, + ["cmake"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "CMake", + }, + ["cob"] = { + icon = "⚙", + color = "#005ca5", + cterm_color = "25", + name = "Cobol", + }, + ["cobol"] = { + icon = "⚙", + color = "#005ca5", + cterm_color = "25", + name = "Cobol", + }, + ["coffee"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Coffee", + }, + ["conf"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Conf", + }, + ["config.ru"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "ConfigRu", + }, + ["cp"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Cp", + }, + ["cpp"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Cpp", + }, + ["cppm"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Cppm", + }, + ["cpy"] = { + icon = "⚙", + color = "#005ca5", + cterm_color = "25", + name = "Cobol", + }, + ["cr"] = { + icon = "", + color = "#434343", + cterm_color = "238", + name = "Crystal", + }, + ["cs"] = { + icon = "󰌛", + color = "#434d04", + cterm_color = "58", + name = "Cs", + }, + ["csh"] = { + icon = "", + color = "#3a4446", + cterm_color = "238", + name = "Csh", + }, + ["cshtml"] = { + icon = "󱦗", + color = "#512bd4", + cterm_color = "56", + name = "RazorPage", + }, + ["cson"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Cson", + }, + ["csproj"] = { + icon = "󰪮", + color = "#512bd4", + cterm_color = "56", + name = "CSharpProject", + }, + ["css"] = { + icon = "", + color = "#2c6ea3", + cterm_color = "24", + name = "Css", + }, + ["csv"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Csv", + }, + ["cts"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Cts", + }, + ["cu"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "cuda", + }, + ["cuh"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "cudah", + }, + ["cxx"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Cxx", + }, + ["cxxm"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Cxxm", + }, + ["d"] = { + icon = "", + color = "#325a13", + cterm_color = "22", + name = "D", + }, + ["dart"] = { + icon = "", + color = "#03589C", + cterm_color = "25", + name = "Dart", + }, + ["db"] = { + icon = "", + color = "#494848", + cterm_color = "238", + name = "Db", + }, + ["desktop"] = { + icon = "", + color = "#563d7c", + cterm_color = "54", + name = "DesktopEntry", + }, + ["diff"] = { + icon = "", + color = "#41535b", + cterm_color = "239", + name = "Diff", + }, + ["doc"] = { + icon = "󰈬", + color = "#185abd", + cterm_color = "26", + name = "Doc", + }, + ["docx"] = { + icon = "󰈬", + color = "#185abd", + cterm_color = "26", + name = "Docx", + }, + ["drl"] = { + icon = "", + color = "#553a3a", + cterm_color = "238", + name = "Drools", + }, + ["dropbox"] = { + icon = "", + color = "#0049be", + cterm_color = "26", + name = "Dropbox", + }, + ["dump"] = { + icon = "", + color = "#494848", + cterm_color = "238", + name = "Dump", + }, + ["edn"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Edn", + }, + ["eex"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Eex", + }, + ["ejs"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Ejs", + }, + ["elf"] = { + icon = "", + color = "#9F0500", + cterm_color = "124", + name = "Elf", + }, + ["elm"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Elm", + }, + ["eot"] = { + icon = "", + color = "#2f2f2f", + cterm_color = "236", + name = "EmbeddedOpenTypeFont", + }, + ["epp"] = { + icon = "", + color = "#80530d", + cterm_color = "94", + name = "Epp", + }, + ["erb"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Erb", + }, + ["erl"] = { + icon = "", + color = "#8a2b72", + cterm_color = "89", + name = "Erl", + }, + ["ex"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Ex", + }, + ["exe"] = { + icon = "", + color = "#9F0500", + cterm_color = "124", + name = "Exe", + }, + ["exs"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Exs", + }, + ["f#"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Fsharp", + }, + ["f90"] = { + icon = "󱈚", + color = "#563b70", + cterm_color = "53", + name = "Fortran", + }, + ["flac"] = { + icon = "", + color = "#336c78", + cterm_color = "23", + name = "Flac", + }, + ["fnl"] = { + icon = "", + color = "#33312b", + cterm_color = "236", + name = "Fennel", + }, + ["fish"] = { + icon = "", + color = "#3a4446", + cterm_color = "238", + name = "Fish", + }, + ["fs"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Fs", + }, + ["fsi"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Fsi", + }, + ["fsscript"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Fsscript", + }, + ["fsx"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Fsx", + }, + ["gd"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "GDScript", + }, + ["gemspec"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Gemspec", + }, + ["gif"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Gif", + }, + ["git"] = { + icon = "", + color = "#b5391e", + cterm_color = "160", + name = "GitLogo", + }, + ["glb"] = { + icon = "", + color = "#80581e", + cterm_color = "94", + name = "BinaryGLTF", + }, + ["gnumakefile"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Makefile", + }, + ["go"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Go", + }, + ["godot"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "GodotProject", + }, + ["gql"] = { + icon = "", + color = "#ac2880", + cterm_color = "126", + name = "GraphQL", + }, + ["graphql"] = { + icon = "", + color = "#ac2880", + cterm_color = "126", + name = "GraphQL", + }, + ["h"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "H", + }, + ["haml"] = { + icon = "", + color = "#2f2f2d", + cterm_color = "236", + name = "Haml", + }, + ["hx"] = { + icon = "", + color = "#9c5715", + cterm_color = "130", + name = "Haxe", + }, + ["hbs"] = { + icon = "", + color = "#a04f1d", + cterm_color = "130", + name = "Hbs", + }, + ["heex"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Heex", + }, + ["hh"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Hh", + }, + ["hpp"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Hpp", + }, + ["hrl"] = { + icon = "", + color = "#8a2b72", + cterm_color = "89", + name = "Hrl", + }, + ["hs"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Hs", + }, + ["htm"] = { + icon = "", + color = "#aa391c", + cterm_color = "124", + name = "Htm", + }, + ["html"] = { + icon = "", + color = "#ab3a1c", + cterm_color = "124", + name = "Html", + }, + ["huff"] = { + icon = "󰡘", + color = "#4242c7", + cterm_color = "56", + name = "Huff", + }, + ["hurl"] = { + icon = "", + color = "#bf0266", + cterm_color = "125", + name = "Hurl", + }, + ["hxx"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Hxx", + }, + ["ixx"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Ixx", + }, + ["ico"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Ico", + }, + ["import"] = { + icon = "", + color = "#2f2f2f", + cterm_color = "236", + name = "ImportConfiguration", + }, + ["ini"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Ini", + }, + ["ino"] = { + icon = "", + color = "#397981", + cterm_color = "30", + name = "arduino", + }, + ["ipynb"] = { + icon = "", + color = "#366b8a", + cterm_color = "24", + name = "Notebook", + }, + ["java"] = { + icon = "", + color = "#992e33", + cterm_color = "88", + name = "Java", + }, + ["jl"] = { + icon = "", + color = "#6c4b7c", + cterm_color = "96", + name = "Jl", + }, + ["jpeg"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Jpeg", + }, + ["jpg"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Jpg", + }, + ["js"] = { + icon = "󰌞", + color = "#505011", + cterm_color = "58", + name = "Js", + }, + ["json"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Json", + }, + ["json5"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Json5", + }, + ["jsonc"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "Jsonc", + }, + ["jsx"] = { + icon = "", + color = "#158197", + cterm_color = "31", + name = "Jsx", + }, + ["jxl"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "JpegXl", + }, + ["ksh"] = { + icon = "", + color = "#3a4446", + cterm_color = "238", + name = "Ksh", + }, + ["kt"] = { + icon = "", + color = "#5f3ebf", + cterm_color = "92", + name = "Kotlin", + }, + ["kts"] = { + icon = "", + color = "#5f3ebf", + cterm_color = "92", + name = "KotlinScript", + }, + ["leex"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Leex", + }, + ["less"] = { + icon = "", + color = "#563d7c", + cterm_color = "54", + name = "Less", + }, + ["lhs"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Lhs", + }, + ["license"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "License", + }, + ["liquid"] = { + icon = "", + color = "#4a6024", + cterm_color = "58", + name = "Liquid", + }, + ["lock"] = { + icon = "", + color = "#5e5e5e", + cterm_color = "59", + name = "Lock", + }, + ["log"] = { + icon = "󰌱", + color = "#4a4a4a", + cterm_color = "239", + name = "Log", + }, + ["lua"] = { + icon = "", + color = "#366b8a", + cterm_color = "24", + name = "Lua", + }, + ["luau"] = { + icon = "", + color = "#007abf", + cterm_color = "32", + name = "Luau", + }, + ["mpp"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Mpp", + }, + ["m4a"] = { + icon = "", + color = "#336c78", + cterm_color = "23", + name = "M4A", + }, + ["m4v"] = { + icon = "", + color = "#7e4c10", + cterm_color = "94", + name = "M4V", + }, + ["makefile"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Makefile", + }, + ["markdown"] = { + icon = "", + color = "#4a4a4a", + cterm_color = "239", + name = "Markdown", + }, + ["material"] = { + icon = "󰔉", + color = "#8a2b72", + cterm_color = "89", + name = "Material", + }, + ["md"] = { + icon = "", + color = "#4a4a4a", + cterm_color = "239", + name = "Md", + }, + ["mdx"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Mdx", + }, + ["mint"] = { + icon = "󰌪", + color = "#44604a", + cterm_color = "23", + name = "Mint", + }, + ["mjs"] = { + icon = "󰌞", + color = "#505011", + cterm_color = "58", + name = "Mjs", + }, + ["mk"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Makefile", + }, + ["mkv"] = { + icon = "", + color = "#7e4c10", + cterm_color = "94", + name = "Mkv", + }, + ["ml"] = { + icon = "", + color = "#975122", + cterm_color = "130", + name = "Ml", + }, + ["mli"] = { + icon = "", + color = "#975122", + cterm_color = "130", + name = "Mli", + }, + ["mo"] = { + icon = "∞", + color = "#654ca7", + cterm_color = "61", + name = "Motoko", + }, + ["mov"] = { + icon = "", + color = "#7e4c10", + cterm_color = "94", + name = "MOV", + }, + ["mp3"] = { + icon = "", + color = "#336c78", + cterm_color = "23", + name = "Mp3", + }, + ["mp4"] = { + icon = "", + color = "#7e4c10", + cterm_color = "94", + name = "Mp4", + }, + ["mts"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Mts", + }, + ["mustache"] = { + icon = "", + color = "#975122", + cterm_color = "130", + name = "Mustache", + }, + ["nim"] = { + icon = "", + color = "#514700", + cterm_color = "58", + name = "Nim", + }, + ["nix"] = { + icon = "", + color = "#3f5d72", + cterm_color = "24", + name = "Nix", + }, + ["nswag"] = { + icon = "", + color = "#427516", + cterm_color = "28", + name = "Nswag", + }, + ["nu"] = { + icon = ">", + color = "#276f4e", + cterm_color = "29", + name = "Nushell", + }, + ["ogg"] = { + icon = "", + color = "#336c78", + cterm_color = "23", + name = "Ogg", + }, + ["opus"] = { + icon = "󰈣", + color = "#a55c01", + cterm_color = "130", + name = "OPUS", + }, + ["org"] = { + icon = "", + color = "#4f7166", + cterm_color = "66", + name = "OrgMode", + }, + ["otf"] = { + icon = "", + color = "#2f2f2f", + cterm_color = "236", + name = "OpenTypeFont", + }, + ["out"] = { + icon = "", + color = "#9F0500", + cterm_color = "124", + name = "Out", + }, + ["pck"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "PackedResource", + }, + ["pdf"] = { + icon = "", + color = "#b30b00", + cterm_color = "124", + name = "Pdf", + }, + ["php"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Php", + }, + ["pl"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Pl", + }, + ["pm"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Pm", + }, + ["png"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Png", + }, + ["pp"] = { + icon = "", + color = "#80530d", + cterm_color = "94", + name = "Pp", + }, + ["ppt"] = { + icon = "󰈧", + color = "#983826", + cterm_color = "124", + name = "Ppt", + }, + ["prisma"] = { + icon = "", + color = "#444da2", + cterm_color = "61", + name = "Prisma", + }, + ["pro"] = { + icon = "", + color = "#725c2a", + cterm_color = "94", + name = "Prolog", + }, + ["ps1"] = { + icon = "󰨊", + color = "#325698", + cterm_color = "25", + name = "PsScriptfile", + }, + ["psd1"] = { + icon = "󰨊", + color = "#4f5893", + cterm_color = "60", + name = "PsManifestfile", + }, + ["psm1"] = { + icon = "󰨊", + color = "#4f5893", + cterm_color = "60", + name = "PsScriptModulefile", + }, + ["psb"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Psb", + }, + ["psd"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Psd", + }, + ["pxd"] = { + icon = "", + color = "#3c6f98", + cterm_color = "24", + name = "Pxd", + }, + ["pxi"] = { + icon = "", + color = "#3c6f98", + cterm_color = "24", + name = "Pxi", + }, + ["py"] = { + icon = "", + color = "#805e02", + cterm_color = "94", + name = "Py", + }, + ["pyc"] = { + icon = "", + color = "#332d1d", + cterm_color = "236", + name = "Pyc", + }, + ["pyd"] = { + icon = "", + color = "#332d1d", + cterm_color = "236", + name = "Pyd", + }, + ["pyi"] = { + icon = "", + color = "#805e02", + cterm_color = "94", + name = "Pyi", + }, + ["pyo"] = { + icon = "", + color = "#332d1d", + cterm_color = "236", + name = "Pyo", + }, + ["pyx"] = { + icon = "", + color = "#3c6f98", + cterm_color = "24", + name = "Pyx", + }, + ["query"] = { + icon = "", + color = "#607035", + cterm_color = "58", + name = "Query", + }, + ["r"] = { + icon = "󰟔", + color = "#1a4c8c", + cterm_color = "25", + name = "R", + }, + ["rake"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Rake", + }, + ["razor"] = { + icon = "󱦘", + color = "#512bd4", + cterm_color = "56", + name = "RazorPage", + }, + ["rb"] = { + icon = "", + color = "#701516", + cterm_color = "52", + name = "Rb", + }, + ["res"] = { + icon = "", + color = "#992e33", + cterm_color = "88", + name = "ReScript", + }, + ["resi"] = { + icon = "", + color = "#a33759", + cterm_color = "125", + name = "ReScriptInterface", + }, + ["rlib"] = { + icon = "", + color = "#6f5242", + cterm_color = "95", + name = "Rlib", + }, + ["rmd"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Rmd", + }, + ["rproj"] = { + icon = "󰗆", + color = "#286844", + cterm_color = "29", + name = "Rproj", + }, + ["rs"] = { + icon = "", + color = "#6f5242", + cterm_color = "95", + name = "Rs", + }, + ["rss"] = { + icon = "", + color = "#7e4e1e", + cterm_color = "94", + name = "Rss", + }, + ["sass"] = { + icon = "", + color = "#a33759", + cterm_color = "125", + name = "Sass", + }, + ["sbt"] = { + icon = "", + color = "#992e33", + cterm_color = "88", + name = "sbt", + }, + ["scad"] = { + icon = "", + color = "#53480f", + cterm_color = "58", + name = "OpenSCAD", + }, + ["scala"] = { + icon = "", + color = "#992e33", + cterm_color = "88", + name = "Scala", + }, + ["scm"] = { + icon = "󰘧", + color = "#303030", + cterm_color = "236", + name = "Scheme", + }, + ["scss"] = { + icon = "", + color = "#a33759", + cterm_color = "125", + name = "Scss", + }, + ["sh"] = { + icon = "", + color = "#3a4446", + cterm_color = "238", + name = "Sh", + }, + ["sig"] = { + icon = "λ", + color = "#975122", + cterm_color = "130", + name = "Sig", + }, + ["slim"] = { + icon = "", + color = "#aa391c", + cterm_color = "124", + name = "Slim", + }, + ["sln"] = { + icon = "", + color = "#643995", + cterm_color = "91", + name = "Sln", + }, + ["sml"] = { + icon = "λ", + color = "#975122", + cterm_color = "130", + name = "Sml", + }, + ["sol"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Solidity", + }, + ["spec.js"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "SpecJs", + }, + ["spec.jsx"] = { + icon = "", + color = "#158197", + cterm_color = "31", + name = "JavaScriptReactSpec", + }, + ["spec.ts"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "SpecTs", + }, + ["spec.tsx"] = { + icon = "", + color = "#1354bf", + cterm_color = "26", + name = "TypeScriptReactSpec", + }, + ["sql"] = { + icon = "", + color = "#494848", + cterm_color = "238", + name = "Sql", + }, + ["sqlite"] = { + icon = "", + color = "#494848", + cterm_color = "238", + name = "Sql", + }, + ["sqlite3"] = { + icon = "", + color = "#494848", + cterm_color = "238", + name = "Sql", + }, + ["styl"] = { + icon = "", + color = "#466024", + cterm_color = "22", + name = "Styl", + }, + ["sublime"] = { + icon = "", + color = "#975122", + cterm_color = "130", + name = "Suo", + }, + ["suo"] = { + icon = "", + color = "#643995", + cterm_color = "91", + name = "Suo", + }, + ["sv"] = { + icon = "󰍛", + color = "#017226", + cterm_color = "22", + name = "SystemVerilog", + }, + ["svelte"] = { + icon = "", + color = "#bf2e00", + cterm_color = "160", + name = "Svelte", + }, + ["svh"] = { + icon = "󰍛", + color = "#017226", + cterm_color = "22", + name = "SystemVerilog", + }, + ["svg"] = { + icon = "󰜡", + color = "#80581e", + cterm_color = "94", + name = "Svg", + }, + ["swift"] = { + icon = "", + color = "#975122", + cterm_color = "130", + name = "Swift", + }, + ["t"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Tor", + }, + ["tbc"] = { + icon = "󰛓", + color = "#1e5cb3", + cterm_color = "25", + name = "Tcl", + }, + ["tcl"] = { + icon = "󰛓", + color = "#1e5cb3", + cterm_color = "25", + name = "Tcl", + }, + ["templ"] = { + icon = "", + color = "#6e5e18", + cterm_color = "58", + name = "Templ", + }, + ["terminal"] = { + icon = "", + color = "#217929", + cterm_color = "28", + name = "Terminal", + }, + ["test.js"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "TestJs", + }, + ["test.jsx"] = { + icon = "", + color = "#158197", + cterm_color = "31", + name = "JavaScriptReactTest", + }, + ["test.ts"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "TestTs", + }, + ["test.tsx"] = { + icon = "", + color = "#1354bf", + cterm_color = "26", + name = "TypeScriptReactTest", + }, + ["tex"] = { + icon = "󰙩", + color = "#3D6117", + cterm_color = "22", + name = "Tex", + }, + ["tf"] = { + icon = "", + color = "#4732af", + cterm_color = "55", + name = "Terraform", + }, + ["tfvars"] = { + icon = "", + color = "#4732af", + cterm_color = "55", + name = "TFVars", + }, + ["toml"] = { + icon = "", + color = "#753219", + cterm_color = "88", + name = "Toml", + }, + ["tres"] = { + icon = "", + color = "#666620", + cterm_color = "58", + name = "TextResource", + }, + ["ts"] = { + icon = "", + color = "#36677c", + cterm_color = "24", + name = "Ts", + }, + ["tscn"] = { + icon = "󰎁", + color = "#6b4d83", + cterm_color = "96", + name = "TextScene", + }, + ["tsx"] = { + icon = "", + color = "#1354bf", + cterm_color = "26", + name = "Tsx", + }, + ["ttf"] = { + icon = "", + color = "#2f2f2f", + cterm_color = "236", + name = "TrueTypeFont", + }, + ["twig"] = { + icon = "", + color = "#466024", + cterm_color = "22", + name = "Twig", + }, + ["txt"] = { + icon = "󰈙", + color = "#447028", + cterm_color = "22", + name = "Txt", + }, + ["v"] = { + icon = "󰍛", + color = "#017226", + cterm_color = "22", + name = "Verilog", + }, + ["vala"] = { + icon = "", + color = "#562b86", + cterm_color = "54", + name = "Vala", + }, + ["vh"] = { + icon = "󰍛", + color = "#017226", + cterm_color = "22", + name = "Verilog", + }, + ["vhd"] = { + icon = "󰍛", + color = "#017226", + cterm_color = "22", + name = "VHDL", + }, + ["vhdl"] = { + icon = "󰍛", + color = "#017226", + cterm_color = "22", + name = "VHDL", + }, + ["vim"] = { + icon = "", + color = "#017226", + cterm_color = "22", + name = "Vim", + }, + ["vsh"] = { + icon = "", + color = "#3e5a7f", + cterm_color = "24", + name = "Vlang", + }, + ["vue"] = { + icon = "", + color = "#466024", + cterm_color = "22", + name = "Vue", + }, + ["wav"] = { + icon = "", + color = "#336c78", + cterm_color = "23", + name = "Wav", + }, + ["webm"] = { + icon = "", + color = "#7e4c10", + cterm_color = "94", + name = "Webm", + }, + ["webmanifest"] = { + icon = "", + color = "#504b1e", + cterm_color = "58", + name = "Webmanifest", + }, + ["webp"] = { + icon = "", + color = "#6b4d83", + cterm_color = "96", + name = "Webp", + }, + ["webpack"] = { + icon = "󰜫", + color = "#36677c", + cterm_color = "24", + name = "Webpack", + }, + ["woff"] = { + icon = "", + color = "#2f2f2f", + cterm_color = "236", + name = "WebOpenFontFormat", + }, + ["woff2"] = { + icon = "", + color = "#2f2f2f", + cterm_color = "236", + name = "WebOpenFontFormat", + }, + ["xaml"] = { + icon = "󰙳", + color = "#512bd4", + cterm_color = "56", + name = "Xaml", + }, + ["xcplayground"] = { + icon = "", + color = "#975122", + cterm_color = "130", + name = "XcPlayground", + }, + ["xls"] = { + icon = "󰈛", + color = "#207245", + cterm_color = "29", + name = "Xls", + }, + ["xlsx"] = { + icon = "󰈛", + color = "#207245", + cterm_color = "29", + name = "Xlsx", + }, + ["xml"] = { + icon = "󰗀", + color = "#975122", + cterm_color = "130", + name = "Xml", + }, + ["xul"] = { + icon = "", + color = "#975122", + cterm_color = "130", + name = "Xul", + }, + ["yaml"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Yaml", + }, + ["yml"] = { + icon = "", + color = "#526064", + cterm_color = "59", + name = "Yml", + }, + ["zig"] = { + icon = "", + color = "#7b4d0e", + cterm_color = "94", + name = "Zig", + }, + ["zsh"] = { + icon = "", + color = "#447028", + cterm_color = "22", + name = "Zsh", + }, + ["wasm"] = { + icon = "", + color = "#4539a4", + cterm_color = "55", + name = "Wasm", + }, +} + +local icons_by_operating_system = { + ["apple"] = { + icon = "", + color = "#515556", + cterm_color = "240", + name = "Apple", + }, + ["windows"] = { + icon = "", + color = "#007bb3", + cterm_color = "67", + name = "Windows", + }, + ["linux"] = { + icon = "", + color = "#333332", + cterm_color = "236", + name = "Linux", + }, + ["alma"] = { + icon = "", + color = "#bf3437", + cterm_color = "160", + name = "Almalinux", + }, + ["alpine"] = { + icon = "", + color = "#0d597f", + cterm_color = "24", + name = "Alpine", + }, + ["aosc"] = { + icon = "", + color = "#c00000", + cterm_color = "124", + name = "AOSC", + }, + ["arch"] = { + icon = "󰣇", + color = "#0b6f9e", + cterm_color = "24", + name = "Arch", + }, + ["artix"] = { + icon = "", + color = "#2b788f", + cterm_color = "31", + name = "Artix", + }, + ["budgie"] = { + icon = "", + color = "#366397", + cterm_color = "25", + name = "Budgie", + }, + ["centos"] = { + icon = "", + color = "#7a3d6a", + cterm_color = "89", + name = "Centos", + }, + ["debian"] = { + icon = "", + color = "#a80030", + cterm_color = "88", + name = "Debian", + }, + ["deepin"] = { + icon = "", + color = "#1d6fa5", + cterm_color = "24", + name = "Deepin", + }, + ["devuan"] = { + icon = "", + color = "#404a52", + cterm_color = "238", + name = "Devuan", + }, + ["elementary"] = { + icon = "", + color = "#3b6081", + cterm_color = "24", + name = "Elementary", + }, + ["endeavour"] = { + icon = "", + color = "#5c2e8b", + cterm_color = "54", + name = "Endeavour", + }, + ["fedora"] = { + icon = "", + color = "#072a5e", + cterm_color = "17", + name = "Fedora", + }, + ["freebsd"] = { + icon = "", + color = "#c90f02", + cterm_color = "160", + name = "FreeBSD", + }, + ["gentoo"] = { + icon = "󰣨", + color = "#585667", + cterm_color = "60", + name = "Gentoo", + }, + ["guix"] = { + icon = "", + color = "#554400", + cterm_color = "58", + name = "Guix", + }, + ["illumos"] = { + icon = "", + color = "#bf320b", + cterm_color = "160", + name = "Illumos", + }, + ["kali"] = { + icon = "", + color = "#1d59bf", + cterm_color = "26", + name = "Kali", + }, + ["mint"] = { + icon = "󰣭", + color = "#447529", + cterm_color = "28", + name = "Mint", + }, + ["mageia"] = { + icon = "", + color = "#1a719f", + cterm_color = "24", + name = "Mageia", + }, + ["manjaro"] = { + icon = "", + color = "#227b3b", + cterm_color = "29", + name = "Manjaro", + }, + ["nixos"] = { + icon = "", + color = "#3d586e", + cterm_color = "24", + name = "NixOS", + }, + ["openbsd"] = { + icon = "", + color = "#514310", + cterm_color = "58", + name = "OpenBSD", + }, + ["opensuse"] = { + icon = "", + color = "#4a7818", + cterm_color = "64", + name = "openSUSE", + }, + ["parrot"] = { + icon = "", + color = "#2a6f80", + cterm_color = "23", + name = "Parrot", + }, + ["pop_os"] = { + icon = "", + color = "#307b85", + cterm_color = "30", + name = "Pop_OS", + }, + ["raspberry_pi"] = { + icon = "", + color = "#be1848", + cterm_color = "161", + name = "RaspberryPiOS", + }, + ["redhat"] = { + icon = "󱄛", + color = "#EE0000", + cterm_color = "196", + name = "Redhat", + }, + ["rocky"] = { + icon = "", + color = "#0b865e", + cterm_color = "29", + name = "RockyLinux", + }, + ["sabayon"] = { + icon = "", + color = "#424242", + cterm_color = "238", + name = "Sabayon", + }, + ["slackware"] = { + icon = "", + color = "#35477f", + cterm_color = "25", + name = "Slackware", + }, + ["solus"] = { + icon = "", + color = "#4b5163", + cterm_color = "239", + name = "Solus", + }, + ["ubuntu"] = { + icon = "", + color = "#a6360f", + cterm_color = "124", + name = "Ubuntu", + }, + ["void"] = { + icon = "", + color = "#295340", + cterm_color = "23", + name = "Void", + }, + ["zorin"] = { + icon = "", + color = "#0f79ae", + cterm_color = "67", + name = "Zorin", + }, +} + +return { + icons_by_filename = icons_by_filename, + icons_by_file_extension = icons_by_file_extension, + icons_by_operating_system = icons_by_operating_system, +} diff --git a/lua/nvim-web-devicons/icons-light.lua b/lua/nvim-web-devicons/icons-light.lua index 85e866901..4d656f925 100644 --- a/lua/nvim-web-devicons/icons-light.lua +++ b/lua/nvim-web-devicons/icons-light.lua @@ -1,2264 +1,2637 @@ -local icons_by_filename = { +local M = {} + +M.icons_by_filename = { [".babelrc"] = { - icon = "", + class = "seti-less", color = "#666620", cterm_color = "58", + icon = "", name = "Babelrc", }, [".bash_profile"] = { - icon = "", + class = "seti-config", color = "#447028", cterm_color = "22", + icon = "", name = "BashProfile", }, [".bashrc"] = { - icon = "", + class = "seti-config", color = "#447028", cterm_color = "22", + icon = "", name = "Bashrc", }, [".dockerignore"] = { - icon = "󰡨", + class = "md-docker", color = "#2e5f99", cterm_color = "25", + icon = "󰡨", name = "Dockerfile", }, [".ds_store"] = { - icon = "", + class = "seti-config", color = "#41535b", cterm_color = "239", + icon = "", name = "DsStore", }, [".editorconfig"] = { - icon = "", + class = "seti-editorconfig", color = "#333030", cterm_color = "236", + icon = "", name = "EditorConfig", }, [".env"] = { - icon = "", + class = "oct-sliders", color = "#32310d", cterm_color = "236", + icon = "", name = "Env", }, - [".eslintrc"] = { - icon = "", + [".eslintignore"] = { + class = "seti-eslint", color = "#4b32c3", cterm_color = "56", - name = "Eslintrc", - }, - [".eslintignore"] = { icon = "", + name = "EslintIgnore", + }, + [".eslintrc"] = { + class = "seti-eslint", color = "#4b32c3", cterm_color = "56", - name = "EslintIgnore", + icon = "", + name = "Eslintrc", }, [".gitattributes"] = { - icon = "", + class = "dev-git", color = "#41535b", cterm_color = "239", + icon = "", name = "GitAttributes", }, [".gitconfig"] = { - icon = "", + class = "seti-config", color = "#41535b", cterm_color = "239", + icon = "", name = "GitConfig", }, [".gitignore"] = { - icon = "", + class = "dev-git", color = "#41535b", cterm_color = "239", + icon = "", name = "GitIgnore", }, [".gitlab-ci.yml"] = { - icon = "", + class = "fa-gitlab", color = "#aa321f", cterm_color = "124", + icon = "", name = "GitlabCI", }, [".gitmodules"] = { - icon = "", + class = "dev-git", color = "#41535b", cterm_color = "239", + icon = "", name = "GitModules", }, [".gvimrc"] = { - icon = "", + class = "custom-vim", color = "#017226", cterm_color = "22", + icon = "", name = "Gvimrc", }, [".luaurc"] = { - icon = "", + class = "seti-config", color = "#007abf", cterm_color = "32", + icon = "", name = "Luaurc", }, [".npmignore"] = { - icon = "", + class = "dev-npm", color = "#ae1d38", cterm_color = "161", + icon = "", name = "NPMIgnore", }, [".npmrc"] = { - icon = "", + class = "dev-npm", color = "#ae1d38", cterm_color = "161", + icon = "", name = "NPMrc", }, [".prettierrc"] = { - icon = "", + class = "custom-prettier", color = "#3264b7", cterm_color = "25", + icon = "", name = "PrettierConfig", }, [".settings.json"] = { - icon = "", + class = "dev-visualstudio", color = "#643995", cterm_color = "91", + icon = "", name = "SettingsJson", }, [".vimrc"] = { - icon = "", + class = "custom-vim", color = "#017226", cterm_color = "22", + icon = "", name = "Vimrc", }, [".zprofile"] = { - icon = "", + class = "seti-config", color = "#447028", cterm_color = "22", + icon = "", name = "Zshprofile", }, [".zshenv"] = { - icon = "", + class = "seti-config", color = "#447028", cterm_color = "22", + icon = "", name = "Zshenv", }, [".zshrc"] = { - icon = "", + class = "seti-config", color = "#447028", cterm_color = "22", + icon = "", name = "Zshrc", }, - ["_gvimrc"] = { - icon = "", + R = { + class = "md-language_r", + color = "#1a4c8c", + cterm_color = "25", + icon = "󰟔", + name = "R", + }, + _gvimrc = { + class = "custom-vim", color = "#017226", cterm_color = "22", + icon = "", name = "Gvimrc", }, - ["_vimrc"] = { - icon = "", + _vimrc = { + class = "custom-vim", color = "#017226", cterm_color = "22", + icon = "", name = "Vimrc", }, - ["R"] = { - icon = "󰟔", - color = "#1a4c8c", - cterm_color = "25", - name = "R", - }, - ["avif"] = { - icon = "", + avif = { + class = "seti-image", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Avif", }, - ["brewfile"] = { - icon = "", + brewfile = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Brewfile", }, - ["build"] = { - icon = "", + build = { + class = "seti-bazel", color = "#447028", cterm_color = "22", + icon = "", name = "BazelBuild", }, - ["checkhealth"] = { - icon = "󰓙", + ["build.zig.zon"] = { + class = "seti-zig", + color = "#7b4d0e", + cterm_color = "94", + icon = "", + name = "ZigObjectNotation", + }, + checkhealth = { + class = "md-stethoscope", color = "#3a5a7e", cterm_color = "24", + icon = "󰓙", name = "Checkhealth", }, ["cmakelists.txt"] = { - icon = "", + class = "seti-config", color = "#526064", cterm_color = "59", + icon = "", name = "CMakeLists", }, - ["commit_editmsg"] = { - icon = "", + commit_editmsg = { + class = "dev-git", color = "#41535b", cterm_color = "239", + icon = "", name = "GitCommit", }, ["compose.yaml"] = { - icon = "󰡨", + class = "md-docker", color = "#2e5f99", cterm_color = "25", + icon = "󰡨", name = "Dockerfile", }, ["compose.yml"] = { - icon = "󰡨", + class = "md-docker", color = "#2e5f99", cterm_color = "25", + icon = "󰡨", name = "Dockerfile", }, - ["containerfile"] = { - icon = "󰡨", + containerfile = { + class = "md-docker", color = "#2e5f99", cterm_color = "25", + icon = "󰡨", name = "Dockerfile", }, - ["copying"] = { - icon = "", + copying = { + class = "seti-license", color = "#666620", cterm_color = "58", + icon = "", name = "License", }, ["copying.lesser"] = { - icon = "", + class = "seti-license", color = "#666620", cterm_color = "58", + icon = "", name = "License", }, ["docker-compose.yaml"] = { - icon = "󰡨", + class = "md-docker", color = "#2e5f99", cterm_color = "25", + icon = "󰡨", name = "Dockerfile", }, ["docker-compose.yml"] = { - icon = "󰡨", + class = "md-docker", color = "#2e5f99", cterm_color = "25", + icon = "󰡨", name = "Dockerfile", }, - ["dockerfile"] = { - icon = "󰡨", + dockerfile = { + class = "md-docker", color = "#2e5f99", cterm_color = "25", + icon = "󰡨", name = "Dockerfile", }, ["favicon.ico"] = { - icon = "", + class = "seti-favicon", color = "#666620", cterm_color = "58", + icon = "", name = "Favicon", }, ["gemfile$"] = { - icon = "", + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Gemfile", }, - ["gnumakefile"] = { - icon = "", + gnumakefile = { + class = "dev-gnu", color = "#526064", cterm_color = "59", + icon = "", name = "Makefile", }, - ["groovy"] = { - icon = "", + groovy = { + class = "dev-groovy", color = "#384e5d", cterm_color = "239", + icon = "", name = "Groovy", }, - ["gruntfile"] = { - icon = "", + gruntfile = { + class = "seti-grunt", color = "#975122", cterm_color = "130", + icon = "", name = "Gruntfile", }, - ["gulpfile"] = { - icon = "", + gulpfile = { + class = "seti-gulp", color = "#992e33", cterm_color = "88", + icon = "", name = "Gulpfile", }, - ["license"] = { - icon = "", + license = { + class = "seti-license", color = "#686020", cterm_color = "58", + icon = "", name = "License", }, - ["makefile"] = { - icon = "", + makefile = { + class = "dev-gnu", color = "#526064", cterm_color = "59", + icon = "", name = "Makefile", }, ["mix.lock"] = { - icon = "", + class = "seti-elixir", color = "#6b4d83", cterm_color = "96", + icon = "", name = "MixLock", }, - ["node_modules"] = { - icon = "", + node_modules = { + class = "dev-nodejs_small", color = "#ae1d38", cterm_color = "161", + icon = "", name = "NodeModules", }, - ["package.json"] = { - icon = "", - color = "#ae1d38", - cterm_color = "161", - name = "PackageJson", - }, ["package-lock.json"] = { - icon = "", + class = "dev-npm", color = "#7a0d21", cterm_color = "52", + icon = "", name = "PackageLockJson", }, - ["procfile"] = { - icon = "", + ["package.json"] = { + class = "dev-npm", + color = "#ae1d38", + cterm_color = "161", + icon = "", + name = "PackageJson", + }, + procfile = { + class = "seti-heroku", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Procfile", }, ["py.typed"] = { - icon = "", + class = "seti-python", color = "#805e02", cterm_color = "94", + icon = "", name = "Py.typed", }, - ["r"] = { - icon = "󰟔", + r = { + class = "md-language_r", color = "#1a4c8c", cterm_color = "25", + icon = "󰟔", name = "R", }, - ["rakefile"] = { - icon = "", + rakefile = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Rakefile", }, - ["rmd"] = { - icon = "", + rmd = { + class = "seti-markdown", color = "#36677c", cterm_color = "24", + icon = "", name = "Rmd", }, ["svelte.config.js"] = { - icon = "", + class = "seti-svelte", color = "#bf2e00", cterm_color = "160", + icon = "", name = "SvelteConfig", }, ["tailwind.config.js"] = { - icon = "󱏿", + class = "md-tailwind", color = "#158197", cterm_color = "31", + icon = "󱏿", name = "TailwindConfig", }, ["tailwind.config.mjs"] = { - icon = "󱏿", + class = "md-tailwind", color = "#158197", cterm_color = "31", + icon = "󱏿", name = "TailwindConfig", }, ["tailwind.config.ts"] = { - icon = "󱏿", + class = "md-tailwind", color = "#158197", cterm_color = "31", + icon = "󱏿", name = "TailwindConfig", }, ["tsconfig.json"] = { - icon = "", + class = "seti-tsconfig", color = "#36677c", cterm_color = "24", + icon = "", name = "TSConfig", }, - ["unlicense"] = { - icon = "", + unlicense = { + class = "seti-license", color = "#686020", cterm_color = "58", + icon = "", name = "License", }, ["vagrantfile$"] = { - icon = "", + class = "fa-linode", color = "#104abf", cterm_color = "26", + icon = "", name = "Vagrantfile", }, - ["webpack"] = { - icon = "󰜫", + webpack = { + class = "md-webpack", color = "#36677c", cterm_color = "24", + icon = "󰜫", name = "Webpack", }, - ["workspace"] = { - icon = "", + workspace = { + class = "seti-bazel", color = "#447028", cterm_color = "22", + icon = "", name = "BazelWorkspace", }, - ["build.zig.zon"] = { - icon = "", - color = "#7b4d0e", - cterm_color = "94", - name = "ZigObjectNotation", - }, } -local icons_by_file_extension = { - ["Dockerfile"] = { - icon = "󰡨", +M.icons_by_file_extension = { + Dockerfile = { + class = "md-docker", color = "#2e5f99", cterm_color = "25", + icon = "󰡨", name = "Dockerfile", }, - ["R"] = { - icon = "󰟔", + R = { + class = "md-language_r", color = "#1a4c8c", cterm_color = "25", + icon = "󰟔", name = "R", }, - ["aac"] = { - icon = "", + aac = { + class = "fa-music", color = "#336c78", cterm_color = "23", + icon = "", name = "Aac", }, - ["ai"] = { - icon = "", + ai = { + class = "dev-illustrator", color = "#666620", cterm_color = "58", + icon = "", name = "Ai", }, - ["app"] = { - icon = "", + app = { + class = "cod-file_binary", color = "#9F0500", cterm_color = "124", + icon = "", name = "App", }, - ["applescript"] = { - icon = "", + applescript = { + class = "fa-apple", color = "#526064", cterm_color = "59", + icon = "", name = "AppleScript", }, - ["awk"] = { - icon = "", + awk = { + class = "dev-terminal", color = "#3a4446", cterm_color = "238", + icon = "", name = "Awk", }, - ["azcli"] = { - icon = "", + azcli = { + class = "cod-azure_devops", color = "#005a9f", cterm_color = "25", + icon = "", name = "AzureCli", }, - ["bak"] = { - icon = "󰁯", + bak = { + class = "md-backup_restore", color = "#526064", cterm_color = "59", + icon = "󰁯", name = "Backup", }, - ["bash"] = { - icon = "", + bash = { + class = "dev-terminal", color = "#447028", cterm_color = "22", + icon = "", name = "Bash", }, - ["bat"] = { - icon = "", + bat = { + class = "seti-config", color = "#40500f", cterm_color = "58", + icon = "", name = "Bat", }, - ["bazel"] = { - icon = "", + bazel = { + class = "seti-bazel", color = "#447028", cterm_color = "22", + icon = "", name = "Bazel", }, - ["bib"] = { - icon = "󱉟", + bib = { + class = "md-bookshelf", color = "#666620", cterm_color = "58", + icon = "󱉟", name = "BibTeX", }, - ["bmp"] = { - icon = "", + bmp = { + class = "seti-image", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Bmp", }, - ["bzl"] = { - icon = "", + bzl = { + class = "seti-bazel", color = "#447028", cterm_color = "22", + icon = "", name = "Bzl", }, - ["c"] = { - icon = "", + c = { + class = "custom-c", color = "#3b69aa", cterm_color = "25", + icon = "", name = "C", }, ["c++"] = { - icon = "", + class = "custom-cpp", color = "#a23253", cterm_color = "125", + icon = "", name = "CPlusPlus", }, - ["cbl"] = { - icon = "⚙", + cbl = { + class = "seti-config", color = "#005ca5", cterm_color = "25", + icon = "", name = "Cobol", }, - ["cc"] = { - icon = "", + cc = { + class = "custom-cpp", color = "#a23253", cterm_color = "125", + icon = "", name = "CPlusPlus", }, - ["ccm"] = { - icon = "", + ccm = { + class = "custom-cpp", color = "#a23253", cterm_color = "125", + icon = "", name = "CPlusPlusModule", }, - ["cfg"] = { - icon = "", + cfg = { + class = "dev-code_badge", color = "#2f2f2f", cterm_color = "236", + icon = "", name = "Configuration", }, - ["cjs"] = { - icon = "󰌞", + cjs = { + class = "md-language_javascript", color = "#505011", cterm_color = "58", + icon = "󰌞", name = "Cjs", }, - ["clj"] = { - icon = "", + clj = { + class = "dev-clojure", color = "#466024", cterm_color = "22", + icon = "", name = "Clojure", }, - ["cljc"] = { - icon = "", + cljc = { + class = "dev-clojure", color = "#466024", cterm_color = "22", + icon = "", name = "ClojureC", }, - ["cljs"] = { - icon = "", + cljd = { + class = "dev-clojure_alt", color = "#36677c", cterm_color = "24", - name = "ClojureJS", - }, - ["cljd"] = { icon = "", + name = "ClojureDart", + }, + cljs = { + class = "dev-clojure_alt", color = "#36677c", cterm_color = "24", - name = "ClojureDart", + icon = "", + name = "ClojureJS", }, - ["cmake"] = { - icon = "", + cmake = { + class = "seti-config", color = "#526064", cterm_color = "59", + icon = "", name = "CMake", }, - ["cob"] = { - icon = "⚙", + cob = { + class = "seti-config", color = "#005ca5", cterm_color = "25", + icon = "", name = "Cobol", }, - ["cobol"] = { - icon = "⚙", + cobol = { + class = "seti-config", color = "#005ca5", cterm_color = "25", + icon = "", name = "Cobol", }, - ["coffee"] = { - icon = "", + coffee = { + class = "seti-coffee", color = "#666620", cterm_color = "58", + icon = "", name = "Coffee", }, - ["conf"] = { - icon = "", + conf = { + class = "seti-config", color = "#526064", cterm_color = "59", + icon = "", name = "Conf", }, ["config.ru"] = { - icon = "", + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "ConfigRu", }, - ["cp"] = { - icon = "", + cp = { + class = "custom-cpp", color = "#36677c", cterm_color = "24", + icon = "", name = "Cp", }, - ["cpp"] = { - icon = "", + cpp = { + class = "custom-cpp", color = "#36677c", cterm_color = "24", + icon = "", name = "Cpp", }, - ["cppm"] = { - icon = "", + cppm = { + class = "custom-cpp", color = "#36677c", cterm_color = "24", + icon = "", name = "Cppm", }, - ["cpy"] = { - icon = "⚙", + cpy = { + class = "seti-config", color = "#005ca5", cterm_color = "25", + icon = "", name = "Cobol", }, - ["cr"] = { - icon = "", + cr = { + class = "seti-crystal", color = "#434343", cterm_color = "238", + icon = "", name = "Crystal", }, - ["cs"] = { - icon = "󰌛", + cs = { + class = "md-language_csharp", color = "#434d04", cterm_color = "58", + icon = "󰌛", name = "Cs", }, - ["csh"] = { - icon = "", + csh = { + class = "dev-terminal", color = "#3a4446", cterm_color = "238", + icon = "", name = "Csh", }, - ["cshtml"] = { - icon = "󱦗", + cshtml = { + class = "md-razor_double_edge", color = "#512bd4", cterm_color = "56", + icon = "󱦗", name = "RazorPage", }, - ["cson"] = { - icon = "", + cson = { + class = "seti-json", color = "#666620", cterm_color = "58", + icon = "", name = "Cson", }, - ["csproj"] = { - icon = "󰪮", + csproj = { + class = "md-dot_net", color = "#512bd4", cterm_color = "56", + icon = "󰪮", name = "CSharpProject", }, - ["css"] = { - icon = "", + css = { + class = "dev-css3", color = "#2c6ea3", cterm_color = "24", + icon = "", name = "Css", }, - ["csv"] = { - icon = "", + csv = { + class = "seti-csv", color = "#447028", cterm_color = "22", + icon = "", name = "Csv", }, - ["cts"] = { - icon = "", + cts = { + class = "seti-typescript", color = "#36677c", cterm_color = "24", + icon = "", name = "Cts", }, - ["cu"] = { - icon = "", + cu = { + class = "seti-cu", color = "#447028", cterm_color = "22", + icon = "", name = "cuda", }, - ["cuh"] = { - icon = "", + cuh = { + class = "seti-cu", color = "#6b4d83", cterm_color = "96", + icon = "", name = "cudah", }, - ["cxx"] = { - icon = "", + cxx = { + class = "custom-cpp", color = "#36677c", cterm_color = "24", + icon = "", name = "Cxx", }, - ["cxxm"] = { - icon = "", + cxxm = { + class = "custom-cpp", color = "#36677c", cterm_color = "24", + icon = "", name = "Cxxm", }, - ["d"] = { - icon = "", + d = { + class = "dev-dlang", color = "#325a13", cterm_color = "22", + icon = "", name = "D", }, - ["dart"] = { - icon = "", + dart = { + class = "dev-dart", color = "#03589C", cterm_color = "25", + icon = "", name = "Dart", }, - ["db"] = { - icon = "", + db = { + class = "dev-database", color = "#494848", cterm_color = "238", + icon = "", name = "Db", }, - ["desktop"] = { - icon = "", + desktop = { + class = "fa-desktop", color = "#563d7c", cterm_color = "54", + icon = "", name = "DesktopEntry", }, - ["diff"] = { - icon = "", + diff = { + class = "dev-git_compare", color = "#41535b", cterm_color = "239", + icon = "", name = "Diff", }, - ["doc"] = { - icon = "󰈬", + doc = { + class = "md-file_word", color = "#185abd", cterm_color = "26", + icon = "󰈬", name = "Doc", }, - ["docx"] = { - icon = "󰈬", + docx = { + class = "md-file_word", color = "#185abd", cterm_color = "26", + icon = "󰈬", name = "Docx", }, - ["drl"] = { - icon = "", + drl = { + class = "fae-brain", color = "#553a3a", cterm_color = "238", + icon = "", name = "Drools", }, - ["dropbox"] = { - icon = "", + dropbox = { + class = "dev-dropbox", color = "#0049be", cterm_color = "26", + icon = "", name = "Dropbox", }, - ["dump"] = { - icon = "", + dump = { + class = "dev-database", color = "#494848", cterm_color = "238", + icon = "", name = "Dump", }, - ["edn"] = { - icon = "", + edn = { + class = "dev-clojure_alt", color = "#36677c", cterm_color = "24", + icon = "", name = "Edn", }, - ["eex"] = { - icon = "", + eex = { + class = "seti-elixir", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Eex", }, - ["ejs"] = { - icon = "", + ejs = { + class = "seti-html", color = "#666620", cterm_color = "58", + icon = "", name = "Ejs", }, - ["elf"] = { - icon = "", + elf = { + class = "cod-file_binary", color = "#9F0500", cterm_color = "124", + icon = "", name = "Elf", }, - ["elm"] = { - icon = "", + elm = { + class = "seti-elm", color = "#36677c", cterm_color = "24", + icon = "", name = "Elm", }, - ["eot"] = { - icon = "", + eot = { + class = "fa-font", color = "#2f2f2f", cterm_color = "236", + icon = "", name = "EmbeddedOpenTypeFont", }, - ["epp"] = { - icon = "", + epp = { + class = "seti-puppet", color = "#80530d", cterm_color = "94", + icon = "", name = "Epp", }, - ["erb"] = { - icon = "", + erb = { + class = "seti-html", color = "#701516", cterm_color = "52", + icon = "", name = "Erb", }, - ["erl"] = { - icon = "", + erl = { + class = "dev-erlang", color = "#8a2b72", cterm_color = "89", + icon = "", name = "Erl", }, - ["ex"] = { - icon = "", + ex = { + class = "seti-elixir", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Ex", }, - ["exe"] = { - icon = "", + exe = { + class = "cod-file_binary", color = "#9F0500", cterm_color = "124", + icon = "", name = "Exe", }, - ["exs"] = { - icon = "", + exs = { + class = "seti-elixir", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Exs", }, ["f#"] = { - icon = "", + class = "dev-fsharp", color = "#36677c", cterm_color = "24", + icon = "", name = "Fsharp", }, - ["f90"] = { - icon = "󱈚", + f90 = { + class = "md-language_fortran", color = "#563b70", cterm_color = "53", + icon = "󱈚", name = "Fortran", }, - ["flac"] = { - icon = "", + fish = { + class = "dev-terminal", + color = "#3a4446", + cterm_color = "238", + icon = "", + name = "Fish", + }, + flac = { + class = "fa-music", color = "#336c78", cterm_color = "23", + icon = "", name = "Flac", }, - ["fnl"] = { - icon = "", + fnl = { + class = "custom-fennel", color = "#33312b", cterm_color = "236", + icon = "", name = "Fennel", }, - ["fish"] = { - icon = "", - color = "#3a4446", - cterm_color = "238", - name = "Fish", - }, - ["fs"] = { - icon = "", + fs = { + class = "dev-fsharp", color = "#36677c", cterm_color = "24", + icon = "", name = "Fs", }, - ["fsi"] = { - icon = "", + fsi = { + class = "dev-fsharp", color = "#36677c", cterm_color = "24", + icon = "", name = "Fsi", }, - ["fsscript"] = { - icon = "", + fsscript = { + class = "dev-fsharp", color = "#36677c", cterm_color = "24", + icon = "", name = "Fsscript", }, - ["fsx"] = { - icon = "", + fsx = { + class = "dev-fsharp", color = "#36677c", cterm_color = "24", + icon = "", name = "Fsx", }, - ["gd"] = { - icon = "", + gd = { + class = "seti-config", color = "#526064", cterm_color = "59", + icon = "", name = "GDScript", }, - ["gemspec"] = { - icon = "", + gemspec = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Gemspec", }, - ["gif"] = { - icon = "", + gif = { + class = "seti-image", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Gif", }, - ["git"] = { - icon = "", + git = { + class = "dev-git", color = "#b5391e", cterm_color = "160", + icon = "", name = "GitLogo", }, - ["glb"] = { - icon = "", + glb = { + class = "fa-cube", color = "#80581e", cterm_color = "94", + icon = "", name = "BinaryGLTF", }, - ["gnumakefile"] = { - icon = "", + gnumakefile = { + class = "dev-gnu", color = "#526064", cterm_color = "59", + icon = "", name = "Makefile", }, - ["go"] = { - icon = "", + go = { + class = "seti-go", color = "#36677c", cterm_color = "24", + icon = "", name = "Go", }, - ["godot"] = { - icon = "", + godot = { + class = "dev-code_badge", color = "#526064", cterm_color = "59", + icon = "", name = "GodotProject", }, - ["gql"] = { - icon = "", + gql = { + class = "fa-connectdevelop", color = "#ac2880", cterm_color = "126", + icon = "", name = "GraphQL", }, - ["graphql"] = { - icon = "", + graphql = { + class = "fa-connectdevelop", color = "#ac2880", cterm_color = "126", + icon = "", name = "GraphQL", }, - ["h"] = { - icon = "", + h = { + class = "fa-h_square", color = "#6b4d83", cterm_color = "96", + icon = "", name = "H", }, - ["haml"] = { - icon = "", + haml = { + class = "seti-html", color = "#2f2f2d", cterm_color = "236", + icon = "", name = "Haml", }, - ["hx"] = { - icon = "", - color = "#9c5715", - cterm_color = "130", - name = "Haxe", - }, - ["hbs"] = { - icon = "", + hbs = { + class = "seti-mustache", color = "#a04f1d", cterm_color = "130", + icon = "", name = "Hbs", }, - ["heex"] = { - icon = "", + heex = { + class = "seti-elixir", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Heex", }, - ["hh"] = { - icon = "", + hh = { + class = "fa-h_square", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Hh", }, - ["hpp"] = { - icon = "", + hpp = { + class = "fa-h_square", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Hpp", }, - ["hrl"] = { - icon = "", + hrl = { + class = "dev-erlang", color = "#8a2b72", cterm_color = "89", + icon = "", name = "Hrl", }, - ["hs"] = { - icon = "", + hs = { + class = "seti-haskell", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Hs", }, - ["htm"] = { - icon = "", + htm = { + class = "seti-html", color = "#aa391c", cterm_color = "124", + icon = "", name = "Htm", }, - ["html"] = { - icon = "", + html = { + class = "dev-html5", color = "#ab3a1c", cterm_color = "124", + icon = "", name = "Html", }, - ["huff"] = { - icon = "󰡘", + huff = { + class = "md-chess_knight", color = "#4242c7", cterm_color = "56", + icon = "󰡘", name = "Huff", }, - ["hurl"] = { - icon = "", + hurl = { + class = "fa-exchange", color = "#bf0266", cterm_color = "125", + icon = "", name = "Hurl", }, - ["hxx"] = { - icon = "", + hx = { + class = "seti-haxe", + color = "#9c5715", + cterm_color = "130", + icon = "", + name = "Haxe", + }, + hxx = { + class = "fa-h_square", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Hxx", }, - ["ixx"] = { - icon = "", - color = "#36677c", - cterm_color = "24", - name = "Ixx", - }, - ["ico"] = { - icon = "", + ico = { + class = "seti-image", color = "#666620", cterm_color = "58", + icon = "", name = "Ico", }, - ["import"] = { - icon = "", + import = { + class = "fa-paperclip", color = "#2f2f2f", cterm_color = "236", + icon = "", name = "ImportConfiguration", }, - ["ini"] = { - icon = "", + ini = { + class = "seti-config", color = "#526064", cterm_color = "59", + icon = "", name = "Ini", }, - ["ino"] = { - icon = "", + ino = { + class = "linux-arduino", color = "#397981", cterm_color = "30", + icon = "", name = "arduino", }, - ["ipynb"] = { - icon = "", + ipynb = { + class = "seti-python", color = "#366b8a", cterm_color = "24", + icon = "", name = "Notebook", }, - ["java"] = { - icon = "", + ixx = { + class = "custom-cpp", + color = "#36677c", + cterm_color = "24", + icon = "", + name = "Ixx", + }, + java = { + class = "dev-java", color = "#992e33", cterm_color = "88", + icon = "", name = "Java", }, - ["jl"] = { - icon = "", + jl = { + class = "seti-julia", color = "#6c4b7c", cterm_color = "96", + icon = "", name = "Jl", }, - ["jpeg"] = { - icon = "", + jpeg = { + class = "seti-image", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Jpeg", }, - ["jpg"] = { - icon = "", + jpg = { + class = "seti-image", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Jpg", }, - ["js"] = { - icon = "󰌞", + js = { + class = "md-language_javascript", color = "#505011", cterm_color = "58", + icon = "󰌞", name = "Js", }, - ["json"] = { - icon = "", + json = { + class = "seti-json", color = "#666620", cterm_color = "58", + icon = "", name = "Json", }, - ["json5"] = { - icon = "", + json5 = { + class = "seti-json", color = "#666620", cterm_color = "58", + icon = "", name = "Json5", }, - ["jsonc"] = { - icon = "", + jsonc = { + class = "seti-json", color = "#666620", cterm_color = "58", + icon = "", name = "Jsonc", }, - ["jsx"] = { - icon = "", + jsx = { + class = "seti-react", color = "#158197", cterm_color = "31", + icon = "", name = "Jsx", }, - ["jxl"] = { - icon = "", + jxl = { + class = "seti-image", color = "#6b4d83", cterm_color = "96", + icon = "", name = "JpegXl", }, - ["ksh"] = { - icon = "", + ksh = { + class = "dev-terminal", color = "#3a4446", cterm_color = "238", + icon = "", name = "Ksh", }, - ["kt"] = { - icon = "", + kt = { + class = "seti-kotlin", color = "#5f3ebf", cterm_color = "92", + icon = "", name = "Kotlin", }, - ["kts"] = { - icon = "", + kts = { + class = "seti-kotlin", color = "#5f3ebf", cterm_color = "92", + icon = "", name = "KotlinScript", }, - ["leex"] = { - icon = "", + leex = { + class = "seti-elixir", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Leex", }, - ["less"] = { - icon = "", + less = { + class = "seti-css", color = "#563d7c", cterm_color = "54", + icon = "", name = "Less", }, - ["lhs"] = { - icon = "", + lhs = { + class = "seti-haskell", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Lhs", }, - ["license"] = { - icon = "", + license = { + class = "seti-license", color = "#666620", cterm_color = "58", + icon = "", name = "License", }, - ["liquid"] = { - icon = "", + liquid = { + class = "seti-liquid", color = "#4a6024", cterm_color = "58", + icon = "", name = "Liquid", }, - ["lock"] = { - icon = "", + lock = { + class = "fa-unlock_alt", color = "#5e5e5e", cterm_color = "59", + icon = "", name = "Lock", }, - ["log"] = { - icon = "󰌱", + log = { + class = "md-library", color = "#4a4a4a", cterm_color = "239", + icon = "󰌱", name = "Log", }, - ["lua"] = { - icon = "", + lua = { + class = "seti-lua", color = "#366b8a", cterm_color = "24", + icon = "", name = "Lua", }, - ["luau"] = { - icon = "", + luau = { + class = "seti-lua", color = "#007abf", cterm_color = "32", + icon = "", name = "Luau", }, - ["mpp"] = { - icon = "", - color = "#36677c", - cterm_color = "24", - name = "Mpp", - }, - ["m4a"] = { - icon = "", + m4a = { + class = "fa-music", color = "#336c78", cterm_color = "23", + icon = "", name = "M4A", }, - ["m4v"] = { - icon = "", + m4v = { + class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", + icon = "", name = "M4V", }, - ["makefile"] = { - icon = "", + makefile = { + class = "dev-gnu", color = "#526064", cterm_color = "59", + icon = "", name = "Makefile", }, - ["markdown"] = { - icon = "", + markdown = { + class = "seti-markdown", color = "#4a4a4a", cterm_color = "239", + icon = "", name = "Markdown", }, - ["material"] = { - icon = "󰔉", + material = { + class = "md-image_filter_hdr", color = "#8a2b72", cterm_color = "89", + icon = "󰔉", name = "Material", }, - ["md"] = { - icon = "", + md = { + class = "oct-markdown", color = "#4a4a4a", cterm_color = "239", + icon = "", name = "Md", }, - ["mdx"] = { - icon = "", + mdx = { + class = "oct-markdown", color = "#36677c", cterm_color = "24", + icon = "", name = "Mdx", }, - ["mint"] = { - icon = "󰌪", + mint = { + class = "md-leaf", color = "#44604a", cterm_color = "23", + icon = "󰌪", name = "Mint", }, - ["mjs"] = { - icon = "󰌞", + mjs = { + class = "md-language_javascript", color = "#505011", cterm_color = "58", + icon = "󰌞", name = "Mjs", }, - ["mk"] = { - icon = "", + mk = { + class = "dev-gnu", color = "#526064", cterm_color = "59", + icon = "", name = "Makefile", }, - ["mkv"] = { - icon = "", + mkv = { + class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", + icon = "", name = "Mkv", }, - ["ml"] = { - icon = "", + ml = { + class = "seti-ocaml", color = "#975122", cterm_color = "130", + icon = "", name = "Ml", }, - ["mli"] = { - icon = "", + mli = { + class = "seti-ocaml", color = "#975122", cterm_color = "130", + icon = "", name = "Mli", }, - ["mo"] = { - icon = "∞", + mo = { + class = "md-infinity", color = "#654ca7", cterm_color = "61", + icon = "󰛤", name = "Motoko", }, - ["mov"] = { - icon = "", + mov = { + class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", + icon = "", name = "MOV", }, - ["mp3"] = { - icon = "", + mp3 = { + class = "fa-music", color = "#336c78", cterm_color = "23", + icon = "", name = "Mp3", }, - ["mp4"] = { - icon = "", + mp4 = { + class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", + icon = "", name = "Mp4", }, - ["mts"] = { - icon = "", + mpp = { + class = "custom-cpp", + color = "#36677c", + cterm_color = "24", + icon = "", + name = "Mpp", + }, + mts = { + class = "seti-typescript", color = "#36677c", cterm_color = "24", + icon = "", name = "Mts", }, - ["mustache"] = { - icon = "", + mustache = { + class = "seti-mustache", color = "#975122", cterm_color = "130", + icon = "", name = "Mustache", }, - ["nim"] = { - icon = "", + nim = { + class = "seti-nim", color = "#514700", cterm_color = "58", + icon = "", name = "Nim", }, - ["nix"] = { - icon = "", + nix = { + class = "linux-nixos", color = "#3f5d72", cterm_color = "24", + icon = "", name = "Nix", }, - ["nswag"] = { - icon = "", + nswag = { + class = "seti-json", color = "#427516", cterm_color = "28", + icon = "", name = "Nswag", }, - ["nu"] = { - icon = ">", + nu = { + class = "fa-chevron_right", color = "#276f4e", cterm_color = "29", + icon = "", name = "Nushell", }, - ["ogg"] = { - icon = "", + ogg = { + class = "fa-music", color = "#336c78", cterm_color = "23", + icon = "", name = "Ogg", }, - ["opus"] = { - icon = "󰈣", + opus = { + class = "md-file_music", color = "#a55c01", cterm_color = "130", + icon = "󰈣", name = "OPUS", }, - ["org"] = { - icon = "", + org = { + class = "custom-orgmode", color = "#4f7166", cterm_color = "66", + icon = "", name = "OrgMode", }, - ["otf"] = { - icon = "", + otf = { + class = "fa-font", color = "#2f2f2f", cterm_color = "236", + icon = "", name = "OpenTypeFont", }, - ["out"] = { - icon = "", + out = { + class = "cod-file_binary", color = "#9F0500", cterm_color = "124", + icon = "", name = "Out", }, - ["pck"] = { - icon = "", + pck = { + class = "oct-package", color = "#526064", cterm_color = "59", + icon = "", name = "PackedResource", }, - ["pdf"] = { - icon = "", + pdf = { + class = "cod-file_pdf", color = "#b30b00", cterm_color = "124", + icon = "", name = "Pdf", }, - ["php"] = { - icon = "", + php = { + class = "seti-php", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Php", }, - ["pl"] = { - icon = "", + pl = { + class = "dev-perl", color = "#36677c", cterm_color = "24", + icon = "", name = "Pl", }, - ["pm"] = { - icon = "", + pm = { + class = "dev-perl", color = "#36677c", cterm_color = "24", + icon = "", name = "Pm", }, - ["png"] = { - icon = "", + png = { + class = "seti-image", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Png", }, - ["pp"] = { - icon = "", + pp = { + class = "seti-puppet", color = "#80530d", cterm_color = "94", + icon = "", name = "Pp", }, - ["ppt"] = { - icon = "󰈧", + ppt = { + class = "md-file_powerpoint", color = "#983826", cterm_color = "124", + icon = "󰈧", name = "Ppt", }, - ["prisma"] = { - icon = "", + prisma = { + class = "seti-prisma", color = "#444da2", cterm_color = "61", + icon = "", name = "Prisma", }, - ["pro"] = { - icon = "", + pro = { + class = "dev-prolog", color = "#725c2a", cterm_color = "94", + icon = "", name = "Prolog", }, - ["ps1"] = { - icon = "󰨊", + ps1 = { + class = "md-powershell", color = "#325698", cterm_color = "25", - name = "PsScriptfile", - }, - ["psd1"] = { icon = "󰨊", - color = "#4f5893", - cterm_color = "60", - name = "PsManifestfile", - }, - ["psm1"] = { - icon = "󰨊", - color = "#4f5893", - cterm_color = "60", - name = "PsScriptModulefile", + name = "PsScriptfile", }, - ["psb"] = { - icon = "", + psb = { + class = "dev-photoshop", color = "#36677c", cterm_color = "24", + icon = "", name = "Psb", }, - ["psd"] = { - icon = "", + psd = { + class = "dev-photoshop", color = "#36677c", cterm_color = "24", + icon = "", name = "Psd", }, - ["pxd"] = { - icon = "", + psd1 = { + class = "md-powershell", + color = "#4f5893", + cterm_color = "60", + icon = "󰨊", + name = "PsManifestfile", + }, + psm1 = { + class = "md-powershell", + color = "#4f5893", + cterm_color = "60", + icon = "󰨊", + name = "PsScriptModulefile", + }, + pxd = { + class = "seti-python", color = "#3c6f98", cterm_color = "24", + icon = "", name = "Pxd", }, - ["pxi"] = { - icon = "", + pxi = { + class = "seti-python", color = "#3c6f98", cterm_color = "24", + icon = "", name = "Pxi", }, - ["py"] = { - icon = "", + py = { + class = "seti-python", color = "#805e02", cterm_color = "94", + icon = "", name = "Py", }, - ["pyc"] = { - icon = "", + pyc = { + class = "seti-python", color = "#332d1d", cterm_color = "236", + icon = "", name = "Pyc", }, - ["pyd"] = { - icon = "", + pyd = { + class = "seti-python", color = "#332d1d", cterm_color = "236", + icon = "", name = "Pyd", }, - ["pyi"] = { - icon = "", + pyi = { + class = "seti-python", color = "#805e02", cterm_color = "94", + icon = "", name = "Pyi", }, - ["pyo"] = { - icon = "", + pyo = { + class = "seti-python", color = "#332d1d", cterm_color = "236", + icon = "", name = "Pyo", }, - ["pyx"] = { - icon = "", + pyx = { + class = "seti-python", color = "#3c6f98", cterm_color = "24", + icon = "", name = "Pyx", }, - ["query"] = { - icon = "", + query = { + class = "fae-tree", color = "#607035", cterm_color = "58", + icon = "", name = "Query", }, - ["r"] = { - icon = "󰟔", + r = { + class = "md-language_r", color = "#1a4c8c", cterm_color = "25", + icon = "󰟔", name = "R", }, - ["rake"] = { - icon = "", + rake = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Rake", }, - ["razor"] = { - icon = "󱦘", + razor = { + class = "md-razor_single_edge", color = "#512bd4", cterm_color = "56", + icon = "󱦘", name = "RazorPage", }, - ["rb"] = { - icon = "", + rb = { + class = "dev-ruby_rough", color = "#701516", cterm_color = "52", + icon = "", name = "Rb", }, - ["res"] = { - icon = "", + res = { + class = "seti-rescript", color = "#992e33", cterm_color = "88", + icon = "", name = "ReScript", }, - ["resi"] = { - icon = "", + resi = { + class = "seti-rescript", color = "#a33759", cterm_color = "125", + icon = "", name = "ReScriptInterface", }, - ["rlib"] = { - icon = "", + rlib = { + class = "dev-rust", color = "#6f5242", cterm_color = "95", + icon = "", name = "Rlib", }, - ["rmd"] = { - icon = "", + rmd = { + class = "seti-markdown", color = "#36677c", cterm_color = "24", + icon = "", name = "Rmd", }, - ["rproj"] = { - icon = "󰗆", + rproj = { + class = "md-vector_rectangle", color = "#286844", cterm_color = "29", + icon = "󰗆", name = "Rproj", }, - ["rs"] = { - icon = "", + rs = { + class = "seti-rust", color = "#6f5242", cterm_color = "95", + icon = "", name = "Rs", }, - ["rss"] = { - icon = "", + rss = { + class = "seti-xml", color = "#7e4e1e", cterm_color = "94", + icon = "", name = "Rss", }, - ["sass"] = { - icon = "", + sass = { + class = "seti-sass", color = "#a33759", cterm_color = "125", + icon = "", name = "Sass", }, - ["sbt"] = { - icon = "", + sbt = { + class = "dev-scala", color = "#992e33", cterm_color = "88", + icon = "", name = "sbt", }, - ["scad"] = { - icon = "", + scad = { + class = "linux-openscad", color = "#53480f", cterm_color = "58", + icon = "", name = "OpenSCAD", }, - ["scala"] = { - icon = "", + scala = { + class = "dev-scala", color = "#992e33", cterm_color = "88", + icon = "", name = "Scala", }, - ["scm"] = { - icon = "󰘧", + scm = { + class = "md-lambda", color = "#303030", cterm_color = "236", + icon = "󰘧", name = "Scheme", }, - ["scss"] = { - icon = "", + scss = { + class = "seti-sass", color = "#a33759", cterm_color = "125", + icon = "", name = "Scss", }, - ["sh"] = { - icon = "", + sh = { + class = "dev-terminal", color = "#3a4446", cterm_color = "238", + icon = "", name = "Sh", }, - ["sig"] = { - icon = "λ", + sig = { + class = "md-lambda", color = "#975122", cterm_color = "130", + icon = "󰘧", name = "Sig", }, - ["slim"] = { - icon = "", + slim = { + class = "seti-html", color = "#aa391c", cterm_color = "124", + icon = "", name = "Slim", }, - ["sln"] = { - icon = "", + sln = { + class = "dev-visualstudio", color = "#643995", cterm_color = "91", + icon = "", name = "Sln", }, - ["sml"] = { - icon = "λ", + sml = { + class = "md-lambda", color = "#975122", cterm_color = "130", + icon = "󰘧", name = "Sml", }, - ["sol"] = { - icon = "", + sol = { + class = "seti-ethereum", color = "#36677c", cterm_color = "24", + icon = "", name = "Solidity", }, ["spec.js"] = { - icon = "", + class = "oct-beaker", color = "#666620", cterm_color = "58", + icon = "", name = "SpecJs", }, ["spec.jsx"] = { - icon = "", + class = "oct-beaker", color = "#158197", cterm_color = "31", + icon = "", name = "JavaScriptReactSpec", }, ["spec.ts"] = { - icon = "", + class = "oct-beaker", color = "#36677c", cterm_color = "24", + icon = "", name = "SpecTs", }, ["spec.tsx"] = { - icon = "", + class = "oct-beaker", color = "#1354bf", cterm_color = "26", + icon = "", name = "TypeScriptReactSpec", }, - ["sql"] = { - icon = "", + sql = { + class = "dev-database", color = "#494848", cterm_color = "238", + icon = "", name = "Sql", }, - ["sqlite"] = { - icon = "", + sqlite = { + class = "dev-database", color = "#494848", cterm_color = "238", + icon = "", name = "Sql", }, - ["sqlite3"] = { - icon = "", + sqlite3 = { + class = "dev-database", color = "#494848", cterm_color = "238", + icon = "", name = "Sql", }, - ["styl"] = { - icon = "", + styl = { + class = "seti-stylus", color = "#466024", cterm_color = "22", + icon = "", name = "Styl", }, - ["sublime"] = { - icon = "", + sublime = { + class = "dev-sublime", color = "#975122", cterm_color = "130", + icon = "", name = "Suo", }, - ["suo"] = { - icon = "", + suo = { + class = "dev-visualstudio", color = "#643995", cterm_color = "91", + icon = "", name = "Suo", }, - ["sv"] = { - icon = "󰍛", + sv = { + class = "md-memory", color = "#017226", cterm_color = "22", + icon = "󰍛", name = "SystemVerilog", }, - ["svelte"] = { - icon = "", + svelte = { + class = "seti-svelte", color = "#bf2e00", cterm_color = "160", + icon = "", name = "Svelte", }, - ["svh"] = { - icon = "󰍛", - color = "#017226", - cterm_color = "22", - name = "SystemVerilog", - }, - ["svg"] = { - icon = "󰜡", + svg = { + class = "md-svg", color = "#80581e", cterm_color = "94", + icon = "󰜡", name = "Svg", }, - ["swift"] = { - icon = "", + svh = { + class = "md-memory", + color = "#017226", + cterm_color = "22", + icon = "󰍛", + name = "SystemVerilog", + }, + swift = { + class = "dev-swift", color = "#975122", cterm_color = "130", + icon = "", name = "Swift", }, - ["t"] = { - icon = "", + t = { + class = "dev-perl", color = "#36677c", cterm_color = "24", + icon = "", name = "Tor", }, - ["tbc"] = { - icon = "󰛓", + tbc = { + class = "md-feather", color = "#1e5cb3", cterm_color = "25", + icon = "󰛓", name = "Tcl", }, - ["tcl"] = { - icon = "󰛓", + tcl = { + class = "md-feather", color = "#1e5cb3", cterm_color = "25", + icon = "󰛓", name = "Tcl", }, - ["templ"] = { - icon = "", + templ = { + class = "cod-code", color = "#6e5e18", cterm_color = "58", + icon = "", name = "Templ", }, - ["terminal"] = { - icon = "", + terminal = { + class = "oct-terminal", color = "#217929", cterm_color = "28", + icon = "", name = "Terminal", }, ["test.js"] = { - icon = "", + class = "oct-beaker", color = "#666620", cterm_color = "58", + icon = "", name = "TestJs", }, ["test.jsx"] = { - icon = "", + class = "oct-beaker", color = "#158197", cterm_color = "31", + icon = "", name = "JavaScriptReactTest", }, ["test.ts"] = { - icon = "", + class = "oct-beaker", color = "#36677c", cterm_color = "24", + icon = "", name = "TestTs", }, ["test.tsx"] = { - icon = "", + class = "oct-beaker", color = "#1354bf", cterm_color = "26", + icon = "", name = "TypeScriptReactTest", }, - ["tex"] = { - icon = "󰙩", + tex = { + class = "md-text_shadow", color = "#3D6117", cterm_color = "22", + icon = "󰙩", name = "Tex", }, - ["tf"] = { - icon = "", + tf = { + class = "seti-terraform", color = "#4732af", cterm_color = "55", + icon = "", name = "Terraform", }, - ["tfvars"] = { - icon = "", + tfvars = { + class = "fa-file", color = "#4732af", cterm_color = "55", + icon = "", name = "TFVars", }, - ["toml"] = { - icon = "", + toml = { + class = "custom-toml", color = "#753219", cterm_color = "88", + icon = "", name = "Toml", }, - ["tres"] = { - icon = "", + tres = { + class = "dev-database", color = "#666620", cterm_color = "58", + icon = "", name = "TextResource", }, - ["ts"] = { - icon = "", + ts = { + class = "seti-typescript", color = "#36677c", cterm_color = "24", + icon = "", name = "Ts", }, - ["tscn"] = { - icon = "󰎁", + tscn = { + class = "md-movie", color = "#6b4d83", cterm_color = "96", + icon = "󰎁", name = "TextScene", }, - ["tsx"] = { - icon = "", + tsx = { + class = "dev-react", color = "#1354bf", cterm_color = "26", + icon = "", name = "Tsx", }, - ["ttf"] = { - icon = "", + ttf = { + class = "fa-font", color = "#2f2f2f", cterm_color = "236", + icon = "", name = "TrueTypeFont", }, - ["twig"] = { - icon = "", + twig = { + class = "seti-twig", color = "#466024", cterm_color = "22", + icon = "", name = "Twig", }, - ["txt"] = { - icon = "󰈙", + txt = { + class = "md-file_document", color = "#447028", cterm_color = "22", + icon = "󰈙", name = "Txt", }, - ["v"] = { - icon = "󰍛", + v = { + class = "md-memory", color = "#017226", cterm_color = "22", + icon = "󰍛", name = "Verilog", }, - ["vala"] = { - icon = "", + vala = { + class = "seti-vala", color = "#562b86", cterm_color = "54", + icon = "", name = "Vala", }, - ["vh"] = { - icon = "󰍛", + vh = { + class = "md-memory", color = "#017226", cterm_color = "22", + icon = "󰍛", name = "Verilog", }, - ["vhd"] = { - icon = "󰍛", + vhd = { + class = "md-memory", color = "#017226", cterm_color = "22", + icon = "󰍛", name = "VHDL", }, - ["vhdl"] = { - icon = "󰍛", + vhdl = { + class = "md-memory", color = "#017226", cterm_color = "22", + icon = "󰍛", name = "VHDL", }, - ["vim"] = { - icon = "", + vim = { + class = "custom-vim", color = "#017226", cterm_color = "22", + icon = "", name = "Vim", }, - ["vsh"] = { - icon = "", + vsh = { + class = "custom-v_lang", color = "#3e5a7f", cterm_color = "24", + icon = "", name = "Vlang", }, - ["vue"] = { - icon = "", + vue = { + class = "seti-vue", color = "#466024", cterm_color = "22", + icon = "", name = "Vue", }, - ["wav"] = { - icon = "", + wasm = { + class = "seti-wasm", + color = "#4539a4", + cterm_color = "55", + icon = "", + name = "Wasm", + }, + wav = { + class = "fa-music", color = "#336c78", cterm_color = "23", + icon = "", name = "Wav", }, - ["webm"] = { - icon = "", + webm = { + class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", + icon = "", name = "Webm", }, - ["webmanifest"] = { - icon = "", + webmanifest = { + class = "seti-json", color = "#504b1e", cterm_color = "58", + icon = "", name = "Webmanifest", }, - ["webp"] = { - icon = "", + webp = { + class = "seti-image", color = "#6b4d83", cterm_color = "96", + icon = "", name = "Webp", }, - ["webpack"] = { - icon = "󰜫", + webpack = { + class = "md-webpack", color = "#36677c", cterm_color = "24", + icon = "󰜫", name = "Webpack", }, - ["woff"] = { - icon = "", + woff = { + class = "fa-font", color = "#2f2f2f", cterm_color = "236", + icon = "", name = "WebOpenFontFormat", }, - ["woff2"] = { - icon = "", + woff2 = { + class = "fa-font", color = "#2f2f2f", cterm_color = "236", + icon = "", name = "WebOpenFontFormat", }, - ["xaml"] = { - icon = "󰙳", + xaml = { + class = "md-language_xaml", color = "#512bd4", cterm_color = "56", + icon = "󰙳", name = "Xaml", }, - ["xcplayground"] = { - icon = "", + xcplayground = { + class = "dev-swift", color = "#975122", cterm_color = "130", + icon = "", name = "XcPlayground", }, - ["xls"] = { - icon = "󰈛", + xls = { + class = "md-file_excel", color = "#207245", cterm_color = "29", + icon = "󰈛", name = "Xls", }, - ["xlsx"] = { - icon = "󰈛", + xlsx = { + class = "md-file_excel", color = "#207245", cterm_color = "29", + icon = "󰈛", name = "Xlsx", }, - ["xml"] = { - icon = "󰗀", + xml = { + class = "md-xml", color = "#975122", cterm_color = "130", + icon = "󰗀", name = "Xml", }, - ["xul"] = { - icon = "", + xul = { + class = "dev-firefox", color = "#975122", cterm_color = "130", + icon = "", name = "Xul", }, - ["yaml"] = { - icon = "", + yaml = { + class = "seti-config", color = "#526064", cterm_color = "59", + icon = "", name = "Yaml", }, - ["yml"] = { - icon = "", + yml = { + class = "seti-config", color = "#526064", cterm_color = "59", + icon = "", name = "Yml", }, - ["zig"] = { - icon = "", + zig = { + class = "seti-zig", color = "#7b4d0e", cterm_color = "94", + icon = "", name = "Zig", }, - ["zsh"] = { - icon = "", + zsh = { + class = "dev-terminal", color = "#447028", cterm_color = "22", + icon = "", name = "Zsh", }, - ["wasm"] = { - icon = "", - color = "#4539a4", - cterm_color = "55", - name = "Wasm", - }, } -local icons_by_operating_system = { - ["apple"] = { - icon = "", - color = "#515556", - cterm_color = "240", - name = "Apple", - }, - ["windows"] = { - icon = "", - color = "#007bb3", - cterm_color = "67", - name = "Windows", - }, - ["linux"] = { - icon = "", - color = "#333332", - cterm_color = "236", - name = "Linux", - }, - ["alma"] = { - icon = "", +M.icons_by_operating_system = { + alma = { + class = "linux-almalinux", color = "#bf3437", cterm_color = "160", + icon = "", name = "Almalinux", }, - ["alpine"] = { - icon = "", + alpine = { + class = "linux-alpine", color = "#0d597f", cterm_color = "24", + icon = "", name = "Alpine", }, - ["aosc"] = { - icon = "", + aosc = { + class = "linux-aosc", color = "#c00000", cterm_color = "124", + icon = "", name = "AOSC", }, - ["arch"] = { - icon = "󰣇", + apple = { + class = "seti-apple", + color = "#515556", + cterm_color = "240", + icon = "", + name = "Apple", + }, + arch = { + class = "md-arch", color = "#0b6f9e", cterm_color = "24", + icon = "󰣇", name = "Arch", }, - ["artix"] = { - icon = "", + artix = { + class = "linux-artix", color = "#2b788f", cterm_color = "31", + icon = "", name = "Artix", }, - ["budgie"] = { - icon = "", + budgie = { + class = "linux-budgie", color = "#366397", cterm_color = "25", + icon = "", name = "Budgie", }, - ["centos"] = { - icon = "", + centos = { + class = "linux-centos", color = "#7a3d6a", cterm_color = "89", + icon = "", name = "Centos", }, - ["debian"] = { - icon = "", + debian = { + class = "linux-debian", color = "#a80030", cterm_color = "88", + icon = "", name = "Debian", }, - ["deepin"] = { - icon = "", + deepin = { + class = "linux-deepin", color = "#1d6fa5", cterm_color = "24", + icon = "", name = "Deepin", }, - ["devuan"] = { - icon = "", + devuan = { + class = "linux-devuan", color = "#404a52", cterm_color = "238", + icon = "", name = "Devuan", }, - ["elementary"] = { - icon = "", + elementary = { + class = "linux-elementary", color = "#3b6081", cterm_color = "24", + icon = "", name = "Elementary", }, - ["endeavour"] = { - icon = "", + endeavour = { + class = "linux-endeavour", color = "#5c2e8b", cterm_color = "54", + icon = "", name = "Endeavour", }, - ["fedora"] = { - icon = "", + fedora = { + class = "linux-fedora", color = "#072a5e", cterm_color = "17", + icon = "", name = "Fedora", }, - ["freebsd"] = { - icon = "", + freebsd = { + class = "linux-freebsd", color = "#c90f02", cterm_color = "160", + icon = "", name = "FreeBSD", }, - ["gentoo"] = { - icon = "󰣨", + gentoo = { + class = "md-gentoo", color = "#585667", cterm_color = "60", + icon = "󰣨", name = "Gentoo", }, - ["guix"] = { - icon = "", + guix = { + class = "linux-gnu_guix", color = "#554400", cterm_color = "58", + icon = "", name = "Guix", }, - ["illumos"] = { - icon = "", + illumos = { + class = "linux-illumos", color = "#bf320b", cterm_color = "160", + icon = "", name = "Illumos", }, - ["kali"] = { - icon = "", + kali = { + class = "linux-kali_linux", color = "#1d59bf", cterm_color = "26", + icon = "", name = "Kali", }, - ["mint"] = { - icon = "󰣭", - color = "#447529", - cterm_color = "28", - name = "Mint", + linux = { + class = "cod-terminal_linux", + color = "#333332", + cterm_color = "236", + icon = "", + name = "Linux", }, - ["mageia"] = { - icon = "", + mageia = { + class = "linux-mageia", color = "#1a719f", cterm_color = "24", + icon = "", name = "Mageia", }, - ["manjaro"] = { - icon = "", + manjaro = { + class = "linux-manjaro", color = "#227b3b", cterm_color = "29", + icon = "", name = "Manjaro", }, - ["nixos"] = { - icon = "", + mint = { + class = "md-linux_mint", + color = "#447529", + cterm_color = "28", + icon = "󰣭", + name = "Mint", + }, + nixos = { + class = "linux-nixos", color = "#3d586e", cterm_color = "24", + icon = "", name = "NixOS", }, - ["openbsd"] = { - icon = "", + openbsd = { + class = "linux-openbsd", color = "#514310", cterm_color = "58", + icon = "", name = "OpenBSD", }, - ["opensuse"] = { - icon = "", + opensuse = { + class = "linux-opensuse", color = "#4a7818", cterm_color = "64", + icon = "", name = "openSUSE", }, - ["parrot"] = { - icon = "", + parrot = { + class = "linux-parrot", color = "#2a6f80", cterm_color = "23", + icon = "", name = "Parrot", }, - ["pop_os"] = { - icon = "", + pop_os = { + class = "linux-pop_os", color = "#307b85", cterm_color = "30", + icon = "", name = "Pop_OS", }, - ["raspberry_pi"] = { - icon = "", + raspberry_pi = { + class = "linux-raspberry_pi", color = "#be1848", cterm_color = "161", + icon = "", name = "RaspberryPiOS", }, - ["redhat"] = { - icon = "󱄛", + redhat = { + class = "md-redhat", color = "#EE0000", cterm_color = "196", + icon = "󱄛", name = "Redhat", }, - ["rocky"] = { - icon = "", + rocky = { + class = "linux-rocky_linux", color = "#0b865e", cterm_color = "29", + icon = "", name = "RockyLinux", }, - ["sabayon"] = { - icon = "", + sabayon = { + class = "linux-sabayon", color = "#424242", cterm_color = "238", + icon = "", name = "Sabayon", }, - ["slackware"] = { - icon = "", + slackware = { + class = "linux-slackware", color = "#35477f", cterm_color = "25", + icon = "", name = "Slackware", }, - ["solus"] = { - icon = "", + solus = { + class = "linux-solus", color = "#4b5163", cterm_color = "239", + icon = "", name = "Solus", }, - ["ubuntu"] = { - icon = "", + ubuntu = { + class = "dev-ubuntu", color = "#a6360f", cterm_color = "124", + icon = "", name = "Ubuntu", }, - ["void"] = { - icon = "", + void = { + class = "linux-void", color = "#295340", cterm_color = "23", + icon = "", name = "Void", }, - ["zorin"] = { - icon = "", + windows = { + class = "fa-windows", + color = "#007bb3", + cterm_color = "67", + icon = "", + name = "Windows", + }, + zorin = { + class = "linux-zorin", color = "#0f79ae", cterm_color = "67", + icon = "", name = "Zorin", }, } -return { - icons_by_filename = icons_by_filename, - icons_by_file_extension = icons_by_file_extension, - icons_by_operating_system = icons_by_operating_system, -} +return M diff --git a/scripts/gen-check.lua b/scripts/gen-check.lua new file mode 100644 index 000000000..d82201a54 --- /dev/null +++ b/scripts/gen-check.lua @@ -0,0 +1,42 @@ +--- one off task to check generated against original + +local inspect = require "inspect" + +local FILES = { + "default", + "light", +} + +local SOURCES = { + "icons_by_filename", + "icons_by_file_extension", + "icons_by_operating_system", +} + +for _, file in pairs(FILES) do + for _, var in pairs(SOURCES) do + print(string.format("%s %s", file, var)) + + -- original source + local froms = require("lua/nvim-web-devicons/icons-" .. file .. "-cb0c967")[var] + local tos = require("lua/nvim-web-devicons/icons-" .. file)[var] + + -- size + if #froms ~= #tos then + io.stderr:write(string.format("ERR: %d ~= %d\n", #froms, #tos)) + os.exit(1) + end + + for k, from in pairs(froms) do + local to = tos[k] + + if not to then + print("to missing " .. k) + elseif from.icon ~= to.icon then + print(string.format("%-25s '%s' ~= '%s'", k, from.icon, to.icon)) + elseif from.color ~= to.color or from.cterm_color ~= to.cterm_color or from.name ~= to.name then + io.stderr:write(string.format("%s: %s ~= %s\n", k, inspect(from), inspect(to))) + end + end + end +end diff --git a/scripts/gen-icons.lua b/scripts/gen-icons.lua new file mode 100644 index 000000000..d654f9f24 --- /dev/null +++ b/scripts/gen-icons.lua @@ -0,0 +1,65 @@ +--- generate lua/nvim-web-devicons/icons-default.lua from src/by-*.lua + +local inspect = require "inspect" +local glyphnames = require "src/glyphnames" + +local OUT = "lua/nvim-web-devicons/icons-default.lua" + +-- tables in output mapped to each source file, arraylike to preserve order +local SOURCES = { + { var = "icons_by_filename", file = "src/by-name" }, + { var = "icons_by_file_extension", file = "src/by-ext" }, + { var = "icons_by_operating_system", file = "src/by-os" }, +} + +-- icons not yet available +local OVERRIDES = { + -- by filename + [".prettierrc"] = "", +} + +-- create the file from scratch +os.remove(OUT) +local file, err = io.open(OUT, "a") +if not file then + io.stderr:write(err .. "\n") + os.exit(1) +end +io.output(file) +io.write "local M = {}\n\n" + +-- generate all bys +for _, src in pairs(SOURCES) do + print(src.file .. ".lua") + + -- generate populated icons + local icons = {} + for key, glyph in pairs(require(src.file)) do + local icon + + if OVERRIDES[key] then + icon = OVERRIDES[key] + else + local glyphname = glyphnames[glyph.class] + if not glyphname then + io.stderr:write(string.format("ERR: %-25s no icon for class %s\n", key, glyph.class)) + os.exit(1) + else + icon = glyphname.char + end + end + + icons[key] = { + icon = icon, + class = glyph.class, + color = glyph.color, + name = glyph.name, + } + end + + -- output as lua map + io.write(string.format("M.%s = %s\n\n", src.var, inspect(icons))) +end + +io.write "return M\n" +io.close(file) diff --git a/scripts/generate_colors.lua b/scripts/generate_colors.lua index f53aecd52..42195f2f3 100644 --- a/scripts/generate_colors.lua +++ b/scripts/generate_colors.lua @@ -129,32 +129,31 @@ print "Generating file with icons for light backgrounds..." -- move to first line vim.cmd ":1" +local lines0 = { "local M = {}", "" } + -- first table -if fn.search("^local icons_by_filename", "c") == 0 then +if fn.search("^M.icons_by_filename", "c") == 0 then error_exit("Table 'icons_by_filename' not found in lua/nvim-web-devicons/icons-default.lua", 1) end -local lines = generate_lines() +local lines1 = generate_lines() -- second table -if fn.search("^local icons_by_file_extension", "c") == 0 then +if fn.search("^M.icons_by_file_extension", "c") == 0 then error_exit("Table 'icons_by_file_extension' not found in lua/nvim-web-devicons/icons-default.lua", 1) end local lines2 = generate_lines() -- third table -if fn.search("^local icons_by_operating_system", "c") == 0 then +if fn.search("^M.icons_by_operating_system", "c") == 0 then error_exit("Table 'icons_by_operating_system' not found in lua/nvim-web-devicons/icons-default.lua", 1) end local lines3 = generate_lines() -table.insert(lines3, "return {") -table.insert(lines3, " icons_by_filename = icons_by_filename,") -table.insert(lines3, " icons_by_file_extension = icons_by_file_extension,") -table.insert(lines3, " icons_by_operating_system = icons_by_operating_system,") -table.insert(lines3, "}") +table.insert(lines3, "return M") -- write both tables to file -fn.writefile(lines, "lua/nvim-web-devicons/icons-light.lua") +fn.writefile(lines0, "lua/nvim-web-devicons/icons-light.lua") +fn.writefile(lines1, "lua/nvim-web-devicons/icons-light.lua", "a") fn.writefile(lines2, "lua/nvim-web-devicons/icons-light.lua", "a") fn.writefile(lines3, "lua/nvim-web-devicons/icons-light.lua", "a") diff --git a/src/by-ext.lua b/src/by-ext.lua new file mode 100644 index 000000000..9f75cdb89 --- /dev/null +++ b/src/by-ext.lua @@ -0,0 +1,1347 @@ +return { + Dockerfile = { + class = "md-docker", + color = "#458ee6", + name = "Dockerfile", + }, + R = { + class = "md-language_r", + color = "#2266ba", + name = "R", + }, + aac = { + class = "fa-music", + color = "#66D8EF", + name = "Aac", + }, + ai = { + class = "dev-illustrator", + color = "#cbcb41", + name = "Ai", + }, + app = { + class = "cod-file_binary", + color = "#9F0500", + name = "App", + }, + applescript = { + class = "fa-apple", + color = "#6d8085", + name = "AppleScript", + }, + awk = { + class = "dev-terminal", + color = "#4d5a5e", + name = "Awk", + }, + azcli = { + class = "cod-azure_devops", + color = "#0078d4", + name = "AzureCli", + }, + bak = { + class = "md-backup_restore", + color = "#6d8086", + name = "Backup", + }, + bash = { + class = "dev-terminal", + color = "#89e051", + name = "Bash", + }, + bat = { + class = "seti-config", + color = "#C1F12E", + name = "Bat", + }, + bazel = { + class = "seti-bazel", + color = "#89e051", + name = "Bazel", + }, + bib = { + class = "md-bookshelf", + color = "#cbcb41", + name = "BibTeX", + }, + bmp = { + class = "seti-image", + color = "#a074c4", + name = "Bmp", + }, + bzl = { + class = "seti-bazel", + color = "#89e051", + name = "Bzl", + }, + c = { + class = "custom-c", + color = "#599eff", + name = "C", + }, + ["c++"] = { + class = "custom-cpp", + color = "#f34b7d", + name = "CPlusPlus", + }, + cbl = { + class = "seti-config", + color = "#005ca5", + name = "Cobol", + }, + cc = { + class = "custom-cpp", + color = "#f34b7d", + name = "CPlusPlus", + }, + ccm = { + class = "custom-cpp", + color = "#f34b7d", + name = "CPlusPlusModule", + }, + cfg = { + class = "dev-code_badge", + color = "#ECECEC", + name = "Configuration", + }, + cjs = { + class = "md-language_javascript", + color = "#F1F134", + name = "Cjs", + }, + clj = { + class = "dev-clojure", + color = "#8dc149", + name = "Clojure", + }, + cljc = { + class = "dev-clojure", + color = "#8dc149", + name = "ClojureC", + }, + cljd = { + class = "dev-clojure_alt", + color = "#519aba", + name = "ClojureDart", + }, + cljs = { + class = "dev-clojure_alt", + color = "#519aba", + name = "ClojureJS", + }, + cmake = { + class = "seti-config", + color = "#6d8086", + name = "CMake", + }, + cob = { + class = "seti-config", + color = "#005ca5", + name = "Cobol", + }, + cobol = { + class = "seti-config", + color = "#005ca5", + name = "Cobol", + }, + coffee = { + class = "seti-coffee", + color = "#cbcb41", + name = "Coffee", + }, + conf = { + class = "seti-config", + color = "#6d8086", + name = "Conf", + }, + ["config.ru"] = { + class = "dev-ruby_rough", + color = "#701516", + name = "ConfigRu", + }, + cp = { + class = "custom-cpp", + color = "#519aba", + name = "Cp", + }, + cpp = { + class = "custom-cpp", + color = "#519aba", + name = "Cpp", + }, + cppm = { + class = "custom-cpp", + color = "#519aba", + name = "Cppm", + }, + cpy = { + class = "seti-config", + color = "#005ca5", + name = "Cobol", + }, + cr = { + class = "seti-crystal", + color = "#c8c8c8", + name = "Crystal", + }, + cs = { + class = "md-language_csharp", + color = "#596706", + name = "Cs", + }, + csh = { + class = "dev-terminal", + color = "#4d5a5e", + name = "Csh", + }, + cshtml = { + class = "md-razor_double_edge", + color = "#512bd4", + name = "RazorPage", + }, + cson = { + class = "seti-json", + color = "#cbcb41", + name = "Cson", + }, + csproj = { + class = "md-dot_net", + color = "#512bd4", + name = "CSharpProject", + }, + css = { + class = "dev-css3", + color = "#42a5f5", + name = "Css", + }, + csv = { + class = "seti-csv", + color = "#89e051", + name = "Csv", + }, + cts = { + class = "seti-typescript", + color = "#519aba", + name = "Cts", + }, + cu = { + class = "seti-cu", + color = "#89e051", + name = "cuda", + }, + cuh = { + class = "seti-cu", + color = "#a074c4", + name = "cudah", + }, + cxx = { + class = "custom-cpp", + color = "#519aba", + name = "Cxx", + }, + cxxm = { + class = "custom-cpp", + color = "#519aba", + name = "Cxxm", + }, + d = { + class = "dev-dlang", + color = "#427819", + name = "D", + }, + dart = { + class = "dev-dart", + color = "#03589C", + name = "Dart", + }, + db = { + class = "dev-database", + color = "#dad8d8", + name = "Db", + }, + desktop = { + class = "fa-desktop", + color = "#563d7c", + name = "DesktopEntry", + }, + diff = { + class = "dev-git_compare", + color = "#41535b", + name = "Diff", + }, + doc = { + class = "md-file_word", + color = "#185abd", + name = "Doc", + }, + docx = { + class = "md-file_word", + color = "#185abd", + name = "Docx", + }, + drl = { + class = "fae-brain", + color = "#ffafaf", + name = "Drools", + }, + dropbox = { + class = "dev-dropbox", + color = "#0061FE", + name = "Dropbox", + }, + dump = { + class = "dev-database", + color = "#dad8d8", + name = "Dump", + }, + edn = { + class = "dev-clojure_alt", + color = "#519aba", + name = "Edn", + }, + eex = { + class = "seti-elixir", + color = "#a074c4", + name = "Eex", + }, + ejs = { + class = "seti-html", + color = "#cbcb41", + name = "Ejs", + }, + elf = { + class = "cod-file_binary", + color = "#9F0500", + name = "Elf", + }, + elm = { + class = "seti-elm", + color = "#519aba", + name = "Elm", + }, + eot = { + class = "fa-font", + color = "#ECECEC", + name = "EmbeddedOpenTypeFont", + }, + epp = { + class = "seti-puppet", + color = "#FFA61A", + name = "Epp", + }, + erb = { + class = "seti-html", + color = "#701516", + name = "Erb", + }, + erl = { + class = "dev-erlang", + color = "#B83998", + name = "Erl", + }, + ex = { + class = "seti-elixir", + color = "#a074c4", + name = "Ex", + }, + exe = { + class = "cod-file_binary", + color = "#9F0500", + name = "Exe", + }, + exs = { + class = "seti-elixir", + color = "#a074c4", + name = "Exs", + }, + ["f#"] = { + class = "dev-fsharp", + color = "#519aba", + name = "Fsharp", + }, + f90 = { + class = "md-language_fortran", + color = "#734f96", + name = "Fortran", + }, + fish = { + class = "dev-terminal", + color = "#4d5a5e", + name = "Fish", + }, + flac = { + class = "fa-music", + color = "#66D8EF", + name = "Flac", + }, + fnl = { + class = "custom-fennel", + color = "#fff3d7", + name = "Fennel", + }, + fs = { + class = "dev-fsharp", + color = "#519aba", + name = "Fs", + }, + fsi = { + class = "dev-fsharp", + color = "#519aba", + name = "Fsi", + }, + fsscript = { + class = "dev-fsharp", + color = "#519aba", + name = "Fsscript", + }, + fsx = { + class = "dev-fsharp", + color = "#519aba", + name = "Fsx", + }, + gd = { + class = "seti-config", + color = "#6d8086", + name = "GDScript", + }, + gemspec = { + class = "dev-ruby_rough", + color = "#701516", + name = "Gemspec", + }, + gif = { + class = "seti-image", + color = "#a074c4", + name = "Gif", + }, + git = { + class = "dev-git", + color = "#F14C28", + name = "GitLogo", + }, + glb = { + class = "fa-cube", + color = "#FFB13B", + name = "BinaryGLTF", + }, + gnumakefile = { + class = "dev-gnu", + color = "#6d8086", + name = "Makefile", + }, + go = { + class = "seti-go", + color = "#519aba", + name = "Go", + }, + godot = { + class = "dev-code_badge", + color = "#6d8086", + name = "GodotProject", + }, + gql = { + class = "fa-connectdevelop", + color = "#e535ab", + name = "GraphQL", + }, + graphql = { + class = "fa-connectdevelop", + color = "#e535ab", + name = "GraphQL", + }, + h = { + class = "fa-h_square", + color = "#a074c4", + name = "H", + }, + haml = { + class = "seti-html", + color = "#eaeae1", + name = "Haml", + }, + hbs = { + class = "seti-mustache", + color = "#f0772b", + name = "Hbs", + }, + heex = { + class = "seti-elixir", + color = "#a074c4", + name = "Heex", + }, + hh = { + class = "fa-h_square", + color = "#a074c4", + name = "Hh", + }, + hpp = { + class = "fa-h_square", + color = "#a074c4", + name = "Hpp", + }, + hrl = { + class = "dev-erlang", + color = "#B83998", + name = "Hrl", + }, + hs = { + class = "seti-haskell", + color = "#a074c4", + name = "Hs", + }, + htm = { + class = "seti-html", + color = "#e34c26", + name = "Htm", + }, + html = { + class = "dev-html5", + color = "#e44d26", + name = "Html", + }, + huff = { + class = "md-chess_knight", + color = "#4242c7", + name = "Huff", + }, + hurl = { + class = "fa-exchange", + color = "#ff0288", + name = "Hurl", + }, + hx = { + class = "seti-haxe", + color = "#ea8220", + name = "Haxe", + }, + hxx = { + class = "fa-h_square", + color = "#a074c4", + name = "Hxx", + }, + ico = { + class = "seti-image", + color = "#cbcb41", + name = "Ico", + }, + import = { + class = "fa-paperclip", + color = "#ECECEC", + name = "ImportConfiguration", + }, + ini = { + class = "seti-config", + color = "#6d8086", + name = "Ini", + }, + ino = { + class = "linux-arduino", + color = "#56b6c2", + name = "arduino", + }, + ipynb = { + class = "seti-python", + color = "#51a0cf", + name = "Notebook", + }, + ixx = { + class = "custom-cpp", + color = "#519aba", + name = "Ixx", + }, + java = { + class = "dev-java", + color = "#cc3e44", + name = "Java", + }, + jl = { + class = "seti-julia", + color = "#a270ba", + name = "Jl", + }, + jpeg = { + class = "seti-image", + color = "#a074c4", + name = "Jpeg", + }, + jpg = { + class = "seti-image", + color = "#a074c4", + name = "Jpg", + }, + js = { + class = "md-language_javascript", + color = "#F1F134", + name = "Js", + }, + json = { + class = "seti-json", + color = "#cbcb41", + name = "Json", + }, + json5 = { + class = "seti-json", + color = "#cbcb41", + name = "Json5", + }, + jsonc = { + class = "seti-json", + color = "#cbcb41", + name = "Jsonc", + }, + jsx = { + class = "seti-react", + color = "#20c2e3", + name = "Jsx", + }, + jxl = { + class = "seti-image", + color = "#a074c4", + name = "JpegXl", + }, + ksh = { + class = "dev-terminal", + color = "#4d5a5e", + name = "Ksh", + }, + kt = { + class = "seti-kotlin", + color = "#7F52FF", + name = "Kotlin", + }, + kts = { + class = "seti-kotlin", + color = "#7F52FF", + name = "KotlinScript", + }, + leex = { + class = "seti-elixir", + color = "#a074c4", + name = "Leex", + }, + less = { + class = "seti-css", + color = "#563d7c", + name = "Less", + }, + lhs = { + class = "seti-haskell", + color = "#a074c4", + name = "Lhs", + }, + license = { + class = "seti-license", + color = "#cbcb41", + name = "License", + }, + liquid = { + class = "seti-liquid", + color = "#95BF47", + name = "Liquid", + }, + lock = { + class = "fa-unlock_alt", + color = "#bbbbbb", + name = "Lock", + }, + log = { + class = "md-library", + color = "#dddddd", + name = "Log", + }, + lua = { + class = "seti-lua", + color = "#51a0cf", + name = "Lua", + }, + luau = { + class = "seti-lua", + color = "#00a2ff", + name = "Luau", + }, + m4a = { + class = "fa-music", + color = "#66D8EF", + name = "M4A", + }, + m4v = { + class = "fa-video_camera", + color = "#FD971F", + name = "M4V", + }, + makefile = { + class = "dev-gnu", + color = "#6d8086", + name = "Makefile", + }, + markdown = { + class = "seti-markdown", + color = "#dddddd", + name = "Markdown", + }, + material = { + class = "md-image_filter_hdr", + color = "#B83998", + name = "Material", + }, + md = { + class = "oct-markdown", + color = "#dddddd", + name = "Md", + }, + mdx = { + class = "oct-markdown", + color = "#519aba", + name = "Mdx", + }, + mint = { + class = "md-leaf", + color = "#87c095", + name = "Mint", + }, + mjs = { + class = "md-language_javascript", + color = "#F1F134", + name = "Mjs", + }, + mk = { + class = "dev-gnu", + color = "#6d8086", + name = "Makefile", + }, + mkv = { + class = "fa-video_camera", + color = "#FD971F", + name = "Mkv", + }, + ml = { + class = "seti-ocaml", + color = "#e37933", + name = "Ml", + }, + mli = { + class = "seti-ocaml", + color = "#e37933", + name = "Mli", + }, + mo = { + class = "md-infinity", + color = "#9772FB", + name = "Motoko", + }, + mov = { + class = "fa-video_camera", + color = "#FD971F", + name = "MOV", + }, + mp3 = { + class = "fa-music", + color = "#66D8EF", + name = "Mp3", + }, + mp4 = { + class = "fa-video_camera", + color = "#FD971F", + name = "Mp4", + }, + mpp = { + class = "custom-cpp", + color = "#519aba", + name = "Mpp", + }, + mts = { + class = "seti-typescript", + color = "#519aba", + name = "Mts", + }, + mustache = { + class = "seti-mustache", + color = "#e37933", + name = "Mustache", + }, + nim = { + class = "seti-nim", + color = "#f3d400", + name = "Nim", + }, + nix = { + class = "linux-nixos", + color = "#7ebae4", + name = "Nix", + }, + nswag = { + class = "seti-json", + color = "#85ea2d", + name = "Nswag", + }, + nu = { + class = "fa-chevron_right", + color = "#3aa675", + name = "Nushell", + }, + ogg = { + class = "fa-music", + color = "#66D8EF", + name = "Ogg", + }, + opus = { + class = "md-file_music", + color = "#F88A02", + name = "OPUS", + }, + org = { + class = "custom-orgmode", + color = "#77AA99", + name = "OrgMode", + }, + otf = { + class = "fa-font", + color = "#ECECEC", + name = "OpenTypeFont", + }, + out = { + class = "cod-file_binary", + color = "#9F0500", + name = "Out", + }, + pck = { + class = "oct-package", + color = "#6d8086", + name = "PackedResource", + }, + pdf = { + class = "cod-file_pdf", + color = "#b30b00", + name = "Pdf", + }, + php = { + class = "seti-php", + color = "#a074c4", + name = "Php", + }, + pl = { + class = "dev-perl", + color = "#519aba", + name = "Pl", + }, + pm = { + class = "dev-perl", + color = "#519aba", + name = "Pm", + }, + png = { + class = "seti-image", + color = "#a074c4", + name = "Png", + }, + pp = { + class = "seti-puppet", + color = "#FFA61A", + name = "Pp", + }, + ppt = { + class = "md-file_powerpoint", + color = "#cb4a32", + name = "Ppt", + }, + prisma = { + class = "seti-prisma", + color = "#5a67d8", + name = "Prisma", + }, + pro = { + class = "dev-prolog", + color = "#e4b854", + name = "Prolog", + }, + ps1 = { + class = "md-powershell", + color = "#4273ca", + name = "PsScriptfile", + }, + psb = { + class = "dev-photoshop", + color = "#519aba", + name = "Psb", + }, + psd = { + class = "dev-photoshop", + color = "#519aba", + name = "Psd", + }, + psd1 = { + class = "md-powershell", + color = "#6975c4", + name = "PsManifestfile", + }, + psm1 = { + class = "md-powershell", + color = "#6975c4", + name = "PsScriptModulefile", + }, + pxd = { + class = "seti-python", + color = "#5aa7e4", + name = "Pxd", + }, + pxi = { + class = "seti-python", + color = "#5aa7e4", + name = "Pxi", + }, + py = { + class = "seti-python", + color = "#ffbc03", + name = "Py", + }, + pyc = { + class = "seti-python", + color = "#ffe291", + name = "Pyc", + }, + pyd = { + class = "seti-python", + color = "#ffe291", + name = "Pyd", + }, + pyi = { + class = "seti-python", + color = "#ffbc03", + name = "Pyi", + }, + pyo = { + class = "seti-python", + color = "#ffe291", + name = "Pyo", + }, + pyx = { + class = "seti-python", + color = "#5aa7e4", + name = "Pyx", + }, + query = { + class = "fae-tree", + color = "#90a850", + name = "Query", + }, + r = { + class = "md-language_r", + color = "#2266ba", + name = "R", + }, + rake = { + class = "dev-ruby_rough", + color = "#701516", + name = "Rake", + }, + razor = { + class = "md-razor_single_edge", + color = "#512bd4", + name = "RazorPage", + }, + rb = { + class = "dev-ruby_rough", + color = "#701516", + name = "Rb", + }, + res = { + class = "seti-rescript", + color = "#cc3e44", + name = "ReScript", + }, + resi = { + class = "seti-rescript", + color = "#f55385", + name = "ReScriptInterface", + }, + rlib = { + class = "dev-rust", + color = "#dea584", + name = "Rlib", + }, + rmd = { + class = "seti-markdown", + color = "#519aba", + name = "Rmd", + }, + rproj = { + class = "md-vector_rectangle", + color = "#358a5b", + name = "Rproj", + }, + rs = { + class = "seti-rust", + color = "#dea584", + name = "Rs", + }, + rss = { + class = "seti-xml", + color = "#FB9D3B", + name = "Rss", + }, + sass = { + class = "seti-sass", + color = "#f55385", + name = "Sass", + }, + sbt = { + class = "dev-scala", + color = "#cc3e44", + name = "sbt", + }, + scad = { + class = "linux-openscad", + color = "#f9d72c", + name = "OpenSCAD", + }, + scala = { + class = "dev-scala", + color = "#cc3e44", + name = "Scala", + }, + scm = { + class = "md-lambda", + color = "#eeeeee", + name = "Scheme", + }, + scss = { + class = "seti-sass", + color = "#f55385", + name = "Scss", + }, + sh = { + class = "dev-terminal", + color = "#4d5a5e", + name = "Sh", + }, + sig = { + class = "md-lambda", + color = "#e37933", + name = "Sig", + }, + slim = { + class = "seti-html", + color = "#e34c26", + name = "Slim", + }, + sln = { + class = "dev-visualstudio", + color = "#854CC7", + name = "Sln", + }, + sml = { + class = "md-lambda", + color = "#e37933", + name = "Sml", + }, + sol = { + class = "seti-ethereum", + color = "#519aba", + name = "Solidity", + }, + ["spec.js"] = { + class = "oct-beaker", + color = "#cbcb41", + name = "SpecJs", + }, + ["spec.jsx"] = { + class = "oct-beaker", + color = "#20c2e3", + name = "JavaScriptReactSpec", + }, + ["spec.ts"] = { + class = "oct-beaker", + color = "#519aba", + name = "SpecTs", + }, + ["spec.tsx"] = { + class = "oct-beaker", + color = "#1354bf", + name = "TypeScriptReactSpec", + }, + sql = { + class = "dev-database", + color = "#dad8d8", + name = "Sql", + }, + sqlite = { + class = "dev-database", + color = "#dad8d8", + name = "Sql", + }, + sqlite3 = { + class = "dev-database", + color = "#dad8d8", + name = "Sql", + }, + styl = { + class = "seti-stylus", + color = "#8dc149", + name = "Styl", + }, + sublime = { + class = "dev-sublime", + color = "#e37933", + name = "Suo", + }, + suo = { + class = "dev-visualstudio", + color = "#854CC7", + name = "Suo", + }, + sv = { + class = "md-memory", + color = "#019833", + name = "SystemVerilog", + }, + svelte = { + class = "seti-svelte", + color = "#ff3e00", + name = "Svelte", + }, + svg = { + class = "md-svg", + color = "#FFB13B", + name = "Svg", + }, + svh = { + class = "md-memory", + color = "#019833", + name = "SystemVerilog", + }, + swift = { + class = "dev-swift", + color = "#e37933", + name = "Swift", + }, + t = { + class = "dev-perl", + color = "#519aba", + name = "Tor", + }, + tbc = { + class = "md-feather", + color = "#1e5cb3", + name = "Tcl", + }, + tcl = { + class = "md-feather", + color = "#1e5cb3", + name = "Tcl", + }, + templ = { + class = "cod-code", + color = "#dbbd30", + name = "Templ", + }, + terminal = { + class = "oct-terminal", + color = "#31B53E", + name = "Terminal", + }, + ["test.js"] = { + class = "oct-beaker", + color = "#cbcb41", + name = "TestJs", + }, + ["test.jsx"] = { + class = "oct-beaker", + color = "#20c2e3", + name = "JavaScriptReactTest", + }, + ["test.ts"] = { + class = "oct-beaker", + color = "#519aba", + name = "TestTs", + }, + ["test.tsx"] = { + class = "oct-beaker", + color = "#1354bf", + name = "TypeScriptReactTest", + }, + tex = { + class = "md-text_shadow", + color = "#3D6117", + name = "Tex", + }, + tf = { + class = "seti-terraform", + color = "#5F43E9", + name = "Terraform", + }, + tfvars = { + class = "fa-file", + color = "#5F43E9", + name = "TFVars", + }, + toml = { + class = "custom-toml", + color = "#9c4221", + name = "Toml", + }, + tres = { + class = "dev-database", + color = "#cbcb41", + name = "TextResource", + }, + ts = { + class = "seti-typescript", + color = "#519aba", + name = "Ts", + }, + tscn = { + class = "md-movie", + color = "#a074c4", + name = "TextScene", + }, + tsx = { + class = "dev-react", + color = "#1354bf", + name = "Tsx", + }, + ttf = { + class = "fa-font", + color = "#ECECEC", + name = "TrueTypeFont", + }, + twig = { + class = "seti-twig", + color = "#8dc149", + name = "Twig", + }, + txt = { + class = "md-file_document", + color = "#89e051", + name = "Txt", + }, + v = { + class = "md-memory", + color = "#019833", + name = "Verilog", + }, + vala = { + class = "seti-vala", + color = "#7239b3", + name = "Vala", + }, + vh = { + class = "md-memory", + color = "#019833", + name = "Verilog", + }, + vhd = { + class = "md-memory", + color = "#019833", + name = "VHDL", + }, + vhdl = { + class = "md-memory", + color = "#019833", + name = "VHDL", + }, + vim = { + class = "custom-vim", + color = "#019833", + name = "Vim", + }, + vsh = { + class = "custom-v_lang", + color = "#5d87bf", + name = "Vlang", + }, + vue = { + class = "seti-vue", + color = "#8dc149", + name = "Vue", + }, + wasm = { + class = "seti-wasm", + color = "#5c4cdb", + name = "Wasm", + }, + wav = { + class = "fa-music", + color = "#66D8EF", + name = "Wav", + }, + webm = { + class = "fa-video_camera", + color = "#FD971F", + name = "Webm", + }, + webmanifest = { + class = "seti-json", + color = "#f1e05a", + name = "Webmanifest", + }, + webp = { + class = "seti-image", + color = "#a074c4", + name = "Webp", + }, + webpack = { + class = "md-webpack", + color = "#519aba", + name = "Webpack", + }, + woff = { + class = "fa-font", + color = "#ECECEC", + name = "WebOpenFontFormat", + }, + woff2 = { + class = "fa-font", + color = "#ECECEC", + name = "WebOpenFontFormat", + }, + xaml = { + class = "md-language_xaml", + color = "#512bd4", + name = "Xaml", + }, + xcplayground = { + class = "dev-swift", + color = "#e37933", + name = "XcPlayground", + }, + xls = { + class = "md-file_excel", + color = "#207245", + name = "Xls", + }, + xlsx = { + class = "md-file_excel", + color = "#207245", + name = "Xlsx", + }, + xml = { + class = "md-xml", + color = "#e37933", + name = "Xml", + }, + xul = { + class = "dev-firefox", + color = "#e37933", + name = "Xul", + }, + yaml = { + class = "seti-config", + color = "#6d8086", + name = "Yaml", + }, + yml = { + class = "seti-config", + color = "#6d8086", + name = "Yml", + }, + zig = { + class = "seti-zig", + color = "#f69a1b", + name = "Zig", + }, + zsh = { + class = "dev-terminal", + color = "#89e051", + name = "Zsh", + }, +} diff --git a/src/by-name.lua b/src/by-name.lua new file mode 100644 index 000000000..fb35be666 --- /dev/null +++ b/src/by-name.lua @@ -0,0 +1,342 @@ +return { + [".babelrc"] = { + class = "seti-less", + color = "#cbcb41", + name = "Babelrc", + }, + [".bash_profile"] = { + class = "seti-config", + color = "#89e051", + name = "BashProfile", + }, + [".bashrc"] = { + class = "seti-config", + color = "#89e051", + name = "Bashrc", + }, + [".dockerignore"] = { + class = "md-docker", + color = "#458ee6", + name = "Dockerfile", + }, + [".ds_store"] = { + class = "seti-config", + color = "#41535b", + name = "DsStore", + }, + [".editorconfig"] = { + class = "seti-editorconfig", + color = "#fff2f2", + name = "EditorConfig", + }, + [".env"] = { + class = "oct-sliders", + color = "#faf743", + name = "Env", + }, + [".eslintignore"] = { + class = "seti-eslint", + color = "#4b32c3", + name = "EslintIgnore", + }, + [".eslintrc"] = { + class = "seti-eslint", + color = "#4b32c3", + name = "Eslintrc", + }, + [".gitattributes"] = { + class = "dev-git", + color = "#41535b", + name = "GitAttributes", + }, + [".gitconfig"] = { + class = "seti-config", + color = "#41535b", + name = "GitConfig", + }, + [".gitignore"] = { + class = "dev-git", + color = "#41535b", + name = "GitIgnore", + }, + [".gitlab-ci.yml"] = { + class = "fa-gitlab", + color = "#e24329", + name = "GitlabCI", + }, + [".gitmodules"] = { + class = "dev-git", + color = "#41535b", + name = "GitModules", + }, + [".gvimrc"] = { + class = "custom-vim", + color = "#019833", + name = "Gvimrc", + }, + [".luaurc"] = { + class = "seti-config", + color = "#00a2ff", + name = "Luaurc", + }, + [".npmignore"] = { + class = "dev-npm", + color = "#E8274B", + name = "NPMIgnore", + }, + [".npmrc"] = { + class = "dev-npm", + color = "#E8274B", + name = "NPMrc", + }, + [".prettierrc"] = { + class = "custom-prettier", + color = "#4285F4", + name = "PrettierConfig", + }, + [".settings.json"] = { + class = "dev-visualstudio", + color = "#854CC7", + name = "SettingsJson", + }, + [".vimrc"] = { + class = "custom-vim", + color = "#019833", + name = "Vimrc", + }, + [".zprofile"] = { + class = "seti-config", + color = "#89e051", + name = "Zshprofile", + }, + [".zshenv"] = { + class = "seti-config", + color = "#89e051", + name = "Zshenv", + }, + [".zshrc"] = { + class = "seti-config", + color = "#89e051", + name = "Zshrc", + }, + R = { + class = "md-language_r", + color = "#2266ba", + name = "R", + }, + _gvimrc = { + class = "custom-vim", + color = "#019833", + name = "Gvimrc", + }, + _vimrc = { + class = "custom-vim", + color = "#019833", + name = "Vimrc", + }, + avif = { + class = "seti-image", + color = "#a074c4", + name = "Avif", + }, + brewfile = { + class = "dev-ruby_rough", + color = "#701516", + name = "Brewfile", + }, + build = { + class = "seti-bazel", + color = "#89e051", + name = "BazelBuild", + }, + ["build.zig.zon"] = { + class = "seti-zig", + color = "#f69a1b", + name = "ZigObjectNotation", + }, + checkhealth = { + class = "md-stethoscope", + color = "#75B4FB", + name = "Checkhealth", + }, + ["cmakelists.txt"] = { + class = "seti-config", + color = "#6d8086", + name = "CMakeLists", + }, + commit_editmsg = { + class = "dev-git", + color = "#41535b", + name = "GitCommit", + }, + ["compose.yaml"] = { + class = "md-docker", + color = "#458ee6", + name = "Dockerfile", + }, + ["compose.yml"] = { + class = "md-docker", + color = "#458ee6", + name = "Dockerfile", + }, + containerfile = { + class = "md-docker", + color = "#458ee6", + name = "Dockerfile", + }, + copying = { + class = "seti-license", + color = "#cbcb41", + name = "License", + }, + ["copying.lesser"] = { + class = "seti-license", + color = "#cbcb41", + name = "License", + }, + ["docker-compose.yaml"] = { + class = "md-docker", + color = "#458ee6", + name = "Dockerfile", + }, + ["docker-compose.yml"] = { + class = "md-docker", + color = "#458ee6", + name = "Dockerfile", + }, + dockerfile = { + class = "md-docker", + color = "#458ee6", + name = "Dockerfile", + }, + ["favicon.ico"] = { + class = "seti-favicon", + color = "#cbcb41", + name = "Favicon", + }, + ["gemfile$"] = { + class = "dev-ruby_rough", + color = "#701516", + name = "Gemfile", + }, + gnumakefile = { + class = "dev-gnu", + color = "#6d8086", + name = "Makefile", + }, + groovy = { + class = "dev-groovy", + color = "#4a687c", + name = "Groovy", + }, + gruntfile = { + class = "seti-grunt", + color = "#e37933", + name = "Gruntfile", + }, + gulpfile = { + class = "seti-gulp", + color = "#cc3e44", + name = "Gulpfile", + }, + license = { + class = "seti-license", + color = "#d0bf41", + name = "License", + }, + makefile = { + class = "dev-gnu", + color = "#6d8086", + name = "Makefile", + }, + ["mix.lock"] = { + class = "seti-elixir", + color = "#a074c4", + name = "MixLock", + }, + node_modules = { + class = "dev-nodejs_small", + color = "#E8274B", + name = "NodeModules", + }, + ["package-lock.json"] = { + class = "dev-npm", + color = "#7a0d21", + name = "PackageLockJson", + }, + ["package.json"] = { + class = "dev-npm", + color = "#e8274b", + name = "PackageJson", + }, + procfile = { + class = "seti-heroku", + color = "#a074c4", + name = "Procfile", + }, + ["py.typed"] = { + class = "seti-python", + color = "#ffbc03", + name = "Py.typed", + }, + r = { + class = "md-language_r", + color = "#2266ba", + name = "R", + }, + rakefile = { + class = "dev-ruby_rough", + color = "#701516", + name = "Rakefile", + }, + rmd = { + class = "seti-markdown", + color = "#519aba", + name = "Rmd", + }, + ["svelte.config.js"] = { + class = "seti-svelte", + color = "#ff3e00", + name = "SvelteConfig", + }, + ["tailwind.config.js"] = { + class = "md-tailwind", + color = "#20c2e3", + name = "TailwindConfig", + }, + ["tailwind.config.mjs"] = { + class = "md-tailwind", + color = "#20c2e3", + name = "TailwindConfig", + }, + ["tailwind.config.ts"] = { + class = "md-tailwind", + color = "#20c2e3", + name = "TailwindConfig", + }, + ["tsconfig.json"] = { + class = "seti-tsconfig", + color = "#519aba", + name = "TSConfig", + }, + unlicense = { + class = "seti-license", + color = "#d0bf41", + name = "License", + }, + ["vagrantfile$"] = { + class = "fa-linode", + color = "#1563FF", + name = "Vagrantfile", + }, + webpack = { + class = "md-webpack", + color = "#519aba", + name = "Webpack", + }, + workspace = { + class = "seti-bazel", + color = "#89e051", + name = "BazelWorkspace", + }, +} diff --git a/src/by-os.lua b/src/by-os.lua new file mode 100644 index 000000000..c491a7134 --- /dev/null +++ b/src/by-os.lua @@ -0,0 +1,192 @@ +return { + alma = { + class = "linux-almalinux", + color = "#ff4649", + name = "Almalinux", + }, + alpine = { + class = "linux-alpine", + color = "#0d597f", + name = "Alpine", + }, + aosc = { + class = "linux-aosc", + color = "#c00000", + name = "AOSC", + }, + apple = { + class = "seti-apple", + color = "#A2AAAD", + name = "Apple", + }, + arch = { + class = "md-arch", + color = "#0f94d2", + name = "Arch", + }, + artix = { + class = "linux-artix", + color = "#41b4d7", + name = "Artix", + }, + budgie = { + class = "linux-budgie", + color = "#5195e3", + name = "Budgie", + }, + centos = { + class = "linux-centos", + color = "#a2518d", + name = "Centos", + }, + debian = { + class = "linux-debian", + color = "#a80030", + name = "Debian", + }, + deepin = { + class = "linux-deepin", + color = "#2ca7f8", + name = "Deepin", + }, + devuan = { + class = "linux-devuan", + color = "#404a52", + name = "Devuan", + }, + elementary = { + class = "linux-elementary", + color = "#5890c2", + name = "Elementary", + }, + endeavour = { + class = "linux-endeavour", + color = "#7b3db9", + name = "Endeavour", + }, + fedora = { + class = "linux-fedora", + color = "#072a5e", + name = "Fedora", + }, + freebsd = { + class = "linux-freebsd", + color = "#c90f02", + name = "FreeBSD", + }, + gentoo = { + class = "md-gentoo", + color = "#b1abce", + name = "Gentoo", + }, + guix = { + class = "linux-gnu_guix", + color = "#ffcc00", + name = "Guix", + }, + illumos = { + class = "linux-illumos", + color = "#ff430f", + name = "Illumos", + }, + kali = { + class = "linux-kali_linux", + color = "#2777ff", + name = "Kali", + }, + linux = { + class = "cod-terminal_linux", + color = "#fdfdfb", + name = "Linux", + }, + mageia = { + class = "linux-mageia", + color = "#2397d4", + name = "Mageia", + }, + manjaro = { + class = "linux-manjaro", + color = "#33b959", + name = "Manjaro", + }, + mint = { + class = "md-linux_mint", + color = "#66af3d", + name = "Mint", + }, + nixos = { + class = "linux-nixos", + color = "#7ab1db", + name = "NixOS", + }, + openbsd = { + class = "linux-openbsd", + color = "#f2ca30", + name = "OpenBSD", + }, + opensuse = { + class = "linux-opensuse", + color = "#6fb424", + name = "openSUSE", + }, + parrot = { + class = "linux-parrot", + color = "#54deff", + name = "Parrot", + }, + pop_os = { + class = "linux-pop_os", + color = "#48b9c7", + name = "Pop_OS", + }, + raspberry_pi = { + class = "linux-raspberry_pi", + color = "#be1848", + name = "RaspberryPiOS", + }, + redhat = { + class = "md-redhat", + color = "#EE0000", + name = "Redhat", + }, + rocky = { + class = "linux-rocky_linux", + color = "#0fb37d", + name = "RockyLinux", + }, + sabayon = { + class = "linux-sabayon", + color = "#c6c6c6", + name = "Sabayon", + }, + slackware = { + class = "linux-slackware", + color = "#475fa9", + name = "Slackware", + }, + solus = { + class = "linux-solus", + color = "#4b5163", + name = "Solus", + }, + ubuntu = { + class = "dev-ubuntu", + color = "#dd4814", + name = "Ubuntu", + }, + void = { + class = "linux-void", + color = "#295340", + name = "Void", + }, + windows = { + class = "fa-windows", + color = "#00A4EF", + name = "Windows", + }, + zorin = { + class = "linux-zorin", + color = "#14a1e8", + name = "Zorin", + }, +} diff --git a/css-class-migration/glyphnames.json b/src/glyphnames.json similarity index 100% rename from css-class-migration/glyphnames.json rename to src/glyphnames.json diff --git a/src/glyphnames.lua b/src/glyphnames.lua new file mode 100644 index 000000000..affd0e005 --- /dev/null +++ b/src/glyphnames.lua @@ -0,0 +1,37310 @@ +return { + ["cod-account"] = { + ["char"] = "", + ["code"] = "eb99", + }, + ["cod-activate_breakpoints"] = { + ["char"] = "", + ["code"] = "ea97", + }, + ["cod-add"] = { + ["char"] = "", + ["code"] = "ea60", + }, + ["cod-archive"] = { + ["char"] = "", + ["code"] = "ea98", + }, + ["cod-arrow_both"] = { + ["char"] = "", + ["code"] = "ea99", + }, + ["cod-arrow_down"] = { + ["char"] = "", + ["code"] = "ea9a", + }, + ["cod-arrow_left"] = { + ["char"] = "", + ["code"] = "ea9b", + }, + ["cod-arrow_right"] = { + ["char"] = "", + ["code"] = "ea9c", + }, + ["cod-arrow_small_down"] = { + ["char"] = "", + ["code"] = "ea9d", + }, + ["cod-arrow_small_left"] = { + ["char"] = "", + ["code"] = "ea9e", + }, + ["cod-arrow_small_right"] = { + ["char"] = "", + ["code"] = "ea9f", + }, + ["cod-arrow_small_up"] = { + ["char"] = "", + ["code"] = "eaa0", + }, + ["cod-arrow_swap"] = { + ["char"] = "", + ["code"] = "ebcb", + }, + ["cod-arrow_up"] = { + ["char"] = "", + ["code"] = "eaa1", + }, + ["cod-azure"] = { + ["char"] = "", + ["code"] = "ebd8", + }, + ["cod-azure_devops"] = { + ["char"] = "", + ["code"] = "ebe8", + }, + ["cod-beaker"] = { + ["char"] = "", + ["code"] = "ea79", + }, + ["cod-beaker_stop"] = { + ["char"] = "", + ["code"] = "ebe1", + }, + ["cod-bell"] = { + ["char"] = "", + ["code"] = "eaa2", + }, + ["cod-bell_dot"] = { + ["char"] = "", + ["code"] = "eb9a", + }, + ["cod-bold"] = { + ["char"] = "", + ["code"] = "eaa3", + }, + ["cod-book"] = { + ["char"] = "", + ["code"] = "eaa4", + }, + ["cod-bookmark"] = { + ["char"] = "", + ["code"] = "eaa5", + }, + ["cod-bracket_dot"] = { + ["char"] = "", + ["code"] = "ebe5", + }, + ["cod-bracket_error"] = { + ["char"] = "", + ["code"] = "ebe6", + }, + ["cod-briefcase"] = { + ["char"] = "", + ["code"] = "eaac", + }, + ["cod-broadcast"] = { + ["char"] = "", + ["code"] = "eaad", + }, + ["cod-browser"] = { + ["char"] = "", + ["code"] = "eaae", + }, + ["cod-bug"] = { + ["char"] = "", + ["code"] = "eaaf", + }, + ["cod-calendar"] = { + ["char"] = "", + ["code"] = "eab0", + }, + ["cod-call_incoming"] = { + ["char"] = "", + ["code"] = "eb92", + }, + ["cod-call_outgoing"] = { + ["char"] = "", + ["code"] = "eb93", + }, + ["cod-case_sensitive"] = { + ["char"] = "", + ["code"] = "eab1", + }, + ["cod-check"] = { + ["char"] = "", + ["code"] = "eab2", + }, + ["cod-check_all"] = { + ["char"] = "", + ["code"] = "ebb1", + }, + ["cod-checklist"] = { + ["char"] = "", + ["code"] = "eab3", + }, + ["cod-chevron_down"] = { + ["char"] = "", + ["code"] = "eab4", + }, + ["cod-chevron_left"] = { + ["char"] = "", + ["code"] = "eab5", + }, + ["cod-chevron_right"] = { + ["char"] = "", + ["code"] = "eab6", + }, + ["cod-chevron_up"] = { + ["char"] = "", + ["code"] = "eab7", + }, + ["cod-chrome_close"] = { + ["char"] = "", + ["code"] = "eab8", + }, + ["cod-chrome_maximize"] = { + ["char"] = "", + ["code"] = "eab9", + }, + ["cod-chrome_minimize"] = { + ["char"] = "", + ["code"] = "eaba", + }, + ["cod-chrome_restore"] = { + ["char"] = "", + ["code"] = "eabb", + }, + ["cod-circle"] = { + ["char"] = "", + ["code"] = "eabc", + }, + ["cod-circle_filled"] = { + ["char"] = "", + ["code"] = "ea71", + }, + ["cod-circle_large"] = { + ["char"] = "", + ["code"] = "ebb5", + }, + ["cod-circle_large_filled"] = { + ["char"] = "", + ["code"] = "ebb4", + }, + ["cod-circle_slash"] = { + ["char"] = "", + ["code"] = "eabd", + }, + ["cod-circle_small_filled"] = { + ["char"] = "", + ["code"] = "eb8a", + }, + ["cod-circuit_board"] = { + ["char"] = "", + ["code"] = "eabe", + }, + ["cod-clear_all"] = { + ["char"] = "", + ["code"] = "eabf", + }, + ["cod-clippy"] = { + ["char"] = "", + ["code"] = "eac0", + }, + ["cod-close"] = { + ["char"] = "", + ["code"] = "ea76", + }, + ["cod-close_all"] = { + ["char"] = "", + ["code"] = "eac1", + }, + ["cod-cloud"] = { + ["char"] = "", + ["code"] = "ebaa", + }, + ["cod-cloud_download"] = { + ["char"] = "", + ["code"] = "eac2", + }, + ["cod-cloud_upload"] = { + ["char"] = "", + ["code"] = "eac3", + }, + ["cod-code"] = { + ["char"] = "", + ["code"] = "eac4", + }, + ["cod-collapse_all"] = { + ["char"] = "", + ["code"] = "eac5", + }, + ["cod-color_mode"] = { + ["char"] = "", + ["code"] = "eac6", + }, + ["cod-combine"] = { + ["char"] = "", + ["code"] = "ebb6", + }, + ["cod-comment"] = { + ["char"] = "", + ["code"] = "ea6b", + }, + ["cod-comment_discussion"] = { + ["char"] = "", + ["code"] = "eac7", + }, + ["cod-compass"] = { + ["char"] = "", + ["code"] = "ebd5", + }, + ["cod-compass_active"] = { + ["char"] = "", + ["code"] = "ebd7", + }, + ["cod-compass_dot"] = { + ["char"] = "", + ["code"] = "ebd6", + }, + ["cod-copy"] = { + ["char"] = "", + ["code"] = "ebcc", + }, + ["cod-credit_card"] = { + ["char"] = "", + ["code"] = "eac9", + }, + ["cod-dash"] = { + ["char"] = "", + ["code"] = "eacc", + }, + ["cod-dashboard"] = { + ["char"] = "", + ["code"] = "eacd", + }, + ["cod-database"] = { + ["char"] = "", + ["code"] = "eace", + }, + ["cod-debug"] = { + ["char"] = "", + ["code"] = "ead8", + }, + ["cod-debug_all"] = { + ["char"] = "", + ["code"] = "ebdc", + }, + ["cod-debug_alt"] = { + ["char"] = "", + ["code"] = "eb91", + }, + ["cod-debug_alt_small"] = { + ["char"] = "", + ["code"] = "eba8", + }, + ["cod-debug_breakpoint_conditional"] = { + ["char"] = "", + ["code"] = "eaa7", + }, + ["cod-debug_breakpoint_conditional_unverified"] = { + ["char"] = "", + ["code"] = "eaa6", + }, + ["cod-debug_breakpoint_data"] = { + ["char"] = "", + ["code"] = "eaa9", + }, + ["cod-debug_breakpoint_data_unverified"] = { + ["char"] = "", + ["code"] = "eaa8", + }, + ["cod-debug_breakpoint_function"] = { + ["char"] = "", + ["code"] = "eb88", + }, + ["cod-debug_breakpoint_function_unverified"] = { + ["char"] = "", + ["code"] = "eb87", + }, + ["cod-debug_breakpoint_log"] = { + ["char"] = "", + ["code"] = "eaab", + }, + ["cod-debug_breakpoint_log_unverified"] = { + ["char"] = "", + ["code"] = "eaaa", + }, + ["cod-debug_breakpoint_unsupported"] = { + ["char"] = "", + ["code"] = "eb8c", + }, + ["cod-debug_console"] = { + ["char"] = "", + ["code"] = "eb9b", + }, + ["cod-debug_continue"] = { + ["char"] = "", + ["code"] = "eacf", + }, + ["cod-debug_continue_small"] = { + ["char"] = "", + ["code"] = "ebe0", + }, + ["cod-debug_coverage"] = { + ["char"] = "", + ["code"] = "ebdd", + }, + ["cod-debug_disconnect"] = { + ["char"] = "", + ["code"] = "ead0", + }, + ["cod-debug_line_by_line"] = { + ["char"] = "", + ["code"] = "ebd0", + }, + ["cod-debug_pause"] = { + ["char"] = "", + ["code"] = "ead1", + }, + ["cod-debug_rerun"] = { + ["char"] = "", + ["code"] = "ebc0", + }, + ["cod-debug_restart"] = { + ["char"] = "", + ["code"] = "ead2", + }, + ["cod-debug_restart_frame"] = { + ["char"] = "", + ["code"] = "eb90", + }, + ["cod-debug_reverse_continue"] = { + ["char"] = "", + ["code"] = "eb8e", + }, + ["cod-debug_stackframe"] = { + ["char"] = "", + ["code"] = "eb8b", + }, + ["cod-debug_stackframe_active"] = { + ["char"] = "", + ["code"] = "eb89", + }, + ["cod-debug_start"] = { + ["char"] = "", + ["code"] = "ead3", + }, + ["cod-debug_step_back"] = { + ["char"] = "", + ["code"] = "eb8f", + }, + ["cod-debug_step_into"] = { + ["char"] = "", + ["code"] = "ead4", + }, + ["cod-debug_step_out"] = { + ["char"] = "", + ["code"] = "ead5", + }, + ["cod-debug_step_over"] = { + ["char"] = "", + ["code"] = "ead6", + }, + ["cod-debug_stop"] = { + ["char"] = "", + ["code"] = "ead7", + }, + ["cod-desktop_download"] = { + ["char"] = "", + ["code"] = "ea78", + }, + ["cod-device_camera"] = { + ["char"] = "", + ["code"] = "eada", + }, + ["cod-device_camera_video"] = { + ["char"] = "", + ["code"] = "ead9", + }, + ["cod-device_mobile"] = { + ["char"] = "", + ["code"] = "eadb", + }, + ["cod-diff"] = { + ["char"] = "", + ["code"] = "eae1", + }, + ["cod-diff_added"] = { + ["char"] = "", + ["code"] = "eadc", + }, + ["cod-diff_ignored"] = { + ["char"] = "", + ["code"] = "eadd", + }, + ["cod-diff_modified"] = { + ["char"] = "", + ["code"] = "eade", + }, + ["cod-diff_removed"] = { + ["char"] = "", + ["code"] = "eadf", + }, + ["cod-diff_renamed"] = { + ["char"] = "", + ["code"] = "eae0", + }, + ["cod-discard"] = { + ["char"] = "", + ["code"] = "eae2", + }, + ["cod-edit"] = { + ["char"] = "", + ["code"] = "ea73", + }, + ["cod-editor_layout"] = { + ["char"] = "", + ["code"] = "eae3", + }, + ["cod-ellipsis"] = { + ["char"] = "", + ["code"] = "ea7c", + }, + ["cod-empty_window"] = { + ["char"] = "", + ["code"] = "eae4", + }, + ["cod-error"] = { + ["char"] = "", + ["code"] = "ea87", + }, + ["cod-exclude"] = { + ["char"] = "", + ["code"] = "eae5", + }, + ["cod-expand_all"] = { + ["char"] = "", + ["code"] = "eb95", + }, + ["cod-export"] = { + ["char"] = "", + ["code"] = "ebac", + }, + ["cod-extensions"] = { + ["char"] = "", + ["code"] = "eae6", + }, + ["cod-eye"] = { + ["char"] = "", + ["code"] = "ea70", + }, + ["cod-eye_closed"] = { + ["char"] = "", + ["code"] = "eae7", + }, + ["cod-feedback"] = { + ["char"] = "", + ["code"] = "eb96", + }, + ["cod-file"] = { + ["char"] = "", + ["code"] = "ea7b", + }, + ["cod-file_binary"] = { + ["char"] = "", + ["code"] = "eae8", + }, + ["cod-file_code"] = { + ["char"] = "", + ["code"] = "eae9", + }, + ["cod-file_media"] = { + ["char"] = "", + ["code"] = "eaea", + }, + ["cod-file_pdf"] = { + ["char"] = "", + ["code"] = "eaeb", + }, + ["cod-file_submodule"] = { + ["char"] = "", + ["code"] = "eaec", + }, + ["cod-file_symlink_directory"] = { + ["char"] = "", + ["code"] = "eaed", + }, + ["cod-file_symlink_file"] = { + ["char"] = "", + ["code"] = "eaee", + }, + ["cod-file_zip"] = { + ["char"] = "", + ["code"] = "eaef", + }, + ["cod-files"] = { + ["char"] = "", + ["code"] = "eaf0", + }, + ["cod-filter"] = { + ["char"] = "", + ["code"] = "eaf1", + }, + ["cod-filter_filled"] = { + ["char"] = "", + ["code"] = "ebce", + }, + ["cod-flame"] = { + ["char"] = "", + ["code"] = "eaf2", + }, + ["cod-fold"] = { + ["char"] = "", + ["code"] = "eaf5", + }, + ["cod-fold_down"] = { + ["char"] = "", + ["code"] = "eaf3", + }, + ["cod-fold_up"] = { + ["char"] = "", + ["code"] = "eaf4", + }, + ["cod-folder"] = { + ["char"] = "", + ["code"] = "ea83", + }, + ["cod-folder_active"] = { + ["char"] = "", + ["code"] = "eaf6", + }, + ["cod-folder_library"] = { + ["char"] = "", + ["code"] = "ebdf", + }, + ["cod-folder_opened"] = { + ["char"] = "", + ["code"] = "eaf7", + }, + ["cod-gear"] = { + ["char"] = "", + ["code"] = "eaf8", + }, + ["cod-gift"] = { + ["char"] = "", + ["code"] = "eaf9", + }, + ["cod-gist_secret"] = { + ["char"] = "", + ["code"] = "eafa", + }, + ["cod-git_commit"] = { + ["char"] = "", + ["code"] = "eafc", + }, + ["cod-git_compare"] = { + ["char"] = "", + ["code"] = "eafd", + }, + ["cod-git_merge"] = { + ["char"] = "", + ["code"] = "eafe", + }, + ["cod-git_pull_request"] = { + ["char"] = "", + ["code"] = "ea64", + }, + ["cod-git_pull_request_closed"] = { + ["char"] = "", + ["code"] = "ebda", + }, + ["cod-git_pull_request_create"] = { + ["char"] = "", + ["code"] = "ebbc", + }, + ["cod-git_pull_request_draft"] = { + ["char"] = "", + ["code"] = "ebdb", + }, + ["cod-github"] = { + ["char"] = "", + ["code"] = "ea84", + }, + ["cod-github_action"] = { + ["char"] = "", + ["code"] = "eaff", + }, + ["cod-github_alt"] = { + ["char"] = "", + ["code"] = "eb00", + }, + ["cod-github_inverted"] = { + ["char"] = "", + ["code"] = "eba1", + }, + ["cod-globe"] = { + ["char"] = "", + ["code"] = "eb01", + }, + ["cod-go_to_file"] = { + ["char"] = "", + ["code"] = "ea94", + }, + ["cod-grabber"] = { + ["char"] = "", + ["code"] = "eb02", + }, + ["cod-graph"] = { + ["char"] = "", + ["code"] = "eb03", + }, + ["cod-graph_left"] = { + ["char"] = "", + ["code"] = "ebad", + }, + ["cod-graph_line"] = { + ["char"] = "", + ["code"] = "ebe2", + }, + ["cod-graph_scatter"] = { + ["char"] = "", + ["code"] = "ebe3", + }, + ["cod-gripper"] = { + ["char"] = "", + ["code"] = "eb04", + }, + ["cod-group_by_ref_type"] = { + ["char"] = "", + ["code"] = "eb97", + }, + ["cod-heart"] = { + ["char"] = "", + ["code"] = "eb05", + }, + ["cod-history"] = { + ["char"] = "", + ["code"] = "ea82", + }, + ["cod-home"] = { + ["char"] = "", + ["code"] = "eb06", + }, + ["cod-horizontal_rule"] = { + ["char"] = "", + ["code"] = "eb07", + }, + ["cod-hubot"] = { + ["char"] = "", + ["code"] = "eb08", + }, + ["cod-inbox"] = { + ["char"] = "", + ["code"] = "eb09", + }, + ["cod-info"] = { + ["char"] = "", + ["code"] = "ea74", + }, + ["cod-inspect"] = { + ["char"] = "", + ["code"] = "ebd1", + }, + ["cod-issue_draft"] = { + ["char"] = "", + ["code"] = "ebd9", + }, + ["cod-issue_reopened"] = { + ["char"] = "", + ["code"] = "eb0b", + }, + ["cod-issues"] = { + ["char"] = "", + ["code"] = "eb0c", + }, + ["cod-italic"] = { + ["char"] = "", + ["code"] = "eb0d", + }, + ["cod-jersey"] = { + ["char"] = "", + ["code"] = "eb0e", + }, + ["cod-json"] = { + ["char"] = "", + ["code"] = "eb0f", + }, + ["cod-kebab_vertical"] = { + ["char"] = "", + ["code"] = "eb10", + }, + ["cod-key"] = { + ["char"] = "", + ["code"] = "eb11", + }, + ["cod-law"] = { + ["char"] = "", + ["code"] = "eb12", + }, + ["cod-layers"] = { + ["char"] = "", + ["code"] = "ebd2", + }, + ["cod-layers_active"] = { + ["char"] = "", + ["code"] = "ebd4", + }, + ["cod-layers_dot"] = { + ["char"] = "", + ["code"] = "ebd3", + }, + ["cod-layout"] = { + ["char"] = "", + ["code"] = "ebeb", + }, + ["cod-library"] = { + ["char"] = "", + ["code"] = "eb9c", + }, + ["cod-lightbulb"] = { + ["char"] = "", + ["code"] = "ea61", + }, + ["cod-lightbulb_autofix"] = { + ["char"] = "", + ["code"] = "eb13", + }, + ["cod-link"] = { + ["char"] = "", + ["code"] = "eb15", + }, + ["cod-link_external"] = { + ["char"] = "", + ["code"] = "eb14", + }, + ["cod-list_filter"] = { + ["char"] = "", + ["code"] = "eb83", + }, + ["cod-list_flat"] = { + ["char"] = "", + ["code"] = "eb84", + }, + ["cod-list_ordered"] = { + ["char"] = "", + ["code"] = "eb16", + }, + ["cod-list_selection"] = { + ["char"] = "", + ["code"] = "eb85", + }, + ["cod-list_tree"] = { + ["char"] = "", + ["code"] = "eb86", + }, + ["cod-list_unordered"] = { + ["char"] = "", + ["code"] = "eb17", + }, + ["cod-live_share"] = { + ["char"] = "", + ["code"] = "eb18", + }, + ["cod-loading"] = { + ["char"] = "", + ["code"] = "eb19", + }, + ["cod-location"] = { + ["char"] = "", + ["code"] = "eb1a", + }, + ["cod-lock"] = { + ["char"] = "", + ["code"] = "ea75", + }, + ["cod-lock_small"] = { + ["char"] = "", + ["code"] = "ebe7", + }, + ["cod-magnet"] = { + ["char"] = "", + ["code"] = "ebae", + }, + ["cod-mail"] = { + ["char"] = "", + ["code"] = "eb1c", + }, + ["cod-mail_read"] = { + ["char"] = "", + ["code"] = "eb1b", + }, + ["cod-markdown"] = { + ["char"] = "", + ["code"] = "eb1d", + }, + ["cod-megaphone"] = { + ["char"] = "", + ["code"] = "eb1e", + }, + ["cod-mention"] = { + ["char"] = "", + ["code"] = "eb1f", + }, + ["cod-menu"] = { + ["char"] = "", + ["code"] = "eb94", + }, + ["cod-merge"] = { + ["char"] = "", + ["code"] = "ebab", + }, + ["cod-milestone"] = { + ["char"] = "", + ["code"] = "eb20", + }, + ["cod-mirror"] = { + ["char"] = "", + ["code"] = "ea69", + }, + ["cod-mortar_board"] = { + ["char"] = "", + ["code"] = "eb21", + }, + ["cod-move"] = { + ["char"] = "", + ["code"] = "eb22", + }, + ["cod-multiple_windows"] = { + ["char"] = "", + ["code"] = "eb23", + }, + ["cod-mute"] = { + ["char"] = "", + ["code"] = "eb24", + }, + ["cod-new_file"] = { + ["char"] = "", + ["code"] = "ea7f", + }, + ["cod-new_folder"] = { + ["char"] = "", + ["code"] = "ea80", + }, + ["cod-newline"] = { + ["char"] = "", + ["code"] = "ebea", + }, + ["cod-no_newline"] = { + ["char"] = "", + ["code"] = "eb25", + }, + ["cod-note"] = { + ["char"] = "", + ["code"] = "eb26", + }, + ["cod-notebook"] = { + ["char"] = "", + ["code"] = "ebaf", + }, + ["cod-notebook_template"] = { + ["char"] = "", + ["code"] = "ebbf", + }, + ["cod-octoface"] = { + ["char"] = "", + ["code"] = "eb27", + }, + ["cod-open_preview"] = { + ["char"] = "", + ["code"] = "eb28", + }, + ["cod-organization"] = { + ["char"] = "", + ["code"] = "ea7e", + }, + ["cod-output"] = { + ["char"] = "", + ["code"] = "eb9d", + }, + ["cod-package"] = { + ["char"] = "", + ["code"] = "eb29", + }, + ["cod-paintcan"] = { + ["char"] = "", + ["code"] = "eb2a", + }, + ["cod-pass"] = { + ["char"] = "", + ["code"] = "eba4", + }, + ["cod-pass_filled"] = { + ["char"] = "", + ["code"] = "ebb3", + }, + ["cod-person"] = { + ["char"] = "", + ["code"] = "ea67", + }, + ["cod-person_add"] = { + ["char"] = "", + ["code"] = "ebcd", + }, + ["cod-pie_chart"] = { + ["char"] = "", + ["code"] = "ebe4", + }, + ["cod-pin"] = { + ["char"] = "", + ["code"] = "eb2b", + }, + ["cod-pinned"] = { + ["char"] = "", + ["code"] = "eba0", + }, + ["cod-pinned_dirty"] = { + ["char"] = "", + ["code"] = "ebb2", + }, + ["cod-play"] = { + ["char"] = "", + ["code"] = "eb2c", + }, + ["cod-play_circle"] = { + ["char"] = "", + ["code"] = "eba6", + }, + ["cod-plug"] = { + ["char"] = "", + ["code"] = "eb2d", + }, + ["cod-preserve_case"] = { + ["char"] = "", + ["code"] = "eb2e", + }, + ["cod-preview"] = { + ["char"] = "", + ["code"] = "eb2f", + }, + ["cod-primitive_square"] = { + ["char"] = "", + ["code"] = "ea72", + }, + ["cod-project"] = { + ["char"] = "", + ["code"] = "eb30", + }, + ["cod-pulse"] = { + ["char"] = "", + ["code"] = "eb31", + }, + ["cod-question"] = { + ["char"] = "", + ["code"] = "eb32", + }, + ["cod-quote"] = { + ["char"] = "", + ["code"] = "eb33", + }, + ["cod-radio_tower"] = { + ["char"] = "", + ["code"] = "eb34", + }, + ["cod-reactions"] = { + ["char"] = "", + ["code"] = "eb35", + }, + ["cod-record"] = { + ["char"] = "", + ["code"] = "eba7", + }, + ["cod-record_keys"] = { + ["char"] = "", + ["code"] = "ea65", + }, + ["cod-redo"] = { + ["char"] = "", + ["code"] = "ebb0", + }, + ["cod-references"] = { + ["char"] = "", + ["code"] = "eb36", + }, + ["cod-refresh"] = { + ["char"] = "", + ["code"] = "eb37", + }, + ["cod-regex"] = { + ["char"] = "", + ["code"] = "eb38", + }, + ["cod-remote"] = { + ["char"] = "", + ["code"] = "eb3a", + }, + ["cod-remote_explorer"] = { + ["char"] = "", + ["code"] = "eb39", + }, + ["cod-remove"] = { + ["char"] = "", + ["code"] = "eb3b", + }, + ["cod-replace"] = { + ["char"] = "", + ["code"] = "eb3d", + }, + ["cod-replace_all"] = { + ["char"] = "", + ["code"] = "eb3c", + }, + ["cod-reply"] = { + ["char"] = "", + ["code"] = "ea7d", + }, + ["cod-repo"] = { + ["char"] = "", + ["code"] = "ea62", + }, + ["cod-repo_clone"] = { + ["char"] = "", + ["code"] = "eb3e", + }, + ["cod-repo_force_push"] = { + ["char"] = "", + ["code"] = "eb3f", + }, + ["cod-repo_forked"] = { + ["char"] = "", + ["code"] = "ea63", + }, + ["cod-repo_pull"] = { + ["char"] = "", + ["code"] = "eb40", + }, + ["cod-repo_push"] = { + ["char"] = "", + ["code"] = "eb41", + }, + ["cod-report"] = { + ["char"] = "", + ["code"] = "eb42", + }, + ["cod-request_changes"] = { + ["char"] = "", + ["code"] = "eb43", + }, + ["cod-rocket"] = { + ["char"] = "", + ["code"] = "eb44", + }, + ["cod-root_folder"] = { + ["char"] = "", + ["code"] = "eb46", + }, + ["cod-root_folder_opened"] = { + ["char"] = "", + ["code"] = "eb45", + }, + ["cod-rss"] = { + ["char"] = "", + ["code"] = "eb47", + }, + ["cod-ruby"] = { + ["char"] = "", + ["code"] = "eb48", + }, + ["cod-run_above"] = { + ["char"] = "", + ["code"] = "ebbd", + }, + ["cod-run_all"] = { + ["char"] = "", + ["code"] = "eb9e", + }, + ["cod-run_below"] = { + ["char"] = "", + ["code"] = "ebbe", + }, + ["cod-run_errors"] = { + ["char"] = "", + ["code"] = "ebde", + }, + ["cod-save"] = { + ["char"] = "", + ["code"] = "eb4b", + }, + ["cod-save_all"] = { + ["char"] = "", + ["code"] = "eb49", + }, + ["cod-save_as"] = { + ["char"] = "", + ["code"] = "eb4a", + }, + ["cod-screen_full"] = { + ["char"] = "", + ["code"] = "eb4c", + }, + ["cod-screen_normal"] = { + ["char"] = "", + ["code"] = "eb4d", + }, + ["cod-search"] = { + ["char"] = "", + ["code"] = "ea6d", + }, + ["cod-search_stop"] = { + ["char"] = "", + ["code"] = "eb4e", + }, + ["cod-server"] = { + ["char"] = "", + ["code"] = "eb50", + }, + ["cod-server_environment"] = { + ["char"] = "", + ["code"] = "eba3", + }, + ["cod-server_process"] = { + ["char"] = "", + ["code"] = "eba2", + }, + ["cod-settings"] = { + ["char"] = "", + ["code"] = "eb52", + }, + ["cod-settings_gear"] = { + ["char"] = "", + ["code"] = "eb51", + }, + ["cod-shield"] = { + ["char"] = "", + ["code"] = "eb53", + }, + ["cod-sign_in"] = { + ["char"] = "", + ["code"] = "ea6f", + }, + ["cod-sign_out"] = { + ["char"] = "", + ["code"] = "ea6e", + }, + ["cod-smiley"] = { + ["char"] = "", + ["code"] = "eb54", + }, + ["cod-sort_precedence"] = { + ["char"] = "", + ["code"] = "eb55", + }, + ["cod-source_control"] = { + ["char"] = "", + ["code"] = "ea68", + }, + ["cod-split_horizontal"] = { + ["char"] = "", + ["code"] = "eb56", + }, + ["cod-split_vertical"] = { + ["char"] = "", + ["code"] = "eb57", + }, + ["cod-squirrel"] = { + ["char"] = "", + ["code"] = "eb58", + }, + ["cod-star_empty"] = { + ["char"] = "", + ["code"] = "ea6a", + }, + ["cod-star_full"] = { + ["char"] = "", + ["code"] = "eb59", + }, + ["cod-star_half"] = { + ["char"] = "", + ["code"] = "eb5a", + }, + ["cod-stop_circle"] = { + ["char"] = "", + ["code"] = "eba5", + }, + ["cod-symbol_array"] = { + ["char"] = "", + ["code"] = "ea8a", + }, + ["cod-symbol_boolean"] = { + ["char"] = "", + ["code"] = "ea8f", + }, + ["cod-symbol_class"] = { + ["char"] = "", + ["code"] = "eb5b", + }, + ["cod-symbol_color"] = { + ["char"] = "", + ["code"] = "eb5c", + }, + ["cod-symbol_constant"] = { + ["char"] = "", + ["code"] = "eb5d", + }, + ["cod-symbol_enum"] = { + ["char"] = "", + ["code"] = "ea95", + }, + ["cod-symbol_enum_member"] = { + ["char"] = "", + ["code"] = "eb5e", + }, + ["cod-symbol_event"] = { + ["char"] = "", + ["code"] = "ea86", + }, + ["cod-symbol_field"] = { + ["char"] = "", + ["code"] = "eb5f", + }, + ["cod-symbol_file"] = { + ["char"] = "", + ["code"] = "eb60", + }, + ["cod-symbol_interface"] = { + ["char"] = "", + ["code"] = "eb61", + }, + ["cod-symbol_key"] = { + ["char"] = "", + ["code"] = "ea93", + }, + ["cod-symbol_keyword"] = { + ["char"] = "", + ["code"] = "eb62", + }, + ["cod-symbol_method"] = { + ["char"] = "", + ["code"] = "ea8c", + }, + ["cod-symbol_misc"] = { + ["char"] = "", + ["code"] = "eb63", + }, + ["cod-symbol_namespace"] = { + ["char"] = "", + ["code"] = "ea8b", + }, + ["cod-symbol_numeric"] = { + ["char"] = "", + ["code"] = "ea90", + }, + ["cod-symbol_operator"] = { + ["char"] = "", + ["code"] = "eb64", + }, + ["cod-symbol_parameter"] = { + ["char"] = "", + ["code"] = "ea92", + }, + ["cod-symbol_property"] = { + ["char"] = "", + ["code"] = "eb65", + }, + ["cod-symbol_ruler"] = { + ["char"] = "", + ["code"] = "ea96", + }, + ["cod-symbol_snippet"] = { + ["char"] = "", + ["code"] = "eb66", + }, + ["cod-symbol_string"] = { + ["char"] = "", + ["code"] = "eb8d", + }, + ["cod-symbol_structure"] = { + ["char"] = "", + ["code"] = "ea91", + }, + ["cod-symbol_variable"] = { + ["char"] = "", + ["code"] = "ea88", + }, + ["cod-sync"] = { + ["char"] = "", + ["code"] = "ea77", + }, + ["cod-sync_ignored"] = { + ["char"] = "", + ["code"] = "eb9f", + }, + ["cod-table"] = { + ["char"] = "", + ["code"] = "ebb7", + }, + ["cod-tag"] = { + ["char"] = "", + ["code"] = "ea66", + }, + ["cod-tasklist"] = { + ["char"] = "", + ["code"] = "eb67", + }, + ["cod-telescope"] = { + ["char"] = "", + ["code"] = "eb68", + }, + ["cod-terminal"] = { + ["char"] = "", + ["code"] = "ea85", + }, + ["cod-terminal_bash"] = { + ["char"] = "", + ["code"] = "ebca", + }, + ["cod-terminal_cmd"] = { + ["char"] = "", + ["code"] = "ebc4", + }, + ["cod-terminal_debian"] = { + ["char"] = "", + ["code"] = "ebc5", + }, + ["cod-terminal_linux"] = { + ["char"] = "", + ["code"] = "ebc6", + }, + ["cod-terminal_powershell"] = { + ["char"] = "", + ["code"] = "ebc7", + }, + ["cod-terminal_tmux"] = { + ["char"] = "", + ["code"] = "ebc8", + }, + ["cod-terminal_ubuntu"] = { + ["char"] = "", + ["code"] = "ebc9", + }, + ["cod-text_size"] = { + ["char"] = "", + ["code"] = "eb69", + }, + ["cod-three_bars"] = { + ["char"] = "", + ["code"] = "eb6a", + }, + ["cod-thumbsdown"] = { + ["char"] = "", + ["code"] = "eb6b", + }, + ["cod-thumbsup"] = { + ["char"] = "", + ["code"] = "eb6c", + }, + ["cod-tools"] = { + ["char"] = "", + ["code"] = "eb6d", + }, + ["cod-trash"] = { + ["char"] = "", + ["code"] = "ea81", + }, + ["cod-triangle_down"] = { + ["char"] = "", + ["code"] = "eb6e", + }, + ["cod-triangle_left"] = { + ["char"] = "", + ["code"] = "eb6f", + }, + ["cod-triangle_right"] = { + ["char"] = "", + ["code"] = "eb70", + }, + ["cod-triangle_up"] = { + ["char"] = "", + ["code"] = "eb71", + }, + ["cod-twitter"] = { + ["char"] = "", + ["code"] = "eb72", + }, + ["cod-type_hierarchy"] = { + ["char"] = "", + ["code"] = "ebb9", + }, + ["cod-type_hierarchy_sub"] = { + ["char"] = "", + ["code"] = "ebba", + }, + ["cod-type_hierarchy_super"] = { + ["char"] = "", + ["code"] = "ebbb", + }, + ["cod-unfold"] = { + ["char"] = "", + ["code"] = "eb73", + }, + ["cod-ungroup_by_ref_type"] = { + ["char"] = "", + ["code"] = "eb98", + }, + ["cod-unlock"] = { + ["char"] = "", + ["code"] = "eb74", + }, + ["cod-unmute"] = { + ["char"] = "", + ["code"] = "eb75", + }, + ["cod-unverified"] = { + ["char"] = "", + ["code"] = "eb76", + }, + ["cod-variable_group"] = { + ["char"] = "", + ["code"] = "ebb8", + }, + ["cod-verified"] = { + ["char"] = "", + ["code"] = "eb77", + }, + ["cod-verified_filled"] = { + ["char"] = "", + ["code"] = "ebe9", + }, + ["cod-versions"] = { + ["char"] = "", + ["code"] = "eb78", + }, + ["cod-vm"] = { + ["char"] = "", + ["code"] = "ea7a", + }, + ["cod-vm_active"] = { + ["char"] = "", + ["code"] = "eb79", + }, + ["cod-vm_connect"] = { + ["char"] = "", + ["code"] = "eba9", + }, + ["cod-vm_outline"] = { + ["char"] = "", + ["code"] = "eb7a", + }, + ["cod-vm_running"] = { + ["char"] = "", + ["code"] = "eb7b", + }, + ["cod-wand"] = { + ["char"] = "", + ["code"] = "ebcf", + }, + ["cod-warning"] = { + ["char"] = "", + ["code"] = "ea6c", + }, + ["cod-watch"] = { + ["char"] = "", + ["code"] = "eb7c", + }, + ["cod-whitespace"] = { + ["char"] = "", + ["code"] = "eb7d", + }, + ["cod-whole_word"] = { + ["char"] = "", + ["code"] = "eb7e", + }, + ["cod-window"] = { + ["char"] = "", + ["code"] = "eb7f", + }, + ["cod-word_wrap"] = { + ["char"] = "", + ["code"] = "eb80", + }, + ["cod-workspace_trusted"] = { + ["char"] = "", + ["code"] = "ebc1", + }, + ["cod-workspace_unknown"] = { + ["char"] = "", + ["code"] = "ebc3", + }, + ["cod-workspace_untrusted"] = { + ["char"] = "", + ["code"] = "ebc2", + }, + ["cod-zoom_in"] = { + ["char"] = "", + ["code"] = "eb81", + }, + ["cod-zoom_out"] = { + ["char"] = "", + ["code"] = "eb82", + }, + ["custom-asm"] = { + ["char"] = "", + ["code"] = "e6ab", + }, + ["custom-c"] = { + ["char"] = "", + ["code"] = "e61e", + }, + ["custom-common_lisp"] = { + ["char"] = "", + ["code"] = "e6b0", + }, + ["custom-cpp"] = { + ["char"] = "", + ["code"] = "e61d", + }, + ["custom-crystal"] = { + ["char"] = "", + ["code"] = "e62f", + }, + ["custom-default"] = { + ["char"] = "", + ["code"] = "e612", + }, + ["custom-electron"] = { + ["char"] = "", + ["code"] = "e62e", + }, + ["custom-elixir"] = { + ["char"] = "", + ["code"] = "e62d", + }, + ["custom-elm"] = { + ["char"] = "", + ["code"] = "e62c", + }, + ["custom-emacs"] = { + ["char"] = "", + ["code"] = "e632", + }, + ["custom-fennel"] = { + ["char"] = "", + ["code"] = "e6af", + }, + ["custom-folder"] = { + ["char"] = "", + ["code"] = "e5ff", + }, + ["custom-folder_config"] = { + ["char"] = "", + ["code"] = "e5fc", + }, + ["custom-folder_git"] = { + ["char"] = "", + ["code"] = "e5fb", + }, + ["custom-folder_git_branch"] = { + ["char"] = "", + ["code"] = "e5fb", + }, + ["custom-folder_github"] = { + ["char"] = "", + ["code"] = "e5fd", + }, + ["custom-folder_npm"] = { + ["char"] = "", + ["code"] = "e5fa", + }, + ["custom-folder_oct"] = { + ["char"] = "", + ["code"] = "e6ad", + }, + ["custom-folder_open"] = { + ["char"] = "", + ["code"] = "e5fe", + }, + ["custom-go"] = { + ["char"] = "", + ["code"] = "e626", + }, + ["custom-home"] = { + ["char"] = "", + ["code"] = "e617", + }, + ["custom-kotlin"] = { + ["char"] = "", + ["code"] = "e634", + }, + ["custom-msdos"] = { + ["char"] = "", + ["code"] = "e629", + }, + ["custom-neovim"] = { + ["char"] = "", + ["code"] = "e6ae", + }, + ["custom-orgmode"] = { + ["char"] = "", + ["code"] = "e633", + }, + ["custom-play_arrow"] = { + ["char"] = "", + ["code"] = "e602", + }, + ["custom-puppet"] = { + ["char"] = "", + ["code"] = "e631", + }, + ["custom-purescript"] = { + ["char"] = "", + ["code"] = "e630", + }, + ["custom-scheme"] = { + ["char"] = "", + ["code"] = "e6b1", + }, + ["custom-toml"] = { + ["char"] = "", + ["code"] = "e6b2", + }, + ["custom-v_lang"] = { + ["char"] = "", + ["code"] = "e6ac", + }, + ["custom-vim"] = { + ["char"] = "", + ["code"] = "e62b", + }, + ["custom-windows"] = { + ["char"] = "", + ["code"] = "e62a", + }, + ["dev-android"] = { + ["char"] = "", + ["code"] = "e70e", + }, + ["dev-angular"] = { + ["char"] = "", + ["code"] = "e753", + }, + ["dev-appcelerator"] = { + ["char"] = "", + ["code"] = "e7ab", + }, + ["dev-apple"] = { + ["char"] = "", + ["code"] = "e711", + }, + ["dev-appstore"] = { + ["char"] = "", + ["code"] = "e713", + }, + ["dev-aptana"] = { + ["char"] = "", + ["code"] = "e799", + }, + ["dev-asterisk"] = { + ["char"] = "", + ["code"] = "e7ac", + }, + ["dev-atlassian"] = { + ["char"] = "", + ["code"] = "e75b", + }, + ["dev-atom"] = { + ["char"] = "", + ["code"] = "e764", + }, + ["dev-aws"] = { + ["char"] = "", + ["code"] = "e7ad", + }, + ["dev-backbone"] = { + ["char"] = "", + ["code"] = "e752", + }, + ["dev-bing_small"] = { + ["char"] = "", + ["code"] = "e700", + }, + ["dev-bintray"] = { + ["char"] = "", + ["code"] = "e794", + }, + ["dev-bitbucket"] = { + ["char"] = "", + ["code"] = "e703", + }, + ["dev-blackberry"] = { + ["char"] = "", + ["code"] = "e723", + }, + ["dev-bootstrap"] = { + ["char"] = "", + ["code"] = "e747", + }, + ["dev-bower"] = { + ["char"] = "", + ["code"] = "e74d", + }, + ["dev-brackets"] = { + ["char"] = "", + ["code"] = "e79d", + }, + ["dev-bugsense"] = { + ["char"] = "", + ["code"] = "e78d", + }, + ["dev-celluloid"] = { + ["char"] = "", + ["code"] = "e76b", + }, + ["dev-chart"] = { + ["char"] = "", + ["code"] = "e760", + }, + ["dev-chrome"] = { + ["char"] = "", + ["code"] = "e743", + }, + ["dev-cisco"] = { + ["char"] = "", + ["code"] = "e765", + }, + ["dev-clojure"] = { + ["char"] = "", + ["code"] = "e768", + }, + ["dev-clojure_alt"] = { + ["char"] = "", + ["code"] = "e76a", + }, + ["dev-cloud9"] = { + ["char"] = "", + ["code"] = "e79f", + }, + ["dev-coda"] = { + ["char"] = "", + ["code"] = "e793", + }, + ["dev-code"] = { + ["char"] = "", + ["code"] = "e796", + }, + ["dev-code_badge"] = { + ["char"] = "", + ["code"] = "e7a3", + }, + ["dev-codeigniter"] = { + ["char"] = "", + ["code"] = "e780", + }, + ["dev-codepen"] = { + ["char"] = "", + ["code"] = "e716", + }, + ["dev-codrops"] = { + ["char"] = "", + ["code"] = "e72f", + }, + ["dev-coffeescript"] = { + ["char"] = "", + ["code"] = "e751", + }, + ["dev-compass"] = { + ["char"] = "", + ["code"] = "e761", + }, + ["dev-composer"] = { + ["char"] = "", + ["code"] = "e783", + }, + ["dev-creativecommons"] = { + ["char"] = "", + ["code"] = "e789", + }, + ["dev-creativecommons_badge"] = { + ["char"] = "", + ["code"] = "e78a", + }, + ["dev-css3"] = { + ["char"] = "", + ["code"] = "e749", + }, + ["dev-css3_full"] = { + ["char"] = "", + ["code"] = "e74a", + }, + ["dev-css_tricks"] = { + ["char"] = "", + ["code"] = "e701", + }, + ["dev-cssdeck"] = { + ["char"] = "", + ["code"] = "e72a", + }, + ["dev-dart"] = { + ["char"] = "", + ["code"] = "e798", + }, + ["dev-database"] = { + ["char"] = "", + ["code"] = "e706", + }, + ["dev-debian"] = { + ["char"] = "", + ["code"] = "e77d", + }, + ["dev-digital_ocean"] = { + ["char"] = "", + ["code"] = "e7ae", + }, + ["dev-django"] = { + ["char"] = "", + ["code"] = "e71d", + }, + ["dev-dlang"] = { + ["char"] = "", + ["code"] = "e7af", + }, + ["dev-docker"] = { + ["char"] = "", + ["code"] = "e7b0", + }, + ["dev-doctrine"] = { + ["char"] = "", + ["code"] = "e774", + }, + ["dev-dojo"] = { + ["char"] = "", + ["code"] = "e71c", + }, + ["dev-dotnet"] = { + ["char"] = "", + ["code"] = "e77f", + }, + ["dev-dreamweaver"] = { + ["char"] = "", + ["code"] = "e79c", + }, + ["dev-dropbox"] = { + ["char"] = "", + ["code"] = "e707", + }, + ["dev-drupal"] = { + ["char"] = "", + ["code"] = "e742", + }, + ["dev-eclipse"] = { + ["char"] = "", + ["code"] = "e79e", + }, + ["dev-ember"] = { + ["char"] = "", + ["code"] = "e71b", + }, + ["dev-envato"] = { + ["char"] = "", + ["code"] = "e75d", + }, + ["dev-erlang"] = { + ["char"] = "", + ["code"] = "e7b1", + }, + ["dev-extjs"] = { + ["char"] = "", + ["code"] = "e78e", + }, + ["dev-firebase"] = { + ["char"] = "", + ["code"] = "e787", + }, + ["dev-firefox"] = { + ["char"] = "", + ["code"] = "e745", + }, + ["dev-fsharp"] = { + ["char"] = "", + ["code"] = "e7a7", + }, + ["dev-ghost"] = { + ["char"] = "", + ["code"] = "e71f", + }, + ["dev-ghost_small"] = { + ["char"] = "", + ["code"] = "e714", + }, + ["dev-git"] = { + ["char"] = "", + ["code"] = "e702", + }, + ["dev-git_branch"] = { + ["char"] = "", + ["code"] = "e725", + }, + ["dev-git_commit"] = { + ["char"] = "", + ["code"] = "e729", + }, + ["dev-git_compare"] = { + ["char"] = "", + ["code"] = "e728", + }, + ["dev-git_merge"] = { + ["char"] = "", + ["code"] = "e727", + }, + ["dev-git_pull_request"] = { + ["char"] = "", + ["code"] = "e726", + }, + ["dev-github"] = { + ["char"] = "", + ["code"] = "e70a", + }, + ["dev-github_alt"] = { + ["char"] = "", + ["code"] = "e708", + }, + ["dev-github_badge"] = { + ["char"] = "", + ["code"] = "e709", + }, + ["dev-github_full"] = { + ["char"] = "", + ["code"] = "e717", + }, + ["dev-gnu"] = { + ["char"] = "", + ["code"] = "e779", + }, + ["dev-go"] = { + ["char"] = "", + ["code"] = "e724", + }, + ["dev-google_cloud_platform"] = { + ["char"] = "", + ["code"] = "e7b2", + }, + ["dev-google_drive"] = { + ["char"] = "", + ["code"] = "e731", + }, + ["dev-grails"] = { + ["char"] = "", + ["code"] = "e7b3", + }, + ["dev-groovy"] = { + ["char"] = "", + ["code"] = "e775", + }, + ["dev-grunt"] = { + ["char"] = "", + ["code"] = "e74c", + }, + ["dev-gulp"] = { + ["char"] = "", + ["code"] = "e763", + }, + ["dev-hackernews"] = { + ["char"] = "", + ["code"] = "e71a", + }, + ["dev-haskell"] = { + ["char"] = "", + ["code"] = "e777", + }, + ["dev-heroku"] = { + ["char"] = "", + ["code"] = "e77b", + }, + ["dev-html5"] = { + ["char"] = "", + ["code"] = "e736", + }, + ["dev-html5_3d_effects"] = { + ["char"] = "", + ["code"] = "e735", + }, + ["dev-html5_connectivity"] = { + ["char"] = "", + ["code"] = "e734", + }, + ["dev-html5_device_access"] = { + ["char"] = "", + ["code"] = "e733", + }, + ["dev-html5_multimedia"] = { + ["char"] = "", + ["code"] = "e732", + }, + ["dev-ie"] = { + ["char"] = "", + ["code"] = "e744", + }, + ["dev-illustrator"] = { + ["char"] = "", + ["code"] = "e7b4", + }, + ["dev-intellij"] = { + ["char"] = "", + ["code"] = "e7b5", + }, + ["dev-ionic"] = { + ["char"] = "", + ["code"] = "e7a9", + }, + ["dev-java"] = { + ["char"] = "", + ["code"] = "e738", + }, + ["dev-javascript"] = { + ["char"] = "", + ["code"] = "e74e", + }, + ["dev-javascript_badge"] = { + ["char"] = "", + ["code"] = "e781", + }, + ["dev-javascript_shield"] = { + ["char"] = "", + ["code"] = "e74f", + }, + ["dev-jekyll_small"] = { + ["char"] = "", + ["code"] = "e70d", + }, + ["dev-jenkins"] = { + ["char"] = "", + ["code"] = "e767", + }, + ["dev-jira"] = { + ["char"] = "", + ["code"] = "e75c", + }, + ["dev-joomla"] = { + ["char"] = "", + ["code"] = "e741", + }, + ["dev-jquery"] = { + ["char"] = "", + ["code"] = "e750", + }, + ["dev-jquery_ui"] = { + ["char"] = "", + ["code"] = "e754", + }, + ["dev-komodo"] = { + ["char"] = "", + ["code"] = "e792", + }, + ["dev-krakenjs"] = { + ["char"] = "", + ["code"] = "e785", + }, + ["dev-krakenjs_badge"] = { + ["char"] = "", + ["code"] = "e784", + }, + ["dev-laravel"] = { + ["char"] = "", + ["code"] = "e73f", + }, + ["dev-less"] = { + ["char"] = "", + ["code"] = "e758", + }, + ["dev-linux"] = { + ["char"] = "", + ["code"] = "e712", + }, + ["dev-magento"] = { + ["char"] = "", + ["code"] = "e740", + }, + ["dev-mailchimp"] = { + ["char"] = "", + ["code"] = "e79a", + }, + ["dev-markdown"] = { + ["char"] = "", + ["code"] = "e73e", + }, + ["dev-materializecss"] = { + ["char"] = "", + ["code"] = "e7b6", + }, + ["dev-meteor"] = { + ["char"] = "", + ["code"] = "e7a5", + }, + ["dev-meteorfull"] = { + ["char"] = "", + ["code"] = "e7a6", + }, + ["dev-mitlicence"] = { + ["char"] = "", + ["code"] = "e78b", + }, + ["dev-modernizr"] = { + ["char"] = "", + ["code"] = "e720", + }, + ["dev-mongodb"] = { + ["char"] = "", + ["code"] = "e7a4", + }, + ["dev-mootools"] = { + ["char"] = "", + ["code"] = "e790", + }, + ["dev-mootools_badge"] = { + ["char"] = "", + ["code"] = "e78f", + }, + ["dev-mozilla"] = { + ["char"] = "", + ["code"] = "e786", + }, + ["dev-msql_server"] = { + ["char"] = "", + ["code"] = "e77c", + }, + ["dev-mysql"] = { + ["char"] = "", + ["code"] = "e704", + }, + ["dev-nancy"] = { + ["char"] = "", + ["code"] = "e766", + }, + ["dev-netbeans"] = { + ["char"] = "", + ["code"] = "e79b", + }, + ["dev-netmagazine"] = { + ["char"] = "", + ["code"] = "e72e", + }, + ["dev-nginx"] = { + ["char"] = "", + ["code"] = "e776", + }, + ["dev-nodejs"] = { + ["char"] = "", + ["code"] = "e719", + }, + ["dev-nodejs_small"] = { + ["char"] = "", + ["code"] = "e718", + }, + ["dev-npm"] = { + ["char"] = "", + ["code"] = "e71e", + }, + ["dev-onedrive"] = { + ["char"] = "", + ["code"] = "e762", + }, + ["dev-openshift"] = { + ["char"] = "", + ["code"] = "e7b7", + }, + ["dev-opensource"] = { + ["char"] = "", + ["code"] = "e771", + }, + ["dev-opera"] = { + ["char"] = "", + ["code"] = "e746", + }, + ["dev-perl"] = { + ["char"] = "", + ["code"] = "e769", + }, + ["dev-phonegap"] = { + ["char"] = "", + ["code"] = "e730", + }, + ["dev-photoshop"] = { + ["char"] = "", + ["code"] = "e7b8", + }, + ["dev-php"] = { + ["char"] = "", + ["code"] = "e73d", + }, + ["dev-postgresql"] = { + ["char"] = "", + ["code"] = "e76e", + }, + ["dev-prolog"] = { + ["char"] = "", + ["code"] = "e7a1", + }, + ["dev-python"] = { + ["char"] = "", + ["code"] = "e73c", + }, + ["dev-rackspace"] = { + ["char"] = "", + ["code"] = "e7b9", + }, + ["dev-raphael"] = { + ["char"] = "", + ["code"] = "e75f", + }, + ["dev-rasberry_pi"] = { + ["char"] = "", + ["code"] = "e722", + }, + ["dev-react"] = { + ["char"] = "", + ["code"] = "e7ba", + }, + ["dev-redhat"] = { + ["char"] = "", + ["code"] = "e7bb", + }, + ["dev-redis"] = { + ["char"] = "", + ["code"] = "e76d", + }, + ["dev-requirejs"] = { + ["char"] = "", + ["code"] = "e770", + }, + ["dev-responsive"] = { + ["char"] = "", + ["code"] = "e797", + }, + ["dev-ruby"] = { + ["char"] = "", + ["code"] = "e739", + }, + ["dev-ruby_on_rails"] = { + ["char"] = "", + ["code"] = "e73b", + }, + ["dev-ruby_rough"] = { + ["char"] = "", + ["code"] = "e791", + }, + ["dev-rust"] = { + ["char"] = "", + ["code"] = "e7a8", + }, + ["dev-safari"] = { + ["char"] = "", + ["code"] = "e748", + }, + ["dev-sass"] = { + ["char"] = "", + ["code"] = "e74b", + }, + ["dev-scala"] = { + ["char"] = "", + ["code"] = "e737", + }, + ["dev-scriptcs"] = { + ["char"] = "", + ["code"] = "e7bc", + }, + ["dev-scrum"] = { + ["char"] = "", + ["code"] = "e7a0", + }, + ["dev-senchatouch"] = { + ["char"] = "", + ["code"] = "e78c", + }, + ["dev-sizzlejs"] = { + ["char"] = "", + ["code"] = "e788", + }, + ["dev-smashing_magazine"] = { + ["char"] = "", + ["code"] = "e72d", + }, + ["dev-snap_svg"] = { + ["char"] = "", + ["code"] = "e75e", + }, + ["dev-sqllite"] = { + ["char"] = "", + ["code"] = "e7c4", + }, + ["dev-stackoverflow"] = { + ["char"] = "", + ["code"] = "e710", + }, + ["dev-streamline"] = { + ["char"] = "", + ["code"] = "e705", + }, + ["dev-stylus"] = { + ["char"] = "", + ["code"] = "e759", + }, + ["dev-sublime"] = { + ["char"] = "", + ["code"] = "e7aa", + }, + ["dev-swift"] = { + ["char"] = "", + ["code"] = "e755", + }, + ["dev-symfony"] = { + ["char"] = "", + ["code"] = "e756", + }, + ["dev-symfony_badge"] = { + ["char"] = "", + ["code"] = "e757", + }, + ["dev-techcrunch"] = { + ["char"] = "", + ["code"] = "e72c", + }, + ["dev-terminal"] = { + ["char"] = "", + ["code"] = "e795", + }, + ["dev-terminal_badge"] = { + ["char"] = "", + ["code"] = "e7a2", + }, + ["dev-travis"] = { + ["char"] = "", + ["code"] = "e77e", + }, + ["dev-trello"] = { + ["char"] = "", + ["code"] = "e75a", + }, + ["dev-typo3"] = { + ["char"] = "", + ["code"] = "e772", + }, + ["dev-ubuntu"] = { + ["char"] = "", + ["code"] = "e73a", + }, + ["dev-uikit"] = { + ["char"] = "", + ["code"] = "e773", + }, + ["dev-unity_small"] = { + ["char"] = "", + ["code"] = "e721", + }, + ["dev-vim"] = { + ["char"] = "", + ["code"] = "e7c5", + }, + ["dev-visualstudio"] = { + ["char"] = "", + ["code"] = "e70c", + }, + ["dev-w3c"] = { + ["char"] = "", + ["code"] = "e76c", + }, + ["dev-webplatform"] = { + ["char"] = "", + ["code"] = "e76f", + }, + ["dev-windows"] = { + ["char"] = "", + ["code"] = "e70f", + }, + ["dev-wordpress"] = { + ["char"] = "", + ["code"] = "e70b", + }, + ["dev-yahoo"] = { + ["char"] = "", + ["code"] = "e715", + }, + ["dev-yahoo_small"] = { + ["char"] = "", + ["code"] = "e72b", + }, + ["dev-yeoman"] = { + ["char"] = "", + ["code"] = "e77a", + }, + ["dev-yii"] = { + ["char"] = "", + ["code"] = "e782", + }, + ["dev-zend"] = { + ["char"] = "", + ["code"] = "e778", + }, + ["fa-500px"] = { + ["char"] = "", + ["code"] = "f26e", + }, + ["fa-address_book"] = { + ["char"] = "", + ["code"] = "f2b9", + }, + ["fa-address_book_o"] = { + ["char"] = "", + ["code"] = "f2ba", + }, + ["fa-address_card"] = { + ["char"] = "", + ["code"] = "f2bb", + }, + ["fa-address_card_o"] = { + ["char"] = "", + ["code"] = "f2bc", + }, + ["fa-adjust"] = { + ["char"] = "", + ["code"] = "f042", + }, + ["fa-adn"] = { + ["char"] = "", + ["code"] = "f170", + }, + ["fa-align_center"] = { + ["char"] = "", + ["code"] = "f037", + }, + ["fa-align_justify"] = { + ["char"] = "", + ["code"] = "f039", + }, + ["fa-align_left"] = { + ["char"] = "", + ["code"] = "f036", + }, + ["fa-align_right"] = { + ["char"] = "", + ["code"] = "f038", + }, + ["fa-amazon"] = { + ["char"] = "", + ["code"] = "f270", + }, + ["fa-ambulance"] = { + ["char"] = "", + ["code"] = "f0f9", + }, + ["fa-american_sign_language_interpreting"] = { + ["char"] = "", + ["code"] = "f2a3", + }, + ["fa-anchor"] = { + ["char"] = "", + ["code"] = "f13d", + }, + ["fa-android"] = { + ["char"] = "", + ["code"] = "f17b", + }, + ["fa-angellist"] = { + ["char"] = "", + ["code"] = "f209", + }, + ["fa-angle_double_down"] = { + ["char"] = "", + ["code"] = "f103", + }, + ["fa-angle_double_left"] = { + ["char"] = "", + ["code"] = "f100", + }, + ["fa-angle_double_right"] = { + ["char"] = "", + ["code"] = "f101", + }, + ["fa-angle_double_up"] = { + ["char"] = "", + ["code"] = "f102", + }, + ["fa-angle_down"] = { + ["char"] = "", + ["code"] = "f107", + }, + ["fa-angle_left"] = { + ["char"] = "", + ["code"] = "f104", + }, + ["fa-angle_right"] = { + ["char"] = "", + ["code"] = "f105", + }, + ["fa-angle_up"] = { + ["char"] = "", + ["code"] = "f106", + }, + ["fa-apple"] = { + ["char"] = "", + ["code"] = "f179", + }, + ["fa-archive"] = { + ["char"] = "", + ["code"] = "f187", + }, + ["fa-area_chart"] = { + ["char"] = "", + ["code"] = "f1fe", + }, + ["fa-arrow_circle_down"] = { + ["char"] = "", + ["code"] = "f0ab", + }, + ["fa-arrow_circle_left"] = { + ["char"] = "", + ["code"] = "f0a8", + }, + ["fa-arrow_circle_o_down"] = { + ["char"] = "", + ["code"] = "f01a", + }, + ["fa-arrow_circle_o_left"] = { + ["char"] = "", + ["code"] = "f190", + }, + ["fa-arrow_circle_o_right"] = { + ["char"] = "", + ["code"] = "f18e", + }, + ["fa-arrow_circle_o_up"] = { + ["char"] = "", + ["code"] = "f01b", + }, + ["fa-arrow_circle_right"] = { + ["char"] = "", + ["code"] = "f0a9", + }, + ["fa-arrow_circle_up"] = { + ["char"] = "", + ["code"] = "f0aa", + }, + ["fa-arrow_down"] = { + ["char"] = "", + ["code"] = "f063", + }, + ["fa-arrow_left"] = { + ["char"] = "", + ["code"] = "f060", + }, + ["fa-arrow_right"] = { + ["char"] = "", + ["code"] = "f061", + }, + ["fa-arrow_up"] = { + ["char"] = "", + ["code"] = "f062", + }, + ["fa-arrows"] = { + ["char"] = "", + ["code"] = "f047", + }, + ["fa-arrows_alt"] = { + ["char"] = "", + ["code"] = "f0b2", + }, + ["fa-arrows_h"] = { + ["char"] = "", + ["code"] = "f07e", + }, + ["fa-arrows_v"] = { + ["char"] = "", + ["code"] = "f07d", + }, + ["fa-asl_interpreting"] = { + ["char"] = "", + ["code"] = "f2a3", + }, + ["fa-assistive_listening_systems"] = { + ["char"] = "", + ["code"] = "f2a2", + }, + ["fa-asterisk"] = { + ["char"] = "", + ["code"] = "f069", + }, + ["fa-at"] = { + ["char"] = "", + ["code"] = "f1fa", + }, + ["fa-audio_description"] = { + ["char"] = "", + ["code"] = "f29e", + }, + ["fa-automobile"] = { + ["char"] = "", + ["code"] = "f1b9", + }, + ["fa-backward"] = { + ["char"] = "", + ["code"] = "f04a", + }, + ["fa-balance_scale"] = { + ["char"] = "", + ["code"] = "f24e", + }, + ["fa-ban"] = { + ["char"] = "", + ["code"] = "f05e", + }, + ["fa-bandcamp"] = { + ["char"] = "", + ["code"] = "f2d5", + }, + ["fa-bank"] = { + ["char"] = "", + ["code"] = "f19c", + }, + ["fa-bar_chart"] = { + ["char"] = "", + ["code"] = "f080", + }, + ["fa-bar_chart_o"] = { + ["char"] = "", + ["code"] = "f080", + }, + ["fa-barcode"] = { + ["char"] = "", + ["code"] = "f02a", + }, + ["fa-bars"] = { + ["char"] = "", + ["code"] = "f0c9", + }, + ["fa-bath"] = { + ["char"] = "", + ["code"] = "f2cd", + }, + ["fa-bathtub"] = { + ["char"] = "", + ["code"] = "f2cd", + }, + ["fa-battery"] = { + ["char"] = "", + ["code"] = "f240", + }, + ["fa-battery_0"] = { + ["char"] = "", + ["code"] = "f244", + }, + ["fa-battery_1"] = { + ["char"] = "", + ["code"] = "f243", + }, + ["fa-battery_2"] = { + ["char"] = "", + ["code"] = "f242", + }, + ["fa-battery_3"] = { + ["char"] = "", + ["code"] = "f241", + }, + ["fa-battery_4"] = { + ["char"] = "", + ["code"] = "f240", + }, + ["fa-battery_empty"] = { + ["char"] = "", + ["code"] = "f244", + }, + ["fa-battery_full"] = { + ["char"] = "", + ["code"] = "f240", + }, + ["fa-battery_half"] = { + ["char"] = "", + ["code"] = "f242", + }, + ["fa-battery_quarter"] = { + ["char"] = "", + ["code"] = "f243", + }, + ["fa-battery_three_quarters"] = { + ["char"] = "", + ["code"] = "f241", + }, + ["fa-bed"] = { + ["char"] = "", + ["code"] = "f236", + }, + ["fa-beer"] = { + ["char"] = "", + ["code"] = "f0fc", + }, + ["fa-behance"] = { + ["char"] = "", + ["code"] = "f1b4", + }, + ["fa-behance_square"] = { + ["char"] = "", + ["code"] = "f1b5", + }, + ["fa-bell"] = { + ["char"] = "", + ["code"] = "f0f3", + }, + ["fa-bell_o"] = { + ["char"] = "", + ["code"] = "f0a2", + }, + ["fa-bell_slash"] = { + ["char"] = "", + ["code"] = "f1f6", + }, + ["fa-bell_slash_o"] = { + ["char"] = "", + ["code"] = "f1f7", + }, + ["fa-bicycle"] = { + ["char"] = "", + ["code"] = "f206", + }, + ["fa-binoculars"] = { + ["char"] = "", + ["code"] = "f1e5", + }, + ["fa-birthday_cake"] = { + ["char"] = "", + ["code"] = "f1fd", + }, + ["fa-bitbucket"] = { + ["char"] = "", + ["code"] = "f171", + }, + ["fa-bitbucket_square"] = { + ["char"] = "", + ["code"] = "f172", + }, + ["fa-bitcoin"] = { + ["char"] = "", + ["code"] = "f15a", + }, + ["fa-black_tie"] = { + ["char"] = "", + ["code"] = "f27e", + }, + ["fa-blind"] = { + ["char"] = "", + ["code"] = "f29d", + }, + ["fa-bluetooth"] = { + ["char"] = "", + ["code"] = "f293", + }, + ["fa-bluetooth_b"] = { + ["char"] = "", + ["code"] = "f294", + }, + ["fa-bold"] = { + ["char"] = "", + ["code"] = "f032", + }, + ["fa-bolt"] = { + ["char"] = "", + ["code"] = "f0e7", + }, + ["fa-bomb"] = { + ["char"] = "", + ["code"] = "f1e2", + }, + ["fa-book"] = { + ["char"] = "", + ["code"] = "f02d", + }, + ["fa-bookmark"] = { + ["char"] = "", + ["code"] = "f02e", + }, + ["fa-bookmark_o"] = { + ["char"] = "", + ["code"] = "f097", + }, + ["fa-braille"] = { + ["char"] = "", + ["code"] = "f2a1", + }, + ["fa-briefcase"] = { + ["char"] = "", + ["code"] = "f0b1", + }, + ["fa-btc"] = { + ["char"] = "", + ["code"] = "f15a", + }, + ["fa-bug"] = { + ["char"] = "", + ["code"] = "f188", + }, + ["fa-building"] = { + ["char"] = "", + ["code"] = "f1ad", + }, + ["fa-building_o"] = { + ["char"] = "", + ["code"] = "f0f7", + }, + ["fa-bullhorn"] = { + ["char"] = "", + ["code"] = "f0a1", + }, + ["fa-bullseye"] = { + ["char"] = "", + ["code"] = "f140", + }, + ["fa-bus"] = { + ["char"] = "", + ["code"] = "f207", + }, + ["fa-buysellads"] = { + ["char"] = "", + ["code"] = "f20d", + }, + ["fa-cab"] = { + ["char"] = "", + ["code"] = "f1ba", + }, + ["fa-calculator"] = { + ["char"] = "", + ["code"] = "f1ec", + }, + ["fa-calendar"] = { + ["char"] = "", + ["code"] = "f073", + }, + ["fa-calendar_check_o"] = { + ["char"] = "", + ["code"] = "f274", + }, + ["fa-calendar_minus_o"] = { + ["char"] = "", + ["code"] = "f272", + }, + ["fa-calendar_o"] = { + ["char"] = "", + ["code"] = "f133", + }, + ["fa-calendar_plus_o"] = { + ["char"] = "", + ["code"] = "f271", + }, + ["fa-calendar_times_o"] = { + ["char"] = "", + ["code"] = "f273", + }, + ["fa-camera"] = { + ["char"] = "", + ["code"] = "f030", + }, + ["fa-camera_retro"] = { + ["char"] = "", + ["code"] = "f083", + }, + ["fa-car"] = { + ["char"] = "", + ["code"] = "f1b9", + }, + ["fa-caret_down"] = { + ["char"] = "", + ["code"] = "f0d7", + }, + ["fa-caret_left"] = { + ["char"] = "", + ["code"] = "f0d9", + }, + ["fa-caret_right"] = { + ["char"] = "", + ["code"] = "f0da", + }, + ["fa-caret_square_o_down"] = { + ["char"] = "", + ["code"] = "f150", + }, + ["fa-caret_square_o_left"] = { + ["char"] = "", + ["code"] = "f191", + }, + ["fa-caret_square_o_right"] = { + ["char"] = "", + ["code"] = "f152", + }, + ["fa-caret_square_o_up"] = { + ["char"] = "", + ["code"] = "f151", + }, + ["fa-caret_up"] = { + ["char"] = "", + ["code"] = "f0d8", + }, + ["fa-cart_arrow_down"] = { + ["char"] = "", + ["code"] = "f218", + }, + ["fa-cart_plus"] = { + ["char"] = "", + ["code"] = "f217", + }, + ["fa-cc"] = { + ["char"] = "", + ["code"] = "f20a", + }, + ["fa-cc_amex"] = { + ["char"] = "", + ["code"] = "f1f3", + }, + ["fa-cc_diners_club"] = { + ["char"] = "", + ["code"] = "f24c", + }, + ["fa-cc_discover"] = { + ["char"] = "", + ["code"] = "f1f2", + }, + ["fa-cc_jcb"] = { + ["char"] = "", + ["code"] = "f24b", + }, + ["fa-cc_mastercard"] = { + ["char"] = "", + ["code"] = "f1f1", + }, + ["fa-cc_paypal"] = { + ["char"] = "", + ["code"] = "f1f4", + }, + ["fa-cc_stripe"] = { + ["char"] = "", + ["code"] = "f1f5", + }, + ["fa-cc_visa"] = { + ["char"] = "", + ["code"] = "f1f0", + }, + ["fa-certificate"] = { + ["char"] = "", + ["code"] = "f0a3", + }, + ["fa-chain"] = { + ["char"] = "", + ["code"] = "f0c1", + }, + ["fa-chain_broken"] = { + ["char"] = "", + ["code"] = "f127", + }, + ["fa-check"] = { + ["char"] = "", + ["code"] = "f00c", + }, + ["fa-check_circle"] = { + ["char"] = "", + ["code"] = "f058", + }, + ["fa-check_circle_o"] = { + ["char"] = "", + ["code"] = "f05d", + }, + ["fa-check_square"] = { + ["char"] = "", + ["code"] = "f14a", + }, + ["fa-check_square_o"] = { + ["char"] = "", + ["code"] = "f046", + }, + ["fa-chevron_circle_down"] = { + ["char"] = "", + ["code"] = "f13a", + }, + ["fa-chevron_circle_left"] = { + ["char"] = "", + ["code"] = "f137", + }, + ["fa-chevron_circle_right"] = { + ["char"] = "", + ["code"] = "f138", + }, + ["fa-chevron_circle_up"] = { + ["char"] = "", + ["code"] = "f139", + }, + ["fa-chevron_down"] = { + ["char"] = "", + ["code"] = "f078", + }, + ["fa-chevron_left"] = { + ["char"] = "", + ["code"] = "f053", + }, + ["fa-chevron_right"] = { + ["char"] = "", + ["code"] = "f054", + }, + ["fa-chevron_up"] = { + ["char"] = "", + ["code"] = "f077", + }, + ["fa-child"] = { + ["char"] = "", + ["code"] = "f1ae", + }, + ["fa-chrome"] = { + ["char"] = "", + ["code"] = "f268", + }, + ["fa-circle"] = { + ["char"] = "", + ["code"] = "f111", + }, + ["fa-circle_o"] = { + ["char"] = "", + ["code"] = "f10c", + }, + ["fa-circle_o_notch"] = { + ["char"] = "", + ["code"] = "f1ce", + }, + ["fa-circle_thin"] = { + ["char"] = "", + ["code"] = "f1db", + }, + ["fa-clipboard"] = { + ["char"] = "", + ["code"] = "f0ea", + }, + ["fa-clock_o"] = { + ["char"] = "", + ["code"] = "f017", + }, + ["fa-clone"] = { + ["char"] = "", + ["code"] = "f24d", + }, + ["fa-close"] = { + ["char"] = "", + ["code"] = "f00d", + }, + ["fa-cloud"] = { + ["char"] = "", + ["code"] = "f0c2", + }, + ["fa-cloud_download"] = { + ["char"] = "", + ["code"] = "f0ed", + }, + ["fa-cloud_upload"] = { + ["char"] = "", + ["code"] = "f0ee", + }, + ["fa-cny"] = { + ["char"] = "", + ["code"] = "f157", + }, + ["fa-code"] = { + ["char"] = "", + ["code"] = "f121", + }, + ["fa-code_fork"] = { + ["char"] = "", + ["code"] = "f126", + }, + ["fa-codepen"] = { + ["char"] = "", + ["code"] = "f1cb", + }, + ["fa-codiepie"] = { + ["char"] = "", + ["code"] = "f284", + }, + ["fa-coffee"] = { + ["char"] = "", + ["code"] = "f0f4", + }, + ["fa-cog"] = { + ["char"] = "", + ["code"] = "f013", + }, + ["fa-cogs"] = { + ["char"] = "", + ["code"] = "f085", + }, + ["fa-columns"] = { + ["char"] = "", + ["code"] = "f0db", + }, + ["fa-comment"] = { + ["char"] = "", + ["code"] = "f075", + }, + ["fa-comment_o"] = { + ["char"] = "", + ["code"] = "f0e5", + }, + ["fa-commenting"] = { + ["char"] = "", + ["code"] = "f27a", + }, + ["fa-commenting_o"] = { + ["char"] = "", + ["code"] = "f27b", + }, + ["fa-comments"] = { + ["char"] = "", + ["code"] = "f086", + }, + ["fa-comments_o"] = { + ["char"] = "", + ["code"] = "f0e6", + }, + ["fa-compass"] = { + ["char"] = "", + ["code"] = "f14e", + }, + ["fa-compress"] = { + ["char"] = "", + ["code"] = "f066", + }, + ["fa-connectdevelop"] = { + ["char"] = "", + ["code"] = "f20e", + }, + ["fa-contao"] = { + ["char"] = "", + ["code"] = "f26d", + }, + ["fa-copy"] = { + ["char"] = "", + ["code"] = "f0c5", + }, + ["fa-copyright"] = { + ["char"] = "", + ["code"] = "f1f9", + }, + ["fa-creative_commons"] = { + ["char"] = "", + ["code"] = "f25e", + }, + ["fa-credit_card"] = { + ["char"] = "", + ["code"] = "f09d", + }, + ["fa-credit_card_alt"] = { + ["char"] = "", + ["code"] = "f283", + }, + ["fa-crop"] = { + ["char"] = "", + ["code"] = "f125", + }, + ["fa-crosshairs"] = { + ["char"] = "", + ["code"] = "f05b", + }, + ["fa-css3"] = { + ["char"] = "", + ["code"] = "f13c", + }, + ["fa-cube"] = { + ["char"] = "", + ["code"] = "f1b2", + }, + ["fa-cubes"] = { + ["char"] = "", + ["code"] = "f1b3", + }, + ["fa-cut"] = { + ["char"] = "", + ["code"] = "f0c4", + }, + ["fa-cutlery"] = { + ["char"] = "", + ["code"] = "f0f5", + }, + ["fa-dashboard"] = { + ["char"] = "", + ["code"] = "f0e4", + }, + ["fa-dashcube"] = { + ["char"] = "", + ["code"] = "f210", + }, + ["fa-database"] = { + ["char"] = "", + ["code"] = "f1c0", + }, + ["fa-deaf"] = { + ["char"] = "", + ["code"] = "f2a4", + }, + ["fa-deafness"] = { + ["char"] = "", + ["code"] = "f2a4", + }, + ["fa-dedent"] = { + ["char"] = "", + ["code"] = "f03b", + }, + ["fa-delicious"] = { + ["char"] = "", + ["code"] = "f1a5", + }, + ["fa-desktop"] = { + ["char"] = "", + ["code"] = "f108", + }, + ["fa-deviantart"] = { + ["char"] = "", + ["code"] = "f1bd", + }, + ["fa-diamond"] = { + ["char"] = "", + ["code"] = "f219", + }, + ["fa-digg"] = { + ["char"] = "", + ["code"] = "f1a6", + }, + ["fa-dollar"] = { + ["char"] = "", + ["code"] = "f155", + }, + ["fa-dot_circle_o"] = { + ["char"] = "", + ["code"] = "f192", + }, + ["fa-download"] = { + ["char"] = "", + ["code"] = "f019", + }, + ["fa-dribbble"] = { + ["char"] = "", + ["code"] = "f17d", + }, + ["fa-drivers_license"] = { + ["char"] = "", + ["code"] = "f2c2", + }, + ["fa-drivers_license_o"] = { + ["char"] = "", + ["code"] = "f2c3", + }, + ["fa-dropbox"] = { + ["char"] = "", + ["code"] = "f16b", + }, + ["fa-drupal"] = { + ["char"] = "", + ["code"] = "f1a9", + }, + ["fa-edge"] = { + ["char"] = "", + ["code"] = "f282", + }, + ["fa-edit"] = { + ["char"] = "", + ["code"] = "f044", + }, + ["fa-eercast"] = { + ["char"] = "", + ["code"] = "f2da", + }, + ["fa-eject"] = { + ["char"] = "", + ["code"] = "f052", + }, + ["fa-ellipsis_h"] = { + ["char"] = "", + ["code"] = "f141", + }, + ["fa-ellipsis_v"] = { + ["char"] = "", + ["code"] = "f142", + }, + ["fa-empire"] = { + ["char"] = "", + ["code"] = "f1d1", + }, + ["fa-envelope"] = { + ["char"] = "", + ["code"] = "f0e0", + }, + ["fa-envelope_o"] = { + ["char"] = "", + ["code"] = "f003", + }, + ["fa-envelope_open"] = { + ["char"] = "", + ["code"] = "f2b6", + }, + ["fa-envelope_open_o"] = { + ["char"] = "", + ["code"] = "f2b7", + }, + ["fa-envelope_square"] = { + ["char"] = "", + ["code"] = "f199", + }, + ["fa-envira"] = { + ["char"] = "", + ["code"] = "f299", + }, + ["fa-eraser"] = { + ["char"] = "", + ["code"] = "f12d", + }, + ["fa-etsy"] = { + ["char"] = "", + ["code"] = "f2d7", + }, + ["fa-eur"] = { + ["char"] = "", + ["code"] = "f153", + }, + ["fa-euro"] = { + ["char"] = "", + ["code"] = "f153", + }, + ["fa-exchange"] = { + ["char"] = "", + ["code"] = "f0ec", + }, + ["fa-exclamation"] = { + ["char"] = "", + ["code"] = "f12a", + }, + ["fa-exclamation_circle"] = { + ["char"] = "", + ["code"] = "f06a", + }, + ["fa-exclamation_triangle"] = { + ["char"] = "", + ["code"] = "f071", + }, + ["fa-expand"] = { + ["char"] = "", + ["code"] = "f065", + }, + ["fa-expeditedssl"] = { + ["char"] = "", + ["code"] = "f23e", + }, + ["fa-external_link"] = { + ["char"] = "", + ["code"] = "f08e", + }, + ["fa-external_link_square"] = { + ["char"] = "", + ["code"] = "f14c", + }, + ["fa-eye"] = { + ["char"] = "", + ["code"] = "f06e", + }, + ["fa-eye_slash"] = { + ["char"] = "", + ["code"] = "f070", + }, + ["fa-eyedropper"] = { + ["char"] = "", + ["code"] = "f1fb", + }, + ["fa-fa"] = { + ["char"] = "", + ["code"] = "f2b4", + }, + ["fa-facebook"] = { + ["char"] = "", + ["code"] = "f09a", + }, + ["fa-facebook_f"] = { + ["char"] = "", + ["code"] = "f09a", + }, + ["fa-facebook_official"] = { + ["char"] = "", + ["code"] = "f230", + }, + ["fa-facebook_square"] = { + ["char"] = "", + ["code"] = "f082", + }, + ["fa-fast_backward"] = { + ["char"] = "", + ["code"] = "f049", + }, + ["fa-fast_forward"] = { + ["char"] = "", + ["code"] = "f050", + }, + ["fa-fax"] = { + ["char"] = "", + ["code"] = "f1ac", + }, + ["fa-feed"] = { + ["char"] = "", + ["code"] = "f09e", + }, + ["fa-female"] = { + ["char"] = "", + ["code"] = "f182", + }, + ["fa-fighter_jet"] = { + ["char"] = "", + ["code"] = "f0fb", + }, + ["fa-file"] = { + ["char"] = "", + ["code"] = "f15b", + }, + ["fa-file_archive_o"] = { + ["char"] = "", + ["code"] = "f1c6", + }, + ["fa-file_audio_o"] = { + ["char"] = "", + ["code"] = "f1c7", + }, + ["fa-file_code_o"] = { + ["char"] = "", + ["code"] = "f1c9", + }, + ["fa-file_excel_o"] = { + ["char"] = "", + ["code"] = "f1c3", + }, + ["fa-file_image_o"] = { + ["char"] = "", + ["code"] = "f1c5", + }, + ["fa-file_movie_o"] = { + ["char"] = "", + ["code"] = "f1c8", + }, + ["fa-file_o"] = { + ["char"] = "", + ["code"] = "f016", + }, + ["fa-file_pdf_o"] = { + ["char"] = "", + ["code"] = "f1c1", + }, + ["fa-file_photo_o"] = { + ["char"] = "", + ["code"] = "f1c5", + }, + ["fa-file_picture_o"] = { + ["char"] = "", + ["code"] = "f1c5", + }, + ["fa-file_powerpoint_o"] = { + ["char"] = "", + ["code"] = "f1c4", + }, + ["fa-file_sound_o"] = { + ["char"] = "", + ["code"] = "f1c7", + }, + ["fa-file_text"] = { + ["char"] = "", + ["code"] = "f15c", + }, + ["fa-file_text_o"] = { + ["char"] = "", + ["code"] = "f0f6", + }, + ["fa-file_video_o"] = { + ["char"] = "", + ["code"] = "f1c8", + }, + ["fa-file_word_o"] = { + ["char"] = "", + ["code"] = "f1c2", + }, + ["fa-file_zip_o"] = { + ["char"] = "", + ["code"] = "f1c6", + }, + ["fa-files_o"] = { + ["char"] = "", + ["code"] = "f0c5", + }, + ["fa-film"] = { + ["char"] = "", + ["code"] = "f008", + }, + ["fa-filter"] = { + ["char"] = "", + ["code"] = "f0b0", + }, + ["fa-fire"] = { + ["char"] = "", + ["code"] = "f06d", + }, + ["fa-fire_extinguisher"] = { + ["char"] = "", + ["code"] = "f134", + }, + ["fa-firefox"] = { + ["char"] = "", + ["code"] = "f269", + }, + ["fa-first_order"] = { + ["char"] = "", + ["code"] = "f2b0", + }, + ["fa-flag"] = { + ["char"] = "", + ["code"] = "f024", + }, + ["fa-flag_checkered"] = { + ["char"] = "", + ["code"] = "f11e", + }, + ["fa-flag_o"] = { + ["char"] = "", + ["code"] = "f11d", + }, + ["fa-flash"] = { + ["char"] = "", + ["code"] = "f0e7", + }, + ["fa-flask"] = { + ["char"] = "", + ["code"] = "f0c3", + }, + ["fa-flickr"] = { + ["char"] = "", + ["code"] = "f16e", + }, + ["fa-floppy_o"] = { + ["char"] = "", + ["code"] = "f0c7", + }, + ["fa-folder"] = { + ["char"] = "", + ["code"] = "f07b", + }, + ["fa-folder_o"] = { + ["char"] = "", + ["code"] = "f114", + }, + ["fa-folder_open"] = { + ["char"] = "", + ["code"] = "f07c", + }, + ["fa-folder_open_o"] = { + ["char"] = "", + ["code"] = "f115", + }, + ["fa-font"] = { + ["char"] = "", + ["code"] = "f031", + }, + ["fa-font_awesome"] = { + ["char"] = "", + ["code"] = "f2b4", + }, + ["fa-fonticons"] = { + ["char"] = "", + ["code"] = "f280", + }, + ["fa-fort_awesome"] = { + ["char"] = "", + ["code"] = "f286", + }, + ["fa-forumbee"] = { + ["char"] = "", + ["code"] = "f211", + }, + ["fa-forward"] = { + ["char"] = "", + ["code"] = "f04e", + }, + ["fa-foursquare"] = { + ["char"] = "", + ["code"] = "f180", + }, + ["fa-free_code_camp"] = { + ["char"] = "", + ["code"] = "f2c5", + }, + ["fa-frown_o"] = { + ["char"] = "", + ["code"] = "f119", + }, + ["fa-futbol_o"] = { + ["char"] = "", + ["code"] = "f1e3", + }, + ["fa-gamepad"] = { + ["char"] = "", + ["code"] = "f11b", + }, + ["fa-gavel"] = { + ["char"] = "", + ["code"] = "f0e3", + }, + ["fa-gbp"] = { + ["char"] = "", + ["code"] = "f154", + }, + ["fa-ge"] = { + ["char"] = "", + ["code"] = "f1d1", + }, + ["fa-gear"] = { + ["char"] = "", + ["code"] = "f013", + }, + ["fa-gears"] = { + ["char"] = "", + ["code"] = "f085", + }, + ["fa-genderless"] = { + ["char"] = "", + ["code"] = "f22d", + }, + ["fa-get_pocket"] = { + ["char"] = "", + ["code"] = "f265", + }, + ["fa-gg"] = { + ["char"] = "", + ["code"] = "f260", + }, + ["fa-gg_circle"] = { + ["char"] = "", + ["code"] = "f261", + }, + ["fa-gift"] = { + ["char"] = "", + ["code"] = "f06b", + }, + ["fa-git"] = { + ["char"] = "", + ["code"] = "f1d3", + }, + ["fa-git_square"] = { + ["char"] = "", + ["code"] = "f1d2", + }, + ["fa-github"] = { + ["char"] = "", + ["code"] = "f09b", + }, + ["fa-github_alt"] = { + ["char"] = "", + ["code"] = "f113", + }, + ["fa-github_square"] = { + ["char"] = "", + ["code"] = "f092", + }, + ["fa-gitlab"] = { + ["char"] = "", + ["code"] = "f296", + }, + ["fa-gittip"] = { + ["char"] = "", + ["code"] = "f184", + }, + ["fa-glass"] = { + ["char"] = "", + ["code"] = "f000", + }, + ["fa-glide"] = { + ["char"] = "", + ["code"] = "f2a5", + }, + ["fa-glide_g"] = { + ["char"] = "", + ["code"] = "f2a6", + }, + ["fa-globe"] = { + ["char"] = "", + ["code"] = "f0ac", + }, + ["fa-google"] = { + ["char"] = "", + ["code"] = "f1a0", + }, + ["fa-google_plus"] = { + ["char"] = "", + ["code"] = "f0d5", + }, + ["fa-google_plus_circle"] = { + ["char"] = "", + ["code"] = "f2b3", + }, + ["fa-google_plus_official"] = { + ["char"] = "", + ["code"] = "f2b3", + }, + ["fa-google_plus_square"] = { + ["char"] = "", + ["code"] = "f0d4", + }, + ["fa-google_wallet"] = { + ["char"] = "", + ["code"] = "f1ee", + }, + ["fa-graduation_cap"] = { + ["char"] = "", + ["code"] = "f19d", + }, + ["fa-gratipay"] = { + ["char"] = "", + ["code"] = "f184", + }, + ["fa-grav"] = { + ["char"] = "", + ["code"] = "f2d6", + }, + ["fa-group"] = { + ["char"] = "", + ["code"] = "f0c0", + }, + ["fa-h_square"] = { + ["char"] = "", + ["code"] = "f0fd", + }, + ["fa-hacker_news"] = { + ["char"] = "", + ["code"] = "f1d4", + }, + ["fa-hand_grab_o"] = { + ["char"] = "", + ["code"] = "f255", + }, + ["fa-hand_lizard_o"] = { + ["char"] = "", + ["code"] = "f258", + }, + ["fa-hand_o_down"] = { + ["char"] = "", + ["code"] = "f0a7", + }, + ["fa-hand_o_left"] = { + ["char"] = "", + ["code"] = "f0a5", + }, + ["fa-hand_o_right"] = { + ["char"] = "", + ["code"] = "f0a4", + }, + ["fa-hand_o_up"] = { + ["char"] = "", + ["code"] = "f0a6", + }, + ["fa-hand_paper_o"] = { + ["char"] = "", + ["code"] = "f256", + }, + ["fa-hand_peace_o"] = { + ["char"] = "", + ["code"] = "f25b", + }, + ["fa-hand_pointer_o"] = { + ["char"] = "", + ["code"] = "f25a", + }, + ["fa-hand_rock_o"] = { + ["char"] = "", + ["code"] = "f255", + }, + ["fa-hand_scissors_o"] = { + ["char"] = "", + ["code"] = "f257", + }, + ["fa-hand_spock_o"] = { + ["char"] = "", + ["code"] = "f259", + }, + ["fa-hand_stop_o"] = { + ["char"] = "", + ["code"] = "f256", + }, + ["fa-handshake_o"] = { + ["char"] = "", + ["code"] = "f2b5", + }, + ["fa-hard_of_hearing"] = { + ["char"] = "", + ["code"] = "f2a4", + }, + ["fa-hashtag"] = { + ["char"] = "", + ["code"] = "f292", + }, + ["fa-hdd_o"] = { + ["char"] = "", + ["code"] = "f0a0", + }, + ["fa-header"] = { + ["char"] = "", + ["code"] = "f1dc", + }, + ["fa-headphones"] = { + ["char"] = "", + ["code"] = "f025", + }, + ["fa-heart"] = { + ["char"] = "", + ["code"] = "f004", + }, + ["fa-heart_o"] = { + ["char"] = "", + ["code"] = "f08a", + }, + ["fa-heartbeat"] = { + ["char"] = "", + ["code"] = "f21e", + }, + ["fa-history"] = { + ["char"] = "", + ["code"] = "f1da", + }, + ["fa-home"] = { + ["char"] = "", + ["code"] = "f015", + }, + ["fa-hospital_o"] = { + ["char"] = "", + ["code"] = "f0f8", + }, + ["fa-hotel"] = { + ["char"] = "", + ["code"] = "f236", + }, + ["fa-hourglass"] = { + ["char"] = "", + ["code"] = "f254", + }, + ["fa-hourglass_1"] = { + ["char"] = "", + ["code"] = "f251", + }, + ["fa-hourglass_2"] = { + ["char"] = "", + ["code"] = "f252", + }, + ["fa-hourglass_3"] = { + ["char"] = "", + ["code"] = "f253", + }, + ["fa-hourglass_end"] = { + ["char"] = "", + ["code"] = "f253", + }, + ["fa-hourglass_half"] = { + ["char"] = "", + ["code"] = "f252", + }, + ["fa-hourglass_o"] = { + ["char"] = "", + ["code"] = "f250", + }, + ["fa-hourglass_start"] = { + ["char"] = "", + ["code"] = "f251", + }, + ["fa-houzz"] = { + ["char"] = "", + ["code"] = "f27c", + }, + ["fa-html5"] = { + ["char"] = "", + ["code"] = "f13b", + }, + ["fa-i_cursor"] = { + ["char"] = "", + ["code"] = "f246", + }, + ["fa-id_badge"] = { + ["char"] = "", + ["code"] = "f2c1", + }, + ["fa-id_card"] = { + ["char"] = "", + ["code"] = "f2c2", + }, + ["fa-id_card_o"] = { + ["char"] = "", + ["code"] = "f2c3", + }, + ["fa-ils"] = { + ["char"] = "", + ["code"] = "f20b", + }, + ["fa-image"] = { + ["char"] = "", + ["code"] = "f03e", + }, + ["fa-imdb"] = { + ["char"] = "", + ["code"] = "f2d8", + }, + ["fa-inbox"] = { + ["char"] = "", + ["code"] = "f01c", + }, + ["fa-indent"] = { + ["char"] = "", + ["code"] = "f03c", + }, + ["fa-industry"] = { + ["char"] = "", + ["code"] = "f275", + }, + ["fa-info"] = { + ["char"] = "", + ["code"] = "f129", + }, + ["fa-info_circle"] = { + ["char"] = "", + ["code"] = "f05a", + }, + ["fa-inr"] = { + ["char"] = "", + ["code"] = "f156", + }, + ["fa-instagram"] = { + ["char"] = "", + ["code"] = "f16d", + }, + ["fa-institution"] = { + ["char"] = "", + ["code"] = "f19c", + }, + ["fa-internet_explorer"] = { + ["char"] = "", + ["code"] = "f26b", + }, + ["fa-intersex"] = { + ["char"] = "", + ["code"] = "f224", + }, + ["fa-ioxhost"] = { + ["char"] = "", + ["code"] = "f208", + }, + ["fa-italic"] = { + ["char"] = "", + ["code"] = "f033", + }, + ["fa-joomla"] = { + ["char"] = "", + ["code"] = "f1aa", + }, + ["fa-jpy"] = { + ["char"] = "", + ["code"] = "f157", + }, + ["fa-jsfiddle"] = { + ["char"] = "", + ["code"] = "f1cc", + }, + ["fa-key"] = { + ["char"] = "", + ["code"] = "f084", + }, + ["fa-keyboard_o"] = { + ["char"] = "", + ["code"] = "f11c", + }, + ["fa-krw"] = { + ["char"] = "", + ["code"] = "f159", + }, + ["fa-language"] = { + ["char"] = "", + ["code"] = "f1ab", + }, + ["fa-laptop"] = { + ["char"] = "", + ["code"] = "f109", + }, + ["fa-lastfm"] = { + ["char"] = "", + ["code"] = "f202", + }, + ["fa-lastfm_square"] = { + ["char"] = "", + ["code"] = "f203", + }, + ["fa-leaf"] = { + ["char"] = "", + ["code"] = "f06c", + }, + ["fa-leanpub"] = { + ["char"] = "", + ["code"] = "f212", + }, + ["fa-legal"] = { + ["char"] = "", + ["code"] = "f0e3", + }, + ["fa-lemon_o"] = { + ["char"] = "", + ["code"] = "f094", + }, + ["fa-level_down"] = { + ["char"] = "", + ["code"] = "f149", + }, + ["fa-level_up"] = { + ["char"] = "", + ["code"] = "f148", + }, + ["fa-life_bouy"] = { + ["char"] = "", + ["code"] = "f1cd", + }, + ["fa-life_buoy"] = { + ["char"] = "", + ["code"] = "f1cd", + }, + ["fa-life_ring"] = { + ["char"] = "", + ["code"] = "f1cd", + }, + ["fa-life_saver"] = { + ["char"] = "", + ["code"] = "f1cd", + }, + ["fa-lightbulb_o"] = { + ["char"] = "", + ["code"] = "f0eb", + }, + ["fa-line_chart"] = { + ["char"] = "", + ["code"] = "f201", + }, + ["fa-link"] = { + ["char"] = "", + ["code"] = "f0c1", + }, + ["fa-linkedin"] = { + ["char"] = "", + ["code"] = "f0e1", + }, + ["fa-linkedin_square"] = { + ["char"] = "", + ["code"] = "f08c", + }, + ["fa-linode"] = { + ["char"] = "", + ["code"] = "f2b8", + }, + ["fa-linux"] = { + ["char"] = "", + ["code"] = "f17c", + }, + ["fa-list"] = { + ["char"] = "", + ["code"] = "f03a", + }, + ["fa-list_alt"] = { + ["char"] = "", + ["code"] = "f022", + }, + ["fa-list_ol"] = { + ["char"] = "", + ["code"] = "f0cb", + }, + ["fa-list_ul"] = { + ["char"] = "", + ["code"] = "f0ca", + }, + ["fa-location_arrow"] = { + ["char"] = "", + ["code"] = "f124", + }, + ["fa-lock"] = { + ["char"] = "", + ["code"] = "f023", + }, + ["fa-long_arrow_down"] = { + ["char"] = "", + ["code"] = "f175", + }, + ["fa-long_arrow_left"] = { + ["char"] = "", + ["code"] = "f177", + }, + ["fa-long_arrow_right"] = { + ["char"] = "", + ["code"] = "f178", + }, + ["fa-long_arrow_up"] = { + ["char"] = "", + ["code"] = "f176", + }, + ["fa-low_vision"] = { + ["char"] = "", + ["code"] = "f2a8", + }, + ["fa-magic"] = { + ["char"] = "", + ["code"] = "f0d0", + }, + ["fa-magnet"] = { + ["char"] = "", + ["code"] = "f076", + }, + ["fa-mail_forward"] = { + ["char"] = "", + ["code"] = "f064", + }, + ["fa-mail_reply"] = { + ["char"] = "", + ["code"] = "f112", + }, + ["fa-mail_reply_all"] = { + ["char"] = "", + ["code"] = "f122", + }, + ["fa-male"] = { + ["char"] = "", + ["code"] = "f183", + }, + ["fa-map"] = { + ["char"] = "", + ["code"] = "f279", + }, + ["fa-map_marker"] = { + ["char"] = "", + ["code"] = "f041", + }, + ["fa-map_o"] = { + ["char"] = "", + ["code"] = "f278", + }, + ["fa-map_pin"] = { + ["char"] = "", + ["code"] = "f276", + }, + ["fa-map_signs"] = { + ["char"] = "", + ["code"] = "f277", + }, + ["fa-mars"] = { + ["char"] = "", + ["code"] = "f222", + }, + ["fa-mars_double"] = { + ["char"] = "", + ["code"] = "f227", + }, + ["fa-mars_stroke"] = { + ["char"] = "", + ["code"] = "f229", + }, + ["fa-mars_stroke_h"] = { + ["char"] = "", + ["code"] = "f22b", + }, + ["fa-mars_stroke_v"] = { + ["char"] = "", + ["code"] = "f22a", + }, + ["fa-maxcdn"] = { + ["char"] = "", + ["code"] = "f136", + }, + ["fa-meanpath"] = { + ["char"] = "", + ["code"] = "f20c", + }, + ["fa-medium"] = { + ["char"] = "", + ["code"] = "f23a", + }, + ["fa-medkit"] = { + ["char"] = "", + ["code"] = "f0fa", + }, + ["fa-meetup"] = { + ["char"] = "", + ["code"] = "f2e0", + }, + ["fa-meh_o"] = { + ["char"] = "", + ["code"] = "f11a", + }, + ["fa-mercury"] = { + ["char"] = "", + ["code"] = "f223", + }, + ["fa-microchip"] = { + ["char"] = "", + ["code"] = "f2db", + }, + ["fa-microphone"] = { + ["char"] = "", + ["code"] = "f130", + }, + ["fa-microphone_slash"] = { + ["char"] = "", + ["code"] = "f131", + }, + ["fa-minus"] = { + ["char"] = "", + ["code"] = "f068", + }, + ["fa-minus_circle"] = { + ["char"] = "", + ["code"] = "f056", + }, + ["fa-minus_square"] = { + ["char"] = "", + ["code"] = "f146", + }, + ["fa-minus_square_o"] = { + ["char"] = "", + ["code"] = "f147", + }, + ["fa-mixcloud"] = { + ["char"] = "", + ["code"] = "f289", + }, + ["fa-mobile"] = { + ["char"] = "", + ["code"] = "f10b", + }, + ["fa-mobile_phone"] = { + ["char"] = "", + ["code"] = "f10b", + }, + ["fa-modx"] = { + ["char"] = "", + ["code"] = "f285", + }, + ["fa-money"] = { + ["char"] = "", + ["code"] = "f0d6", + }, + ["fa-moon_o"] = { + ["char"] = "", + ["code"] = "f186", + }, + ["fa-mortar_board"] = { + ["char"] = "", + ["code"] = "f19d", + }, + ["fa-motorcycle"] = { + ["char"] = "", + ["code"] = "f21c", + }, + ["fa-mouse_pointer"] = { + ["char"] = "", + ["code"] = "f245", + }, + ["fa-music"] = { + ["char"] = "", + ["code"] = "f001", + }, + ["fa-navicon"] = { + ["char"] = "", + ["code"] = "f0c9", + }, + ["fa-neuter"] = { + ["char"] = "", + ["code"] = "f22c", + }, + ["fa-newspaper_o"] = { + ["char"] = "", + ["code"] = "f1ea", + }, + ["fa-object_group"] = { + ["char"] = "", + ["code"] = "f247", + }, + ["fa-object_ungroup"] = { + ["char"] = "", + ["code"] = "f248", + }, + ["fa-odnoklassniki"] = { + ["char"] = "", + ["code"] = "f263", + }, + ["fa-odnoklassniki_square"] = { + ["char"] = "", + ["code"] = "f264", + }, + ["fa-opencart"] = { + ["char"] = "", + ["code"] = "f23d", + }, + ["fa-openid"] = { + ["char"] = "", + ["code"] = "f19b", + }, + ["fa-opera"] = { + ["char"] = "", + ["code"] = "f26a", + }, + ["fa-optin_monster"] = { + ["char"] = "", + ["code"] = "f23c", + }, + ["fa-outdent"] = { + ["char"] = "", + ["code"] = "f03b", + }, + ["fa-pagelines"] = { + ["char"] = "", + ["code"] = "f18c", + }, + ["fa-paint_brush"] = { + ["char"] = "", + ["code"] = "f1fc", + }, + ["fa-paper_plane"] = { + ["char"] = "", + ["code"] = "f1d8", + }, + ["fa-paper_plane_o"] = { + ["char"] = "", + ["code"] = "f1d9", + }, + ["fa-paperclip"] = { + ["char"] = "", + ["code"] = "f0c6", + }, + ["fa-paragraph"] = { + ["char"] = "", + ["code"] = "f1dd", + }, + ["fa-paste"] = { + ["char"] = "", + ["code"] = "f0ea", + }, + ["fa-pause"] = { + ["char"] = "", + ["code"] = "f04c", + }, + ["fa-pause_circle"] = { + ["char"] = "", + ["code"] = "f28b", + }, + ["fa-pause_circle_o"] = { + ["char"] = "", + ["code"] = "f28c", + }, + ["fa-paw"] = { + ["char"] = "", + ["code"] = "f1b0", + }, + ["fa-paypal"] = { + ["char"] = "", + ["code"] = "f1ed", + }, + ["fa-pencil"] = { + ["char"] = "", + ["code"] = "f040", + }, + ["fa-pencil_square"] = { + ["char"] = "", + ["code"] = "f14b", + }, + ["fa-pencil_square_o"] = { + ["char"] = "", + ["code"] = "f044", + }, + ["fa-percent"] = { + ["char"] = "", + ["code"] = "f295", + }, + ["fa-phone"] = { + ["char"] = "", + ["code"] = "f095", + }, + ["fa-phone_square"] = { + ["char"] = "", + ["code"] = "f098", + }, + ["fa-photo"] = { + ["char"] = "", + ["code"] = "f03e", + }, + ["fa-picture_o"] = { + ["char"] = "", + ["code"] = "f03e", + }, + ["fa-pie_chart"] = { + ["char"] = "", + ["code"] = "f200", + }, + ["fa-pied_piper"] = { + ["char"] = "", + ["code"] = "f2ae", + }, + ["fa-pied_piper_alt"] = { + ["char"] = "", + ["code"] = "f1a8", + }, + ["fa-pied_piper_pp"] = { + ["char"] = "", + ["code"] = "f1a7", + }, + ["fa-pinterest"] = { + ["char"] = "", + ["code"] = "f0d2", + }, + ["fa-pinterest_p"] = { + ["char"] = "", + ["code"] = "f231", + }, + ["fa-pinterest_square"] = { + ["char"] = "", + ["code"] = "f0d3", + }, + ["fa-plane"] = { + ["char"] = "", + ["code"] = "f072", + }, + ["fa-play"] = { + ["char"] = "", + ["code"] = "f04b", + }, + ["fa-play_circle"] = { + ["char"] = "", + ["code"] = "f144", + }, + ["fa-play_circle_o"] = { + ["char"] = "", + ["code"] = "f01d", + }, + ["fa-plug"] = { + ["char"] = "", + ["code"] = "f1e6", + }, + ["fa-plus"] = { + ["char"] = "", + ["code"] = "f067", + }, + ["fa-plus_circle"] = { + ["char"] = "", + ["code"] = "f055", + }, + ["fa-plus_square"] = { + ["char"] = "", + ["code"] = "f0fe", + }, + ["fa-plus_square_o"] = { + ["char"] = "", + ["code"] = "f196", + }, + ["fa-podcast"] = { + ["char"] = "", + ["code"] = "f2ce", + }, + ["fa-power_off"] = { + ["char"] = "", + ["code"] = "f011", + }, + ["fa-print"] = { + ["char"] = "", + ["code"] = "f02f", + }, + ["fa-product_hunt"] = { + ["char"] = "", + ["code"] = "f288", + }, + ["fa-puzzle_piece"] = { + ["char"] = "", + ["code"] = "f12e", + }, + ["fa-qq"] = { + ["char"] = "", + ["code"] = "f1d6", + }, + ["fa-qrcode"] = { + ["char"] = "", + ["code"] = "f029", + }, + ["fa-question"] = { + ["char"] = "", + ["code"] = "f128", + }, + ["fa-question_circle"] = { + ["char"] = "", + ["code"] = "f059", + }, + ["fa-question_circle_o"] = { + ["char"] = "", + ["code"] = "f29c", + }, + ["fa-quora"] = { + ["char"] = "", + ["code"] = "f2c4", + }, + ["fa-quote_left"] = { + ["char"] = "", + ["code"] = "f10d", + }, + ["fa-quote_right"] = { + ["char"] = "", + ["code"] = "f10e", + }, + ["fa-ra"] = { + ["char"] = "", + ["code"] = "f1d0", + }, + ["fa-random"] = { + ["char"] = "", + ["code"] = "f074", + }, + ["fa-ravelry"] = { + ["char"] = "", + ["code"] = "f2d9", + }, + ["fa-rebel"] = { + ["char"] = "", + ["code"] = "f1d0", + }, + ["fa-recycle"] = { + ["char"] = "", + ["code"] = "f1b8", + }, + ["fa-reddit"] = { + ["char"] = "", + ["code"] = "f1a1", + }, + ["fa-reddit_alien"] = { + ["char"] = "", + ["code"] = "f281", + }, + ["fa-reddit_square"] = { + ["char"] = "", + ["code"] = "f1a2", + }, + ["fa-refresh"] = { + ["char"] = "", + ["code"] = "f021", + }, + ["fa-registered"] = { + ["char"] = "", + ["code"] = "f25d", + }, + ["fa-remove"] = { + ["char"] = "", + ["code"] = "f00d", + }, + ["fa-renren"] = { + ["char"] = "", + ["code"] = "f18b", + }, + ["fa-reorder"] = { + ["char"] = "", + ["code"] = "f0c9", + }, + ["fa-repeat"] = { + ["char"] = "", + ["code"] = "f01e", + }, + ["fa-reply"] = { + ["char"] = "", + ["code"] = "f112", + }, + ["fa-reply_all"] = { + ["char"] = "", + ["code"] = "f122", + }, + ["fa-resistance"] = { + ["char"] = "", + ["code"] = "f1d0", + }, + ["fa-retweet"] = { + ["char"] = "", + ["code"] = "f079", + }, + ["fa-rmb"] = { + ["char"] = "", + ["code"] = "f157", + }, + ["fa-road"] = { + ["char"] = "", + ["code"] = "f018", + }, + ["fa-rocket"] = { + ["char"] = "", + ["code"] = "f135", + }, + ["fa-rotate_left"] = { + ["char"] = "", + ["code"] = "f0e2", + }, + ["fa-rotate_right"] = { + ["char"] = "", + ["code"] = "f01e", + }, + ["fa-rouble"] = { + ["char"] = "", + ["code"] = "f158", + }, + ["fa-rss"] = { + ["char"] = "", + ["code"] = "f09e", + }, + ["fa-rss_square"] = { + ["char"] = "", + ["code"] = "f143", + }, + ["fa-rub"] = { + ["char"] = "", + ["code"] = "f158", + }, + ["fa-ruble"] = { + ["char"] = "", + ["code"] = "f158", + }, + ["fa-rupee"] = { + ["char"] = "", + ["code"] = "f156", + }, + ["fa-s15"] = { + ["char"] = "", + ["code"] = "f2cd", + }, + ["fa-safari"] = { + ["char"] = "", + ["code"] = "f267", + }, + ["fa-save"] = { + ["char"] = "", + ["code"] = "f0c7", + }, + ["fa-scissors"] = { + ["char"] = "", + ["code"] = "f0c4", + }, + ["fa-scribd"] = { + ["char"] = "", + ["code"] = "f28a", + }, + ["fa-search"] = { + ["char"] = "", + ["code"] = "f002", + }, + ["fa-search_minus"] = { + ["char"] = "", + ["code"] = "f010", + }, + ["fa-search_plus"] = { + ["char"] = "", + ["code"] = "f00e", + }, + ["fa-sellsy"] = { + ["char"] = "", + ["code"] = "f213", + }, + ["fa-send"] = { + ["char"] = "", + ["code"] = "f1d8", + }, + ["fa-send_o"] = { + ["char"] = "", + ["code"] = "f1d9", + }, + ["fa-server"] = { + ["char"] = "", + ["code"] = "f233", + }, + ["fa-share"] = { + ["char"] = "", + ["code"] = "f064", + }, + ["fa-share_alt"] = { + ["char"] = "", + ["code"] = "f1e0", + }, + ["fa-share_alt_square"] = { + ["char"] = "", + ["code"] = "f1e1", + }, + ["fa-share_square"] = { + ["char"] = "", + ["code"] = "f14d", + }, + ["fa-share_square_o"] = { + ["char"] = "", + ["code"] = "f045", + }, + ["fa-shekel"] = { + ["char"] = "", + ["code"] = "f20b", + }, + ["fa-sheqel"] = { + ["char"] = "", + ["code"] = "f20b", + }, + ["fa-shield"] = { + ["char"] = "", + ["code"] = "f132", + }, + ["fa-ship"] = { + ["char"] = "", + ["code"] = "f21a", + }, + ["fa-shirtsinbulk"] = { + ["char"] = "", + ["code"] = "f214", + }, + ["fa-shopping_bag"] = { + ["char"] = "", + ["code"] = "f290", + }, + ["fa-shopping_basket"] = { + ["char"] = "", + ["code"] = "f291", + }, + ["fa-shopping_cart"] = { + ["char"] = "", + ["code"] = "f07a", + }, + ["fa-shower"] = { + ["char"] = "", + ["code"] = "f2cc", + }, + ["fa-sign_in"] = { + ["char"] = "", + ["code"] = "f090", + }, + ["fa-sign_language"] = { + ["char"] = "", + ["code"] = "f2a7", + }, + ["fa-sign_out"] = { + ["char"] = "", + ["code"] = "f08b", + }, + ["fa-signal"] = { + ["char"] = "", + ["code"] = "f012", + }, + ["fa-signing"] = { + ["char"] = "", + ["code"] = "f2a7", + }, + ["fa-simplybuilt"] = { + ["char"] = "", + ["code"] = "f215", + }, + ["fa-sitemap"] = { + ["char"] = "", + ["code"] = "f0e8", + }, + ["fa-skyatlas"] = { + ["char"] = "", + ["code"] = "f216", + }, + ["fa-skype"] = { + ["char"] = "", + ["code"] = "f17e", + }, + ["fa-slack"] = { + ["char"] = "", + ["code"] = "f198", + }, + ["fa-sliders"] = { + ["char"] = "", + ["code"] = "f1de", + }, + ["fa-slideshare"] = { + ["char"] = "", + ["code"] = "f1e7", + }, + ["fa-smile_o"] = { + ["char"] = "", + ["code"] = "f118", + }, + ["fa-snapchat"] = { + ["char"] = "", + ["code"] = "f2ab", + }, + ["fa-snapchat_ghost"] = { + ["char"] = "", + ["code"] = "f2ac", + }, + ["fa-snapchat_square"] = { + ["char"] = "", + ["code"] = "f2ad", + }, + ["fa-snowflake_o"] = { + ["char"] = "", + ["code"] = "f2dc", + }, + ["fa-soccer_ball_o"] = { + ["char"] = "", + ["code"] = "f1e3", + }, + ["fa-sort"] = { + ["char"] = "", + ["code"] = "f0dc", + }, + ["fa-sort_alpha_asc"] = { + ["char"] = "", + ["code"] = "f15d", + }, + ["fa-sort_alpha_desc"] = { + ["char"] = "", + ["code"] = "f15e", + }, + ["fa-sort_amount_asc"] = { + ["char"] = "", + ["code"] = "f160", + }, + ["fa-sort_amount_desc"] = { + ["char"] = "", + ["code"] = "f161", + }, + ["fa-sort_asc"] = { + ["char"] = "", + ["code"] = "f0de", + }, + ["fa-sort_desc"] = { + ["char"] = "", + ["code"] = "f0dd", + }, + ["fa-sort_down"] = { + ["char"] = "", + ["code"] = "f0dd", + }, + ["fa-sort_numeric_asc"] = { + ["char"] = "", + ["code"] = "f162", + }, + ["fa-sort_numeric_desc"] = { + ["char"] = "", + ["code"] = "f163", + }, + ["fa-sort_up"] = { + ["char"] = "", + ["code"] = "f0de", + }, + ["fa-soundcloud"] = { + ["char"] = "", + ["code"] = "f1be", + }, + ["fa-space_shuttle"] = { + ["char"] = "", + ["code"] = "f197", + }, + ["fa-spinner"] = { + ["char"] = "", + ["code"] = "f110", + }, + ["fa-spoon"] = { + ["char"] = "", + ["code"] = "f1b1", + }, + ["fa-spotify"] = { + ["char"] = "", + ["code"] = "f1bc", + }, + ["fa-square"] = { + ["char"] = "", + ["code"] = "f0c8", + }, + ["fa-square_o"] = { + ["char"] = "", + ["code"] = "f096", + }, + ["fa-stack_exchange"] = { + ["char"] = "", + ["code"] = "f18d", + }, + ["fa-stack_overflow"] = { + ["char"] = "", + ["code"] = "f16c", + }, + ["fa-star"] = { + ["char"] = "", + ["code"] = "f005", + }, + ["fa-star_half"] = { + ["char"] = "", + ["code"] = "f089", + }, + ["fa-star_half_empty"] = { + ["char"] = "", + ["code"] = "f123", + }, + ["fa-star_half_full"] = { + ["char"] = "", + ["code"] = "f123", + }, + ["fa-star_half_o"] = { + ["char"] = "", + ["code"] = "f123", + }, + ["fa-star_o"] = { + ["char"] = "", + ["code"] = "f006", + }, + ["fa-steam"] = { + ["char"] = "", + ["code"] = "f1b6", + }, + ["fa-steam_square"] = { + ["char"] = "", + ["code"] = "f1b7", + }, + ["fa-step_backward"] = { + ["char"] = "", + ["code"] = "f048", + }, + ["fa-step_forward"] = { + ["char"] = "", + ["code"] = "f051", + }, + ["fa-stethoscope"] = { + ["char"] = "", + ["code"] = "f0f1", + }, + ["fa-sticky_note"] = { + ["char"] = "", + ["code"] = "f249", + }, + ["fa-sticky_note_o"] = { + ["char"] = "", + ["code"] = "f24a", + }, + ["fa-stop"] = { + ["char"] = "", + ["code"] = "f04d", + }, + ["fa-stop_circle"] = { + ["char"] = "", + ["code"] = "f28d", + }, + ["fa-stop_circle_o"] = { + ["char"] = "", + ["code"] = "f28e", + }, + ["fa-street_view"] = { + ["char"] = "", + ["code"] = "f21d", + }, + ["fa-strikethrough"] = { + ["char"] = "", + ["code"] = "f0cc", + }, + ["fa-stumbleupon"] = { + ["char"] = "", + ["code"] = "f1a4", + }, + ["fa-stumbleupon_circle"] = { + ["char"] = "", + ["code"] = "f1a3", + }, + ["fa-subscript"] = { + ["char"] = "", + ["code"] = "f12c", + }, + ["fa-subway"] = { + ["char"] = "", + ["code"] = "f239", + }, + ["fa-suitcase"] = { + ["char"] = "", + ["code"] = "f0f2", + }, + ["fa-sun_o"] = { + ["char"] = "", + ["code"] = "f185", + }, + ["fa-superpowers"] = { + ["char"] = "", + ["code"] = "f2dd", + }, + ["fa-superscript"] = { + ["char"] = "", + ["code"] = "f12b", + }, + ["fa-support"] = { + ["char"] = "", + ["code"] = "f1cd", + }, + ["fa-table"] = { + ["char"] = "", + ["code"] = "f0ce", + }, + ["fa-tablet"] = { + ["char"] = "", + ["code"] = "f10a", + }, + ["fa-tachometer"] = { + ["char"] = "", + ["code"] = "f0e4", + }, + ["fa-tag"] = { + ["char"] = "", + ["code"] = "f02b", + }, + ["fa-tags"] = { + ["char"] = "", + ["code"] = "f02c", + }, + ["fa-tasks"] = { + ["char"] = "", + ["code"] = "f0ae", + }, + ["fa-taxi"] = { + ["char"] = "", + ["code"] = "f1ba", + }, + ["fa-telegram"] = { + ["char"] = "", + ["code"] = "f2c6", + }, + ["fa-television"] = { + ["char"] = "", + ["code"] = "f26c", + }, + ["fa-tencent_weibo"] = { + ["char"] = "", + ["code"] = "f1d5", + }, + ["fa-terminal"] = { + ["char"] = "", + ["code"] = "f120", + }, + ["fa-text_height"] = { + ["char"] = "", + ["code"] = "f034", + }, + ["fa-text_width"] = { + ["char"] = "", + ["code"] = "f035", + }, + ["fa-th"] = { + ["char"] = "", + ["code"] = "f00a", + }, + ["fa-th_large"] = { + ["char"] = "", + ["code"] = "f009", + }, + ["fa-th_list"] = { + ["char"] = "", + ["code"] = "f00b", + }, + ["fa-themeisle"] = { + ["char"] = "", + ["code"] = "f2b2", + }, + ["fa-thermometer"] = { + ["char"] = "", + ["code"] = "f2c7", + }, + ["fa-thermometer_0"] = { + ["char"] = "", + ["code"] = "f2cb", + }, + ["fa-thermometer_1"] = { + ["char"] = "", + ["code"] = "f2ca", + }, + ["fa-thermometer_2"] = { + ["char"] = "", + ["code"] = "f2c9", + }, + ["fa-thermometer_3"] = { + ["char"] = "", + ["code"] = "f2c8", + }, + ["fa-thermometer_4"] = { + ["char"] = "", + ["code"] = "f2c7", + }, + ["fa-thermometer_empty"] = { + ["char"] = "", + ["code"] = "f2cb", + }, + ["fa-thermometer_full"] = { + ["char"] = "", + ["code"] = "f2c7", + }, + ["fa-thermometer_half"] = { + ["char"] = "", + ["code"] = "f2c9", + }, + ["fa-thermometer_quarter"] = { + ["char"] = "", + ["code"] = "f2ca", + }, + ["fa-thermometer_three_quarters"] = { + ["char"] = "", + ["code"] = "f2c8", + }, + ["fa-thumb_tack"] = { + ["char"] = "", + ["code"] = "f08d", + }, + ["fa-thumbs_down"] = { + ["char"] = "", + ["code"] = "f165", + }, + ["fa-thumbs_o_down"] = { + ["char"] = "", + ["code"] = "f088", + }, + ["fa-thumbs_o_up"] = { + ["char"] = "", + ["code"] = "f087", + }, + ["fa-thumbs_up"] = { + ["char"] = "", + ["code"] = "f164", + }, + ["fa-ticket"] = { + ["char"] = "", + ["code"] = "f145", + }, + ["fa-times"] = { + ["char"] = "", + ["code"] = "f00d", + }, + ["fa-times_circle"] = { + ["char"] = "", + ["code"] = "f057", + }, + ["fa-times_circle_o"] = { + ["char"] = "", + ["code"] = "f05c", + }, + ["fa-times_rectangle"] = { + ["char"] = "", + ["code"] = "f2d3", + }, + ["fa-times_rectangle_o"] = { + ["char"] = "", + ["code"] = "f2d4", + }, + ["fa-tint"] = { + ["char"] = "", + ["code"] = "f043", + }, + ["fa-toggle_down"] = { + ["char"] = "", + ["code"] = "f150", + }, + ["fa-toggle_left"] = { + ["char"] = "", + ["code"] = "f191", + }, + ["fa-toggle_off"] = { + ["char"] = "", + ["code"] = "f204", + }, + ["fa-toggle_on"] = { + ["char"] = "", + ["code"] = "f205", + }, + ["fa-toggle_right"] = { + ["char"] = "", + ["code"] = "f152", + }, + ["fa-toggle_up"] = { + ["char"] = "", + ["code"] = "f151", + }, + ["fa-trademark"] = { + ["char"] = "", + ["code"] = "f25c", + }, + ["fa-train"] = { + ["char"] = "", + ["code"] = "f238", + }, + ["fa-transgender"] = { + ["char"] = "", + ["code"] = "f224", + }, + ["fa-transgender_alt"] = { + ["char"] = "", + ["code"] = "f225", + }, + ["fa-trash"] = { + ["char"] = "", + ["code"] = "f1f8", + }, + ["fa-trash_o"] = { + ["char"] = "", + ["code"] = "f014", + }, + ["fa-tree"] = { + ["char"] = "", + ["code"] = "f1bb", + }, + ["fa-trello"] = { + ["char"] = "", + ["code"] = "f181", + }, + ["fa-tripadvisor"] = { + ["char"] = "", + ["code"] = "f262", + }, + ["fa-trophy"] = { + ["char"] = "", + ["code"] = "f091", + }, + ["fa-truck"] = { + ["char"] = "", + ["code"] = "f0d1", + }, + ["fa-try"] = { + ["char"] = "", + ["code"] = "f195", + }, + ["fa-tty"] = { + ["char"] = "", + ["code"] = "f1e4", + }, + ["fa-tumblr"] = { + ["char"] = "", + ["code"] = "f173", + }, + ["fa-tumblr_square"] = { + ["char"] = "", + ["code"] = "f174", + }, + ["fa-turkish_lira"] = { + ["char"] = "", + ["code"] = "f195", + }, + ["fa-tv"] = { + ["char"] = "", + ["code"] = "f26c", + }, + ["fa-twitch"] = { + ["char"] = "", + ["code"] = "f1e8", + }, + ["fa-twitter"] = { + ["char"] = "", + ["code"] = "f099", + }, + ["fa-twitter_square"] = { + ["char"] = "", + ["code"] = "f081", + }, + ["fa-umbrella"] = { + ["char"] = "", + ["code"] = "f0e9", + }, + ["fa-underline"] = { + ["char"] = "", + ["code"] = "f0cd", + }, + ["fa-undo"] = { + ["char"] = "", + ["code"] = "f0e2", + }, + ["fa-universal_access"] = { + ["char"] = "", + ["code"] = "f29a", + }, + ["fa-university"] = { + ["char"] = "", + ["code"] = "f19c", + }, + ["fa-unlink"] = { + ["char"] = "", + ["code"] = "f127", + }, + ["fa-unlock"] = { + ["char"] = "", + ["code"] = "f09c", + }, + ["fa-unlock_alt"] = { + ["char"] = "", + ["code"] = "f13e", + }, + ["fa-unsorted"] = { + ["char"] = "", + ["code"] = "f0dc", + }, + ["fa-upload"] = { + ["char"] = "", + ["code"] = "f093", + }, + ["fa-usb"] = { + ["char"] = "", + ["code"] = "f287", + }, + ["fa-usd"] = { + ["char"] = "", + ["code"] = "f155", + }, + ["fa-user"] = { + ["char"] = "", + ["code"] = "f007", + }, + ["fa-user_circle"] = { + ["char"] = "", + ["code"] = "f2bd", + }, + ["fa-user_circle_o"] = { + ["char"] = "", + ["code"] = "f2be", + }, + ["fa-user_md"] = { + ["char"] = "", + ["code"] = "f0f0", + }, + ["fa-user_o"] = { + ["char"] = "", + ["code"] = "f2c0", + }, + ["fa-user_plus"] = { + ["char"] = "", + ["code"] = "f234", + }, + ["fa-user_secret"] = { + ["char"] = "", + ["code"] = "f21b", + }, + ["fa-user_times"] = { + ["char"] = "", + ["code"] = "f235", + }, + ["fa-users"] = { + ["char"] = "", + ["code"] = "f0c0", + }, + ["fa-vcard"] = { + ["char"] = "", + ["code"] = "f2bb", + }, + ["fa-vcard_o"] = { + ["char"] = "", + ["code"] = "f2bc", + }, + ["fa-venus"] = { + ["char"] = "", + ["code"] = "f221", + }, + ["fa-venus_double"] = { + ["char"] = "", + ["code"] = "f226", + }, + ["fa-venus_mars"] = { + ["char"] = "", + ["code"] = "f228", + }, + ["fa-viacoin"] = { + ["char"] = "", + ["code"] = "f237", + }, + ["fa-viadeo"] = { + ["char"] = "", + ["code"] = "f2a9", + }, + ["fa-viadeo_square"] = { + ["char"] = "", + ["code"] = "f2aa", + }, + ["fa-video_camera"] = { + ["char"] = "", + ["code"] = "f03d", + }, + ["fa-vimeo"] = { + ["char"] = "", + ["code"] = "f27d", + }, + ["fa-vimeo_square"] = { + ["char"] = "", + ["code"] = "f194", + }, + ["fa-vine"] = { + ["char"] = "", + ["code"] = "f1ca", + }, + ["fa-vk"] = { + ["char"] = "", + ["code"] = "f189", + }, + ["fa-volume_control_phone"] = { + ["char"] = "", + ["code"] = "f2a0", + }, + ["fa-volume_down"] = { + ["char"] = "", + ["code"] = "f027", + }, + ["fa-volume_off"] = { + ["char"] = "", + ["code"] = "f026", + }, + ["fa-volume_up"] = { + ["char"] = "", + ["code"] = "f028", + }, + ["fa-warning"] = { + ["char"] = "", + ["code"] = "f071", + }, + ["fa-wechat"] = { + ["char"] = "", + ["code"] = "f1d7", + }, + ["fa-weibo"] = { + ["char"] = "", + ["code"] = "f18a", + }, + ["fa-weixin"] = { + ["char"] = "", + ["code"] = "f1d7", + }, + ["fa-whatsapp"] = { + ["char"] = "", + ["code"] = "f232", + }, + ["fa-wheelchair"] = { + ["char"] = "", + ["code"] = "f193", + }, + ["fa-wheelchair_alt"] = { + ["char"] = "", + ["code"] = "f29b", + }, + ["fa-wifi"] = { + ["char"] = "", + ["code"] = "f1eb", + }, + ["fa-wikipedia_w"] = { + ["char"] = "", + ["code"] = "f266", + }, + ["fa-window_close"] = { + ["char"] = "", + ["code"] = "f2d3", + }, + ["fa-window_close_o"] = { + ["char"] = "", + ["code"] = "f2d4", + }, + ["fa-window_maximize"] = { + ["char"] = "", + ["code"] = "f2d0", + }, + ["fa-window_minimize"] = { + ["char"] = "", + ["code"] = "f2d1", + }, + ["fa-window_restore"] = { + ["char"] = "", + ["code"] = "f2d2", + }, + ["fa-windows"] = { + ["char"] = "", + ["code"] = "f17a", + }, + ["fa-won"] = { + ["char"] = "", + ["code"] = "f159", + }, + ["fa-wordpress"] = { + ["char"] = "", + ["code"] = "f19a", + }, + ["fa-wpbeginner"] = { + ["char"] = "", + ["code"] = "f297", + }, + ["fa-wpexplorer"] = { + ["char"] = "", + ["code"] = "f2de", + }, + ["fa-wpforms"] = { + ["char"] = "", + ["code"] = "f298", + }, + ["fa-wrench"] = { + ["char"] = "", + ["code"] = "f0ad", + }, + ["fa-xing"] = { + ["char"] = "", + ["code"] = "f168", + }, + ["fa-xing_square"] = { + ["char"] = "", + ["code"] = "f169", + }, + ["fa-y_combinator"] = { + ["char"] = "", + ["code"] = "f23b", + }, + ["fa-y_combinator_square"] = { + ["char"] = "", + ["code"] = "f1d4", + }, + ["fa-yahoo"] = { + ["char"] = "", + ["code"] = "f19e", + }, + ["fa-yc"] = { + ["char"] = "", + ["code"] = "f23b", + }, + ["fa-yc_square"] = { + ["char"] = "", + ["code"] = "f1d4", + }, + ["fa-yelp"] = { + ["char"] = "", + ["code"] = "f1e9", + }, + ["fa-yen"] = { + ["char"] = "", + ["code"] = "f157", + }, + ["fa-yoast"] = { + ["char"] = "", + ["code"] = "f2b1", + }, + ["fa-youtube"] = { + ["char"] = "", + ["code"] = "f167", + }, + ["fa-youtube_play"] = { + ["char"] = "", + ["code"] = "f16a", + }, + ["fa-youtube_square"] = { + ["char"] = "", + ["code"] = "f166", + }, + ["fae-apple_fruit"] = { + ["char"] = "", + ["code"] = "e29e", + }, + ["fae-atom"] = { + ["char"] = "", + ["code"] = "e27f", + }, + ["fae-bacteria"] = { + ["char"] = "", + ["code"] = "e280", + }, + ["fae-banana"] = { + ["char"] = "", + ["code"] = "e281", + }, + ["fae-bath"] = { + ["char"] = "", + ["code"] = "e282", + }, + ["fae-bed"] = { + ["char"] = "", + ["code"] = "e283", + }, + ["fae-benzene"] = { + ["char"] = "", + ["code"] = "e284", + }, + ["fae-bigger"] = { + ["char"] = "", + ["code"] = "e285", + }, + ["fae-biohazard"] = { + ["char"] = "", + ["code"] = "e286", + }, + ["fae-blogger_circle"] = { + ["char"] = "", + ["code"] = "e287", + }, + ["fae-blogger_square"] = { + ["char"] = "", + ["code"] = "e288", + }, + ["fae-bones"] = { + ["char"] = "", + ["code"] = "e289", + }, + ["fae-book_open"] = { + ["char"] = "", + ["code"] = "e28a", + }, + ["fae-book_open_o"] = { + ["char"] = "", + ["code"] = "e28b", + }, + ["fae-brain"] = { + ["char"] = "", + ["code"] = "e28c", + }, + ["fae-bread"] = { + ["char"] = "", + ["code"] = "e28d", + }, + ["fae-butterfly"] = { + ["char"] = "", + ["code"] = "e28e", + }, + ["fae-carot"] = { + ["char"] = "", + ["code"] = "e28f", + }, + ["fae-cc_by"] = { + ["char"] = "", + ["code"] = "e290", + }, + ["fae-cc_cc"] = { + ["char"] = "", + ["code"] = "e291", + }, + ["fae-cc_nc"] = { + ["char"] = "", + ["code"] = "e292", + }, + ["fae-cc_nc_eu"] = { + ["char"] = "", + ["code"] = "e293", + }, + ["fae-cc_nc_jp"] = { + ["char"] = "", + ["code"] = "e294", + }, + ["fae-cc_nd"] = { + ["char"] = "", + ["code"] = "e295", + }, + ["fae-cc_remix"] = { + ["char"] = "", + ["code"] = "e296", + }, + ["fae-cc_sa"] = { + ["char"] = "", + ["code"] = "e297", + }, + ["fae-cc_share"] = { + ["char"] = "", + ["code"] = "e298", + }, + ["fae-cc_zero"] = { + ["char"] = "", + ["code"] = "e299", + }, + ["fae-checklist_o"] = { + ["char"] = "", + ["code"] = "e29a", + }, + ["fae-cheese"] = { + ["char"] = "", + ["code"] = "e264", + }, + ["fae-cherry"] = { + ["char"] = "", + ["code"] = "e29b", + }, + ["fae-chess_bishop"] = { + ["char"] = "", + ["code"] = "e29c", + }, + ["fae-chess_horse"] = { + ["char"] = "", + ["code"] = "e25f", + }, + ["fae-chess_king"] = { + ["char"] = "", + ["code"] = "e260", + }, + ["fae-chess_pawn"] = { + ["char"] = "", + ["code"] = "e261", + }, + ["fae-chess_queen"] = { + ["char"] = "", + ["code"] = "e262", + }, + ["fae-chess_tower"] = { + ["char"] = "", + ["code"] = "e263", + }, + ["fae-chicken_thigh"] = { + ["char"] = "", + ["code"] = "e29f", + }, + ["fae-chilli"] = { + ["char"] = "", + ["code"] = "e265", + }, + ["fae-chip"] = { + ["char"] = "", + ["code"] = "e266", + }, + ["fae-cicling"] = { + ["char"] = "", + ["code"] = "e267", + }, + ["fae-cloud"] = { + ["char"] = "", + ["code"] = "e268", + }, + ["fae-cockroach"] = { + ["char"] = "", + ["code"] = "e269", + }, + ["fae-coffe_beans"] = { + ["char"] = "", + ["code"] = "e26a", + }, + ["fae-coins"] = { + ["char"] = "", + ["code"] = "e26b", + }, + ["fae-comb"] = { + ["char"] = "", + ["code"] = "e26c", + }, + ["fae-comet"] = { + ["char"] = "", + ["code"] = "e26d", + }, + ["fae-crown"] = { + ["char"] = "", + ["code"] = "e26e", + }, + ["fae-cup_coffe"] = { + ["char"] = "", + ["code"] = "e26f", + }, + ["fae-dice"] = { + ["char"] = "", + ["code"] = "e270", + }, + ["fae-disco"] = { + ["char"] = "", + ["code"] = "e271", + }, + ["fae-dna"] = { + ["char"] = "", + ["code"] = "e272", + }, + ["fae-donut"] = { + ["char"] = "", + ["code"] = "e273", + }, + ["fae-dress"] = { + ["char"] = "", + ["code"] = "e274", + }, + ["fae-drop"] = { + ["char"] = "", + ["code"] = "e275", + }, + ["fae-ello"] = { + ["char"] = "", + ["code"] = "e276", + }, + ["fae-envelope_open"] = { + ["char"] = "", + ["code"] = "e277", + }, + ["fae-envelope_open_o"] = { + ["char"] = "", + ["code"] = "e278", + }, + ["fae-equal"] = { + ["char"] = "", + ["code"] = "e279", + }, + ["fae-equal_bigger"] = { + ["char"] = "", + ["code"] = "e27a", + }, + ["fae-feedly"] = { + ["char"] = "", + ["code"] = "e27b", + }, + ["fae-file_export"] = { + ["char"] = "", + ["code"] = "e27c", + }, + ["fae-file_import"] = { + ["char"] = "", + ["code"] = "e27d", + }, + ["fae-fingerprint"] = { + ["char"] = "", + ["code"] = "e23f", + }, + ["fae-floppy"] = { + ["char"] = "", + ["code"] = "e240", + }, + ["fae-footprint"] = { + ["char"] = "", + ["code"] = "e241", + }, + ["fae-freecodecamp"] = { + ["char"] = "", + ["code"] = "e242", + }, + ["fae-galaxy"] = { + ["char"] = "", + ["code"] = "e243", + }, + ["fae-galery"] = { + ["char"] = "", + ["code"] = "e244", + }, + ["fae-gift_card"] = { + ["char"] = "", + ["code"] = "e2a0", + }, + ["fae-glass"] = { + ["char"] = "", + ["code"] = "e245", + }, + ["fae-google_drive"] = { + ["char"] = "", + ["code"] = "e246", + }, + ["fae-google_play"] = { + ["char"] = "", + ["code"] = "e247", + }, + ["fae-gps"] = { + ["char"] = "", + ["code"] = "e248", + }, + ["fae-grav"] = { + ["char"] = "", + ["code"] = "e249", + }, + ["fae-guitar"] = { + ["char"] = "", + ["code"] = "e24a", + }, + ["fae-gut"] = { + ["char"] = "", + ["code"] = "e24b", + }, + ["fae-halter"] = { + ["char"] = "", + ["code"] = "e24c", + }, + ["fae-hamburger"] = { + ["char"] = "", + ["code"] = "e24d", + }, + ["fae-hat"] = { + ["char"] = "", + ["code"] = "e24e", + }, + ["fae-hexagon"] = { + ["char"] = "", + ["code"] = "e24f", + }, + ["fae-high_heel"] = { + ["char"] = "", + ["code"] = "e250", + }, + ["fae-hotdog"] = { + ["char"] = "", + ["code"] = "e251", + }, + ["fae-ice_cream"] = { + ["char"] = "", + ["code"] = "e252", + }, + ["fae-id_card"] = { + ["char"] = "", + ["code"] = "e253", + }, + ["fae-imdb"] = { + ["char"] = "", + ["code"] = "e254", + }, + ["fae-infinity"] = { + ["char"] = "", + ["code"] = "e255", + }, + ["fae-injection"] = { + ["char"] = "", + ["code"] = "e2a1", + }, + ["fae-isle"] = { + ["char"] = "", + ["code"] = "e2a2", + }, + ["fae-java"] = { + ["char"] = "", + ["code"] = "e256", + }, + ["fae-layers"] = { + ["char"] = "", + ["code"] = "e257", + }, + ["fae-lips"] = { + ["char"] = "", + ["code"] = "e258", + }, + ["fae-lipstick"] = { + ["char"] = "", + ["code"] = "e259", + }, + ["fae-liver"] = { + ["char"] = "", + ["code"] = "e25a", + }, + ["fae-lollipop"] = { + ["char"] = "", + ["code"] = "e2a3", + }, + ["fae-loyalty_card"] = { + ["char"] = "", + ["code"] = "e2a4", + }, + ["fae-lung"] = { + ["char"] = "", + ["code"] = "e25b", + }, + ["fae-makeup_brushes"] = { + ["char"] = "", + ["code"] = "e25c", + }, + ["fae-maximize"] = { + ["char"] = "", + ["code"] = "e25d", + }, + ["fae-meat"] = { + ["char"] = "", + ["code"] = "e2a5", + }, + ["fae-medicine"] = { + ["char"] = "", + ["code"] = "e221", + }, + ["fae-microscope"] = { + ["char"] = "", + ["code"] = "e222", + }, + ["fae-milk_bottle"] = { + ["char"] = "", + ["code"] = "e223", + }, + ["fae-minimize"] = { + ["char"] = "", + ["code"] = "e224", + }, + ["fae-molecule"] = { + ["char"] = "", + ["code"] = "e225", + }, + ["fae-moon_cloud"] = { + ["char"] = "", + ["code"] = "e226", + }, + ["fae-mountains"] = { + ["char"] = "", + ["code"] = "e2a6", + }, + ["fae-mushroom"] = { + ["char"] = "", + ["code"] = "e227", + }, + ["fae-mustache"] = { + ["char"] = "", + ["code"] = "e228", + }, + ["fae-mysql"] = { + ["char"] = "", + ["code"] = "e229", + }, + ["fae-nintendo"] = { + ["char"] = "", + ["code"] = "e22a", + }, + ["fae-orange"] = { + ["char"] = "", + ["code"] = "e2a7", + }, + ["fae-palette_color"] = { + ["char"] = "", + ["code"] = "e22b", + }, + ["fae-peach"] = { + ["char"] = "", + ["code"] = "e2a8", + }, + ["fae-pear"] = { + ["char"] = "", + ["code"] = "e2a9", + }, + ["fae-pi"] = { + ["char"] = "", + ["code"] = "e22c", + }, + ["fae-pizza"] = { + ["char"] = "", + ["code"] = "e22d", + }, + ["fae-planet"] = { + ["char"] = "", + ["code"] = "e22e", + }, + ["fae-plant"] = { + ["char"] = "", + ["code"] = "e22f", + }, + ["fae-playstation"] = { + ["char"] = "", + ["code"] = "e230", + }, + ["fae-poison"] = { + ["char"] = "", + ["code"] = "e231", + }, + ["fae-popcorn"] = { + ["char"] = "", + ["code"] = "e232", + }, + ["fae-popsicle"] = { + ["char"] = "", + ["code"] = "e233", + }, + ["fae-pulse"] = { + ["char"] = "", + ["code"] = "e234", + }, + ["fae-python"] = { + ["char"] = "", + ["code"] = "e235", + }, + ["fae-quora_circle"] = { + ["char"] = "", + ["code"] = "e236", + }, + ["fae-quora_square"] = { + ["char"] = "", + ["code"] = "e237", + }, + ["fae-radioactive"] = { + ["char"] = "", + ["code"] = "e238", + }, + ["fae-raining"] = { + ["char"] = "", + ["code"] = "e239", + }, + ["fae-real_heart"] = { + ["char"] = "", + ["code"] = "e23a", + }, + ["fae-refrigerator"] = { + ["char"] = "", + ["code"] = "e23b", + }, + ["fae-restore"] = { + ["char"] = "", + ["code"] = "e23c", + }, + ["fae-ring"] = { + ["char"] = "", + ["code"] = "e23d", + }, + ["fae-ruby"] = { + ["char"] = "", + ["code"] = "e23e", + }, + ["fae-ruby_o"] = { + ["char"] = "", + ["code"] = "e21e", + }, + ["fae-ruler"] = { + ["char"] = "", + ["code"] = "e21f", + }, + ["fae-shirt"] = { + ["char"] = "", + ["code"] = "e218", + }, + ["fae-slash"] = { + ["char"] = "", + ["code"] = "e216", + }, + ["fae-smaller"] = { + ["char"] = "", + ["code"] = "e200", + }, + ["fae-snowing"] = { + ["char"] = "", + ["code"] = "e201", + }, + ["fae-soda"] = { + ["char"] = "", + ["code"] = "e202", + }, + ["fae-sofa"] = { + ["char"] = "", + ["code"] = "e203", + }, + ["fae-soup"] = { + ["char"] = "", + ["code"] = "e204", + }, + ["fae-spermatozoon"] = { + ["char"] = "", + ["code"] = "e205", + }, + ["fae-spin_double"] = { + ["char"] = "", + ["code"] = "e206", + }, + ["fae-stomach"] = { + ["char"] = "", + ["code"] = "e207", + }, + ["fae-storm"] = { + ["char"] = "", + ["code"] = "e208", + }, + ["fae-sun_cloud"] = { + ["char"] = "", + ["code"] = "e21d", + }, + ["fae-sushi"] = { + ["char"] = "", + ["code"] = "e21a", + }, + ["fae-tacos"] = { + ["char"] = "", + ["code"] = "e219", + }, + ["fae-telegram"] = { + ["char"] = "", + ["code"] = "e217", + }, + ["fae-telegram_circle"] = { + ["char"] = "", + ["code"] = "e215", + }, + ["fae-telescope"] = { + ["char"] = "", + ["code"] = "e209", + }, + ["fae-thermometer"] = { + ["char"] = "", + ["code"] = "e20a", + }, + ["fae-thermometer_high"] = { + ["char"] = "", + ["code"] = "e20b", + }, + ["fae-thermometer_low"] = { + ["char"] = "", + ["code"] = "e20c", + }, + ["fae-thin_close"] = { + ["char"] = "", + ["code"] = "e20d", + }, + ["fae-toilet"] = { + ["char"] = "", + ["code"] = "e20e", + }, + ["fae-tools"] = { + ["char"] = "", + ["code"] = "e20f", + }, + ["fae-tooth"] = { + ["char"] = "", + ["code"] = "e210", + }, + ["fae-tree"] = { + ["char"] = "", + ["code"] = "e21c", + }, + ["fae-triangle_ruler"] = { + ["char"] = "", + ["code"] = "e21b", + }, + ["fae-umbrella"] = { + ["char"] = "", + ["code"] = "e220", + }, + ["fae-uterus"] = { + ["char"] = "", + ["code"] = "e211", + }, + ["fae-virus"] = { + ["char"] = "", + ["code"] = "e214", + }, + ["fae-w3c"] = { + ["char"] = "", + ["code"] = "e212", + }, + ["fae-walking"] = { + ["char"] = "", + ["code"] = "e213", + }, + ["fae-wallet"] = { + ["char"] = "", + ["code"] = "e25e", + }, + ["fae-wind"] = { + ["char"] = "", + ["code"] = "e27e", + }, + ["fae-xbox"] = { + ["char"] = "", + ["code"] = "e29d", + }, + ["iec-power"] = { + ["char"] = "⏻", + ["code"] = "23fb", + }, + ["iec-power_off"] = { + ["char"] = "⭘", + ["code"] = "2b58", + }, + ["iec-power_on"] = { + ["char"] = "⏽", + ["code"] = "23fd", + }, + ["iec-sleep_mode"] = { + ["char"] = "⏾", + ["code"] = "23fe", + }, + ["iec-toggle_power"] = { + ["char"] = "⏼", + ["code"] = "23fc", + }, + ["indent-dotted_guide"] = { + ["char"] = "", + ["code"] = "e621", + }, + ["indent-line"] = { + ["char"] = "", + ["code"] = "e621", + }, + ["indentation-line"] = { + ["char"] = "", + ["code"] = "e621", + }, + ["linux-almalinux"] = { + ["char"] = "", + ["code"] = "f31d", + }, + ["linux-alpine"] = { + ["char"] = "", + ["code"] = "f300", + }, + ["linux-aosc"] = { + ["char"] = "", + ["code"] = "f301", + }, + ["linux-apple"] = { + ["char"] = "", + ["code"] = "f302", + }, + ["linux-archcraft"] = { + ["char"] = "", + ["code"] = "f345", + }, + ["linux-archlabs"] = { + ["char"] = "", + ["code"] = "f31e", + }, + ["linux-archlinux"] = { + ["char"] = "", + ["code"] = "f303", + }, + ["linux-arcolinux"] = { + ["char"] = "", + ["code"] = "f346", + }, + ["linux-arduino"] = { + ["char"] = "", + ["code"] = "f34b", + }, + ["linux-artix"] = { + ["char"] = "", + ["code"] = "f31f", + }, + ["linux-awesome"] = { + ["char"] = "", + ["code"] = "f354", + }, + ["linux-biglinux"] = { + ["char"] = "", + ["code"] = "f347", + }, + ["linux-bspwm"] = { + ["char"] = "", + ["code"] = "f355", + }, + ["linux-budgie"] = { + ["char"] = "", + ["code"] = "f320", + }, + ["linux-centos"] = { + ["char"] = "", + ["code"] = "f304", + }, + ["linux-cinnamon"] = { + ["char"] = "", + ["code"] = "f35f", + }, + ["linux-codeberg"] = { + ["char"] = "", + ["code"] = "f330", + }, + ["linux-coreos"] = { + ["char"] = "", + ["code"] = "f305", + }, + ["linux-crystal"] = { + ["char"] = "", + ["code"] = "f348", + }, + ["linux-debian"] = { + ["char"] = "", + ["code"] = "f306", + }, + ["linux-deepin"] = { + ["char"] = "", + ["code"] = "f321", + }, + ["linux-devuan"] = { + ["char"] = "", + ["code"] = "f307", + }, + ["linux-docker"] = { + ["char"] = "", + ["code"] = "f308", + }, + ["linux-dwm"] = { + ["char"] = "", + ["code"] = "f356", + }, + ["linux-elementary"] = { + ["char"] = "", + ["code"] = "f309", + }, + ["linux-endeavour"] = { + ["char"] = "", + ["code"] = "f322", + }, + ["linux-enlightenment"] = { + ["char"] = "", + ["code"] = "f357", + }, + ["linux-fdroid"] = { + ["char"] = "", + ["code"] = "f36a", + }, + ["linux-fedora"] = { + ["char"] = "", + ["code"] = "f30a", + }, + ["linux-fedora_inverse"] = { + ["char"] = "", + ["code"] = "f30b", + }, + ["linux-ferris"] = { + ["char"] = "", + ["code"] = "f323", + }, + ["linux-flathub"] = { + ["char"] = "", + ["code"] = "f324", + }, + ["linux-fluxbox"] = { + ["char"] = "", + ["code"] = "f358", + }, + ["linux-forgejo"] = { + ["char"] = "", + ["code"] = "f335", + }, + ["linux-fosdem"] = { + ["char"] = "", + ["code"] = "f36b", + }, + ["linux-freebsd"] = { + ["char"] = "", + ["code"] = "f30c", + }, + ["linux-freecad"] = { + ["char"] = "", + ["code"] = "f336", + }, + ["linux-freedesktop"] = { + ["char"] = "", + ["code"] = "f360", + }, + ["linux-garuda"] = { + ["char"] = "", + ["code"] = "f337", + }, + ["linux-gentoo"] = { + ["char"] = "", + ["code"] = "f30d", + }, + ["linux-gimp"] = { + ["char"] = "", + ["code"] = "f338", + }, + ["linux-gitea"] = { + ["char"] = "", + ["code"] = "f339", + }, + ["linux-gnome"] = { + ["char"] = "", + ["code"] = "f361", + }, + ["linux-gnu_guix"] = { + ["char"] = "", + ["code"] = "f325", + }, + ["linux-gtk"] = { + ["char"] = "", + ["code"] = "f362", + }, + ["linux-hyperbola"] = { + ["char"] = "", + ["code"] = "f33a", + }, + ["linux-hyprland"] = { + ["char"] = "", + ["code"] = "f359", + }, + ["linux-i3"] = { + ["char"] = "", + ["code"] = "f35a", + }, + ["linux-illumos"] = { + ["char"] = "", + ["code"] = "f326", + }, + ["linux-inkscape"] = { + ["char"] = "", + ["code"] = "f33b", + }, + ["linux-jwm"] = { + ["char"] = "", + ["code"] = "f35b", + }, + ["linux-kali_linux"] = { + ["char"] = "", + ["code"] = "f327", + }, + ["linux-kde_neon"] = { + ["char"] = "", + ["code"] = "f331", + }, + ["linux-kde_plasma"] = { + ["char"] = "", + ["code"] = "f332", + }, + ["linux-kdenlive"] = { + ["char"] = "", + ["code"] = "f33c", + }, + ["linux-kicad"] = { + ["char"] = "", + ["code"] = "f34c", + }, + ["linux-krita"] = { + ["char"] = "", + ["code"] = "f33d", + }, + ["linux-kubuntu"] = { + ["char"] = "", + ["code"] = "f333", + }, + ["linux-kubuntu_inverse"] = { + ["char"] = "", + ["code"] = "f334", + }, + ["linux-linuxmint"] = { + ["char"] = "", + ["code"] = "f30e", + }, + ["linux-linuxmint_inverse"] = { + ["char"] = "", + ["code"] = "f30f", + }, + ["linux-locos"] = { + ["char"] = "", + ["code"] = "f349", + }, + ["linux-lxde"] = { + ["char"] = "", + ["code"] = "f363", + }, + ["linux-lxle"] = { + ["char"] = "", + ["code"] = "f33e", + }, + ["linux-lxqt"] = { + ["char"] = "", + ["code"] = "f364", + }, + ["linux-mageia"] = { + ["char"] = "", + ["code"] = "f310", + }, + ["linux-mandriva"] = { + ["char"] = "", + ["code"] = "f311", + }, + ["linux-manjaro"] = { + ["char"] = "", + ["code"] = "f312", + }, + ["linux-mate"] = { + ["char"] = "", + ["code"] = "f365", + }, + ["linux-mpv"] = { + ["char"] = "", + ["code"] = "f36e", + }, + ["linux-mxlinux"] = { + ["char"] = "", + ["code"] = "f33f", + }, + ["linux-neovim"] = { + ["char"] = "", + ["code"] = "f36f", + }, + ["linux-nixos"] = { + ["char"] = "", + ["code"] = "f313", + }, + ["linux-octoprint"] = { + ["char"] = "", + ["code"] = "f34d", + }, + ["linux-openbsd"] = { + ["char"] = "", + ["code"] = "f328", + }, + ["linux-openscad"] = { + ["char"] = "", + ["code"] = "f34e", + }, + ["linux-opensuse"] = { + ["char"] = "", + ["code"] = "f314", + }, + ["linux-osh"] = { + ["char"] = "", + ["code"] = "f34f", + }, + ["linux-oshwa"] = { + ["char"] = "", + ["code"] = "f350", + }, + ["linux-osi"] = { + ["char"] = "", + ["code"] = "f36c", + }, + ["linux-parabola"] = { + ["char"] = "", + ["code"] = "f340", + }, + ["linux-parrot"] = { + ["char"] = "", + ["code"] = "f329", + }, + ["linux-pop_os"] = { + ["char"] = "", + ["code"] = "f32a", + }, + ["linux-prusaslicer"] = { + ["char"] = "", + ["code"] = "f351", + }, + ["linux-puppy"] = { + ["char"] = "", + ["code"] = "f341", + }, + ["linux-qtile"] = { + ["char"] = "", + ["code"] = "f35c", + }, + ["linux-qubesos"] = { + ["char"] = "", + ["code"] = "f342", + }, + ["linux-raspberry_pi"] = { + ["char"] = "", + ["code"] = "f315", + }, + ["linux-redhat"] = { + ["char"] = "", + ["code"] = "f316", + }, + ["linux-reprap"] = { + ["char"] = "", + ["code"] = "f352", + }, + ["linux-riscv"] = { + ["char"] = "", + ["code"] = "f353", + }, + ["linux-rocky_linux"] = { + ["char"] = "", + ["code"] = "f32b", + }, + ["linux-sabayon"] = { + ["char"] = "", + ["code"] = "f317", + }, + ["linux-slackware"] = { + ["char"] = "", + ["code"] = "f318", + }, + ["linux-slackware_inverse"] = { + ["char"] = "", + ["code"] = "f319", + }, + ["linux-snappy"] = { + ["char"] = "", + ["code"] = "f32c", + }, + ["linux-solus"] = { + ["char"] = "", + ["code"] = "f32d", + }, + ["linux-sway"] = { + ["char"] = "", + ["code"] = "f35d", + }, + ["linux-tails"] = { + ["char"] = "", + ["code"] = "f343", + }, + ["linux-thunderbird"] = { + ["char"] = "", + ["code"] = "f370", + }, + ["linux-tor"] = { + ["char"] = "", + ["code"] = "f371", + }, + ["linux-trisquel"] = { + ["char"] = "", + ["code"] = "f344", + }, + ["linux-tux"] = { + ["char"] = "", + ["code"] = "f31a", + }, + ["linux-ubuntu"] = { + ["char"] = "", + ["code"] = "f31b", + }, + ["linux-ubuntu_inverse"] = { + ["char"] = "", + ["code"] = "f31c", + }, + ["linux-vanilla"] = { + ["char"] = "", + ["code"] = "f366", + }, + ["linux-void"] = { + ["char"] = "", + ["code"] = "f32e", + }, + ["linux-vscodium"] = { + ["char"] = "", + ["code"] = "f372", + }, + ["linux-wayland"] = { + ["char"] = "", + ["code"] = "f367", + }, + ["linux-wikimedia"] = { + ["char"] = "", + ["code"] = "f36d", + }, + ["linux-xerolinux"] = { + ["char"] = "", + ["code"] = "f34a", + }, + ["linux-xfce"] = { + ["char"] = "", + ["code"] = "f368", + }, + ["linux-xmonad"] = { + ["char"] = "", + ["code"] = "f35e", + }, + ["linux-xorg"] = { + ["char"] = "", + ["code"] = "f369", + }, + ["linux-zorin"] = { + ["char"] = "", + ["code"] = "f32f", + }, + ["md-ab_testing"] = { + ["char"] = "󰇉", + ["code"] = "f01c9", + }, + ["md-abacus"] = { + ["char"] = "󱛠", + ["code"] = "f16e0", + }, + ["md-abjad_arabic"] = { + ["char"] = "󱌨", + ["code"] = "f1328", + }, + ["md-abjad_hebrew"] = { + ["char"] = "󱌩", + ["code"] = "f1329", + }, + ["md-abugida_devanagari"] = { + ["char"] = "󱌪", + ["code"] = "f132a", + }, + ["md-abugida_thai"] = { + ["char"] = "󱌫", + ["code"] = "f132b", + }, + ["md-access_point"] = { + ["char"] = "󰀃", + ["code"] = "f0003", + }, + ["md-access_point_check"] = { + ["char"] = "󱔸", + ["code"] = "f1538", + }, + ["md-access_point_minus"] = { + ["char"] = "󱔹", + ["code"] = "f1539", + }, + ["md-access_point_network"] = { + ["char"] = "󰀂", + ["code"] = "f0002", + }, + ["md-access_point_network_off"] = { + ["char"] = "󰯡", + ["code"] = "f0be1", + }, + ["md-access_point_off"] = { + ["char"] = "󱔑", + ["code"] = "f1511", + }, + ["md-access_point_plus"] = { + ["char"] = "󱔺", + ["code"] = "f153a", + }, + ["md-access_point_remove"] = { + ["char"] = "󱔻", + ["code"] = "f153b", + }, + ["md-account"] = { + ["char"] = "󰀄", + ["code"] = "f0004", + }, + ["md-account_alert"] = { + ["char"] = "󰀅", + ["code"] = "f0005", + }, + ["md-account_alert_outline"] = { + ["char"] = "󰭐", + ["code"] = "f0b50", + }, + ["md-account_arrow_down"] = { + ["char"] = "󱡨", + ["code"] = "f1868", + }, + ["md-account_arrow_down_outline"] = { + ["char"] = "󱡩", + ["code"] = "f1869", + }, + ["md-account_arrow_left"] = { + ["char"] = "󰭑", + ["code"] = "f0b51", + }, + ["md-account_arrow_left_outline"] = { + ["char"] = "󰭒", + ["code"] = "f0b52", + }, + ["md-account_arrow_right"] = { + ["char"] = "󰭓", + ["code"] = "f0b53", + }, + ["md-account_arrow_right_outline"] = { + ["char"] = "󰭔", + ["code"] = "f0b54", + }, + ["md-account_arrow_up"] = { + ["char"] = "󱡧", + ["code"] = "f1867", + }, + ["md-account_arrow_up_outline"] = { + ["char"] = "󱡪", + ["code"] = "f186a", + }, + ["md-account_box"] = { + ["char"] = "󰀆", + ["code"] = "f0006", + }, + ["md-account_box_multiple"] = { + ["char"] = "󰤴", + ["code"] = "f0934", + }, + ["md-account_box_multiple_outline"] = { + ["char"] = "󱀊", + ["code"] = "f100a", + }, + ["md-account_box_outline"] = { + ["char"] = "󰀇", + ["code"] = "f0007", + }, + ["md-account_cancel"] = { + ["char"] = "󱋟", + ["code"] = "f12df", + }, + ["md-account_cancel_outline"] = { + ["char"] = "󱋠", + ["code"] = "f12e0", + }, + ["md-account_cash"] = { + ["char"] = "󱂗", + ["code"] = "f1097", + }, + ["md-account_cash_outline"] = { + ["char"] = "󱂘", + ["code"] = "f1098", + }, + ["md-account_check"] = { + ["char"] = "󰀈", + ["code"] = "f0008", + }, + ["md-account_check_outline"] = { + ["char"] = "󰯢", + ["code"] = "f0be2", + }, + ["md-account_child"] = { + ["char"] = "󰪉", + ["code"] = "f0a89", + }, + ["md-account_child_circle"] = { + ["char"] = "󰪊", + ["code"] = "f0a8a", + }, + ["md-account_child_outline"] = { + ["char"] = "󱃈", + ["code"] = "f10c8", + }, + ["md-account_circle"] = { + ["char"] = "󰀉", + ["code"] = "f0009", + }, + ["md-account_circle_outline"] = { + ["char"] = "󰭕", + ["code"] = "f0b55", + }, + ["md-account_clock"] = { + ["char"] = "󰭖", + ["code"] = "f0b56", + }, + ["md-account_clock_outline"] = { + ["char"] = "󰭗", + ["code"] = "f0b57", + }, + ["md-account_cog"] = { + ["char"] = "󱍰", + ["code"] = "f1370", + }, + ["md-account_cog_outline"] = { + ["char"] = "󱍱", + ["code"] = "f1371", + }, + ["md-account_convert"] = { + ["char"] = "󰀊", + ["code"] = "f000a", + }, + ["md-account_convert_outline"] = { + ["char"] = "󱌁", + ["code"] = "f1301", + }, + ["md-account_cowboy_hat"] = { + ["char"] = "󰺛", + ["code"] = "f0e9b", + }, + ["md-account_cowboy_hat_outline"] = { + ["char"] = "󱟳", + ["code"] = "f17f3", + }, + ["md-account_details"] = { + ["char"] = "󰘱", + ["code"] = "f0631", + }, + ["md-account_details_outline"] = { + ["char"] = "󱍲", + ["code"] = "f1372", + }, + ["md-account_edit"] = { + ["char"] = "󰚼", + ["code"] = "f06bc", + }, + ["md-account_edit_outline"] = { + ["char"] = "󰿻", + ["code"] = "f0ffb", + }, + ["md-account_eye"] = { + ["char"] = "󰐠", + ["code"] = "f0420", + }, + ["md-account_eye_outline"] = { + ["char"] = "󱉻", + ["code"] = "f127b", + }, + ["md-account_filter"] = { + ["char"] = "󰤶", + ["code"] = "f0936", + }, + ["md-account_filter_outline"] = { + ["char"] = "󰾝", + ["code"] = "f0f9d", + }, + ["md-account_group"] = { + ["char"] = "󰡉", + ["code"] = "f0849", + }, + ["md-account_group_outline"] = { + ["char"] = "󰭘", + ["code"] = "f0b58", + }, + ["md-account_hard_hat"] = { + ["char"] = "󰖵", + ["code"] = "f05b5", + }, + ["md-account_hard_hat_outline"] = { + ["char"] = "󱨟", + ["code"] = "f1a1f", + }, + ["md-account_heart"] = { + ["char"] = "󰢙", + ["code"] = "f0899", + }, + ["md-account_heart_outline"] = { + ["char"] = "󰯣", + ["code"] = "f0be3", + }, + ["md-account_injury"] = { + ["char"] = "󱠕", + ["code"] = "f1815", + }, + ["md-account_injury_outline"] = { + ["char"] = "󱠖", + ["code"] = "f1816", + }, + ["md-account_key"] = { + ["char"] = "󰀋", + ["code"] = "f000b", + }, + ["md-account_key_outline"] = { + ["char"] = "󰯤", + ["code"] = "f0be4", + }, + ["md-account_lock"] = { + ["char"] = "󱅞", + ["code"] = "f115e", + }, + ["md-account_lock_open"] = { + ["char"] = "󱥠", + ["code"] = "f1960", + }, + ["md-account_lock_open_outline"] = { + ["char"] = "󱥡", + ["code"] = "f1961", + }, + ["md-account_lock_outline"] = { + ["char"] = "󱅟", + ["code"] = "f115f", + }, + ["md-account_minus"] = { + ["char"] = "󰀍", + ["code"] = "f000d", + }, + ["md-account_minus_outline"] = { + ["char"] = "󰫬", + ["code"] = "f0aec", + }, + ["md-account_multiple"] = { + ["char"] = "󰀎", + ["code"] = "f000e", + }, + ["md-account_multiple_check"] = { + ["char"] = "󰣅", + ["code"] = "f08c5", + }, + ["md-account_multiple_check_outline"] = { + ["char"] = "󱇾", + ["code"] = "f11fe", + }, + ["md-account_multiple_minus"] = { + ["char"] = "󰗓", + ["code"] = "f05d3", + }, + ["md-account_multiple_minus_outline"] = { + ["char"] = "󰯥", + ["code"] = "f0be5", + }, + ["md-account_multiple_outline"] = { + ["char"] = "󰀏", + ["code"] = "f000f", + }, + ["md-account_multiple_plus"] = { + ["char"] = "󰀐", + ["code"] = "f0010", + }, + ["md-account_multiple_plus_outline"] = { + ["char"] = "󰠀", + ["code"] = "f0800", + }, + ["md-account_multiple_remove"] = { + ["char"] = "󱈊", + ["code"] = "f120a", + }, + ["md-account_multiple_remove_outline"] = { + ["char"] = "󱈋", + ["code"] = "f120b", + }, + ["md-account_music"] = { + ["char"] = "󰠃", + ["code"] = "f0803", + }, + ["md-account_music_outline"] = { + ["char"] = "󰳩", + ["code"] = "f0ce9", + }, + ["md-account_network"] = { + ["char"] = "󰀑", + ["code"] = "f0011", + }, + ["md-account_network_outline"] = { + ["char"] = "󰯦", + ["code"] = "f0be6", + }, + ["md-account_off"] = { + ["char"] = "󰀒", + ["code"] = "f0012", + }, + ["md-account_off_outline"] = { + ["char"] = "󰯧", + ["code"] = "f0be7", + }, + ["md-account_outline"] = { + ["char"] = "󰀓", + ["code"] = "f0013", + }, + ["md-account_plus"] = { + ["char"] = "󰀔", + ["code"] = "f0014", + }, + ["md-account_plus_outline"] = { + ["char"] = "󰠁", + ["code"] = "f0801", + }, + ["md-account_question"] = { + ["char"] = "󰭙", + ["code"] = "f0b59", + }, + ["md-account_question_outline"] = { + ["char"] = "󰭚", + ["code"] = "f0b5a", + }, + ["md-account_reactivate"] = { + ["char"] = "󱔫", + ["code"] = "f152b", + }, + ["md-account_reactivate_outline"] = { + ["char"] = "󱔬", + ["code"] = "f152c", + }, + ["md-account_remove"] = { + ["char"] = "󰀕", + ["code"] = "f0015", + }, + ["md-account_remove_outline"] = { + ["char"] = "󰫭", + ["code"] = "f0aed", + }, + ["md-account_school"] = { + ["char"] = "󱨠", + ["code"] = "f1a20", + }, + ["md-account_school_outline"] = { + ["char"] = "󱨡", + ["code"] = "f1a21", + }, + ["md-account_search"] = { + ["char"] = "󰀖", + ["code"] = "f0016", + }, + ["md-account_search_outline"] = { + ["char"] = "󰤵", + ["code"] = "f0935", + }, + ["md-account_settings"] = { + ["char"] = "󰘰", + ["code"] = "f0630", + }, + ["md-account_settings_outline"] = { + ["char"] = "󱃉", + ["code"] = "f10c9", + }, + ["md-account_star"] = { + ["char"] = "󰀗", + ["code"] = "f0017", + }, + ["md-account_star_outline"] = { + ["char"] = "󰯨", + ["code"] = "f0be8", + }, + ["md-account_supervisor"] = { + ["char"] = "󰪋", + ["code"] = "f0a8b", + }, + ["md-account_supervisor_circle"] = { + ["char"] = "󰪌", + ["code"] = "f0a8c", + }, + ["md-account_supervisor_circle_outline"] = { + ["char"] = "󱓬", + ["code"] = "f14ec", + }, + ["md-account_supervisor_outline"] = { + ["char"] = "󱄭", + ["code"] = "f112d", + }, + ["md-account_switch"] = { + ["char"] = "󰀙", + ["code"] = "f0019", + }, + ["md-account_switch_outline"] = { + ["char"] = "󰓋", + ["code"] = "f04cb", + }, + ["md-account_sync"] = { + ["char"] = "󱤛", + ["code"] = "f191b", + }, + ["md-account_sync_outline"] = { + ["char"] = "󱤜", + ["code"] = "f191c", + }, + ["md-account_tie"] = { + ["char"] = "󰳣", + ["code"] = "f0ce3", + }, + ["md-account_tie_hat"] = { + ["char"] = "󱢘", + ["code"] = "f1898", + }, + ["md-account_tie_hat_outline"] = { + ["char"] = "󱢙", + ["code"] = "f1899", + }, + ["md-account_tie_outline"] = { + ["char"] = "󱃊", + ["code"] = "f10ca", + }, + ["md-account_tie_voice"] = { + ["char"] = "󱌈", + ["code"] = "f1308", + }, + ["md-account_tie_voice_off"] = { + ["char"] = "󱌊", + ["code"] = "f130a", + }, + ["md-account_tie_voice_off_outline"] = { + ["char"] = "󱌋", + ["code"] = "f130b", + }, + ["md-account_tie_voice_outline"] = { + ["char"] = "󱌉", + ["code"] = "f1309", + }, + ["md-account_tie_woman"] = { + ["char"] = "󱪌", + ["code"] = "f1a8c", + }, + ["md-account_voice"] = { + ["char"] = "󰗋", + ["code"] = "f05cb", + }, + ["md-account_voice_off"] = { + ["char"] = "󰻔", + ["code"] = "f0ed4", + }, + ["md-account_wrench"] = { + ["char"] = "󱢚", + ["code"] = "f189a", + }, + ["md-account_wrench_outline"] = { + ["char"] = "󱢛", + ["code"] = "f189b", + }, + ["md-adjust"] = { + ["char"] = "󰀚", + ["code"] = "f001a", + }, + ["md-advertisements"] = { + ["char"] = "󱤪", + ["code"] = "f192a", + }, + ["md-advertisements_off"] = { + ["char"] = "󱤫", + ["code"] = "f192b", + }, + ["md-air_conditioner"] = { + ["char"] = "󰀛", + ["code"] = "f001b", + }, + ["md-air_filter"] = { + ["char"] = "󰵃", + ["code"] = "f0d43", + }, + ["md-air_horn"] = { + ["char"] = "󰶬", + ["code"] = "f0dac", + }, + ["md-air_humidifier"] = { + ["char"] = "󱂙", + ["code"] = "f1099", + }, + ["md-air_humidifier_off"] = { + ["char"] = "󱑦", + ["code"] = "f1466", + }, + ["md-air_purifier"] = { + ["char"] = "󰵄", + ["code"] = "f0d44", + }, + ["md-airbag"] = { + ["char"] = "󰯩", + ["code"] = "f0be9", + }, + ["md-airballoon"] = { + ["char"] = "󰀜", + ["code"] = "f001c", + }, + ["md-airballoon_outline"] = { + ["char"] = "󱀋", + ["code"] = "f100b", + }, + ["md-airplane"] = { + ["char"] = "󰀝", + ["code"] = "f001d", + }, + ["md-airplane_alert"] = { + ["char"] = "󱡺", + ["code"] = "f187a", + }, + ["md-airplane_check"] = { + ["char"] = "󱡻", + ["code"] = "f187b", + }, + ["md-airplane_clock"] = { + ["char"] = "󱡼", + ["code"] = "f187c", + }, + ["md-airplane_cog"] = { + ["char"] = "󱡽", + ["code"] = "f187d", + }, + ["md-airplane_edit"] = { + ["char"] = "󱡾", + ["code"] = "f187e", + }, + ["md-airplane_landing"] = { + ["char"] = "󰗔", + ["code"] = "f05d4", + }, + ["md-airplane_marker"] = { + ["char"] = "󱡿", + ["code"] = "f187f", + }, + ["md-airplane_minus"] = { + ["char"] = "󱢀", + ["code"] = "f1880", + }, + ["md-airplane_off"] = { + ["char"] = "󰀞", + ["code"] = "f001e", + }, + ["md-airplane_plus"] = { + ["char"] = "󱢁", + ["code"] = "f1881", + }, + ["md-airplane_remove"] = { + ["char"] = "󱢂", + ["code"] = "f1882", + }, + ["md-airplane_search"] = { + ["char"] = "󱢃", + ["code"] = "f1883", + }, + ["md-airplane_settings"] = { + ["char"] = "󱢄", + ["code"] = "f1884", + }, + ["md-airplane_takeoff"] = { + ["char"] = "󰗕", + ["code"] = "f05d5", + }, + ["md-airport"] = { + ["char"] = "󰡋", + ["code"] = "f084b", + }, + ["md-alarm"] = { + ["char"] = "󰀠", + ["code"] = "f0020", + }, + ["md-alarm_bell"] = { + ["char"] = "󰞎", + ["code"] = "f078e", + }, + ["md-alarm_check"] = { + ["char"] = "󰀡", + ["code"] = "f0021", + }, + ["md-alarm_light"] = { + ["char"] = "󰞏", + ["code"] = "f078f", + }, + ["md-alarm_light_off"] = { + ["char"] = "󱜞", + ["code"] = "f171e", + }, + ["md-alarm_light_off_outline"] = { + ["char"] = "󱜟", + ["code"] = "f171f", + }, + ["md-alarm_light_outline"] = { + ["char"] = "󰯪", + ["code"] = "f0bea", + }, + ["md-alarm_multiple"] = { + ["char"] = "󰀢", + ["code"] = "f0022", + }, + ["md-alarm_note"] = { + ["char"] = "󰹱", + ["code"] = "f0e71", + }, + ["md-alarm_note_off"] = { + ["char"] = "󰹲", + ["code"] = "f0e72", + }, + ["md-alarm_off"] = { + ["char"] = "󰀣", + ["code"] = "f0023", + }, + ["md-alarm_panel"] = { + ["char"] = "󱗄", + ["code"] = "f15c4", + }, + ["md-alarm_panel_outline"] = { + ["char"] = "󱗅", + ["code"] = "f15c5", + }, + ["md-alarm_plus"] = { + ["char"] = "󰀤", + ["code"] = "f0024", + }, + ["md-alarm_snooze"] = { + ["char"] = "󰚎", + ["code"] = "f068e", + }, + ["md-album"] = { + ["char"] = "󰀥", + ["code"] = "f0025", + }, + ["md-alert"] = { + ["char"] = "󰀦", + ["code"] = "f0026", + }, + ["md-alert_box"] = { + ["char"] = "󰀧", + ["code"] = "f0027", + }, + ["md-alert_box_outline"] = { + ["char"] = "󰳤", + ["code"] = "f0ce4", + }, + ["md-alert_circle"] = { + ["char"] = "󰀨", + ["code"] = "f0028", + }, + ["md-alert_circle_check"] = { + ["char"] = "󱇭", + ["code"] = "f11ed", + }, + ["md-alert_circle_check_outline"] = { + ["char"] = "󱇮", + ["code"] = "f11ee", + }, + ["md-alert_circle_outline"] = { + ["char"] = "󰗖", + ["code"] = "f05d6", + }, + ["md-alert_decagram"] = { + ["char"] = "󰚽", + ["code"] = "f06bd", + }, + ["md-alert_decagram_outline"] = { + ["char"] = "󰳥", + ["code"] = "f0ce5", + }, + ["md-alert_minus"] = { + ["char"] = "󱒻", + ["code"] = "f14bb", + }, + ["md-alert_minus_outline"] = { + ["char"] = "󱒾", + ["code"] = "f14be", + }, + ["md-alert_octagon"] = { + ["char"] = "󰀩", + ["code"] = "f0029", + }, + ["md-alert_octagon_outline"] = { + ["char"] = "󰳦", + ["code"] = "f0ce6", + }, + ["md-alert_octagram"] = { + ["char"] = "󰝧", + ["code"] = "f0767", + }, + ["md-alert_octagram_outline"] = { + ["char"] = "󰳧", + ["code"] = "f0ce7", + }, + ["md-alert_outline"] = { + ["char"] = "󰀪", + ["code"] = "f002a", + }, + ["md-alert_plus"] = { + ["char"] = "󱒺", + ["code"] = "f14ba", + }, + ["md-alert_plus_outline"] = { + ["char"] = "󱒽", + ["code"] = "f14bd", + }, + ["md-alert_remove"] = { + ["char"] = "󱒼", + ["code"] = "f14bc", + }, + ["md-alert_remove_outline"] = { + ["char"] = "󱒿", + ["code"] = "f14bf", + }, + ["md-alert_rhombus"] = { + ["char"] = "󱇎", + ["code"] = "f11ce", + }, + ["md-alert_rhombus_outline"] = { + ["char"] = "󱇏", + ["code"] = "f11cf", + }, + ["md-alien"] = { + ["char"] = "󰢚", + ["code"] = "f089a", + }, + ["md-alien_outline"] = { + ["char"] = "󱃋", + ["code"] = "f10cb", + }, + ["md-align_horizontal_center"] = { + ["char"] = "󱇃", + ["code"] = "f11c3", + }, + ["md-align_horizontal_distribute"] = { + ["char"] = "󱥢", + ["code"] = "f1962", + }, + ["md-align_horizontal_left"] = { + ["char"] = "󱇂", + ["code"] = "f11c2", + }, + ["md-align_horizontal_right"] = { + ["char"] = "󱇄", + ["code"] = "f11c4", + }, + ["md-align_vertical_bottom"] = { + ["char"] = "󱇅", + ["code"] = "f11c5", + }, + ["md-align_vertical_center"] = { + ["char"] = "󱇆", + ["code"] = "f11c6", + }, + ["md-align_vertical_distribute"] = { + ["char"] = "󱥣", + ["code"] = "f1963", + }, + ["md-align_vertical_top"] = { + ["char"] = "󱇇", + ["code"] = "f11c7", + }, + ["md-all_inclusive"] = { + ["char"] = "󰚾", + ["code"] = "f06be", + }, + ["md-all_inclusive_box"] = { + ["char"] = "󱢍", + ["code"] = "f188d", + }, + ["md-all_inclusive_box_outline"] = { + ["char"] = "󱢎", + ["code"] = "f188e", + }, + ["md-allergy"] = { + ["char"] = "󱉘", + ["code"] = "f1258", + }, + ["md-alpha"] = { + ["char"] = "󰀫", + ["code"] = "f002b", + }, + ["md-alpha_a"] = { + ["char"] = "󰫮", + ["code"] = "f0aee", + }, + ["md-alpha_a_box"] = { + ["char"] = "󰬈", + ["code"] = "f0b08", + }, + ["md-alpha_a_box_outline"] = { + ["char"] = "󰯫", + ["code"] = "f0beb", + }, + ["md-alpha_a_circle"] = { + ["char"] = "󰯬", + ["code"] = "f0bec", + }, + ["md-alpha_a_circle_outline"] = { + ["char"] = "󰯭", + ["code"] = "f0bed", + }, + ["md-alpha_b"] = { + ["char"] = "󰫯", + ["code"] = "f0aef", + }, + ["md-alpha_b_box"] = { + ["char"] = "󰬉", + ["code"] = "f0b09", + }, + ["md-alpha_b_box_outline"] = { + ["char"] = "󰯮", + ["code"] = "f0bee", + }, + ["md-alpha_b_circle"] = { + ["char"] = "󰯯", + ["code"] = "f0bef", + }, + ["md-alpha_b_circle_outline"] = { + ["char"] = "󰯰", + ["code"] = "f0bf0", + }, + ["md-alpha_c"] = { + ["char"] = "󰫰", + ["code"] = "f0af0", + }, + ["md-alpha_c_box"] = { + ["char"] = "󰬊", + ["code"] = "f0b0a", + }, + ["md-alpha_c_box_outline"] = { + ["char"] = "󰯱", + ["code"] = "f0bf1", + }, + ["md-alpha_c_circle"] = { + ["char"] = "󰯲", + ["code"] = "f0bf2", + }, + ["md-alpha_c_circle_outline"] = { + ["char"] = "󰯳", + ["code"] = "f0bf3", + }, + ["md-alpha_d"] = { + ["char"] = "󰫱", + ["code"] = "f0af1", + }, + ["md-alpha_d_box"] = { + ["char"] = "󰬋", + ["code"] = "f0b0b", + }, + ["md-alpha_d_box_outline"] = { + ["char"] = "󰯴", + ["code"] = "f0bf4", + }, + ["md-alpha_d_circle"] = { + ["char"] = "󰯵", + ["code"] = "f0bf5", + }, + ["md-alpha_d_circle_outline"] = { + ["char"] = "󰯶", + ["code"] = "f0bf6", + }, + ["md-alpha_e"] = { + ["char"] = "󰫲", + ["code"] = "f0af2", + }, + ["md-alpha_e_box"] = { + ["char"] = "󰬌", + ["code"] = "f0b0c", + }, + ["md-alpha_e_box_outline"] = { + ["char"] = "󰯷", + ["code"] = "f0bf7", + }, + ["md-alpha_e_circle"] = { + ["char"] = "󰯸", + ["code"] = "f0bf8", + }, + ["md-alpha_e_circle_outline"] = { + ["char"] = "󰯹", + ["code"] = "f0bf9", + }, + ["md-alpha_f"] = { + ["char"] = "󰫳", + ["code"] = "f0af3", + }, + ["md-alpha_f_box"] = { + ["char"] = "󰬍", + ["code"] = "f0b0d", + }, + ["md-alpha_f_box_outline"] = { + ["char"] = "󰯺", + ["code"] = "f0bfa", + }, + ["md-alpha_f_circle"] = { + ["char"] = "󰯻", + ["code"] = "f0bfb", + }, + ["md-alpha_f_circle_outline"] = { + ["char"] = "󰯼", + ["code"] = "f0bfc", + }, + ["md-alpha_g"] = { + ["char"] = "󰫴", + ["code"] = "f0af4", + }, + ["md-alpha_g_box"] = { + ["char"] = "󰬎", + ["code"] = "f0b0e", + }, + ["md-alpha_g_box_outline"] = { + ["char"] = "󰯽", + ["code"] = "f0bfd", + }, + ["md-alpha_g_circle"] = { + ["char"] = "󰯾", + ["code"] = "f0bfe", + }, + ["md-alpha_g_circle_outline"] = { + ["char"] = "󰯿", + ["code"] = "f0bff", + }, + ["md-alpha_h"] = { + ["char"] = "󰫵", + ["code"] = "f0af5", + }, + ["md-alpha_h_box"] = { + ["char"] = "󰬏", + ["code"] = "f0b0f", + }, + ["md-alpha_h_box_outline"] = { + ["char"] = "󰰀", + ["code"] = "f0c00", + }, + ["md-alpha_h_circle"] = { + ["char"] = "󰰁", + ["code"] = "f0c01", + }, + ["md-alpha_h_circle_outline"] = { + ["char"] = "󰰂", + ["code"] = "f0c02", + }, + ["md-alpha_i"] = { + ["char"] = "󱂈", + ["code"] = "f1088", + }, + ["md-alpha_i_box"] = { + ["char"] = "󰬐", + ["code"] = "f0b10", + }, + ["md-alpha_i_box_outline"] = { + ["char"] = "󰰃", + ["code"] = "f0c03", + }, + ["md-alpha_i_circle"] = { + ["char"] = "󰰄", + ["code"] = "f0c04", + }, + ["md-alpha_i_circle_outline"] = { + ["char"] = "󰰅", + ["code"] = "f0c05", + }, + ["md-alpha_j"] = { + ["char"] = "󰫷", + ["code"] = "f0af7", + }, + ["md-alpha_j_box"] = { + ["char"] = "󰬑", + ["code"] = "f0b11", + }, + ["md-alpha_j_box_outline"] = { + ["char"] = "󰰆", + ["code"] = "f0c06", + }, + ["md-alpha_j_circle"] = { + ["char"] = "󰰇", + ["code"] = "f0c07", + }, + ["md-alpha_j_circle_outline"] = { + ["char"] = "󰰈", + ["code"] = "f0c08", + }, + ["md-alpha_k"] = { + ["char"] = "󰫸", + ["code"] = "f0af8", + }, + ["md-alpha_k_box"] = { + ["char"] = "󰬒", + ["code"] = "f0b12", + }, + ["md-alpha_k_box_outline"] = { + ["char"] = "󰰉", + ["code"] = "f0c09", + }, + ["md-alpha_k_circle"] = { + ["char"] = "󰰊", + ["code"] = "f0c0a", + }, + ["md-alpha_k_circle_outline"] = { + ["char"] = "󰰋", + ["code"] = "f0c0b", + }, + ["md-alpha_l"] = { + ["char"] = "󱎦", + ["code"] = "f13a6", + }, + ["md-alpha_l_box"] = { + ["char"] = "󰬓", + ["code"] = "f0b13", + }, + ["md-alpha_l_box_outline"] = { + ["char"] = "󰰌", + ["code"] = "f0c0c", + }, + ["md-alpha_l_circle"] = { + ["char"] = "󰰍", + ["code"] = "f0c0d", + }, + ["md-alpha_l_circle_outline"] = { + ["char"] = "󰰎", + ["code"] = "f0c0e", + }, + ["md-alpha_m"] = { + ["char"] = "󰫺", + ["code"] = "f0afa", + }, + ["md-alpha_m_box"] = { + ["char"] = "󰬔", + ["code"] = "f0b14", + }, + ["md-alpha_m_box_outline"] = { + ["char"] = "󰰏", + ["code"] = "f0c0f", + }, + ["md-alpha_m_circle"] = { + ["char"] = "󰰐", + ["code"] = "f0c10", + }, + ["md-alpha_m_circle_outline"] = { + ["char"] = "󰰑", + ["code"] = "f0c11", + }, + ["md-alpha_n"] = { + ["char"] = "󰫻", + ["code"] = "f0afb", + }, + ["md-alpha_n_box"] = { + ["char"] = "󰬕", + ["code"] = "f0b15", + }, + ["md-alpha_n_box_outline"] = { + ["char"] = "󰰒", + ["code"] = "f0c12", + }, + ["md-alpha_n_circle"] = { + ["char"] = "󰰓", + ["code"] = "f0c13", + }, + ["md-alpha_n_circle_outline"] = { + ["char"] = "󰰔", + ["code"] = "f0c14", + }, + ["md-alpha_o"] = { + ["char"] = "󰬹", + ["code"] = "f0b39", + }, + ["md-alpha_o_box"] = { + ["char"] = "󰬖", + ["code"] = "f0b16", + }, + ["md-alpha_o_box_outline"] = { + ["char"] = "󰰕", + ["code"] = "f0c15", + }, + ["md-alpha_o_circle"] = { + ["char"] = "󰲞", + ["code"] = "f0c9e", + }, + ["md-alpha_o_circle_outline"] = { + ["char"] = "󰲟", + ["code"] = "f0c9f", + }, + ["md-alpha_p"] = { + ["char"] = "󰫽", + ["code"] = "f0afd", + }, + ["md-alpha_p_box"] = { + ["char"] = "󰬗", + ["code"] = "f0b17", + }, + ["md-alpha_p_box_outline"] = { + ["char"] = "󰰘", + ["code"] = "f0c18", + }, + ["md-alpha_p_circle"] = { + ["char"] = "󰰙", + ["code"] = "f0c19", + }, + ["md-alpha_p_circle_outline"] = { + ["char"] = "󰰚", + ["code"] = "f0c1a", + }, + ["md-alpha_q"] = { + ["char"] = "󰫾", + ["code"] = "f0afe", + }, + ["md-alpha_q_box"] = { + ["char"] = "󰬘", + ["code"] = "f0b18", + }, + ["md-alpha_q_box_outline"] = { + ["char"] = "󰰛", + ["code"] = "f0c1b", + }, + ["md-alpha_q_circle"] = { + ["char"] = "󰰜", + ["code"] = "f0c1c", + }, + ["md-alpha_q_circle_outline"] = { + ["char"] = "󰰝", + ["code"] = "f0c1d", + }, + ["md-alpha_r"] = { + ["char"] = "󰫿", + ["code"] = "f0aff", + }, + ["md-alpha_r_box"] = { + ["char"] = "󰬙", + ["code"] = "f0b19", + }, + ["md-alpha_r_box_outline"] = { + ["char"] = "󰰞", + ["code"] = "f0c1e", + }, + ["md-alpha_r_circle"] = { + ["char"] = "󰰟", + ["code"] = "f0c1f", + }, + ["md-alpha_r_circle_outline"] = { + ["char"] = "󰰠", + ["code"] = "f0c20", + }, + ["md-alpha_s"] = { + ["char"] = "󰬀", + ["code"] = "f0b00", + }, + ["md-alpha_s_box"] = { + ["char"] = "󰬚", + ["code"] = "f0b1a", + }, + ["md-alpha_s_box_outline"] = { + ["char"] = "󰰡", + ["code"] = "f0c21", + }, + ["md-alpha_s_circle"] = { + ["char"] = "󰰢", + ["code"] = "f0c22", + }, + ["md-alpha_s_circle_outline"] = { + ["char"] = "󰰣", + ["code"] = "f0c23", + }, + ["md-alpha_t"] = { + ["char"] = "󰬁", + ["code"] = "f0b01", + }, + ["md-alpha_t_box"] = { + ["char"] = "󰬛", + ["code"] = "f0b1b", + }, + ["md-alpha_t_box_outline"] = { + ["char"] = "󰰤", + ["code"] = "f0c24", + }, + ["md-alpha_t_circle"] = { + ["char"] = "󰰥", + ["code"] = "f0c25", + }, + ["md-alpha_t_circle_outline"] = { + ["char"] = "󰰦", + ["code"] = "f0c26", + }, + ["md-alpha_u"] = { + ["char"] = "󰬂", + ["code"] = "f0b02", + }, + ["md-alpha_u_box"] = { + ["char"] = "󰬜", + ["code"] = "f0b1c", + }, + ["md-alpha_u_box_outline"] = { + ["char"] = "󰰧", + ["code"] = "f0c27", + }, + ["md-alpha_u_circle"] = { + ["char"] = "󰰨", + ["code"] = "f0c28", + }, + ["md-alpha_u_circle_outline"] = { + ["char"] = "󰰩", + ["code"] = "f0c29", + }, + ["md-alpha_v"] = { + ["char"] = "󱂌", + ["code"] = "f108c", + }, + ["md-alpha_v_box"] = { + ["char"] = "󰬝", + ["code"] = "f0b1d", + }, + ["md-alpha_v_box_outline"] = { + ["char"] = "󰰪", + ["code"] = "f0c2a", + }, + ["md-alpha_v_circle"] = { + ["char"] = "󰰫", + ["code"] = "f0c2b", + }, + ["md-alpha_v_circle_outline"] = { + ["char"] = "󰰬", + ["code"] = "f0c2c", + }, + ["md-alpha_w"] = { + ["char"] = "󰬄", + ["code"] = "f0b04", + }, + ["md-alpha_w_box"] = { + ["char"] = "󰬞", + ["code"] = "f0b1e", + }, + ["md-alpha_w_box_outline"] = { + ["char"] = "󰰭", + ["code"] = "f0c2d", + }, + ["md-alpha_w_circle"] = { + ["char"] = "󰰮", + ["code"] = "f0c2e", + }, + ["md-alpha_w_circle_outline"] = { + ["char"] = "󰰯", + ["code"] = "f0c2f", + }, + ["md-alpha_x"] = { + ["char"] = "󱂑", + ["code"] = "f1091", + }, + ["md-alpha_x_box"] = { + ["char"] = "󰬟", + ["code"] = "f0b1f", + }, + ["md-alpha_x_box_outline"] = { + ["char"] = "󰰰", + ["code"] = "f0c30", + }, + ["md-alpha_x_circle"] = { + ["char"] = "󰰱", + ["code"] = "f0c31", + }, + ["md-alpha_x_circle_outline"] = { + ["char"] = "󰰲", + ["code"] = "f0c32", + }, + ["md-alpha_y"] = { + ["char"] = "󰬆", + ["code"] = "f0b06", + }, + ["md-alpha_y_box"] = { + ["char"] = "󰬠", + ["code"] = "f0b20", + }, + ["md-alpha_y_box_outline"] = { + ["char"] = "󰰳", + ["code"] = "f0c33", + }, + ["md-alpha_y_circle"] = { + ["char"] = "󰰴", + ["code"] = "f0c34", + }, + ["md-alpha_y_circle_outline"] = { + ["char"] = "󰰵", + ["code"] = "f0c35", + }, + ["md-alpha_z"] = { + ["char"] = "󰬇", + ["code"] = "f0b07", + }, + ["md-alpha_z_box"] = { + ["char"] = "󰬡", + ["code"] = "f0b21", + }, + ["md-alpha_z_box_outline"] = { + ["char"] = "󰰶", + ["code"] = "f0c36", + }, + ["md-alpha_z_circle"] = { + ["char"] = "󰰷", + ["code"] = "f0c37", + }, + ["md-alpha_z_circle_outline"] = { + ["char"] = "󰰸", + ["code"] = "f0c38", + }, + ["md-alphabet_aurebesh"] = { + ["char"] = "󱌬", + ["code"] = "f132c", + }, + ["md-alphabet_cyrillic"] = { + ["char"] = "󱌭", + ["code"] = "f132d", + }, + ["md-alphabet_greek"] = { + ["char"] = "󱌮", + ["code"] = "f132e", + }, + ["md-alphabet_latin"] = { + ["char"] = "󱌯", + ["code"] = "f132f", + }, + ["md-alphabet_piqad"] = { + ["char"] = "󱌰", + ["code"] = "f1330", + }, + ["md-alphabet_tengwar"] = { + ["char"] = "󱌷", + ["code"] = "f1337", + }, + ["md-alphabetical"] = { + ["char"] = "󰀬", + ["code"] = "f002c", + }, + ["md-alphabetical_off"] = { + ["char"] = "󱀌", + ["code"] = "f100c", + }, + ["md-alphabetical_variant"] = { + ["char"] = "󱀍", + ["code"] = "f100d", + }, + ["md-alphabetical_variant_off"] = { + ["char"] = "󱀎", + ["code"] = "f100e", + }, + ["md-altimeter"] = { + ["char"] = "󰗗", + ["code"] = "f05d7", + }, + ["md-ambulance"] = { + ["char"] = "󰀯", + ["code"] = "f002f", + }, + ["md-ammunition"] = { + ["char"] = "󰳨", + ["code"] = "f0ce8", + }, + ["md-ampersand"] = { + ["char"] = "󰪍", + ["code"] = "f0a8d", + }, + ["md-amplifier"] = { + ["char"] = "󰀰", + ["code"] = "f0030", + }, + ["md-amplifier_off"] = { + ["char"] = "󱆵", + ["code"] = "f11b5", + }, + ["md-anchor"] = { + ["char"] = "󰀱", + ["code"] = "f0031", + }, + ["md-android"] = { + ["char"] = "󰀲", + ["code"] = "f0032", + }, + ["md-android_messages"] = { + ["char"] = "󰵅", + ["code"] = "f0d45", + }, + ["md-android_studio"] = { + ["char"] = "󰀴", + ["code"] = "f0034", + }, + ["md-angle_acute"] = { + ["char"] = "󰤷", + ["code"] = "f0937", + }, + ["md-angle_obtuse"] = { + ["char"] = "󰤸", + ["code"] = "f0938", + }, + ["md-angle_right"] = { + ["char"] = "󰤹", + ["code"] = "f0939", + }, + ["md-angular"] = { + ["char"] = "󰚲", + ["code"] = "f06b2", + }, + ["md-angularjs"] = { + ["char"] = "󰚿", + ["code"] = "f06bf", + }, + ["md-animation"] = { + ["char"] = "󰗘", + ["code"] = "f05d8", + }, + ["md-animation_outline"] = { + ["char"] = "󰪏", + ["code"] = "f0a8f", + }, + ["md-animation_play"] = { + ["char"] = "󰤺", + ["code"] = "f093a", + }, + ["md-animation_play_outline"] = { + ["char"] = "󰪐", + ["code"] = "f0a90", + }, + ["md-ansible"] = { + ["char"] = "󱂚", + ["code"] = "f109a", + }, + ["md-antenna"] = { + ["char"] = "󱄙", + ["code"] = "f1119", + }, + ["md-anvil"] = { + ["char"] = "󰢛", + ["code"] = "f089b", + }, + ["md-apache_kafka"] = { + ["char"] = "󱀏", + ["code"] = "f100f", + }, + ["md-api"] = { + ["char"] = "󱂛", + ["code"] = "f109b", + }, + ["md-api_off"] = { + ["char"] = "󱉗", + ["code"] = "f1257", + }, + ["md-apple"] = { + ["char"] = "󰀵", + ["code"] = "f0035", + }, + ["md-apple_finder"] = { + ["char"] = "󰀶", + ["code"] = "f0036", + }, + ["md-apple_icloud"] = { + ["char"] = "󰀸", + ["code"] = "f0038", + }, + ["md-apple_ios"] = { + ["char"] = "󰀷", + ["code"] = "f0037", + }, + ["md-apple_keyboard_caps"] = { + ["char"] = "󰘲", + ["code"] = "f0632", + }, + ["md-apple_keyboard_command"] = { + ["char"] = "󰘳", + ["code"] = "f0633", + }, + ["md-apple_keyboard_control"] = { + ["char"] = "󰘴", + ["code"] = "f0634", + }, + ["md-apple_keyboard_option"] = { + ["char"] = "󰘵", + ["code"] = "f0635", + }, + ["md-apple_keyboard_shift"] = { + ["char"] = "󰘶", + ["code"] = "f0636", + }, + ["md-apple_safari"] = { + ["char"] = "󰀹", + ["code"] = "f0039", + }, + ["md-application"] = { + ["char"] = "󰣆", + ["code"] = "f08c6", + }, + ["md-application_array"] = { + ["char"] = "󱃵", + ["code"] = "f10f5", + }, + ["md-application_array_outline"] = { + ["char"] = "󱃶", + ["code"] = "f10f6", + }, + ["md-application_braces"] = { + ["char"] = "󱃷", + ["code"] = "f10f7", + }, + ["md-application_braces_outline"] = { + ["char"] = "󱃸", + ["code"] = "f10f8", + }, + ["md-application_brackets"] = { + ["char"] = "󰲋", + ["code"] = "f0c8b", + }, + ["md-application_brackets_outline"] = { + ["char"] = "󰲌", + ["code"] = "f0c8c", + }, + ["md-application_cog"] = { + ["char"] = "󰙵", + ["code"] = "f0675", + }, + ["md-application_cog_outline"] = { + ["char"] = "󱕷", + ["code"] = "f1577", + }, + ["md-application_edit"] = { + ["char"] = "󰂮", + ["code"] = "f00ae", + }, + ["md-application_edit_outline"] = { + ["char"] = "󰘙", + ["code"] = "f0619", + }, + ["md-application_export"] = { + ["char"] = "󰶭", + ["code"] = "f0dad", + }, + ["md-application_import"] = { + ["char"] = "󰶮", + ["code"] = "f0dae", + }, + ["md-application_outline"] = { + ["char"] = "󰘔", + ["code"] = "f0614", + }, + ["md-application_parentheses"] = { + ["char"] = "󱃹", + ["code"] = "f10f9", + }, + ["md-application_parentheses_outline"] = { + ["char"] = "󱃺", + ["code"] = "f10fa", + }, + ["md-application_settings"] = { + ["char"] = "󰭠", + ["code"] = "f0b60", + }, + ["md-application_settings_outline"] = { + ["char"] = "󱕕", + ["code"] = "f1555", + }, + ["md-application_variable"] = { + ["char"] = "󱃻", + ["code"] = "f10fb", + }, + ["md-application_variable_outline"] = { + ["char"] = "󱃼", + ["code"] = "f10fc", + }, + ["md-approximately_equal"] = { + ["char"] = "󰾞", + ["code"] = "f0f9e", + }, + ["md-approximately_equal_box"] = { + ["char"] = "󰾟", + ["code"] = "f0f9f", + }, + ["md-apps"] = { + ["char"] = "󰀻", + ["code"] = "f003b", + }, + ["md-apps_box"] = { + ["char"] = "󰵆", + ["code"] = "f0d46", + }, + ["md-arch"] = { + ["char"] = "󰣇", + ["code"] = "f08c7", + }, + ["md-archive"] = { + ["char"] = "󰀼", + ["code"] = "f003c", + }, + ["md-archive_alert"] = { + ["char"] = "󱓽", + ["code"] = "f14fd", + }, + ["md-archive_alert_outline"] = { + ["char"] = "󱓾", + ["code"] = "f14fe", + }, + ["md-archive_arrow_down"] = { + ["char"] = "󱉙", + ["code"] = "f1259", + }, + ["md-archive_arrow_down_outline"] = { + ["char"] = "󱉚", + ["code"] = "f125a", + }, + ["md-archive_arrow_up"] = { + ["char"] = "󱉛", + ["code"] = "f125b", + }, + ["md-archive_arrow_up_outline"] = { + ["char"] = "󱉜", + ["code"] = "f125c", + }, + ["md-archive_cancel"] = { + ["char"] = "󱝋", + ["code"] = "f174b", + }, + ["md-archive_cancel_outline"] = { + ["char"] = "󱝌", + ["code"] = "f174c", + }, + ["md-archive_check"] = { + ["char"] = "󱝍", + ["code"] = "f174d", + }, + ["md-archive_check_outline"] = { + ["char"] = "󱝎", + ["code"] = "f174e", + }, + ["md-archive_clock"] = { + ["char"] = "󱝏", + ["code"] = "f174f", + }, + ["md-archive_clock_outline"] = { + ["char"] = "󱝐", + ["code"] = "f1750", + }, + ["md-archive_cog"] = { + ["char"] = "󱝑", + ["code"] = "f1751", + }, + ["md-archive_cog_outline"] = { + ["char"] = "󱝒", + ["code"] = "f1752", + }, + ["md-archive_edit"] = { + ["char"] = "󱝓", + ["code"] = "f1753", + }, + ["md-archive_edit_outline"] = { + ["char"] = "󱝔", + ["code"] = "f1754", + }, + ["md-archive_eye"] = { + ["char"] = "󱝕", + ["code"] = "f1755", + }, + ["md-archive_eye_outline"] = { + ["char"] = "󱝖", + ["code"] = "f1756", + }, + ["md-archive_lock"] = { + ["char"] = "󱝗", + ["code"] = "f1757", + }, + ["md-archive_lock_open"] = { + ["char"] = "󱝘", + ["code"] = "f1758", + }, + ["md-archive_lock_open_outline"] = { + ["char"] = "󱝙", + ["code"] = "f1759", + }, + ["md-archive_lock_outline"] = { + ["char"] = "󱝚", + ["code"] = "f175a", + }, + ["md-archive_marker"] = { + ["char"] = "󱝛", + ["code"] = "f175b", + }, + ["md-archive_marker_outline"] = { + ["char"] = "󱝜", + ["code"] = "f175c", + }, + ["md-archive_minus"] = { + ["char"] = "󱝝", + ["code"] = "f175d", + }, + ["md-archive_minus_outline"] = { + ["char"] = "󱝞", + ["code"] = "f175e", + }, + ["md-archive_music"] = { + ["char"] = "󱝟", + ["code"] = "f175f", + }, + ["md-archive_music_outline"] = { + ["char"] = "󱝠", + ["code"] = "f1760", + }, + ["md-archive_off"] = { + ["char"] = "󱝡", + ["code"] = "f1761", + }, + ["md-archive_off_outline"] = { + ["char"] = "󱝢", + ["code"] = "f1762", + }, + ["md-archive_outline"] = { + ["char"] = "󱈎", + ["code"] = "f120e", + }, + ["md-archive_plus"] = { + ["char"] = "󱝣", + ["code"] = "f1763", + }, + ["md-archive_plus_outline"] = { + ["char"] = "󱝤", + ["code"] = "f1764", + }, + ["md-archive_refresh"] = { + ["char"] = "󱝥", + ["code"] = "f1765", + }, + ["md-archive_refresh_outline"] = { + ["char"] = "󱝦", + ["code"] = "f1766", + }, + ["md-archive_remove"] = { + ["char"] = "󱝧", + ["code"] = "f1767", + }, + ["md-archive_remove_outline"] = { + ["char"] = "󱝨", + ["code"] = "f1768", + }, + ["md-archive_search"] = { + ["char"] = "󱝩", + ["code"] = "f1769", + }, + ["md-archive_search_outline"] = { + ["char"] = "󱝪", + ["code"] = "f176a", + }, + ["md-archive_settings"] = { + ["char"] = "󱝫", + ["code"] = "f176b", + }, + ["md-archive_settings_outline"] = { + ["char"] = "󱝬", + ["code"] = "f176c", + }, + ["md-archive_star"] = { + ["char"] = "󱝭", + ["code"] = "f176d", + }, + ["md-archive_star_outline"] = { + ["char"] = "󱝮", + ["code"] = "f176e", + }, + ["md-archive_sync"] = { + ["char"] = "󱝯", + ["code"] = "f176f", + }, + ["md-archive_sync_outline"] = { + ["char"] = "󱝰", + ["code"] = "f1770", + }, + ["md-arm_flex"] = { + ["char"] = "󰿗", + ["code"] = "f0fd7", + }, + ["md-arm_flex_outline"] = { + ["char"] = "󰿖", + ["code"] = "f0fd6", + }, + ["md-arrange_bring_forward"] = { + ["char"] = "󰀽", + ["code"] = "f003d", + }, + ["md-arrange_bring_to_front"] = { + ["char"] = "󰀾", + ["code"] = "f003e", + }, + ["md-arrange_send_backward"] = { + ["char"] = "󰀿", + ["code"] = "f003f", + }, + ["md-arrange_send_to_back"] = { + ["char"] = "󰁀", + ["code"] = "f0040", + }, + ["md-arrow_all"] = { + ["char"] = "󰁁", + ["code"] = "f0041", + }, + ["md-arrow_bottom_left"] = { + ["char"] = "󰁂", + ["code"] = "f0042", + }, + ["md-arrow_bottom_left_bold_box"] = { + ["char"] = "󱥤", + ["code"] = "f1964", + }, + ["md-arrow_bottom_left_bold_box_outline"] = { + ["char"] = "󱥥", + ["code"] = "f1965", + }, + ["md-arrow_bottom_left_bold_outline"] = { + ["char"] = "󰦷", + ["code"] = "f09b7", + }, + ["md-arrow_bottom_left_thick"] = { + ["char"] = "󰦸", + ["code"] = "f09b8", + }, + ["md-arrow_bottom_left_thin"] = { + ["char"] = "󱦶", + ["code"] = "f19b6", + }, + ["md-arrow_bottom_left_thin_circle_outline"] = { + ["char"] = "󱖖", + ["code"] = "f1596", + }, + ["md-arrow_bottom_right"] = { + ["char"] = "󰁃", + ["code"] = "f0043", + }, + ["md-arrow_bottom_right_bold_box"] = { + ["char"] = "󱥦", + ["code"] = "f1966", + }, + ["md-arrow_bottom_right_bold_box_outline"] = { + ["char"] = "󱥧", + ["code"] = "f1967", + }, + ["md-arrow_bottom_right_bold_outline"] = { + ["char"] = "󰦹", + ["code"] = "f09b9", + }, + ["md-arrow_bottom_right_thick"] = { + ["char"] = "󰦺", + ["code"] = "f09ba", + }, + ["md-arrow_bottom_right_thin"] = { + ["char"] = "󱦷", + ["code"] = "f19b7", + }, + ["md-arrow_bottom_right_thin_circle_outline"] = { + ["char"] = "󱖕", + ["code"] = "f1595", + }, + ["md-arrow_collapse"] = { + ["char"] = "󰘕", + ["code"] = "f0615", + }, + ["md-arrow_collapse_all"] = { + ["char"] = "󰁄", + ["code"] = "f0044", + }, + ["md-arrow_collapse_down"] = { + ["char"] = "󰞒", + ["code"] = "f0792", + }, + ["md-arrow_collapse_horizontal"] = { + ["char"] = "󰡌", + ["code"] = "f084c", + }, + ["md-arrow_collapse_left"] = { + ["char"] = "󰞓", + ["code"] = "f0793", + }, + ["md-arrow_collapse_right"] = { + ["char"] = "󰞔", + ["code"] = "f0794", + }, + ["md-arrow_collapse_up"] = { + ["char"] = "󰞕", + ["code"] = "f0795", + }, + ["md-arrow_collapse_vertical"] = { + ["char"] = "󰡍", + ["code"] = "f084d", + }, + ["md-arrow_decision"] = { + ["char"] = "󰦻", + ["code"] = "f09bb", + }, + ["md-arrow_decision_auto"] = { + ["char"] = "󰦼", + ["code"] = "f09bc", + }, + ["md-arrow_decision_auto_outline"] = { + ["char"] = "󰦽", + ["code"] = "f09bd", + }, + ["md-arrow_decision_outline"] = { + ["char"] = "󰦾", + ["code"] = "f09be", + }, + ["md-arrow_down"] = { + ["char"] = "󰁅", + ["code"] = "f0045", + }, + ["md-arrow_down_bold"] = { + ["char"] = "󰜮", + ["code"] = "f072e", + }, + ["md-arrow_down_bold_box"] = { + ["char"] = "󰜯", + ["code"] = "f072f", + }, + ["md-arrow_down_bold_box_outline"] = { + ["char"] = "󰜰", + ["code"] = "f0730", + }, + ["md-arrow_down_bold_circle"] = { + ["char"] = "󰁇", + ["code"] = "f0047", + }, + ["md-arrow_down_bold_circle_outline"] = { + ["char"] = "󰁈", + ["code"] = "f0048", + }, + ["md-arrow_down_bold_hexagon_outline"] = { + ["char"] = "󰁉", + ["code"] = "f0049", + }, + ["md-arrow_down_bold_outline"] = { + ["char"] = "󰦿", + ["code"] = "f09bf", + }, + ["md-arrow_down_box"] = { + ["char"] = "󰛀", + ["code"] = "f06c0", + }, + ["md-arrow_down_circle"] = { + ["char"] = "󰳛", + ["code"] = "f0cdb", + }, + ["md-arrow_down_circle_outline"] = { + ["char"] = "󰳜", + ["code"] = "f0cdc", + }, + ["md-arrow_down_drop_circle"] = { + ["char"] = "󰁊", + ["code"] = "f004a", + }, + ["md-arrow_down_drop_circle_outline"] = { + ["char"] = "󰁋", + ["code"] = "f004b", + }, + ["md-arrow_down_left"] = { + ["char"] = "󱞡", + ["code"] = "f17a1", + }, + ["md-arrow_down_left_bold"] = { + ["char"] = "󱞢", + ["code"] = "f17a2", + }, + ["md-arrow_down_right"] = { + ["char"] = "󱞣", + ["code"] = "f17a3", + }, + ["md-arrow_down_right_bold"] = { + ["char"] = "󱞤", + ["code"] = "f17a4", + }, + ["md-arrow_down_thick"] = { + ["char"] = "󰁆", + ["code"] = "f0046", + }, + ["md-arrow_down_thin"] = { + ["char"] = "󱦳", + ["code"] = "f19b3", + }, + ["md-arrow_down_thin_circle_outline"] = { + ["char"] = "󱖙", + ["code"] = "f1599", + }, + ["md-arrow_expand"] = { + ["char"] = "󰘖", + ["code"] = "f0616", + }, + ["md-arrow_expand_all"] = { + ["char"] = "󰁌", + ["code"] = "f004c", + }, + ["md-arrow_expand_down"] = { + ["char"] = "󰞖", + ["code"] = "f0796", + }, + ["md-arrow_expand_horizontal"] = { + ["char"] = "󰡎", + ["code"] = "f084e", + }, + ["md-arrow_expand_left"] = { + ["char"] = "󰞗", + ["code"] = "f0797", + }, + ["md-arrow_expand_right"] = { + ["char"] = "󰞘", + ["code"] = "f0798", + }, + ["md-arrow_expand_up"] = { + ["char"] = "󰞙", + ["code"] = "f0799", + }, + ["md-arrow_expand_vertical"] = { + ["char"] = "󰡏", + ["code"] = "f084f", + }, + ["md-arrow_horizontal_lock"] = { + ["char"] = "󱅛", + ["code"] = "f115b", + }, + ["md-arrow_left"] = { + ["char"] = "󰁍", + ["code"] = "f004d", + }, + ["md-arrow_left_bold"] = { + ["char"] = "󰜱", + ["code"] = "f0731", + }, + ["md-arrow_left_bold_box"] = { + ["char"] = "󰜲", + ["code"] = "f0732", + }, + ["md-arrow_left_bold_box_outline"] = { + ["char"] = "󰜳", + ["code"] = "f0733", + }, + ["md-arrow_left_bold_circle"] = { + ["char"] = "󰁏", + ["code"] = "f004f", + }, + ["md-arrow_left_bold_circle_outline"] = { + ["char"] = "󰁐", + ["code"] = "f0050", + }, + ["md-arrow_left_bold_hexagon_outline"] = { + ["char"] = "󰁑", + ["code"] = "f0051", + }, + ["md-arrow_left_bold_outline"] = { + ["char"] = "󰧀", + ["code"] = "f09c0", + }, + ["md-arrow_left_bottom"] = { + ["char"] = "󱞥", + ["code"] = "f17a5", + }, + ["md-arrow_left_bottom_bold"] = { + ["char"] = "󱞦", + ["code"] = "f17a6", + }, + ["md-arrow_left_box"] = { + ["char"] = "󰛁", + ["code"] = "f06c1", + }, + ["md-arrow_left_circle"] = { + ["char"] = "󰳝", + ["code"] = "f0cdd", + }, + ["md-arrow_left_circle_outline"] = { + ["char"] = "󰳞", + ["code"] = "f0cde", + }, + ["md-arrow_left_drop_circle"] = { + ["char"] = "󰁒", + ["code"] = "f0052", + }, + ["md-arrow_left_drop_circle_outline"] = { + ["char"] = "󰁓", + ["code"] = "f0053", + }, + ["md-arrow_left_right"] = { + ["char"] = "󰹳", + ["code"] = "f0e73", + }, + ["md-arrow_left_right_bold"] = { + ["char"] = "󰹴", + ["code"] = "f0e74", + }, + ["md-arrow_left_right_bold_outline"] = { + ["char"] = "󰧁", + ["code"] = "f09c1", + }, + ["md-arrow_left_thick"] = { + ["char"] = "󰁎", + ["code"] = "f004e", + }, + ["md-arrow_left_thin"] = { + ["char"] = "󱦱", + ["code"] = "f19b1", + }, + ["md-arrow_left_thin_circle_outline"] = { + ["char"] = "󱖚", + ["code"] = "f159a", + }, + ["md-arrow_left_top"] = { + ["char"] = "󱞧", + ["code"] = "f17a7", + }, + ["md-arrow_left_top_bold"] = { + ["char"] = "󱞨", + ["code"] = "f17a8", + }, + ["md-arrow_projectile"] = { + ["char"] = "󱡀", + ["code"] = "f1840", + }, + ["md-arrow_projectile_multiple"] = { + ["char"] = "󱠿", + ["code"] = "f183f", + }, + ["md-arrow_right"] = { + ["char"] = "󰁔", + ["code"] = "f0054", + }, + ["md-arrow_right_bold"] = { + ["char"] = "󰜴", + ["code"] = "f0734", + }, + ["md-arrow_right_bold_box"] = { + ["char"] = "󰜵", + ["code"] = "f0735", + }, + ["md-arrow_right_bold_box_outline"] = { + ["char"] = "󰜶", + ["code"] = "f0736", + }, + ["md-arrow_right_bold_circle"] = { + ["char"] = "󰁖", + ["code"] = "f0056", + }, + ["md-arrow_right_bold_circle_outline"] = { + ["char"] = "󰁗", + ["code"] = "f0057", + }, + ["md-arrow_right_bold_hexagon_outline"] = { + ["char"] = "󰁘", + ["code"] = "f0058", + }, + ["md-arrow_right_bold_outline"] = { + ["char"] = "󰧂", + ["code"] = "f09c2", + }, + ["md-arrow_right_bottom"] = { + ["char"] = "󱞩", + ["code"] = "f17a9", + }, + ["md-arrow_right_bottom_bold"] = { + ["char"] = "󱞪", + ["code"] = "f17aa", + }, + ["md-arrow_right_box"] = { + ["char"] = "󰛂", + ["code"] = "f06c2", + }, + ["md-arrow_right_circle"] = { + ["char"] = "󰳟", + ["code"] = "f0cdf", + }, + ["md-arrow_right_circle_outline"] = { + ["char"] = "󰳠", + ["code"] = "f0ce0", + }, + ["md-arrow_right_drop_circle"] = { + ["char"] = "󰁙", + ["code"] = "f0059", + }, + ["md-arrow_right_drop_circle_outline"] = { + ["char"] = "󰁚", + ["code"] = "f005a", + }, + ["md-arrow_right_thick"] = { + ["char"] = "󰁕", + ["code"] = "f0055", + }, + ["md-arrow_right_thin"] = { + ["char"] = "󱦰", + ["code"] = "f19b0", + }, + ["md-arrow_right_thin_circle_outline"] = { + ["char"] = "󱖘", + ["code"] = "f1598", + }, + ["md-arrow_right_top"] = { + ["char"] = "󱞫", + ["code"] = "f17ab", + }, + ["md-arrow_right_top_bold"] = { + ["char"] = "󱞬", + ["code"] = "f17ac", + }, + ["md-arrow_split_horizontal"] = { + ["char"] = "󰤻", + ["code"] = "f093b", + }, + ["md-arrow_split_vertical"] = { + ["char"] = "󰤼", + ["code"] = "f093c", + }, + ["md-arrow_top_left"] = { + ["char"] = "󰁛", + ["code"] = "f005b", + }, + ["md-arrow_top_left_bold_box"] = { + ["char"] = "󱥨", + ["code"] = "f1968", + }, + ["md-arrow_top_left_bold_box_outline"] = { + ["char"] = "󱥩", + ["code"] = "f1969", + }, + ["md-arrow_top_left_bold_outline"] = { + ["char"] = "󰧃", + ["code"] = "f09c3", + }, + ["md-arrow_top_left_bottom_right"] = { + ["char"] = "󰹵", + ["code"] = "f0e75", + }, + ["md-arrow_top_left_bottom_right_bold"] = { + ["char"] = "󰹶", + ["code"] = "f0e76", + }, + ["md-arrow_top_left_thick"] = { + ["char"] = "󰧄", + ["code"] = "f09c4", + }, + ["md-arrow_top_left_thin"] = { + ["char"] = "󱦵", + ["code"] = "f19b5", + }, + ["md-arrow_top_left_thin_circle_outline"] = { + ["char"] = "󱖓", + ["code"] = "f1593", + }, + ["md-arrow_top_right"] = { + ["char"] = "󰁜", + ["code"] = "f005c", + }, + ["md-arrow_top_right_bold_box"] = { + ["char"] = "󱥪", + ["code"] = "f196a", + }, + ["md-arrow_top_right_bold_box_outline"] = { + ["char"] = "󱥫", + ["code"] = "f196b", + }, + ["md-arrow_top_right_bold_outline"] = { + ["char"] = "󰧅", + ["code"] = "f09c5", + }, + ["md-arrow_top_right_bottom_left"] = { + ["char"] = "󰹷", + ["code"] = "f0e77", + }, + ["md-arrow_top_right_bottom_left_bold"] = { + ["char"] = "󰹸", + ["code"] = "f0e78", + }, + ["md-arrow_top_right_thick"] = { + ["char"] = "󰧆", + ["code"] = "f09c6", + }, + ["md-arrow_top_right_thin"] = { + ["char"] = "󱦴", + ["code"] = "f19b4", + }, + ["md-arrow_top_right_thin_circle_outline"] = { + ["char"] = "󱖔", + ["code"] = "f1594", + }, + ["md-arrow_u_down_left"] = { + ["char"] = "󱞭", + ["code"] = "f17ad", + }, + ["md-arrow_u_down_left_bold"] = { + ["char"] = "󱞮", + ["code"] = "f17ae", + }, + ["md-arrow_u_down_right"] = { + ["char"] = "󱞯", + ["code"] = "f17af", + }, + ["md-arrow_u_down_right_bold"] = { + ["char"] = "󱞰", + ["code"] = "f17b0", + }, + ["md-arrow_u_left_bottom"] = { + ["char"] = "󱞱", + ["code"] = "f17b1", + }, + ["md-arrow_u_left_bottom_bold"] = { + ["char"] = "󱞲", + ["code"] = "f17b2", + }, + ["md-arrow_u_left_top"] = { + ["char"] = "󱞳", + ["code"] = "f17b3", + }, + ["md-arrow_u_left_top_bold"] = { + ["char"] = "󱞴", + ["code"] = "f17b4", + }, + ["md-arrow_u_right_bottom"] = { + ["char"] = "󱞵", + ["code"] = "f17b5", + }, + ["md-arrow_u_right_bottom_bold"] = { + ["char"] = "󱞶", + ["code"] = "f17b6", + }, + ["md-arrow_u_right_top"] = { + ["char"] = "󱞷", + ["code"] = "f17b7", + }, + ["md-arrow_u_right_top_bold"] = { + ["char"] = "󱞸", + ["code"] = "f17b8", + }, + ["md-arrow_u_up_left"] = { + ["char"] = "󱞹", + ["code"] = "f17b9", + }, + ["md-arrow_u_up_left_bold"] = { + ["char"] = "󱞺", + ["code"] = "f17ba", + }, + ["md-arrow_u_up_right"] = { + ["char"] = "󱞻", + ["code"] = "f17bb", + }, + ["md-arrow_u_up_right_bold"] = { + ["char"] = "󱞼", + ["code"] = "f17bc", + }, + ["md-arrow_up"] = { + ["char"] = "󰁝", + ["code"] = "f005d", + }, + ["md-arrow_up_bold"] = { + ["char"] = "󰜷", + ["code"] = "f0737", + }, + ["md-arrow_up_bold_box"] = { + ["char"] = "󰜸", + ["code"] = "f0738", + }, + ["md-arrow_up_bold_box_outline"] = { + ["char"] = "󰜹", + ["code"] = "f0739", + }, + ["md-arrow_up_bold_circle"] = { + ["char"] = "󰁟", + ["code"] = "f005f", + }, + ["md-arrow_up_bold_circle_outline"] = { + ["char"] = "󰁠", + ["code"] = "f0060", + }, + ["md-arrow_up_bold_hexagon_outline"] = { + ["char"] = "󰁡", + ["code"] = "f0061", + }, + ["md-arrow_up_bold_outline"] = { + ["char"] = "󰧇", + ["code"] = "f09c7", + }, + ["md-arrow_up_box"] = { + ["char"] = "󰛃", + ["code"] = "f06c3", + }, + ["md-arrow_up_circle"] = { + ["char"] = "󰳡", + ["code"] = "f0ce1", + }, + ["md-arrow_up_circle_outline"] = { + ["char"] = "󰳢", + ["code"] = "f0ce2", + }, + ["md-arrow_up_down"] = { + ["char"] = "󰹹", + ["code"] = "f0e79", + }, + ["md-arrow_up_down_bold"] = { + ["char"] = "󰹺", + ["code"] = "f0e7a", + }, + ["md-arrow_up_down_bold_outline"] = { + ["char"] = "󰧈", + ["code"] = "f09c8", + }, + ["md-arrow_up_drop_circle"] = { + ["char"] = "󰁢", + ["code"] = "f0062", + }, + ["md-arrow_up_drop_circle_outline"] = { + ["char"] = "󰁣", + ["code"] = "f0063", + }, + ["md-arrow_up_left"] = { + ["char"] = "󱞽", + ["code"] = "f17bd", + }, + ["md-arrow_up_left_bold"] = { + ["char"] = "󱞾", + ["code"] = "f17be", + }, + ["md-arrow_up_right"] = { + ["char"] = "󱞿", + ["code"] = "f17bf", + }, + ["md-arrow_up_right_bold"] = { + ["char"] = "󱟀", + ["code"] = "f17c0", + }, + ["md-arrow_up_thick"] = { + ["char"] = "󰁞", + ["code"] = "f005e", + }, + ["md-arrow_up_thin"] = { + ["char"] = "󱦲", + ["code"] = "f19b2", + }, + ["md-arrow_up_thin_circle_outline"] = { + ["char"] = "󱖗", + ["code"] = "f1597", + }, + ["md-arrow_vertical_lock"] = { + ["char"] = "󱅜", + ["code"] = "f115c", + }, + ["md-artstation"] = { + ["char"] = "󰭛", + ["code"] = "f0b5b", + }, + ["md-aspect_ratio"] = { + ["char"] = "󰨤", + ["code"] = "f0a24", + }, + ["md-assistant"] = { + ["char"] = "󰁤", + ["code"] = "f0064", + }, + ["md-asterisk"] = { + ["char"] = "󰛄", + ["code"] = "f06c4", + }, + ["md-asterisk_circle_outline"] = { + ["char"] = "󱨧", + ["code"] = "f1a27", + }, + ["md-at"] = { + ["char"] = "󰁥", + ["code"] = "f0065", + }, + ["md-atlassian"] = { + ["char"] = "󰠄", + ["code"] = "f0804", + }, + ["md-atm"] = { + ["char"] = "󰵇", + ["code"] = "f0d47", + }, + ["md-atom"] = { + ["char"] = "󰝨", + ["code"] = "f0768", + }, + ["md-atom_variant"] = { + ["char"] = "󰹻", + ["code"] = "f0e7b", + }, + ["md-attachment"] = { + ["char"] = "󰁦", + ["code"] = "f0066", + }, + ["md-attachment_check"] = { + ["char"] = "󱫁", + ["code"] = "f1ac1", + }, + ["md-attachment_lock"] = { + ["char"] = "󱧄", + ["code"] = "f19c4", + }, + ["md-attachment_minus"] = { + ["char"] = "󱫂", + ["code"] = "f1ac2", + }, + ["md-attachment_off"] = { + ["char"] = "󱫃", + ["code"] = "f1ac3", + }, + ["md-attachment_plus"] = { + ["char"] = "󱫄", + ["code"] = "f1ac4", + }, + ["md-attachment_remove"] = { + ["char"] = "󱫅", + ["code"] = "f1ac5", + }, + ["md-audio_input_rca"] = { + ["char"] = "󱡫", + ["code"] = "f186b", + }, + ["md-audio_input_stereo_minijack"] = { + ["char"] = "󱡬", + ["code"] = "f186c", + }, + ["md-audio_input_xlr"] = { + ["char"] = "󱡭", + ["code"] = "f186d", + }, + ["md-audio_video"] = { + ["char"] = "󰤽", + ["code"] = "f093d", + }, + ["md-audio_video_off"] = { + ["char"] = "󱆶", + ["code"] = "f11b6", + }, + ["md-augmented_reality"] = { + ["char"] = "󰡐", + ["code"] = "f0850", + }, + ["md-auto_download"] = { + ["char"] = "󱍾", + ["code"] = "f137e", + }, + ["md-auto_fix"] = { + ["char"] = "󰁨", + ["code"] = "f0068", + }, + ["md-auto_upload"] = { + ["char"] = "󰁩", + ["code"] = "f0069", + }, + ["md-autorenew"] = { + ["char"] = "󰁪", + ["code"] = "f006a", + }, + ["md-autorenew_off"] = { + ["char"] = "󱧧", + ["code"] = "f19e7", + }, + ["md-av_timer"] = { + ["char"] = "󰁫", + ["code"] = "f006b", + }, + ["md-aws"] = { + ["char"] = "󰸏", + ["code"] = "f0e0f", + }, + ["md-axe"] = { + ["char"] = "󰣈", + ["code"] = "f08c8", + }, + ["md-axe_battle"] = { + ["char"] = "󱡂", + ["code"] = "f1842", + }, + ["md-axis"] = { + ["char"] = "󰵈", + ["code"] = "f0d48", + }, + ["md-axis_arrow"] = { + ["char"] = "󰵉", + ["code"] = "f0d49", + }, + ["md-axis_arrow_info"] = { + ["char"] = "󱐎", + ["code"] = "f140e", + }, + ["md-axis_arrow_lock"] = { + ["char"] = "󰵊", + ["code"] = "f0d4a", + }, + ["md-axis_lock"] = { + ["char"] = "󰵋", + ["code"] = "f0d4b", + }, + ["md-axis_x_arrow"] = { + ["char"] = "󰵌", + ["code"] = "f0d4c", + }, + ["md-axis_x_arrow_lock"] = { + ["char"] = "󰵍", + ["code"] = "f0d4d", + }, + ["md-axis_x_rotate_clockwise"] = { + ["char"] = "󰵎", + ["code"] = "f0d4e", + }, + ["md-axis_x_rotate_counterclockwise"] = { + ["char"] = "󰵏", + ["code"] = "f0d4f", + }, + ["md-axis_x_y_arrow_lock"] = { + ["char"] = "󰵐", + ["code"] = "f0d50", + }, + ["md-axis_y_arrow"] = { + ["char"] = "󰵑", + ["code"] = "f0d51", + }, + ["md-axis_y_arrow_lock"] = { + ["char"] = "󰵒", + ["code"] = "f0d52", + }, + ["md-axis_y_rotate_clockwise"] = { + ["char"] = "󰵓", + ["code"] = "f0d53", + }, + ["md-axis_y_rotate_counterclockwise"] = { + ["char"] = "󰵔", + ["code"] = "f0d54", + }, + ["md-axis_z_arrow"] = { + ["char"] = "󰵕", + ["code"] = "f0d55", + }, + ["md-axis_z_arrow_lock"] = { + ["char"] = "󰵖", + ["code"] = "f0d56", + }, + ["md-axis_z_rotate_clockwise"] = { + ["char"] = "󰵗", + ["code"] = "f0d57", + }, + ["md-axis_z_rotate_counterclockwise"] = { + ["char"] = "󰵘", + ["code"] = "f0d58", + }, + ["md-babel"] = { + ["char"] = "󰨥", + ["code"] = "f0a25", + }, + ["md-baby"] = { + ["char"] = "󰁬", + ["code"] = "f006c", + }, + ["md-baby_bottle"] = { + ["char"] = "󰼹", + ["code"] = "f0f39", + }, + ["md-baby_bottle_outline"] = { + ["char"] = "󰼺", + ["code"] = "f0f3a", + }, + ["md-baby_buggy"] = { + ["char"] = "󱏠", + ["code"] = "f13e0", + }, + ["md-baby_carriage"] = { + ["char"] = "󰚏", + ["code"] = "f068f", + }, + ["md-baby_carriage_off"] = { + ["char"] = "󰾠", + ["code"] = "f0fa0", + }, + ["md-baby_face"] = { + ["char"] = "󰹼", + ["code"] = "f0e7c", + }, + ["md-baby_face_outline"] = { + ["char"] = "󰹽", + ["code"] = "f0e7d", + }, + ["md-backburger"] = { + ["char"] = "󰁭", + ["code"] = "f006d", + }, + ["md-backspace"] = { + ["char"] = "󰁮", + ["code"] = "f006e", + }, + ["md-backspace_outline"] = { + ["char"] = "󰭜", + ["code"] = "f0b5c", + }, + ["md-backspace_reverse"] = { + ["char"] = "󰹾", + ["code"] = "f0e7e", + }, + ["md-backspace_reverse_outline"] = { + ["char"] = "󰹿", + ["code"] = "f0e7f", + }, + ["md-backup_restore"] = { + ["char"] = "󰁯", + ["code"] = "f006f", + }, + ["md-bacteria"] = { + ["char"] = "󰻕", + ["code"] = "f0ed5", + }, + ["md-bacteria_outline"] = { + ["char"] = "󰻖", + ["code"] = "f0ed6", + }, + ["md-badge_account"] = { + ["char"] = "󰶧", + ["code"] = "f0da7", + }, + ["md-badge_account_alert"] = { + ["char"] = "󰶨", + ["code"] = "f0da8", + }, + ["md-badge_account_alert_outline"] = { + ["char"] = "󰶩", + ["code"] = "f0da9", + }, + ["md-badge_account_horizontal"] = { + ["char"] = "󰸍", + ["code"] = "f0e0d", + }, + ["md-badge_account_horizontal_outline"] = { + ["char"] = "󰸎", + ["code"] = "f0e0e", + }, + ["md-badge_account_outline"] = { + ["char"] = "󰶪", + ["code"] = "f0daa", + }, + ["md-badminton"] = { + ["char"] = "󰡑", + ["code"] = "f0851", + }, + ["md-bag_carry_on"] = { + ["char"] = "󰼻", + ["code"] = "f0f3b", + }, + ["md-bag_carry_on_check"] = { + ["char"] = "󰵥", + ["code"] = "f0d65", + }, + ["md-bag_carry_on_off"] = { + ["char"] = "󰼼", + ["code"] = "f0f3c", + }, + ["md-bag_checked"] = { + ["char"] = "󰼽", + ["code"] = "f0f3d", + }, + ["md-bag_personal"] = { + ["char"] = "󰸐", + ["code"] = "f0e10", + }, + ["md-bag_personal_off"] = { + ["char"] = "󰸑", + ["code"] = "f0e11", + }, + ["md-bag_personal_off_outline"] = { + ["char"] = "󰸒", + ["code"] = "f0e12", + }, + ["md-bag_personal_outline"] = { + ["char"] = "󰸓", + ["code"] = "f0e13", + }, + ["md-bag_suitcase"] = { + ["char"] = "󱖋", + ["code"] = "f158b", + }, + ["md-bag_suitcase_off"] = { + ["char"] = "󱖍", + ["code"] = "f158d", + }, + ["md-bag_suitcase_off_outline"] = { + ["char"] = "󱖎", + ["code"] = "f158e", + }, + ["md-bag_suitcase_outline"] = { + ["char"] = "󱖌", + ["code"] = "f158c", + }, + ["md-baguette"] = { + ["char"] = "󰼾", + ["code"] = "f0f3e", + }, + ["md-balcony"] = { + ["char"] = "󱠗", + ["code"] = "f1817", + }, + ["md-balloon"] = { + ["char"] = "󰨦", + ["code"] = "f0a26", + }, + ["md-ballot"] = { + ["char"] = "󰧉", + ["code"] = "f09c9", + }, + ["md-ballot_outline"] = { + ["char"] = "󰧊", + ["code"] = "f09ca", + }, + ["md-ballot_recount"] = { + ["char"] = "󰰹", + ["code"] = "f0c39", + }, + ["md-ballot_recount_outline"] = { + ["char"] = "󰰺", + ["code"] = "f0c3a", + }, + ["md-bandage"] = { + ["char"] = "󰶯", + ["code"] = "f0daf", + }, + ["md-bank"] = { + ["char"] = "󰁰", + ["code"] = "f0070", + }, + ["md-bank_check"] = { + ["char"] = "󱙕", + ["code"] = "f1655", + }, + ["md-bank_minus"] = { + ["char"] = "󰶰", + ["code"] = "f0db0", + }, + ["md-bank_off"] = { + ["char"] = "󱙖", + ["code"] = "f1656", + }, + ["md-bank_off_outline"] = { + ["char"] = "󱙗", + ["code"] = "f1657", + }, + ["md-bank_outline"] = { + ["char"] = "󰺀", + ["code"] = "f0e80", + }, + ["md-bank_plus"] = { + ["char"] = "󰶱", + ["code"] = "f0db1", + }, + ["md-bank_remove"] = { + ["char"] = "󰶲", + ["code"] = "f0db2", + }, + ["md-bank_transfer"] = { + ["char"] = "󰨧", + ["code"] = "f0a27", + }, + ["md-bank_transfer_in"] = { + ["char"] = "󰨨", + ["code"] = "f0a28", + }, + ["md-bank_transfer_out"] = { + ["char"] = "󰨩", + ["code"] = "f0a29", + }, + ["md-barcode"] = { + ["char"] = "󰁱", + ["code"] = "f0071", + }, + ["md-barcode_off"] = { + ["char"] = "󱈶", + ["code"] = "f1236", + }, + ["md-barcode_scan"] = { + ["char"] = "󰁲", + ["code"] = "f0072", + }, + ["md-barley"] = { + ["char"] = "󰁳", + ["code"] = "f0073", + }, + ["md-barley_off"] = { + ["char"] = "󰭝", + ["code"] = "f0b5d", + }, + ["md-barn"] = { + ["char"] = "󰭞", + ["code"] = "f0b5e", + }, + ["md-barrel"] = { + ["char"] = "󰁴", + ["code"] = "f0074", + }, + ["md-barrel_outline"] = { + ["char"] = "󱨨", + ["code"] = "f1a28", + }, + ["md-baseball"] = { + ["char"] = "󰡒", + ["code"] = "f0852", + }, + ["md-baseball_bat"] = { + ["char"] = "󰡓", + ["code"] = "f0853", + }, + ["md-baseball_diamond"] = { + ["char"] = "󱗬", + ["code"] = "f15ec", + }, + ["md-baseball_diamond_outline"] = { + ["char"] = "󱗭", + ["code"] = "f15ed", + }, + ["md-bash"] = { + ["char"] = "󱆃", + ["code"] = "f1183", + }, + ["md-basket"] = { + ["char"] = "󰁶", + ["code"] = "f0076", + }, + ["md-basket_check"] = { + ["char"] = "󱣥", + ["code"] = "f18e5", + }, + ["md-basket_check_outline"] = { + ["char"] = "󱣦", + ["code"] = "f18e6", + }, + ["md-basket_fill"] = { + ["char"] = "󰁷", + ["code"] = "f0077", + }, + ["md-basket_minus"] = { + ["char"] = "󱔣", + ["code"] = "f1523", + }, + ["md-basket_minus_outline"] = { + ["char"] = "󱔤", + ["code"] = "f1524", + }, + ["md-basket_off"] = { + ["char"] = "󱔥", + ["code"] = "f1525", + }, + ["md-basket_off_outline"] = { + ["char"] = "󱔦", + ["code"] = "f1526", + }, + ["md-basket_outline"] = { + ["char"] = "󱆁", + ["code"] = "f1181", + }, + ["md-basket_plus"] = { + ["char"] = "󱔧", + ["code"] = "f1527", + }, + ["md-basket_plus_outline"] = { + ["char"] = "󱔨", + ["code"] = "f1528", + }, + ["md-basket_remove"] = { + ["char"] = "󱔩", + ["code"] = "f1529", + }, + ["md-basket_remove_outline"] = { + ["char"] = "󱔪", + ["code"] = "f152a", + }, + ["md-basket_unfill"] = { + ["char"] = "󰁸", + ["code"] = "f0078", + }, + ["md-basketball"] = { + ["char"] = "󰠆", + ["code"] = "f0806", + }, + ["md-basketball_hoop"] = { + ["char"] = "󰰻", + ["code"] = "f0c3b", + }, + ["md-basketball_hoop_outline"] = { + ["char"] = "󰰼", + ["code"] = "f0c3c", + }, + ["md-bat"] = { + ["char"] = "󰭟", + ["code"] = "f0b5f", + }, + ["md-bathtub"] = { + ["char"] = "󱠘", + ["code"] = "f1818", + }, + ["md-bathtub_outline"] = { + ["char"] = "󱠙", + ["code"] = "f1819", + }, + ["md-battery"] = { + ["char"] = "󰁹", + ["code"] = "f0079", + }, + ["md-battery_10"] = { + ["char"] = "󰁺", + ["code"] = "f007a", + }, + ["md-battery_10_bluetooth"] = { + ["char"] = "󰤾", + ["code"] = "f093e", + }, + ["md-battery_20"] = { + ["char"] = "󰁻", + ["code"] = "f007b", + }, + ["md-battery_20_bluetooth"] = { + ["char"] = "󰤿", + ["code"] = "f093f", + }, + ["md-battery_30"] = { + ["char"] = "󰁼", + ["code"] = "f007c", + }, + ["md-battery_30_bluetooth"] = { + ["char"] = "󰥀", + ["code"] = "f0940", + }, + ["md-battery_40"] = { + ["char"] = "󰁽", + ["code"] = "f007d", + }, + ["md-battery_40_bluetooth"] = { + ["char"] = "󰥁", + ["code"] = "f0941", + }, + ["md-battery_50"] = { + ["char"] = "󰁾", + ["code"] = "f007e", + }, + ["md-battery_50_bluetooth"] = { + ["char"] = "󰥂", + ["code"] = "f0942", + }, + ["md-battery_60"] = { + ["char"] = "󰁿", + ["code"] = "f007f", + }, + ["md-battery_60_bluetooth"] = { + ["char"] = "󰥃", + ["code"] = "f0943", + }, + ["md-battery_70"] = { + ["char"] = "󰂀", + ["code"] = "f0080", + }, + ["md-battery_70_bluetooth"] = { + ["char"] = "󰥄", + ["code"] = "f0944", + }, + ["md-battery_80"] = { + ["char"] = "󰂁", + ["code"] = "f0081", + }, + ["md-battery_80_bluetooth"] = { + ["char"] = "󰥅", + ["code"] = "f0945", + }, + ["md-battery_90"] = { + ["char"] = "󰂂", + ["code"] = "f0082", + }, + ["md-battery_90_bluetooth"] = { + ["char"] = "󰥆", + ["code"] = "f0946", + }, + ["md-battery_alert"] = { + ["char"] = "󰂃", + ["code"] = "f0083", + }, + ["md-battery_alert_bluetooth"] = { + ["char"] = "󰥇", + ["code"] = "f0947", + }, + ["md-battery_alert_variant"] = { + ["char"] = "󱃌", + ["code"] = "f10cc", + }, + ["md-battery_alert_variant_outline"] = { + ["char"] = "󱃍", + ["code"] = "f10cd", + }, + ["md-battery_arrow_down"] = { + ["char"] = "󱟞", + ["code"] = "f17de", + }, + ["md-battery_arrow_down_outline"] = { + ["char"] = "󱟟", + ["code"] = "f17df", + }, + ["md-battery_arrow_up"] = { + ["char"] = "󱟠", + ["code"] = "f17e0", + }, + ["md-battery_arrow_up_outline"] = { + ["char"] = "󱟡", + ["code"] = "f17e1", + }, + ["md-battery_bluetooth"] = { + ["char"] = "󰥈", + ["code"] = "f0948", + }, + ["md-battery_bluetooth_variant"] = { + ["char"] = "󰥉", + ["code"] = "f0949", + }, + ["md-battery_charging"] = { + ["char"] = "󰂄", + ["code"] = "f0084", + }, + ["md-battery_charging_10"] = { + ["char"] = "󰢜", + ["code"] = "f089c", + }, + ["md-battery_charging_100"] = { + ["char"] = "󰂅", + ["code"] = "f0085", + }, + ["md-battery_charging_20"] = { + ["char"] = "󰂆", + ["code"] = "f0086", + }, + ["md-battery_charging_30"] = { + ["char"] = "󰂇", + ["code"] = "f0087", + }, + ["md-battery_charging_40"] = { + ["char"] = "󰂈", + ["code"] = "f0088", + }, + ["md-battery_charging_50"] = { + ["char"] = "󰢝", + ["code"] = "f089d", + }, + ["md-battery_charging_60"] = { + ["char"] = "󰂉", + ["code"] = "f0089", + }, + ["md-battery_charging_70"] = { + ["char"] = "󰢞", + ["code"] = "f089e", + }, + ["md-battery_charging_80"] = { + ["char"] = "󰂊", + ["code"] = "f008a", + }, + ["md-battery_charging_90"] = { + ["char"] = "󰂋", + ["code"] = "f008b", + }, + ["md-battery_charging_high"] = { + ["char"] = "󱊦", + ["code"] = "f12a6", + }, + ["md-battery_charging_low"] = { + ["char"] = "󱊤", + ["code"] = "f12a4", + }, + ["md-battery_charging_medium"] = { + ["char"] = "󱊥", + ["code"] = "f12a5", + }, + ["md-battery_charging_outline"] = { + ["char"] = "󰢟", + ["code"] = "f089f", + }, + ["md-battery_charging_wireless"] = { + ["char"] = "󰠇", + ["code"] = "f0807", + }, + ["md-battery_charging_wireless_10"] = { + ["char"] = "󰠈", + ["code"] = "f0808", + }, + ["md-battery_charging_wireless_20"] = { + ["char"] = "󰠉", + ["code"] = "f0809", + }, + ["md-battery_charging_wireless_30"] = { + ["char"] = "󰠊", + ["code"] = "f080a", + }, + ["md-battery_charging_wireless_40"] = { + ["char"] = "󰠋", + ["code"] = "f080b", + }, + ["md-battery_charging_wireless_50"] = { + ["char"] = "󰠌", + ["code"] = "f080c", + }, + ["md-battery_charging_wireless_60"] = { + ["char"] = "󰠍", + ["code"] = "f080d", + }, + ["md-battery_charging_wireless_70"] = { + ["char"] = "󰠎", + ["code"] = "f080e", + }, + ["md-battery_charging_wireless_80"] = { + ["char"] = "󰠏", + ["code"] = "f080f", + }, + ["md-battery_charging_wireless_90"] = { + ["char"] = "󰠐", + ["code"] = "f0810", + }, + ["md-battery_charging_wireless_alert"] = { + ["char"] = "󰠑", + ["code"] = "f0811", + }, + ["md-battery_charging_wireless_outline"] = { + ["char"] = "󰠒", + ["code"] = "f0812", + }, + ["md-battery_check"] = { + ["char"] = "󱟢", + ["code"] = "f17e2", + }, + ["md-battery_check_outline"] = { + ["char"] = "󱟣", + ["code"] = "f17e3", + }, + ["md-battery_clock"] = { + ["char"] = "󱧥", + ["code"] = "f19e5", + }, + ["md-battery_clock_outline"] = { + ["char"] = "󱧦", + ["code"] = "f19e6", + }, + ["md-battery_heart"] = { + ["char"] = "󱈏", + ["code"] = "f120f", + }, + ["md-battery_heart_outline"] = { + ["char"] = "󱈐", + ["code"] = "f1210", + }, + ["md-battery_heart_variant"] = { + ["char"] = "󱈑", + ["code"] = "f1211", + }, + ["md-battery_high"] = { + ["char"] = "󱊣", + ["code"] = "f12a3", + }, + ["md-battery_lock"] = { + ["char"] = "󱞜", + ["code"] = "f179c", + }, + ["md-battery_lock_open"] = { + ["char"] = "󱞝", + ["code"] = "f179d", + }, + ["md-battery_low"] = { + ["char"] = "󱊡", + ["code"] = "f12a1", + }, + ["md-battery_medium"] = { + ["char"] = "󱊢", + ["code"] = "f12a2", + }, + ["md-battery_minus"] = { + ["char"] = "󱟤", + ["code"] = "f17e4", + }, + ["md-battery_minus_outline"] = { + ["char"] = "󱟥", + ["code"] = "f17e5", + }, + ["md-battery_minus_variant"] = { + ["char"] = "󰂌", + ["code"] = "f008c", + }, + ["md-battery_negative"] = { + ["char"] = "󰂍", + ["code"] = "f008d", + }, + ["md-battery_off"] = { + ["char"] = "󱉝", + ["code"] = "f125d", + }, + ["md-battery_off_outline"] = { + ["char"] = "󱉞", + ["code"] = "f125e", + }, + ["md-battery_outline"] = { + ["char"] = "󰂎", + ["code"] = "f008e", + }, + ["md-battery_plus"] = { + ["char"] = "󱟦", + ["code"] = "f17e6", + }, + ["md-battery_plus_outline"] = { + ["char"] = "󱟧", + ["code"] = "f17e7", + }, + ["md-battery_plus_variant"] = { + ["char"] = "󰂏", + ["code"] = "f008f", + }, + ["md-battery_positive"] = { + ["char"] = "󰂐", + ["code"] = "f0090", + }, + ["md-battery_remove"] = { + ["char"] = "󱟨", + ["code"] = "f17e8", + }, + ["md-battery_remove_outline"] = { + ["char"] = "󱟩", + ["code"] = "f17e9", + }, + ["md-battery_sync"] = { + ["char"] = "󱠴", + ["code"] = "f1834", + }, + ["md-battery_sync_outline"] = { + ["char"] = "󱠵", + ["code"] = "f1835", + }, + ["md-battery_unknown"] = { + ["char"] = "󰂑", + ["code"] = "f0091", + }, + ["md-battery_unknown_bluetooth"] = { + ["char"] = "󰥊", + ["code"] = "f094a", + }, + ["md-beach"] = { + ["char"] = "󰂒", + ["code"] = "f0092", + }, + ["md-beaker"] = { + ["char"] = "󰳪", + ["code"] = "f0cea", + }, + ["md-beaker_alert"] = { + ["char"] = "󱈩", + ["code"] = "f1229", + }, + ["md-beaker_alert_outline"] = { + ["char"] = "󱈪", + ["code"] = "f122a", + }, + ["md-beaker_check"] = { + ["char"] = "󱈫", + ["code"] = "f122b", + }, + ["md-beaker_check_outline"] = { + ["char"] = "󱈬", + ["code"] = "f122c", + }, + ["md-beaker_minus"] = { + ["char"] = "󱈭", + ["code"] = "f122d", + }, + ["md-beaker_minus_outline"] = { + ["char"] = "󱈮", + ["code"] = "f122e", + }, + ["md-beaker_outline"] = { + ["char"] = "󰚐", + ["code"] = "f0690", + }, + ["md-beaker_plus"] = { + ["char"] = "󱈯", + ["code"] = "f122f", + }, + ["md-beaker_plus_outline"] = { + ["char"] = "󱈰", + ["code"] = "f1230", + }, + ["md-beaker_question"] = { + ["char"] = "󱈱", + ["code"] = "f1231", + }, + ["md-beaker_question_outline"] = { + ["char"] = "󱈲", + ["code"] = "f1232", + }, + ["md-beaker_remove"] = { + ["char"] = "󱈳", + ["code"] = "f1233", + }, + ["md-beaker_remove_outline"] = { + ["char"] = "󱈴", + ["code"] = "f1234", + }, + ["md-bed"] = { + ["char"] = "󰋣", + ["code"] = "f02e3", + }, + ["md-bed_double"] = { + ["char"] = "󰿔", + ["code"] = "f0fd4", + }, + ["md-bed_double_outline"] = { + ["char"] = "󰿓", + ["code"] = "f0fd3", + }, + ["md-bed_empty"] = { + ["char"] = "󰢠", + ["code"] = "f08a0", + }, + ["md-bed_king"] = { + ["char"] = "󰿒", + ["code"] = "f0fd2", + }, + ["md-bed_king_outline"] = { + ["char"] = "󰿑", + ["code"] = "f0fd1", + }, + ["md-bed_outline"] = { + ["char"] = "󰂙", + ["code"] = "f0099", + }, + ["md-bed_queen"] = { + ["char"] = "󰿐", + ["code"] = "f0fd0", + }, + ["md-bed_queen_outline"] = { + ["char"] = "󰿛", + ["code"] = "f0fdb", + }, + ["md-bed_single"] = { + ["char"] = "󱁭", + ["code"] = "f106d", + }, + ["md-bed_single_outline"] = { + ["char"] = "󱁮", + ["code"] = "f106e", + }, + ["md-bee"] = { + ["char"] = "󰾡", + ["code"] = "f0fa1", + }, + ["md-bee_flower"] = { + ["char"] = "󰾢", + ["code"] = "f0fa2", + }, + ["md-beehive_off_outline"] = { + ["char"] = "󱏭", + ["code"] = "f13ed", + }, + ["md-beehive_outline"] = { + ["char"] = "󱃎", + ["code"] = "f10ce", + }, + ["md-beekeeper"] = { + ["char"] = "󱓢", + ["code"] = "f14e2", + }, + ["md-beer"] = { + ["char"] = "󰂘", + ["code"] = "f0098", + }, + ["md-beer_outline"] = { + ["char"] = "󱌌", + ["code"] = "f130c", + }, + ["md-bell"] = { + ["char"] = "󰂚", + ["code"] = "f009a", + }, + ["md-bell_alert"] = { + ["char"] = "󰵙", + ["code"] = "f0d59", + }, + ["md-bell_alert_outline"] = { + ["char"] = "󰺁", + ["code"] = "f0e81", + }, + ["md-bell_badge"] = { + ["char"] = "󱅫", + ["code"] = "f116b", + }, + ["md-bell_badge_outline"] = { + ["char"] = "󰅸", + ["code"] = "f0178", + }, + ["md-bell_cancel"] = { + ["char"] = "󱏧", + ["code"] = "f13e7", + }, + ["md-bell_cancel_outline"] = { + ["char"] = "󱏨", + ["code"] = "f13e8", + }, + ["md-bell_check"] = { + ["char"] = "󱇥", + ["code"] = "f11e5", + }, + ["md-bell_check_outline"] = { + ["char"] = "󱇦", + ["code"] = "f11e6", + }, + ["md-bell_circle"] = { + ["char"] = "󰵚", + ["code"] = "f0d5a", + }, + ["md-bell_circle_outline"] = { + ["char"] = "󰵛", + ["code"] = "f0d5b", + }, + ["md-bell_cog"] = { + ["char"] = "󱨩", + ["code"] = "f1a29", + }, + ["md-bell_cog_outline"] = { + ["char"] = "󱨪", + ["code"] = "f1a2a", + }, + ["md-bell_minus"] = { + ["char"] = "󱏩", + ["code"] = "f13e9", + }, + ["md-bell_minus_outline"] = { + ["char"] = "󱏪", + ["code"] = "f13ea", + }, + ["md-bell_off"] = { + ["char"] = "󰂛", + ["code"] = "f009b", + }, + ["md-bell_off_outline"] = { + ["char"] = "󰪑", + ["code"] = "f0a91", + }, + ["md-bell_outline"] = { + ["char"] = "󰂜", + ["code"] = "f009c", + }, + ["md-bell_plus"] = { + ["char"] = "󰂝", + ["code"] = "f009d", + }, + ["md-bell_plus_outline"] = { + ["char"] = "󰪒", + ["code"] = "f0a92", + }, + ["md-bell_remove"] = { + ["char"] = "󱏫", + ["code"] = "f13eb", + }, + ["md-bell_remove_outline"] = { + ["char"] = "󱏬", + ["code"] = "f13ec", + }, + ["md-bell_ring"] = { + ["char"] = "󰂞", + ["code"] = "f009e", + }, + ["md-bell_ring_outline"] = { + ["char"] = "󰂟", + ["code"] = "f009f", + }, + ["md-bell_sleep"] = { + ["char"] = "󰂠", + ["code"] = "f00a0", + }, + ["md-bell_sleep_outline"] = { + ["char"] = "󰪓", + ["code"] = "f0a93", + }, + ["md-beta"] = { + ["char"] = "󰂡", + ["code"] = "f00a1", + }, + ["md-betamax"] = { + ["char"] = "󰧋", + ["code"] = "f09cb", + }, + ["md-biathlon"] = { + ["char"] = "󰸔", + ["code"] = "f0e14", + }, + ["md-bicycle"] = { + ["char"] = "󱂜", + ["code"] = "f109c", + }, + ["md-bicycle_basket"] = { + ["char"] = "󱈵", + ["code"] = "f1235", + }, + ["md-bicycle_cargo"] = { + ["char"] = "󱢜", + ["code"] = "f189c", + }, + ["md-bicycle_electric"] = { + ["char"] = "󱖴", + ["code"] = "f15b4", + }, + ["md-bicycle_penny_farthing"] = { + ["char"] = "󱗩", + ["code"] = "f15e9", + }, + ["md-bike"] = { + ["char"] = "󰂣", + ["code"] = "f00a3", + }, + ["md-bike_fast"] = { + ["char"] = "󱄟", + ["code"] = "f111f", + }, + ["md-billboard"] = { + ["char"] = "󱀐", + ["code"] = "f1010", + }, + ["md-billiards"] = { + ["char"] = "󰭡", + ["code"] = "f0b61", + }, + ["md-billiards_rack"] = { + ["char"] = "󰭢", + ["code"] = "f0b62", + }, + ["md-binoculars"] = { + ["char"] = "󰂥", + ["code"] = "f00a5", + }, + ["md-bio"] = { + ["char"] = "󰂦", + ["code"] = "f00a6", + }, + ["md-biohazard"] = { + ["char"] = "󰂧", + ["code"] = "f00a7", + }, + ["md-bird"] = { + ["char"] = "󱗆", + ["code"] = "f15c6", + }, + ["md-bitbucket"] = { + ["char"] = "󰂨", + ["code"] = "f00a8", + }, + ["md-bitcoin"] = { + ["char"] = "󰠓", + ["code"] = "f0813", + }, + ["md-black_mesa"] = { + ["char"] = "󰂩", + ["code"] = "f00a9", + }, + ["md-blender"] = { + ["char"] = "󰳫", + ["code"] = "f0ceb", + }, + ["md-blender_outline"] = { + ["char"] = "󱠚", + ["code"] = "f181a", + }, + ["md-blender_software"] = { + ["char"] = "󰂫", + ["code"] = "f00ab", + }, + ["md-blinds"] = { + ["char"] = "󰂬", + ["code"] = "f00ac", + }, + ["md-blinds_horizontal"] = { + ["char"] = "󱨫", + ["code"] = "f1a2b", + }, + ["md-blinds_horizontal_closed"] = { + ["char"] = "󱨬", + ["code"] = "f1a2c", + }, + ["md-blinds_open"] = { + ["char"] = "󱀑", + ["code"] = "f1011", + }, + ["md-blinds_vertical"] = { + ["char"] = "󱨭", + ["code"] = "f1a2d", + }, + ["md-blinds_vertical_closed"] = { + ["char"] = "󱨮", + ["code"] = "f1a2e", + }, + ["md-block_helper"] = { + ["char"] = "󰂭", + ["code"] = "f00ad", + }, + ["md-blood_bag"] = { + ["char"] = "󰳬", + ["code"] = "f0cec", + }, + ["md-bluetooth"] = { + ["char"] = "󰂯", + ["code"] = "f00af", + }, + ["md-bluetooth_audio"] = { + ["char"] = "󰂰", + ["code"] = "f00b0", + }, + ["md-bluetooth_connect"] = { + ["char"] = "󰂱", + ["code"] = "f00b1", + }, + ["md-bluetooth_off"] = { + ["char"] = "󰂲", + ["code"] = "f00b2", + }, + ["md-bluetooth_settings"] = { + ["char"] = "󰂳", + ["code"] = "f00b3", + }, + ["md-bluetooth_transfer"] = { + ["char"] = "󰂴", + ["code"] = "f00b4", + }, + ["md-blur"] = { + ["char"] = "󰂵", + ["code"] = "f00b5", + }, + ["md-blur_linear"] = { + ["char"] = "󰂶", + ["code"] = "f00b6", + }, + ["md-blur_off"] = { + ["char"] = "󰂷", + ["code"] = "f00b7", + }, + ["md-blur_radial"] = { + ["char"] = "󰂸", + ["code"] = "f00b8", + }, + ["md-bolt"] = { + ["char"] = "󰶳", + ["code"] = "f0db3", + }, + ["md-bomb"] = { + ["char"] = "󰚑", + ["code"] = "f0691", + }, + ["md-bomb_off"] = { + ["char"] = "󰛅", + ["code"] = "f06c5", + }, + ["md-bone"] = { + ["char"] = "󰂹", + ["code"] = "f00b9", + }, + ["md-bone_off"] = { + ["char"] = "󱧠", + ["code"] = "f19e0", + }, + ["md-book"] = { + ["char"] = "󰂺", + ["code"] = "f00ba", + }, + ["md-book_account"] = { + ["char"] = "󱎭", + ["code"] = "f13ad", + }, + ["md-book_account_outline"] = { + ["char"] = "󱎮", + ["code"] = "f13ae", + }, + ["md-book_alert"] = { + ["char"] = "󱙼", + ["code"] = "f167c", + }, + ["md-book_alert_outline"] = { + ["char"] = "󱙽", + ["code"] = "f167d", + }, + ["md-book_alphabet"] = { + ["char"] = "󰘝", + ["code"] = "f061d", + }, + ["md-book_arrow_down"] = { + ["char"] = "󱙾", + ["code"] = "f167e", + }, + ["md-book_arrow_down_outline"] = { + ["char"] = "󱙿", + ["code"] = "f167f", + }, + ["md-book_arrow_left"] = { + ["char"] = "󱚀", + ["code"] = "f1680", + }, + ["md-book_arrow_left_outline"] = { + ["char"] = "󱚁", + ["code"] = "f1681", + }, + ["md-book_arrow_right"] = { + ["char"] = "󱚂", + ["code"] = "f1682", + }, + ["md-book_arrow_right_outline"] = { + ["char"] = "󱚃", + ["code"] = "f1683", + }, + ["md-book_arrow_up"] = { + ["char"] = "󱚄", + ["code"] = "f1684", + }, + ["md-book_arrow_up_outline"] = { + ["char"] = "󱚅", + ["code"] = "f1685", + }, + ["md-book_cancel"] = { + ["char"] = "󱚆", + ["code"] = "f1686", + }, + ["md-book_cancel_outline"] = { + ["char"] = "󱚇", + ["code"] = "f1687", + }, + ["md-book_check"] = { + ["char"] = "󱓳", + ["code"] = "f14f3", + }, + ["md-book_check_outline"] = { + ["char"] = "󱓴", + ["code"] = "f14f4", + }, + ["md-book_clock"] = { + ["char"] = "󱚈", + ["code"] = "f1688", + }, + ["md-book_clock_outline"] = { + ["char"] = "󱚉", + ["code"] = "f1689", + }, + ["md-book_cog"] = { + ["char"] = "󱚊", + ["code"] = "f168a", + }, + ["md-book_cog_outline"] = { + ["char"] = "󱚋", + ["code"] = "f168b", + }, + ["md-book_cross"] = { + ["char"] = "󰂢", + ["code"] = "f00a2", + }, + ["md-book_edit"] = { + ["char"] = "󱚌", + ["code"] = "f168c", + }, + ["md-book_edit_outline"] = { + ["char"] = "󱚍", + ["code"] = "f168d", + }, + ["md-book_education"] = { + ["char"] = "󱛉", + ["code"] = "f16c9", + }, + ["md-book_education_outline"] = { + ["char"] = "󱛊", + ["code"] = "f16ca", + }, + ["md-book_heart"] = { + ["char"] = "󱨝", + ["code"] = "f1a1d", + }, + ["md-book_heart_outline"] = { + ["char"] = "󱨞", + ["code"] = "f1a1e", + }, + ["md-book_information_variant"] = { + ["char"] = "󱁯", + ["code"] = "f106f", + }, + ["md-book_lock"] = { + ["char"] = "󰞚", + ["code"] = "f079a", + }, + ["md-book_lock_open"] = { + ["char"] = "󰞛", + ["code"] = "f079b", + }, + ["md-book_lock_open_outline"] = { + ["char"] = "󱚎", + ["code"] = "f168e", + }, + ["md-book_lock_outline"] = { + ["char"] = "󱚏", + ["code"] = "f168f", + }, + ["md-book_marker"] = { + ["char"] = "󱚐", + ["code"] = "f1690", + }, + ["md-book_marker_outline"] = { + ["char"] = "󱚑", + ["code"] = "f1691", + }, + ["md-book_minus"] = { + ["char"] = "󰗙", + ["code"] = "f05d9", + }, + ["md-book_minus_multiple"] = { + ["char"] = "󰪔", + ["code"] = "f0a94", + }, + ["md-book_minus_multiple_outline"] = { + ["char"] = "󰤋", + ["code"] = "f090b", + }, + ["md-book_minus_outline"] = { + ["char"] = "󱚒", + ["code"] = "f1692", + }, + ["md-book_multiple"] = { + ["char"] = "󰂻", + ["code"] = "f00bb", + }, + ["md-book_multiple_outline"] = { + ["char"] = "󰐶", + ["code"] = "f0436", + }, + ["md-book_music"] = { + ["char"] = "󰁧", + ["code"] = "f0067", + }, + ["md-book_music_outline"] = { + ["char"] = "󱚓", + ["code"] = "f1693", + }, + ["md-book_off"] = { + ["char"] = "󱚔", + ["code"] = "f1694", + }, + ["md-book_off_outline"] = { + ["char"] = "󱚕", + ["code"] = "f1695", + }, + ["md-book_open"] = { + ["char"] = "󰂽", + ["code"] = "f00bd", + }, + ["md-book_open_blank_variant"] = { + ["char"] = "󰂾", + ["code"] = "f00be", + }, + ["md-book_open_outline"] = { + ["char"] = "󰭣", + ["code"] = "f0b63", + }, + ["md-book_open_page_variant"] = { + ["char"] = "󰗚", + ["code"] = "f05da", + }, + ["md-book_open_page_variant_outline"] = { + ["char"] = "󱗖", + ["code"] = "f15d6", + }, + ["md-book_open_variant"] = { + ["char"] = "󱓷", + ["code"] = "f14f7", + }, + ["md-book_outline"] = { + ["char"] = "󰭤", + ["code"] = "f0b64", + }, + ["md-book_play"] = { + ["char"] = "󰺂", + ["code"] = "f0e82", + }, + ["md-book_play_outline"] = { + ["char"] = "󰺃", + ["code"] = "f0e83", + }, + ["md-book_plus"] = { + ["char"] = "󰗛", + ["code"] = "f05db", + }, + ["md-book_plus_multiple"] = { + ["char"] = "󰪕", + ["code"] = "f0a95", + }, + ["md-book_plus_multiple_outline"] = { + ["char"] = "󰫞", + ["code"] = "f0ade", + }, + ["md-book_plus_outline"] = { + ["char"] = "󱚖", + ["code"] = "f1696", + }, + ["md-book_refresh"] = { + ["char"] = "󱚗", + ["code"] = "f1697", + }, + ["md-book_refresh_outline"] = { + ["char"] = "󱚘", + ["code"] = "f1698", + }, + ["md-book_remove"] = { + ["char"] = "󰪗", + ["code"] = "f0a97", + }, + ["md-book_remove_multiple"] = { + ["char"] = "󰪖", + ["code"] = "f0a96", + }, + ["md-book_remove_multiple_outline"] = { + ["char"] = "󰓊", + ["code"] = "f04ca", + }, + ["md-book_remove_outline"] = { + ["char"] = "󱚙", + ["code"] = "f1699", + }, + ["md-book_search"] = { + ["char"] = "󰺄", + ["code"] = "f0e84", + }, + ["md-book_search_outline"] = { + ["char"] = "󰺅", + ["code"] = "f0e85", + }, + ["md-book_settings"] = { + ["char"] = "󱚚", + ["code"] = "f169a", + }, + ["md-book_settings_outline"] = { + ["char"] = "󱚛", + ["code"] = "f169b", + }, + ["md-book_sync"] = { + ["char"] = "󱚜", + ["code"] = "f169c", + }, + ["md-book_sync_outline"] = { + ["char"] = "󱛈", + ["code"] = "f16c8", + }, + ["md-book_variant"] = { + ["char"] = "󰂿", + ["code"] = "f00bf", + }, + ["md-book_variant_multiple"] = { + ["char"] = "󰂼", + ["code"] = "f00bc", + }, + ["md-bookmark"] = { + ["char"] = "󰃀", + ["code"] = "f00c0", + }, + ["md-bookmark_box_multiple"] = { + ["char"] = "󱥬", + ["code"] = "f196c", + }, + ["md-bookmark_box_multiple_outline"] = { + ["char"] = "󱥭", + ["code"] = "f196d", + }, + ["md-bookmark_check"] = { + ["char"] = "󰃁", + ["code"] = "f00c1", + }, + ["md-bookmark_check_outline"] = { + ["char"] = "󱍻", + ["code"] = "f137b", + }, + ["md-bookmark_minus"] = { + ["char"] = "󰧌", + ["code"] = "f09cc", + }, + ["md-bookmark_minus_outline"] = { + ["char"] = "󰧍", + ["code"] = "f09cd", + }, + ["md-bookmark_multiple"] = { + ["char"] = "󰸕", + ["code"] = "f0e15", + }, + ["md-bookmark_multiple_outline"] = { + ["char"] = "󰸖", + ["code"] = "f0e16", + }, + ["md-bookmark_music"] = { + ["char"] = "󰃂", + ["code"] = "f00c2", + }, + ["md-bookmark_music_outline"] = { + ["char"] = "󱍹", + ["code"] = "f1379", + }, + ["md-bookmark_off"] = { + ["char"] = "󰧎", + ["code"] = "f09ce", + }, + ["md-bookmark_off_outline"] = { + ["char"] = "󰧏", + ["code"] = "f09cf", + }, + ["md-bookmark_outline"] = { + ["char"] = "󰃃", + ["code"] = "f00c3", + }, + ["md-bookmark_plus"] = { + ["char"] = "󰃅", + ["code"] = "f00c5", + }, + ["md-bookmark_plus_outline"] = { + ["char"] = "󰃄", + ["code"] = "f00c4", + }, + ["md-bookmark_remove"] = { + ["char"] = "󰃆", + ["code"] = "f00c6", + }, + ["md-bookmark_remove_outline"] = { + ["char"] = "󱍺", + ["code"] = "f137a", + }, + ["md-bookshelf"] = { + ["char"] = "󱉟", + ["code"] = "f125f", + }, + ["md-boom_gate"] = { + ["char"] = "󰺆", + ["code"] = "f0e86", + }, + ["md-boom_gate_alert"] = { + ["char"] = "󰺇", + ["code"] = "f0e87", + }, + ["md-boom_gate_alert_outline"] = { + ["char"] = "󰺈", + ["code"] = "f0e88", + }, + ["md-boom_gate_arrow_down"] = { + ["char"] = "󰺉", + ["code"] = "f0e89", + }, + ["md-boom_gate_arrow_down_outline"] = { + ["char"] = "󰺊", + ["code"] = "f0e8a", + }, + ["md-boom_gate_arrow_up"] = { + ["char"] = "󰺌", + ["code"] = "f0e8c", + }, + ["md-boom_gate_arrow_up_outline"] = { + ["char"] = "󰺍", + ["code"] = "f0e8d", + }, + ["md-boom_gate_outline"] = { + ["char"] = "󰺋", + ["code"] = "f0e8b", + }, + ["md-boom_gate_up"] = { + ["char"] = "󱟹", + ["code"] = "f17f9", + }, + ["md-boom_gate_up_outline"] = { + ["char"] = "󱟺", + ["code"] = "f17fa", + }, + ["md-boombox"] = { + ["char"] = "󰗜", + ["code"] = "f05dc", + }, + ["md-boomerang"] = { + ["char"] = "󱃏", + ["code"] = "f10cf", + }, + ["md-bootstrap"] = { + ["char"] = "󰛆", + ["code"] = "f06c6", + }, + ["md-border_all"] = { + ["char"] = "󰃇", + ["code"] = "f00c7", + }, + ["md-border_all_variant"] = { + ["char"] = "󰢡", + ["code"] = "f08a1", + }, + ["md-border_bottom"] = { + ["char"] = "󰃈", + ["code"] = "f00c8", + }, + ["md-border_bottom_variant"] = { + ["char"] = "󰢢", + ["code"] = "f08a2", + }, + ["md-border_color"] = { + ["char"] = "󰃉", + ["code"] = "f00c9", + }, + ["md-border_horizontal"] = { + ["char"] = "󰃊", + ["code"] = "f00ca", + }, + ["md-border_inside"] = { + ["char"] = "󰃋", + ["code"] = "f00cb", + }, + ["md-border_left"] = { + ["char"] = "󰃌", + ["code"] = "f00cc", + }, + ["md-border_left_variant"] = { + ["char"] = "󰢣", + ["code"] = "f08a3", + }, + ["md-border_none"] = { + ["char"] = "󰃍", + ["code"] = "f00cd", + }, + ["md-border_none_variant"] = { + ["char"] = "󰢤", + ["code"] = "f08a4", + }, + ["md-border_outside"] = { + ["char"] = "󰃎", + ["code"] = "f00ce", + }, + ["md-border_right"] = { + ["char"] = "󰃏", + ["code"] = "f00cf", + }, + ["md-border_right_variant"] = { + ["char"] = "󰢥", + ["code"] = "f08a5", + }, + ["md-border_style"] = { + ["char"] = "󰃐", + ["code"] = "f00d0", + }, + ["md-border_top"] = { + ["char"] = "󰃑", + ["code"] = "f00d1", + }, + ["md-border_top_variant"] = { + ["char"] = "󰢦", + ["code"] = "f08a6", + }, + ["md-border_vertical"] = { + ["char"] = "󰃒", + ["code"] = "f00d2", + }, + ["md-bottle_soda"] = { + ["char"] = "󱁰", + ["code"] = "f1070", + }, + ["md-bottle_soda_classic"] = { + ["char"] = "󱁱", + ["code"] = "f1071", + }, + ["md-bottle_soda_classic_outline"] = { + ["char"] = "󱍣", + ["code"] = "f1363", + }, + ["md-bottle_soda_outline"] = { + ["char"] = "󱁲", + ["code"] = "f1072", + }, + ["md-bottle_tonic"] = { + ["char"] = "󱄮", + ["code"] = "f112e", + }, + ["md-bottle_tonic_outline"] = { + ["char"] = "󱄯", + ["code"] = "f112f", + }, + ["md-bottle_tonic_plus"] = { + ["char"] = "󱄰", + ["code"] = "f1130", + }, + ["md-bottle_tonic_plus_outline"] = { + ["char"] = "󱄱", + ["code"] = "f1131", + }, + ["md-bottle_tonic_skull"] = { + ["char"] = "󱄲", + ["code"] = "f1132", + }, + ["md-bottle_tonic_skull_outline"] = { + ["char"] = "󱄳", + ["code"] = "f1133", + }, + ["md-bottle_wine"] = { + ["char"] = "󰡔", + ["code"] = "f0854", + }, + ["md-bottle_wine_outline"] = { + ["char"] = "󱌐", + ["code"] = "f1310", + }, + ["md-bow_arrow"] = { + ["char"] = "󱡁", + ["code"] = "f1841", + }, + ["md-bow_tie"] = { + ["char"] = "󰙸", + ["code"] = "f0678", + }, + ["md-bowl"] = { + ["char"] = "󰊎", + ["code"] = "f028e", + }, + ["md-bowl_mix"] = { + ["char"] = "󰘗", + ["code"] = "f0617", + }, + ["md-bowl_mix_outline"] = { + ["char"] = "󰋤", + ["code"] = "f02e4", + }, + ["md-bowl_outline"] = { + ["char"] = "󰊩", + ["code"] = "f02a9", + }, + ["md-bowling"] = { + ["char"] = "󰃓", + ["code"] = "f00d3", + }, + ["md-box"] = { + ["char"] = "󰃔", + ["code"] = "f00d4", + }, + ["md-box_cutter"] = { + ["char"] = "󰃕", + ["code"] = "f00d5", + }, + ["md-box_cutter_off"] = { + ["char"] = "󰭊", + ["code"] = "f0b4a", + }, + ["md-box_shadow"] = { + ["char"] = "󰘷", + ["code"] = "f0637", + }, + ["md-boxing_glove"] = { + ["char"] = "󰭥", + ["code"] = "f0b65", + }, + ["md-braille"] = { + ["char"] = "󰧐", + ["code"] = "f09d0", + }, + ["md-brain"] = { + ["char"] = "󰧑", + ["code"] = "f09d1", + }, + ["md-bread_slice"] = { + ["char"] = "󰳮", + ["code"] = "f0cee", + }, + ["md-bread_slice_outline"] = { + ["char"] = "󰳯", + ["code"] = "f0cef", + }, + ["md-bridge"] = { + ["char"] = "󰘘", + ["code"] = "f0618", + }, + ["md-briefcase"] = { + ["char"] = "󰃖", + ["code"] = "f00d6", + }, + ["md-briefcase_account"] = { + ["char"] = "󰳰", + ["code"] = "f0cf0", + }, + ["md-briefcase_account_outline"] = { + ["char"] = "󰳱", + ["code"] = "f0cf1", + }, + ["md-briefcase_arrow_left_right"] = { + ["char"] = "󱪍", + ["code"] = "f1a8d", + }, + ["md-briefcase_arrow_left_right_outline"] = { + ["char"] = "󱪎", + ["code"] = "f1a8e", + }, + ["md-briefcase_arrow_up_down"] = { + ["char"] = "󱪏", + ["code"] = "f1a8f", + }, + ["md-briefcase_arrow_up_down_outline"] = { + ["char"] = "󱪐", + ["code"] = "f1a90", + }, + ["md-briefcase_check"] = { + ["char"] = "󰃗", + ["code"] = "f00d7", + }, + ["md-briefcase_check_outline"] = { + ["char"] = "󱌞", + ["code"] = "f131e", + }, + ["md-briefcase_clock"] = { + ["char"] = "󱃐", + ["code"] = "f10d0", + }, + ["md-briefcase_clock_outline"] = { + ["char"] = "󱃑", + ["code"] = "f10d1", + }, + ["md-briefcase_download"] = { + ["char"] = "󰃘", + ["code"] = "f00d8", + }, + ["md-briefcase_download_outline"] = { + ["char"] = "󰰽", + ["code"] = "f0c3d", + }, + ["md-briefcase_edit"] = { + ["char"] = "󰪘", + ["code"] = "f0a98", + }, + ["md-briefcase_edit_outline"] = { + ["char"] = "󰰾", + ["code"] = "f0c3e", + }, + ["md-briefcase_eye"] = { + ["char"] = "󱟙", + ["code"] = "f17d9", + }, + ["md-briefcase_eye_outline"] = { + ["char"] = "󱟚", + ["code"] = "f17da", + }, + ["md-briefcase_minus"] = { + ["char"] = "󰨪", + ["code"] = "f0a2a", + }, + ["md-briefcase_minus_outline"] = { + ["char"] = "󰰿", + ["code"] = "f0c3f", + }, + ["md-briefcase_off"] = { + ["char"] = "󱙘", + ["code"] = "f1658", + }, + ["md-briefcase_off_outline"] = { + ["char"] = "󱙙", + ["code"] = "f1659", + }, + ["md-briefcase_outline"] = { + ["char"] = "󰠔", + ["code"] = "f0814", + }, + ["md-briefcase_plus"] = { + ["char"] = "󰨫", + ["code"] = "f0a2b", + }, + ["md-briefcase_plus_outline"] = { + ["char"] = "󰱀", + ["code"] = "f0c40", + }, + ["md-briefcase_remove"] = { + ["char"] = "󰨬", + ["code"] = "f0a2c", + }, + ["md-briefcase_remove_outline"] = { + ["char"] = "󰱁", + ["code"] = "f0c41", + }, + ["md-briefcase_search"] = { + ["char"] = "󰨭", + ["code"] = "f0a2d", + }, + ["md-briefcase_search_outline"] = { + ["char"] = "󰱂", + ["code"] = "f0c42", + }, + ["md-briefcase_upload"] = { + ["char"] = "󰃙", + ["code"] = "f00d9", + }, + ["md-briefcase_upload_outline"] = { + ["char"] = "󰱃", + ["code"] = "f0c43", + }, + ["md-briefcase_variant"] = { + ["char"] = "󱒔", + ["code"] = "f1494", + }, + ["md-briefcase_variant_off"] = { + ["char"] = "󱙚", + ["code"] = "f165a", + }, + ["md-briefcase_variant_off_outline"] = { + ["char"] = "󱙛", + ["code"] = "f165b", + }, + ["md-briefcase_variant_outline"] = { + ["char"] = "󱒕", + ["code"] = "f1495", + }, + ["md-brightness_1"] = { + ["char"] = "󰃚", + ["code"] = "f00da", + }, + ["md-brightness_2"] = { + ["char"] = "󰃛", + ["code"] = "f00db", + }, + ["md-brightness_3"] = { + ["char"] = "󰃜", + ["code"] = "f00dc", + }, + ["md-brightness_4"] = { + ["char"] = "󰃝", + ["code"] = "f00dd", + }, + ["md-brightness_5"] = { + ["char"] = "󰃞", + ["code"] = "f00de", + }, + ["md-brightness_6"] = { + ["char"] = "󰃟", + ["code"] = "f00df", + }, + ["md-brightness_7"] = { + ["char"] = "󰃠", + ["code"] = "f00e0", + }, + ["md-brightness_auto"] = { + ["char"] = "󰃡", + ["code"] = "f00e1", + }, + ["md-brightness_percent"] = { + ["char"] = "󰳲", + ["code"] = "f0cf2", + }, + ["md-broadcast"] = { + ["char"] = "󱜠", + ["code"] = "f1720", + }, + ["md-broadcast_off"] = { + ["char"] = "󱜡", + ["code"] = "f1721", + }, + ["md-broom"] = { + ["char"] = "󰃢", + ["code"] = "f00e2", + }, + ["md-brush"] = { + ["char"] = "󰃣", + ["code"] = "f00e3", + }, + ["md-brush_off"] = { + ["char"] = "󱝱", + ["code"] = "f1771", + }, + ["md-brush_outline"] = { + ["char"] = "󱨍", + ["code"] = "f1a0d", + }, + ["md-brush_variant"] = { + ["char"] = "󱠓", + ["code"] = "f1813", + }, + ["md-bucket"] = { + ["char"] = "󱐕", + ["code"] = "f1415", + }, + ["md-bucket_outline"] = { + ["char"] = "󱐖", + ["code"] = "f1416", + }, + ["md-buffet"] = { + ["char"] = "󰕸", + ["code"] = "f0578", + }, + ["md-bug"] = { + ["char"] = "󰃤", + ["code"] = "f00e4", + }, + ["md-bug_check"] = { + ["char"] = "󰨮", + ["code"] = "f0a2e", + }, + ["md-bug_check_outline"] = { + ["char"] = "󰨯", + ["code"] = "f0a2f", + }, + ["md-bug_outline"] = { + ["char"] = "󰨰", + ["code"] = "f0a30", + }, + ["md-bugle"] = { + ["char"] = "󰶴", + ["code"] = "f0db4", + }, + ["md-bulkhead_light"] = { + ["char"] = "󱨯", + ["code"] = "f1a2f", + }, + ["md-bulldozer"] = { + ["char"] = "󰬢", + ["code"] = "f0b22", + }, + ["md-bullet"] = { + ["char"] = "󰳳", + ["code"] = "f0cf3", + }, + ["md-bulletin_board"] = { + ["char"] = "󰃥", + ["code"] = "f00e5", + }, + ["md-bullhorn"] = { + ["char"] = "󰃦", + ["code"] = "f00e6", + }, + ["md-bullhorn_outline"] = { + ["char"] = "󰬣", + ["code"] = "f0b23", + }, + ["md-bullhorn_variant"] = { + ["char"] = "󱥮", + ["code"] = "f196e", + }, + ["md-bullhorn_variant_outline"] = { + ["char"] = "󱥯", + ["code"] = "f196f", + }, + ["md-bullseye"] = { + ["char"] = "󰗝", + ["code"] = "f05dd", + }, + ["md-bullseye_arrow"] = { + ["char"] = "󰣉", + ["code"] = "f08c9", + }, + ["md-bulma"] = { + ["char"] = "󱋧", + ["code"] = "f12e7", + }, + ["md-bunk_bed"] = { + ["char"] = "󱌂", + ["code"] = "f1302", + }, + ["md-bunk_bed_outline"] = { + ["char"] = "󰂗", + ["code"] = "f0097", + }, + ["md-bus"] = { + ["char"] = "󰃧", + ["code"] = "f00e7", + }, + ["md-bus_alert"] = { + ["char"] = "󰪙", + ["code"] = "f0a99", + }, + ["md-bus_articulated_end"] = { + ["char"] = "󰞜", + ["code"] = "f079c", + }, + ["md-bus_articulated_front"] = { + ["char"] = "󰞝", + ["code"] = "f079d", + }, + ["md-bus_clock"] = { + ["char"] = "󰣊", + ["code"] = "f08ca", + }, + ["md-bus_double_decker"] = { + ["char"] = "󰞞", + ["code"] = "f079e", + }, + ["md-bus_electric"] = { + ["char"] = "󱤝", + ["code"] = "f191d", + }, + ["md-bus_marker"] = { + ["char"] = "󱈒", + ["code"] = "f1212", + }, + ["md-bus_multiple"] = { + ["char"] = "󰼿", + ["code"] = "f0f3f", + }, + ["md-bus_school"] = { + ["char"] = "󰞟", + ["code"] = "f079f", + }, + ["md-bus_side"] = { + ["char"] = "󰞠", + ["code"] = "f07a0", + }, + ["md-bus_stop"] = { + ["char"] = "󱀒", + ["code"] = "f1012", + }, + ["md-bus_stop_covered"] = { + ["char"] = "󱀓", + ["code"] = "f1013", + }, + ["md-bus_stop_uncovered"] = { + ["char"] = "󱀔", + ["code"] = "f1014", + }, + ["md-butterfly"] = { + ["char"] = "󱖉", + ["code"] = "f1589", + }, + ["md-butterfly_outline"] = { + ["char"] = "󱖊", + ["code"] = "f158a", + }, + ["md-cabin_a_frame"] = { + ["char"] = "󱢌", + ["code"] = "f188c", + }, + ["md-cable_data"] = { + ["char"] = "󱎔", + ["code"] = "f1394", + }, + ["md-cached"] = { + ["char"] = "󰃨", + ["code"] = "f00e8", + }, + ["md-cactus"] = { + ["char"] = "󰶵", + ["code"] = "f0db5", + }, + ["md-cake"] = { + ["char"] = "󰃩", + ["code"] = "f00e9", + }, + ["md-cake_layered"] = { + ["char"] = "󰃪", + ["code"] = "f00ea", + }, + ["md-cake_variant"] = { + ["char"] = "󰃫", + ["code"] = "f00eb", + }, + ["md-cake_variant_outline"] = { + ["char"] = "󱟰", + ["code"] = "f17f0", + }, + ["md-calculator"] = { + ["char"] = "󰃬", + ["code"] = "f00ec", + }, + ["md-calculator_variant"] = { + ["char"] = "󰪚", + ["code"] = "f0a9a", + }, + ["md-calculator_variant_outline"] = { + ["char"] = "󱖦", + ["code"] = "f15a6", + }, + ["md-calendar"] = { + ["char"] = "󰃭", + ["code"] = "f00ed", + }, + ["md-calendar_account"] = { + ["char"] = "󰻗", + ["code"] = "f0ed7", + }, + ["md-calendar_account_outline"] = { + ["char"] = "󰻘", + ["code"] = "f0ed8", + }, + ["md-calendar_alert"] = { + ["char"] = "󰨱", + ["code"] = "f0a31", + }, + ["md-calendar_arrow_left"] = { + ["char"] = "󱄴", + ["code"] = "f1134", + }, + ["md-calendar_arrow_right"] = { + ["char"] = "󱄵", + ["code"] = "f1135", + }, + ["md-calendar_blank"] = { + ["char"] = "󰃮", + ["code"] = "f00ee", + }, + ["md-calendar_blank_multiple"] = { + ["char"] = "󱁳", + ["code"] = "f1073", + }, + ["md-calendar_blank_outline"] = { + ["char"] = "󰭦", + ["code"] = "f0b66", + }, + ["md-calendar_check"] = { + ["char"] = "󰃯", + ["code"] = "f00ef", + }, + ["md-calendar_check_outline"] = { + ["char"] = "󰱄", + ["code"] = "f0c44", + }, + ["md-calendar_clock"] = { + ["char"] = "󰃰", + ["code"] = "f00f0", + }, + ["md-calendar_clock_outline"] = { + ["char"] = "󱛡", + ["code"] = "f16e1", + }, + ["md-calendar_collapse_horizontal"] = { + ["char"] = "󱢝", + ["code"] = "f189d", + }, + ["md-calendar_cursor"] = { + ["char"] = "󱕻", + ["code"] = "f157b", + }, + ["md-calendar_edit"] = { + ["char"] = "󰢧", + ["code"] = "f08a7", + }, + ["md-calendar_end"] = { + ["char"] = "󱙬", + ["code"] = "f166c", + }, + ["md-calendar_expand_horizontal"] = { + ["char"] = "󱢞", + ["code"] = "f189e", + }, + ["md-calendar_export"] = { + ["char"] = "󰬤", + ["code"] = "f0b24", + }, + ["md-calendar_heart"] = { + ["char"] = "󰧒", + ["code"] = "f09d2", + }, + ["md-calendar_import"] = { + ["char"] = "󰬥", + ["code"] = "f0b25", + }, + ["md-calendar_lock"] = { + ["char"] = "󱙁", + ["code"] = "f1641", + }, + ["md-calendar_lock_outline"] = { + ["char"] = "󱙂", + ["code"] = "f1642", + }, + ["md-calendar_minus"] = { + ["char"] = "󰵜", + ["code"] = "f0d5c", + }, + ["md-calendar_month"] = { + ["char"] = "󰸗", + ["code"] = "f0e17", + }, + ["md-calendar_month_outline"] = { + ["char"] = "󰸘", + ["code"] = "f0e18", + }, + ["md-calendar_multiple"] = { + ["char"] = "󰃱", + ["code"] = "f00f1", + }, + ["md-calendar_multiple_check"] = { + ["char"] = "󰃲", + ["code"] = "f00f2", + }, + ["md-calendar_multiselect"] = { + ["char"] = "󰨲", + ["code"] = "f0a32", + }, + ["md-calendar_outline"] = { + ["char"] = "󰭧", + ["code"] = "f0b67", + }, + ["md-calendar_plus"] = { + ["char"] = "󰃳", + ["code"] = "f00f3", + }, + ["md-calendar_question"] = { + ["char"] = "󰚒", + ["code"] = "f0692", + }, + ["md-calendar_range"] = { + ["char"] = "󰙹", + ["code"] = "f0679", + }, + ["md-calendar_range_outline"] = { + ["char"] = "󰭨", + ["code"] = "f0b68", + }, + ["md-calendar_refresh"] = { + ["char"] = "󰇡", + ["code"] = "f01e1", + }, + ["md-calendar_refresh_outline"] = { + ["char"] = "󰈃", + ["code"] = "f0203", + }, + ["md-calendar_remove"] = { + ["char"] = "󰃴", + ["code"] = "f00f4", + }, + ["md-calendar_remove_outline"] = { + ["char"] = "󰱅", + ["code"] = "f0c45", + }, + ["md-calendar_search"] = { + ["char"] = "󰥌", + ["code"] = "f094c", + }, + ["md-calendar_star"] = { + ["char"] = "󰧓", + ["code"] = "f09d3", + }, + ["md-calendar_start"] = { + ["char"] = "󱙭", + ["code"] = "f166d", + }, + ["md-calendar_sync"] = { + ["char"] = "󰺎", + ["code"] = "f0e8e", + }, + ["md-calendar_sync_outline"] = { + ["char"] = "󰺏", + ["code"] = "f0e8f", + }, + ["md-calendar_text"] = { + ["char"] = "󰃵", + ["code"] = "f00f5", + }, + ["md-calendar_text_outline"] = { + ["char"] = "󰱆", + ["code"] = "f0c46", + }, + ["md-calendar_today"] = { + ["char"] = "󰃶", + ["code"] = "f00f6", + }, + ["md-calendar_today_outline"] = { + ["char"] = "󱨰", + ["code"] = "f1a30", + }, + ["md-calendar_week"] = { + ["char"] = "󰨳", + ["code"] = "f0a33", + }, + ["md-calendar_week_begin"] = { + ["char"] = "󰨴", + ["code"] = "f0a34", + }, + ["md-calendar_week_begin_outline"] = { + ["char"] = "󱨱", + ["code"] = "f1a31", + }, + ["md-calendar_week_end"] = { + ["char"] = "󱨲", + ["code"] = "f1a32", + }, + ["md-calendar_week_end_outline"] = { + ["char"] = "󱨳", + ["code"] = "f1a33", + }, + ["md-calendar_week_outline"] = { + ["char"] = "󱨴", + ["code"] = "f1a34", + }, + ["md-calendar_weekend"] = { + ["char"] = "󰻙", + ["code"] = "f0ed9", + }, + ["md-calendar_weekend_outline"] = { + ["char"] = "󰻚", + ["code"] = "f0eda", + }, + ["md-call_made"] = { + ["char"] = "󰃷", + ["code"] = "f00f7", + }, + ["md-call_merge"] = { + ["char"] = "󰃸", + ["code"] = "f00f8", + }, + ["md-call_missed"] = { + ["char"] = "󰃹", + ["code"] = "f00f9", + }, + ["md-call_received"] = { + ["char"] = "󰃺", + ["code"] = "f00fa", + }, + ["md-call_split"] = { + ["char"] = "󰃻", + ["code"] = "f00fb", + }, + ["md-camcorder"] = { + ["char"] = "󰃼", + ["code"] = "f00fc", + }, + ["md-camcorder_off"] = { + ["char"] = "󰃿", + ["code"] = "f00ff", + }, + ["md-camera"] = { + ["char"] = "󰄀", + ["code"] = "f0100", + }, + ["md-camera_account"] = { + ["char"] = "󰣋", + ["code"] = "f08cb", + }, + ["md-camera_burst"] = { + ["char"] = "󰚓", + ["code"] = "f0693", + }, + ["md-camera_control"] = { + ["char"] = "󰭩", + ["code"] = "f0b69", + }, + ["md-camera_document"] = { + ["char"] = "󱡱", + ["code"] = "f1871", + }, + ["md-camera_document_off"] = { + ["char"] = "󱡲", + ["code"] = "f1872", + }, + ["md-camera_enhance"] = { + ["char"] = "󰄁", + ["code"] = "f0101", + }, + ["md-camera_enhance_outline"] = { + ["char"] = "󰭪", + ["code"] = "f0b6a", + }, + ["md-camera_flip"] = { + ["char"] = "󱗙", + ["code"] = "f15d9", + }, + ["md-camera_flip_outline"] = { + ["char"] = "󱗚", + ["code"] = "f15da", + }, + ["md-camera_front"] = { + ["char"] = "󰄂", + ["code"] = "f0102", + }, + ["md-camera_front_variant"] = { + ["char"] = "󰄃", + ["code"] = "f0103", + }, + ["md-camera_gopro"] = { + ["char"] = "󰞡", + ["code"] = "f07a1", + }, + ["md-camera_image"] = { + ["char"] = "󰣌", + ["code"] = "f08cc", + }, + ["md-camera_iris"] = { + ["char"] = "󰄄", + ["code"] = "f0104", + }, + ["md-camera_lock"] = { + ["char"] = "󱨔", + ["code"] = "f1a14", + }, + ["md-camera_lock_outline"] = { + ["char"] = "󱨕", + ["code"] = "f1a15", + }, + ["md-camera_marker"] = { + ["char"] = "󱦧", + ["code"] = "f19a7", + }, + ["md-camera_marker_outline"] = { + ["char"] = "󱦨", + ["code"] = "f19a8", + }, + ["md-camera_metering_center"] = { + ["char"] = "󰞢", + ["code"] = "f07a2", + }, + ["md-camera_metering_matrix"] = { + ["char"] = "󰞣", + ["code"] = "f07a3", + }, + ["md-camera_metering_partial"] = { + ["char"] = "󰞤", + ["code"] = "f07a4", + }, + ["md-camera_metering_spot"] = { + ["char"] = "󰞥", + ["code"] = "f07a5", + }, + ["md-camera_off"] = { + ["char"] = "󰗟", + ["code"] = "f05df", + }, + ["md-camera_off_outline"] = { + ["char"] = "󱦿", + ["code"] = "f19bf", + }, + ["md-camera_outline"] = { + ["char"] = "󰵝", + ["code"] = "f0d5d", + }, + ["md-camera_party_mode"] = { + ["char"] = "󰄅", + ["code"] = "f0105", + }, + ["md-camera_plus"] = { + ["char"] = "󰻛", + ["code"] = "f0edb", + }, + ["md-camera_plus_outline"] = { + ["char"] = "󰻜", + ["code"] = "f0edc", + }, + ["md-camera_rear"] = { + ["char"] = "󰄆", + ["code"] = "f0106", + }, + ["md-camera_rear_variant"] = { + ["char"] = "󰄇", + ["code"] = "f0107", + }, + ["md-camera_retake"] = { + ["char"] = "󰸙", + ["code"] = "f0e19", + }, + ["md-camera_retake_outline"] = { + ["char"] = "󰸚", + ["code"] = "f0e1a", + }, + ["md-camera_switch"] = { + ["char"] = "󰄈", + ["code"] = "f0108", + }, + ["md-camera_switch_outline"] = { + ["char"] = "󰡊", + ["code"] = "f084a", + }, + ["md-camera_timer"] = { + ["char"] = "󰄉", + ["code"] = "f0109", + }, + ["md-camera_wireless"] = { + ["char"] = "󰶶", + ["code"] = "f0db6", + }, + ["md-camera_wireless_outline"] = { + ["char"] = "󰶷", + ["code"] = "f0db7", + }, + ["md-campfire"] = { + ["char"] = "󰻝", + ["code"] = "f0edd", + }, + ["md-cancel"] = { + ["char"] = "󰜺", + ["code"] = "f073a", + }, + ["md-candelabra"] = { + ["char"] = "󱟒", + ["code"] = "f17d2", + }, + ["md-candelabra_fire"] = { + ["char"] = "󱟓", + ["code"] = "f17d3", + }, + ["md-candle"] = { + ["char"] = "󰗢", + ["code"] = "f05e2", + }, + ["md-candy"] = { + ["char"] = "󱥰", + ["code"] = "f1970", + }, + ["md-candy_off"] = { + ["char"] = "󱥱", + ["code"] = "f1971", + }, + ["md-candy_off_outline"] = { + ["char"] = "󱥲", + ["code"] = "f1972", + }, + ["md-candy_outline"] = { + ["char"] = "󱥳", + ["code"] = "f1973", + }, + ["md-candycane"] = { + ["char"] = "󰄊", + ["code"] = "f010a", + }, + ["md-cannabis"] = { + ["char"] = "󰞦", + ["code"] = "f07a6", + }, + ["md-cannabis_off"] = { + ["char"] = "󱙮", + ["code"] = "f166e", + }, + ["md-caps_lock"] = { + ["char"] = "󰪛", + ["code"] = "f0a9b", + }, + ["md-car"] = { + ["char"] = "󰄋", + ["code"] = "f010b", + }, + ["md-car_2_plus"] = { + ["char"] = "󱀕", + ["code"] = "f1015", + }, + ["md-car_3_plus"] = { + ["char"] = "󱀖", + ["code"] = "f1016", + }, + ["md-car_arrow_left"] = { + ["char"] = "󱎲", + ["code"] = "f13b2", + }, + ["md-car_arrow_right"] = { + ["char"] = "󱎳", + ["code"] = "f13b3", + }, + ["md-car_back"] = { + ["char"] = "󰸛", + ["code"] = "f0e1b", + }, + ["md-car_battery"] = { + ["char"] = "󰄌", + ["code"] = "f010c", + }, + ["md-car_brake_abs"] = { + ["char"] = "󰱇", + ["code"] = "f0c47", + }, + ["md-car_brake_alert"] = { + ["char"] = "󰱈", + ["code"] = "f0c48", + }, + ["md-car_brake_fluid_level"] = { + ["char"] = "󱤉", + ["code"] = "f1909", + }, + ["md-car_brake_hold"] = { + ["char"] = "󰵞", + ["code"] = "f0d5e", + }, + ["md-car_brake_low_pressure"] = { + ["char"] = "󱤊", + ["code"] = "f190a", + }, + ["md-car_brake_parking"] = { + ["char"] = "󰵟", + ["code"] = "f0d5f", + }, + ["md-car_brake_retarder"] = { + ["char"] = "󱀗", + ["code"] = "f1017", + }, + ["md-car_brake_temperature"] = { + ["char"] = "󱤋", + ["code"] = "f190b", + }, + ["md-car_brake_worn_linings"] = { + ["char"] = "󱤌", + ["code"] = "f190c", + }, + ["md-car_child_seat"] = { + ["char"] = "󰾣", + ["code"] = "f0fa3", + }, + ["md-car_clock"] = { + ["char"] = "󱥴", + ["code"] = "f1974", + }, + ["md-car_clutch"] = { + ["char"] = "󱀘", + ["code"] = "f1018", + }, + ["md-car_cog"] = { + ["char"] = "󱏌", + ["code"] = "f13cc", + }, + ["md-car_connected"] = { + ["char"] = "󰄍", + ["code"] = "f010d", + }, + ["md-car_convertible"] = { + ["char"] = "󰞧", + ["code"] = "f07a7", + }, + ["md-car_coolant_level"] = { + ["char"] = "󱀙", + ["code"] = "f1019", + }, + ["md-car_cruise_control"] = { + ["char"] = "󰵠", + ["code"] = "f0d60", + }, + ["md-car_defrost_front"] = { + ["char"] = "󰵡", + ["code"] = "f0d61", + }, + ["md-car_defrost_rear"] = { + ["char"] = "󰵢", + ["code"] = "f0d62", + }, + ["md-car_door"] = { + ["char"] = "󰭫", + ["code"] = "f0b6b", + }, + ["md-car_door_lock"] = { + ["char"] = "󱂝", + ["code"] = "f109d", + }, + ["md-car_electric"] = { + ["char"] = "󰭬", + ["code"] = "f0b6c", + }, + ["md-car_electric_outline"] = { + ["char"] = "󱖵", + ["code"] = "f15b5", + }, + ["md-car_emergency"] = { + ["char"] = "󱘏", + ["code"] = "f160f", + }, + ["md-car_esp"] = { + ["char"] = "󰱉", + ["code"] = "f0c49", + }, + ["md-car_estate"] = { + ["char"] = "󰞨", + ["code"] = "f07a8", + }, + ["md-car_hatchback"] = { + ["char"] = "󰞩", + ["code"] = "f07a9", + }, + ["md-car_info"] = { + ["char"] = "󱆾", + ["code"] = "f11be", + }, + ["md-car_key"] = { + ["char"] = "󰭭", + ["code"] = "f0b6d", + }, + ["md-car_lifted_pickup"] = { + ["char"] = "󱔭", + ["code"] = "f152d", + }, + ["md-car_light_alert"] = { + ["char"] = "󱤍", + ["code"] = "f190d", + }, + ["md-car_light_dimmed"] = { + ["char"] = "󰱊", + ["code"] = "f0c4a", + }, + ["md-car_light_fog"] = { + ["char"] = "󰱋", + ["code"] = "f0c4b", + }, + ["md-car_light_high"] = { + ["char"] = "󰱌", + ["code"] = "f0c4c", + }, + ["md-car_limousine"] = { + ["char"] = "󰣍", + ["code"] = "f08cd", + }, + ["md-car_multiple"] = { + ["char"] = "󰭮", + ["code"] = "f0b6e", + }, + ["md-car_off"] = { + ["char"] = "󰸜", + ["code"] = "f0e1c", + }, + ["md-car_outline"] = { + ["char"] = "󱓭", + ["code"] = "f14ed", + }, + ["md-car_parking_lights"] = { + ["char"] = "󰵣", + ["code"] = "f0d63", + }, + ["md-car_pickup"] = { + ["char"] = "󰞪", + ["code"] = "f07aa", + }, + ["md-car_seat"] = { + ["char"] = "󰾤", + ["code"] = "f0fa4", + }, + ["md-car_seat_cooler"] = { + ["char"] = "󰾥", + ["code"] = "f0fa5", + }, + ["md-car_seat_heater"] = { + ["char"] = "󰾦", + ["code"] = "f0fa6", + }, + ["md-car_select"] = { + ["char"] = "󱡹", + ["code"] = "f1879", + }, + ["md-car_settings"] = { + ["char"] = "󱏍", + ["code"] = "f13cd", + }, + ["md-car_shift_pattern"] = { + ["char"] = "󰽀", + ["code"] = "f0f40", + }, + ["md-car_side"] = { + ["char"] = "󰞫", + ["code"] = "f07ab", + }, + ["md-car_speed_limiter"] = { + ["char"] = "󱤎", + ["code"] = "f190e", + }, + ["md-car_sports"] = { + ["char"] = "󰞬", + ["code"] = "f07ac", + }, + ["md-car_tire_alert"] = { + ["char"] = "󰱍", + ["code"] = "f0c4d", + }, + ["md-car_traction_control"] = { + ["char"] = "󰵤", + ["code"] = "f0d64", + }, + ["md-car_turbocharger"] = { + ["char"] = "󱀚", + ["code"] = "f101a", + }, + ["md-car_wash"] = { + ["char"] = "󰄎", + ["code"] = "f010e", + }, + ["md-car_windshield"] = { + ["char"] = "󱀛", + ["code"] = "f101b", + }, + ["md-car_windshield_outline"] = { + ["char"] = "󱀜", + ["code"] = "f101c", + }, + ["md-car_wireless"] = { + ["char"] = "󱡸", + ["code"] = "f1878", + }, + ["md-car_wrench"] = { + ["char"] = "󱠔", + ["code"] = "f1814", + }, + ["md-carabiner"] = { + ["char"] = "󱓀", + ["code"] = "f14c0", + }, + ["md-caravan"] = { + ["char"] = "󰞭", + ["code"] = "f07ad", + }, + ["md-card"] = { + ["char"] = "󰭯", + ["code"] = "f0b6f", + }, + ["md-card_account_details"] = { + ["char"] = "󰗒", + ["code"] = "f05d2", + }, + ["md-card_account_details_outline"] = { + ["char"] = "󰶫", + ["code"] = "f0dab", + }, + ["md-card_account_details_star"] = { + ["char"] = "󰊣", + ["code"] = "f02a3", + }, + ["md-card_account_details_star_outline"] = { + ["char"] = "󰛛", + ["code"] = "f06db", + }, + ["md-card_account_mail"] = { + ["char"] = "󰆎", + ["code"] = "f018e", + }, + ["md-card_account_mail_outline"] = { + ["char"] = "󰺘", + ["code"] = "f0e98", + }, + ["md-card_account_phone"] = { + ["char"] = "󰺙", + ["code"] = "f0e99", + }, + ["md-card_account_phone_outline"] = { + ["char"] = "󰺚", + ["code"] = "f0e9a", + }, + ["md-card_bulleted"] = { + ["char"] = "󰭰", + ["code"] = "f0b70", + }, + ["md-card_bulleted_off"] = { + ["char"] = "󰭱", + ["code"] = "f0b71", + }, + ["md-card_bulleted_off_outline"] = { + ["char"] = "󰭲", + ["code"] = "f0b72", + }, + ["md-card_bulleted_outline"] = { + ["char"] = "󰭳", + ["code"] = "f0b73", + }, + ["md-card_bulleted_settings"] = { + ["char"] = "󰭴", + ["code"] = "f0b74", + }, + ["md-card_bulleted_settings_outline"] = { + ["char"] = "󰭵", + ["code"] = "f0b75", + }, + ["md-card_minus"] = { + ["char"] = "󱘀", + ["code"] = "f1600", + }, + ["md-card_minus_outline"] = { + ["char"] = "󱘁", + ["code"] = "f1601", + }, + ["md-card_multiple"] = { + ["char"] = "󱟱", + ["code"] = "f17f1", + }, + ["md-card_multiple_outline"] = { + ["char"] = "󱟲", + ["code"] = "f17f2", + }, + ["md-card_off"] = { + ["char"] = "󱘂", + ["code"] = "f1602", + }, + ["md-card_off_outline"] = { + ["char"] = "󱘃", + ["code"] = "f1603", + }, + ["md-card_outline"] = { + ["char"] = "󰭶", + ["code"] = "f0b76", + }, + ["md-card_plus"] = { + ["char"] = "󱇿", + ["code"] = "f11ff", + }, + ["md-card_plus_outline"] = { + ["char"] = "󱈀", + ["code"] = "f1200", + }, + ["md-card_remove"] = { + ["char"] = "󱘄", + ["code"] = "f1604", + }, + ["md-card_remove_outline"] = { + ["char"] = "󱘅", + ["code"] = "f1605", + }, + ["md-card_search"] = { + ["char"] = "󱁴", + ["code"] = "f1074", + }, + ["md-card_search_outline"] = { + ["char"] = "󱁵", + ["code"] = "f1075", + }, + ["md-card_text"] = { + ["char"] = "󰭷", + ["code"] = "f0b77", + }, + ["md-card_text_outline"] = { + ["char"] = "󰭸", + ["code"] = "f0b78", + }, + ["md-cards"] = { + ["char"] = "󰘸", + ["code"] = "f0638", + }, + ["md-cards_club"] = { + ["char"] = "󰣎", + ["code"] = "f08ce", + }, + ["md-cards_club_outline"] = { + ["char"] = "󱢟", + ["code"] = "f189f", + }, + ["md-cards_diamond"] = { + ["char"] = "󰣏", + ["code"] = "f08cf", + }, + ["md-cards_diamond_outline"] = { + ["char"] = "󱀝", + ["code"] = "f101d", + }, + ["md-cards_outline"] = { + ["char"] = "󰘹", + ["code"] = "f0639", + }, + ["md-cards_playing"] = { + ["char"] = "󱢡", + ["code"] = "f18a1", + }, + ["md-cards_playing_club"] = { + ["char"] = "󱢢", + ["code"] = "f18a2", + }, + ["md-cards_playing_club_multiple"] = { + ["char"] = "󱢣", + ["code"] = "f18a3", + }, + ["md-cards_playing_club_multiple_outline"] = { + ["char"] = "󱢤", + ["code"] = "f18a4", + }, + ["md-cards_playing_club_outline"] = { + ["char"] = "󱢥", + ["code"] = "f18a5", + }, + ["md-cards_playing_diamond"] = { + ["char"] = "󱢦", + ["code"] = "f18a6", + }, + ["md-cards_playing_diamond_multiple"] = { + ["char"] = "󱢧", + ["code"] = "f18a7", + }, + ["md-cards_playing_diamond_multiple_outline"] = { + ["char"] = "󱢨", + ["code"] = "f18a8", + }, + ["md-cards_playing_diamond_outline"] = { + ["char"] = "󱢩", + ["code"] = "f18a9", + }, + ["md-cards_playing_heart"] = { + ["char"] = "󱢪", + ["code"] = "f18aa", + }, + ["md-cards_playing_heart_multiple"] = { + ["char"] = "󱢫", + ["code"] = "f18ab", + }, + ["md-cards_playing_heart_multiple_outline"] = { + ["char"] = "󱢬", + ["code"] = "f18ac", + }, + ["md-cards_playing_heart_outline"] = { + ["char"] = "󱢭", + ["code"] = "f18ad", + }, + ["md-cards_playing_outline"] = { + ["char"] = "󰘺", + ["code"] = "f063a", + }, + ["md-cards_playing_spade"] = { + ["char"] = "󱢮", + ["code"] = "f18ae", + }, + ["md-cards_playing_spade_multiple"] = { + ["char"] = "󱢯", + ["code"] = "f18af", + }, + ["md-cards_playing_spade_multiple_outline"] = { + ["char"] = "󱢰", + ["code"] = "f18b0", + }, + ["md-cards_playing_spade_outline"] = { + ["char"] = "󱢱", + ["code"] = "f18b1", + }, + ["md-cards_spade"] = { + ["char"] = "󰣑", + ["code"] = "f08d1", + }, + ["md-cards_spade_outline"] = { + ["char"] = "󱢲", + ["code"] = "f18b2", + }, + ["md-cards_variant"] = { + ["char"] = "󰛇", + ["code"] = "f06c7", + }, + ["md-carrot"] = { + ["char"] = "󰄏", + ["code"] = "f010f", + }, + ["md-cart"] = { + ["char"] = "󰄐", + ["code"] = "f0110", + }, + ["md-cart_arrow_down"] = { + ["char"] = "󰵦", + ["code"] = "f0d66", + }, + ["md-cart_arrow_right"] = { + ["char"] = "󰱎", + ["code"] = "f0c4e", + }, + ["md-cart_arrow_up"] = { + ["char"] = "󰵧", + ["code"] = "f0d67", + }, + ["md-cart_check"] = { + ["char"] = "󱗪", + ["code"] = "f15ea", + }, + ["md-cart_heart"] = { + ["char"] = "󱣠", + ["code"] = "f18e0", + }, + ["md-cart_minus"] = { + ["char"] = "󰵨", + ["code"] = "f0d68", + }, + ["md-cart_off"] = { + ["char"] = "󰙫", + ["code"] = "f066b", + }, + ["md-cart_outline"] = { + ["char"] = "󰄑", + ["code"] = "f0111", + }, + ["md-cart_plus"] = { + ["char"] = "󰄒", + ["code"] = "f0112", + }, + ["md-cart_remove"] = { + ["char"] = "󰵩", + ["code"] = "f0d69", + }, + ["md-cart_variant"] = { + ["char"] = "󱗫", + ["code"] = "f15eb", + }, + ["md-case_sensitive_alt"] = { + ["char"] = "󰄓", + ["code"] = "f0113", + }, + ["md-cash"] = { + ["char"] = "󰄔", + ["code"] = "f0114", + }, + ["md-cash_100"] = { + ["char"] = "󰄕", + ["code"] = "f0115", + }, + ["md-cash_check"] = { + ["char"] = "󱓮", + ["code"] = "f14ee", + }, + ["md-cash_clock"] = { + ["char"] = "󱪑", + ["code"] = "f1a91", + }, + ["md-cash_fast"] = { + ["char"] = "󱡜", + ["code"] = "f185c", + }, + ["md-cash_lock"] = { + ["char"] = "󱓪", + ["code"] = "f14ea", + }, + ["md-cash_lock_open"] = { + ["char"] = "󱓫", + ["code"] = "f14eb", + }, + ["md-cash_marker"] = { + ["char"] = "󰶸", + ["code"] = "f0db8", + }, + ["md-cash_minus"] = { + ["char"] = "󱉠", + ["code"] = "f1260", + }, + ["md-cash_multiple"] = { + ["char"] = "󰄖", + ["code"] = "f0116", + }, + ["md-cash_plus"] = { + ["char"] = "󱉡", + ["code"] = "f1261", + }, + ["md-cash_refund"] = { + ["char"] = "󰪜", + ["code"] = "f0a9c", + }, + ["md-cash_register"] = { + ["char"] = "󰳴", + ["code"] = "f0cf4", + }, + ["md-cash_remove"] = { + ["char"] = "󱉢", + ["code"] = "f1262", + }, + ["md-cash_sync"] = { + ["char"] = "󱪒", + ["code"] = "f1a92", + }, + ["md-cassette"] = { + ["char"] = "󰧔", + ["code"] = "f09d4", + }, + ["md-cast"] = { + ["char"] = "󰄘", + ["code"] = "f0118", + }, + ["md-cast_audio"] = { + ["char"] = "󱀞", + ["code"] = "f101e", + }, + ["md-cast_audio_variant"] = { + ["char"] = "󱝉", + ["code"] = "f1749", + }, + ["md-cast_connected"] = { + ["char"] = "󰄙", + ["code"] = "f0119", + }, + ["md-cast_education"] = { + ["char"] = "󰸝", + ["code"] = "f0e1d", + }, + ["md-cast_off"] = { + ["char"] = "󰞊", + ["code"] = "f078a", + }, + ["md-cast_variant"] = { + ["char"] = "󰀟", + ["code"] = "f001f", + }, + ["md-castle"] = { + ["char"] = "󰄚", + ["code"] = "f011a", + }, + ["md-cat"] = { + ["char"] = "󰄛", + ["code"] = "f011b", + }, + ["md-cctv"] = { + ["char"] = "󰞮", + ["code"] = "f07ae", + }, + ["md-cctv_off"] = { + ["char"] = "󱡟", + ["code"] = "f185f", + }, + ["md-ceiling_fan"] = { + ["char"] = "󱞗", + ["code"] = "f1797", + }, + ["md-ceiling_fan_light"] = { + ["char"] = "󱞘", + ["code"] = "f1798", + }, + ["md-ceiling_light"] = { + ["char"] = "󰝩", + ["code"] = "f0769", + }, + ["md-ceiling_light_multiple"] = { + ["char"] = "󱣝", + ["code"] = "f18dd", + }, + ["md-ceiling_light_multiple_outline"] = { + ["char"] = "󱣞", + ["code"] = "f18de", + }, + ["md-ceiling_light_outline"] = { + ["char"] = "󱟇", + ["code"] = "f17c7", + }, + ["md-cellphone"] = { + ["char"] = "󰄜", + ["code"] = "f011c", + }, + ["md-cellphone_arrow_down"] = { + ["char"] = "󰧕", + ["code"] = "f09d5", + }, + ["md-cellphone_arrow_down_variant"] = { + ["char"] = "󱧅", + ["code"] = "f19c5", + }, + ["md-cellphone_basic"] = { + ["char"] = "󰄞", + ["code"] = "f011e", + }, + ["md-cellphone_charging"] = { + ["char"] = "󱎗", + ["code"] = "f1397", + }, + ["md-cellphone_check"] = { + ["char"] = "󱟽", + ["code"] = "f17fd", + }, + ["md-cellphone_cog"] = { + ["char"] = "󰥑", + ["code"] = "f0951", + }, + ["md-cellphone_dock"] = { + ["char"] = "󰄟", + ["code"] = "f011f", + }, + ["md-cellphone_information"] = { + ["char"] = "󰽁", + ["code"] = "f0f41", + }, + ["md-cellphone_key"] = { + ["char"] = "󰥎", + ["code"] = "f094e", + }, + ["md-cellphone_link"] = { + ["char"] = "󰄡", + ["code"] = "f0121", + }, + ["md-cellphone_link_off"] = { + ["char"] = "󰄢", + ["code"] = "f0122", + }, + ["md-cellphone_lock"] = { + ["char"] = "󰥏", + ["code"] = "f094f", + }, + ["md-cellphone_marker"] = { + ["char"] = "󱠺", + ["code"] = "f183a", + }, + ["md-cellphone_message"] = { + ["char"] = "󰣓", + ["code"] = "f08d3", + }, + ["md-cellphone_message_off"] = { + ["char"] = "󱃒", + ["code"] = "f10d2", + }, + ["md-cellphone_nfc"] = { + ["char"] = "󰺐", + ["code"] = "f0e90", + }, + ["md-cellphone_nfc_off"] = { + ["char"] = "󱋘", + ["code"] = "f12d8", + }, + ["md-cellphone_off"] = { + ["char"] = "󰥐", + ["code"] = "f0950", + }, + ["md-cellphone_play"] = { + ["char"] = "󱀟", + ["code"] = "f101f", + }, + ["md-cellphone_remove"] = { + ["char"] = "󰥍", + ["code"] = "f094d", + }, + ["md-cellphone_screenshot"] = { + ["char"] = "󰨵", + ["code"] = "f0a35", + }, + ["md-cellphone_settings"] = { + ["char"] = "󰄣", + ["code"] = "f0123", + }, + ["md-cellphone_sound"] = { + ["char"] = "󰥒", + ["code"] = "f0952", + }, + ["md-cellphone_text"] = { + ["char"] = "󰣒", + ["code"] = "f08d2", + }, + ["md-cellphone_wireless"] = { + ["char"] = "󰠕", + ["code"] = "f0815", + }, + ["md-centos"] = { + ["char"] = "󱄚", + ["code"] = "f111a", + }, + ["md-certificate"] = { + ["char"] = "󰄤", + ["code"] = "f0124", + }, + ["md-certificate_outline"] = { + ["char"] = "󱆈", + ["code"] = "f1188", + }, + ["md-chair_rolling"] = { + ["char"] = "󰽈", + ["code"] = "f0f48", + }, + ["md-chair_school"] = { + ["char"] = "󰄥", + ["code"] = "f0125", + }, + ["md-chandelier"] = { + ["char"] = "󱞓", + ["code"] = "f1793", + }, + ["md-charity"] = { + ["char"] = "󰱏", + ["code"] = "f0c4f", + }, + ["md-chart_arc"] = { + ["char"] = "󰄦", + ["code"] = "f0126", + }, + ["md-chart_areaspline"] = { + ["char"] = "󰄧", + ["code"] = "f0127", + }, + ["md-chart_areaspline_variant"] = { + ["char"] = "󰺑", + ["code"] = "f0e91", + }, + ["md-chart_bar"] = { + ["char"] = "󰄨", + ["code"] = "f0128", + }, + ["md-chart_bar_stacked"] = { + ["char"] = "󰝪", + ["code"] = "f076a", + }, + ["md-chart_bell_curve"] = { + ["char"] = "󰱐", + ["code"] = "f0c50", + }, + ["md-chart_bell_curve_cumulative"] = { + ["char"] = "󰾧", + ["code"] = "f0fa7", + }, + ["md-chart_box"] = { + ["char"] = "󱕍", + ["code"] = "f154d", + }, + ["md-chart_box_outline"] = { + ["char"] = "󱕎", + ["code"] = "f154e", + }, + ["md-chart_box_plus_outline"] = { + ["char"] = "󱕏", + ["code"] = "f154f", + }, + ["md-chart_bubble"] = { + ["char"] = "󰗣", + ["code"] = "f05e3", + }, + ["md-chart_donut"] = { + ["char"] = "󰞯", + ["code"] = "f07af", + }, + ["md-chart_donut_variant"] = { + ["char"] = "󰞰", + ["code"] = "f07b0", + }, + ["md-chart_gantt"] = { + ["char"] = "󰙬", + ["code"] = "f066c", + }, + ["md-chart_histogram"] = { + ["char"] = "󰄩", + ["code"] = "f0129", + }, + ["md-chart_line"] = { + ["char"] = "󰄪", + ["code"] = "f012a", + }, + ["md-chart_line_stacked"] = { + ["char"] = "󰝫", + ["code"] = "f076b", + }, + ["md-chart_line_variant"] = { + ["char"] = "󰞱", + ["code"] = "f07b1", + }, + ["md-chart_multiline"] = { + ["char"] = "󰣔", + ["code"] = "f08d4", + }, + ["md-chart_multiple"] = { + ["char"] = "󱈓", + ["code"] = "f1213", + }, + ["md-chart_pie"] = { + ["char"] = "󰄫", + ["code"] = "f012b", + }, + ["md-chart_ppf"] = { + ["char"] = "󱎀", + ["code"] = "f1380", + }, + ["md-chart_sankey"] = { + ["char"] = "󱇟", + ["code"] = "f11df", + }, + ["md-chart_sankey_variant"] = { + ["char"] = "󱇠", + ["code"] = "f11e0", + }, + ["md-chart_scatter_plot"] = { + ["char"] = "󰺒", + ["code"] = "f0e92", + }, + ["md-chart_scatter_plot_hexbin"] = { + ["char"] = "󰙭", + ["code"] = "f066d", + }, + ["md-chart_timeline"] = { + ["char"] = "󰙮", + ["code"] = "f066e", + }, + ["md-chart_timeline_variant"] = { + ["char"] = "󰺓", + ["code"] = "f0e93", + }, + ["md-chart_timeline_variant_shimmer"] = { + ["char"] = "󱖶", + ["code"] = "f15b6", + }, + ["md-chart_tree"] = { + ["char"] = "󰺔", + ["code"] = "f0e94", + }, + ["md-chart_waterfall"] = { + ["char"] = "󱤘", + ["code"] = "f1918", + }, + ["md-chat"] = { + ["char"] = "󰭹", + ["code"] = "f0b79", + }, + ["md-chat_alert"] = { + ["char"] = "󰭺", + ["code"] = "f0b7a", + }, + ["md-chat_alert_outline"] = { + ["char"] = "󱋉", + ["code"] = "f12c9", + }, + ["md-chat_minus"] = { + ["char"] = "󱐐", + ["code"] = "f1410", + }, + ["md-chat_minus_outline"] = { + ["char"] = "󱐓", + ["code"] = "f1413", + }, + ["md-chat_outline"] = { + ["char"] = "󰻞", + ["code"] = "f0ede", + }, + ["md-chat_plus"] = { + ["char"] = "󱐏", + ["code"] = "f140f", + }, + ["md-chat_plus_outline"] = { + ["char"] = "󱐒", + ["code"] = "f1412", + }, + ["md-chat_processing"] = { + ["char"] = "󰭻", + ["code"] = "f0b7b", + }, + ["md-chat_processing_outline"] = { + ["char"] = "󱋊", + ["code"] = "f12ca", + }, + ["md-chat_question"] = { + ["char"] = "󱜸", + ["code"] = "f1738", + }, + ["md-chat_question_outline"] = { + ["char"] = "󱜹", + ["code"] = "f1739", + }, + ["md-chat_remove"] = { + ["char"] = "󱐑", + ["code"] = "f1411", + }, + ["md-chat_remove_outline"] = { + ["char"] = "󱐔", + ["code"] = "f1414", + }, + ["md-chat_sleep"] = { + ["char"] = "󱋑", + ["code"] = "f12d1", + }, + ["md-chat_sleep_outline"] = { + ["char"] = "󱋒", + ["code"] = "f12d2", + }, + ["md-check"] = { + ["char"] = "󰄬", + ["code"] = "f012c", + }, + ["md-check_all"] = { + ["char"] = "󰄭", + ["code"] = "f012d", + }, + ["md-check_bold"] = { + ["char"] = "󰸞", + ["code"] = "f0e1e", + }, + ["md-check_circle"] = { + ["char"] = "󰗠", + ["code"] = "f05e0", + }, + ["md-check_circle_outline"] = { + ["char"] = "󰗡", + ["code"] = "f05e1", + }, + ["md-check_decagram"] = { + ["char"] = "󰞑", + ["code"] = "f0791", + }, + ["md-check_decagram_outline"] = { + ["char"] = "󱝀", + ["code"] = "f1740", + }, + ["md-check_network"] = { + ["char"] = "󰱓", + ["code"] = "f0c53", + }, + ["md-check_network_outline"] = { + ["char"] = "󰱔", + ["code"] = "f0c54", + }, + ["md-check_outline"] = { + ["char"] = "󰡕", + ["code"] = "f0855", + }, + ["md-check_underline"] = { + ["char"] = "󰸟", + ["code"] = "f0e1f", + }, + ["md-check_underline_circle"] = { + ["char"] = "󰸠", + ["code"] = "f0e20", + }, + ["md-check_underline_circle_outline"] = { + ["char"] = "󰸡", + ["code"] = "f0e21", + }, + ["md-checkbook"] = { + ["char"] = "󰪝", + ["code"] = "f0a9d", + }, + ["md-checkbox_blank"] = { + ["char"] = "󰄮", + ["code"] = "f012e", + }, + ["md-checkbox_blank_badge"] = { + ["char"] = "󱅶", + ["code"] = "f1176", + }, + ["md-checkbox_blank_badge_outline"] = { + ["char"] = "󰄗", + ["code"] = "f0117", + }, + ["md-checkbox_blank_circle"] = { + ["char"] = "󰝥", + ["code"] = "f0765", + }, + ["md-checkbox_blank_circle_outline"] = { + ["char"] = "󰝦", + ["code"] = "f0766", + }, + ["md-checkbox_blank_off"] = { + ["char"] = "󱋬", + ["code"] = "f12ec", + }, + ["md-checkbox_blank_off_outline"] = { + ["char"] = "󱋭", + ["code"] = "f12ed", + }, + ["md-checkbox_blank_outline"] = { + ["char"] = "󰄱", + ["code"] = "f0131", + }, + ["md-checkbox_intermediate"] = { + ["char"] = "󰡖", + ["code"] = "f0856", + }, + ["md-checkbox_marked"] = { + ["char"] = "󰄲", + ["code"] = "f0132", + }, + ["md-checkbox_marked_circle"] = { + ["char"] = "󰄳", + ["code"] = "f0133", + }, + ["md-checkbox_marked_circle_outline"] = { + ["char"] = "󰄴", + ["code"] = "f0134", + }, + ["md-checkbox_marked_circle_plus_outline"] = { + ["char"] = "󱤧", + ["code"] = "f1927", + }, + ["md-checkbox_marked_outline"] = { + ["char"] = "󰄵", + ["code"] = "f0135", + }, + ["md-checkbox_multiple_blank"] = { + ["char"] = "󰄶", + ["code"] = "f0136", + }, + ["md-checkbox_multiple_blank_circle"] = { + ["char"] = "󰘻", + ["code"] = "f063b", + }, + ["md-checkbox_multiple_blank_circle_outline"] = { + ["char"] = "󰘼", + ["code"] = "f063c", + }, + ["md-checkbox_multiple_blank_outline"] = { + ["char"] = "󰄷", + ["code"] = "f0137", + }, + ["md-checkbox_multiple_marked"] = { + ["char"] = "󰄸", + ["code"] = "f0138", + }, + ["md-checkbox_multiple_marked_circle"] = { + ["char"] = "󰘽", + ["code"] = "f063d", + }, + ["md-checkbox_multiple_marked_circle_outline"] = { + ["char"] = "󰘾", + ["code"] = "f063e", + }, + ["md-checkbox_multiple_marked_outline"] = { + ["char"] = "󰄹", + ["code"] = "f0139", + }, + ["md-checkbox_multiple_outline"] = { + ["char"] = "󰱑", + ["code"] = "f0c51", + }, + ["md-checkbox_outline"] = { + ["char"] = "󰱒", + ["code"] = "f0c52", + }, + ["md-checkerboard"] = { + ["char"] = "󰄺", + ["code"] = "f013a", + }, + ["md-checkerboard_minus"] = { + ["char"] = "󱈂", + ["code"] = "f1202", + }, + ["md-checkerboard_plus"] = { + ["char"] = "󱈁", + ["code"] = "f1201", + }, + ["md-checkerboard_remove"] = { + ["char"] = "󱈃", + ["code"] = "f1203", + }, + ["md-cheese"] = { + ["char"] = "󱊹", + ["code"] = "f12b9", + }, + ["md-cheese_off"] = { + ["char"] = "󱏮", + ["code"] = "f13ee", + }, + ["md-chef_hat"] = { + ["char"] = "󰭼", + ["code"] = "f0b7c", + }, + ["md-chemical_weapon"] = { + ["char"] = "󰄻", + ["code"] = "f013b", + }, + ["md-chess_bishop"] = { + ["char"] = "󰡜", + ["code"] = "f085c", + }, + ["md-chess_king"] = { + ["char"] = "󰡗", + ["code"] = "f0857", + }, + ["md-chess_knight"] = { + ["char"] = "󰡘", + ["code"] = "f0858", + }, + ["md-chess_pawn"] = { + ["char"] = "󰡙", + ["code"] = "f0859", + }, + ["md-chess_queen"] = { + ["char"] = "󰡚", + ["code"] = "f085a", + }, + ["md-chess_rook"] = { + ["char"] = "󰡛", + ["code"] = "f085b", + }, + ["md-chevron_double_down"] = { + ["char"] = "󰄼", + ["code"] = "f013c", + }, + ["md-chevron_double_left"] = { + ["char"] = "󰄽", + ["code"] = "f013d", + }, + ["md-chevron_double_right"] = { + ["char"] = "󰄾", + ["code"] = "f013e", + }, + ["md-chevron_double_up"] = { + ["char"] = "󰄿", + ["code"] = "f013f", + }, + ["md-chevron_down"] = { + ["char"] = "󰅀", + ["code"] = "f0140", + }, + ["md-chevron_down_box"] = { + ["char"] = "󰧖", + ["code"] = "f09d6", + }, + ["md-chevron_down_box_outline"] = { + ["char"] = "󰧗", + ["code"] = "f09d7", + }, + ["md-chevron_down_circle"] = { + ["char"] = "󰬦", + ["code"] = "f0b26", + }, + ["md-chevron_down_circle_outline"] = { + ["char"] = "󰬧", + ["code"] = "f0b27", + }, + ["md-chevron_left"] = { + ["char"] = "󰅁", + ["code"] = "f0141", + }, + ["md-chevron_left_box"] = { + ["char"] = "󰧘", + ["code"] = "f09d8", + }, + ["md-chevron_left_box_outline"] = { + ["char"] = "󰧙", + ["code"] = "f09d9", + }, + ["md-chevron_left_circle"] = { + ["char"] = "󰬨", + ["code"] = "f0b28", + }, + ["md-chevron_left_circle_outline"] = { + ["char"] = "󰬩", + ["code"] = "f0b29", + }, + ["md-chevron_right"] = { + ["char"] = "󰅂", + ["code"] = "f0142", + }, + ["md-chevron_right_box"] = { + ["char"] = "󰧚", + ["code"] = "f09da", + }, + ["md-chevron_right_box_outline"] = { + ["char"] = "󰧛", + ["code"] = "f09db", + }, + ["md-chevron_right_circle"] = { + ["char"] = "󰬪", + ["code"] = "f0b2a", + }, + ["md-chevron_right_circle_outline"] = { + ["char"] = "󰬫", + ["code"] = "f0b2b", + }, + ["md-chevron_triple_down"] = { + ["char"] = "󰶹", + ["code"] = "f0db9", + }, + ["md-chevron_triple_left"] = { + ["char"] = "󰶺", + ["code"] = "f0dba", + }, + ["md-chevron_triple_right"] = { + ["char"] = "󰶻", + ["code"] = "f0dbb", + }, + ["md-chevron_triple_up"] = { + ["char"] = "󰶼", + ["code"] = "f0dbc", + }, + ["md-chevron_up"] = { + ["char"] = "󰅃", + ["code"] = "f0143", + }, + ["md-chevron_up_box"] = { + ["char"] = "󰧜", + ["code"] = "f09dc", + }, + ["md-chevron_up_box_outline"] = { + ["char"] = "󰧝", + ["code"] = "f09dd", + }, + ["md-chevron_up_circle"] = { + ["char"] = "󰬬", + ["code"] = "f0b2c", + }, + ["md-chevron_up_circle_outline"] = { + ["char"] = "󰬭", + ["code"] = "f0b2d", + }, + ["md-chili_alert"] = { + ["char"] = "󱟪", + ["code"] = "f17ea", + }, + ["md-chili_alert_outline"] = { + ["char"] = "󱟫", + ["code"] = "f17eb", + }, + ["md-chili_hot"] = { + ["char"] = "󰞲", + ["code"] = "f07b2", + }, + ["md-chili_hot_outline"] = { + ["char"] = "󱟬", + ["code"] = "f17ec", + }, + ["md-chili_medium"] = { + ["char"] = "󰞳", + ["code"] = "f07b3", + }, + ["md-chili_medium_outline"] = { + ["char"] = "󱟭", + ["code"] = "f17ed", + }, + ["md-chili_mild"] = { + ["char"] = "󰞴", + ["code"] = "f07b4", + }, + ["md-chili_mild_outline"] = { + ["char"] = "󱟮", + ["code"] = "f17ee", + }, + ["md-chili_off"] = { + ["char"] = "󱑧", + ["code"] = "f1467", + }, + ["md-chili_off_outline"] = { + ["char"] = "󱟯", + ["code"] = "f17ef", + }, + ["md-chip"] = { + ["char"] = "󰘚", + ["code"] = "f061a", + }, + ["md-church"] = { + ["char"] = "󰅄", + ["code"] = "f0144", + }, + ["md-cigar"] = { + ["char"] = "󱆉", + ["code"] = "f1189", + }, + ["md-cigar_off"] = { + ["char"] = "󱐛", + ["code"] = "f141b", + }, + ["md-circle_box"] = { + ["char"] = "󱗜", + ["code"] = "f15dc", + }, + ["md-circle_box_outline"] = { + ["char"] = "󱗝", + ["code"] = "f15dd", + }, + ["md-circle_double"] = { + ["char"] = "󰺕", + ["code"] = "f0e95", + }, + ["md-circle_edit_outline"] = { + ["char"] = "󰣕", + ["code"] = "f08d5", + }, + ["md-circle_expand"] = { + ["char"] = "󰺖", + ["code"] = "f0e96", + }, + ["md-circle_half"] = { + ["char"] = "󱎕", + ["code"] = "f1395", + }, + ["md-circle_half_full"] = { + ["char"] = "󱎖", + ["code"] = "f1396", + }, + ["md-circle_medium"] = { + ["char"] = "󰧞", + ["code"] = "f09de", + }, + ["md-circle_multiple"] = { + ["char"] = "󰬸", + ["code"] = "f0b38", + }, + ["md-circle_multiple_outline"] = { + ["char"] = "󰚕", + ["code"] = "f0695", + }, + ["md-circle_off_outline"] = { + ["char"] = "󱃓", + ["code"] = "f10d3", + }, + ["md-circle_opacity"] = { + ["char"] = "󱡓", + ["code"] = "f1853", + }, + ["md-circle_slice_1"] = { + ["char"] = "󰪞", + ["code"] = "f0a9e", + }, + ["md-circle_slice_2"] = { + ["char"] = "󰪟", + ["code"] = "f0a9f", + }, + ["md-circle_slice_3"] = { + ["char"] = "󰪠", + ["code"] = "f0aa0", + }, + ["md-circle_slice_4"] = { + ["char"] = "󰪡", + ["code"] = "f0aa1", + }, + ["md-circle_slice_5"] = { + ["char"] = "󰪢", + ["code"] = "f0aa2", + }, + ["md-circle_slice_6"] = { + ["char"] = "󰪣", + ["code"] = "f0aa3", + }, + ["md-circle_slice_7"] = { + ["char"] = "󰪤", + ["code"] = "f0aa4", + }, + ["md-circle_slice_8"] = { + ["char"] = "󰪥", + ["code"] = "f0aa5", + }, + ["md-circle_small"] = { + ["char"] = "󰧟", + ["code"] = "f09df", + }, + ["md-circular_saw"] = { + ["char"] = "󰸢", + ["code"] = "f0e22", + }, + ["md-city"] = { + ["char"] = "󰅆", + ["code"] = "f0146", + }, + ["md-city_variant"] = { + ["char"] = "󰨶", + ["code"] = "f0a36", + }, + ["md-city_variant_outline"] = { + ["char"] = "󰨷", + ["code"] = "f0a37", + }, + ["md-clipboard"] = { + ["char"] = "󰅇", + ["code"] = "f0147", + }, + ["md-clipboard_account"] = { + ["char"] = "󰅈", + ["code"] = "f0148", + }, + ["md-clipboard_account_outline"] = { + ["char"] = "󰱕", + ["code"] = "f0c55", + }, + ["md-clipboard_alert"] = { + ["char"] = "󰅉", + ["code"] = "f0149", + }, + ["md-clipboard_alert_outline"] = { + ["char"] = "󰳷", + ["code"] = "f0cf7", + }, + ["md-clipboard_arrow_down"] = { + ["char"] = "󰅊", + ["code"] = "f014a", + }, + ["md-clipboard_arrow_down_outline"] = { + ["char"] = "󰱖", + ["code"] = "f0c56", + }, + ["md-clipboard_arrow_left"] = { + ["char"] = "󰅋", + ["code"] = "f014b", + }, + ["md-clipboard_arrow_left_outline"] = { + ["char"] = "󰳸", + ["code"] = "f0cf8", + }, + ["md-clipboard_arrow_right"] = { + ["char"] = "󰳹", + ["code"] = "f0cf9", + }, + ["md-clipboard_arrow_right_outline"] = { + ["char"] = "󰳺", + ["code"] = "f0cfa", + }, + ["md-clipboard_arrow_up"] = { + ["char"] = "󰱗", + ["code"] = "f0c57", + }, + ["md-clipboard_arrow_up_outline"] = { + ["char"] = "󰱘", + ["code"] = "f0c58", + }, + ["md-clipboard_check"] = { + ["char"] = "󰅎", + ["code"] = "f014e", + }, + ["md-clipboard_check_multiple"] = { + ["char"] = "󱉣", + ["code"] = "f1263", + }, + ["md-clipboard_check_multiple_outline"] = { + ["char"] = "󱉤", + ["code"] = "f1264", + }, + ["md-clipboard_check_outline"] = { + ["char"] = "󰢨", + ["code"] = "f08a8", + }, + ["md-clipboard_clock"] = { + ["char"] = "󱛢", + ["code"] = "f16e2", + }, + ["md-clipboard_clock_outline"] = { + ["char"] = "󱛣", + ["code"] = "f16e3", + }, + ["md-clipboard_edit"] = { + ["char"] = "󱓥", + ["code"] = "f14e5", + }, + ["md-clipboard_edit_outline"] = { + ["char"] = "󱓦", + ["code"] = "f14e6", + }, + ["md-clipboard_file"] = { + ["char"] = "󱉥", + ["code"] = "f1265", + }, + ["md-clipboard_file_outline"] = { + ["char"] = "󱉦", + ["code"] = "f1266", + }, + ["md-clipboard_flow"] = { + ["char"] = "󰛈", + ["code"] = "f06c8", + }, + ["md-clipboard_flow_outline"] = { + ["char"] = "󱄗", + ["code"] = "f1117", + }, + ["md-clipboard_list"] = { + ["char"] = "󱃔", + ["code"] = "f10d4", + }, + ["md-clipboard_list_outline"] = { + ["char"] = "󱃕", + ["code"] = "f10d5", + }, + ["md-clipboard_minus"] = { + ["char"] = "󱘘", + ["code"] = "f1618", + }, + ["md-clipboard_minus_outline"] = { + ["char"] = "󱘙", + ["code"] = "f1619", + }, + ["md-clipboard_multiple"] = { + ["char"] = "󱉧", + ["code"] = "f1267", + }, + ["md-clipboard_multiple_outline"] = { + ["char"] = "󱉨", + ["code"] = "f1268", + }, + ["md-clipboard_off"] = { + ["char"] = "󱘚", + ["code"] = "f161a", + }, + ["md-clipboard_off_outline"] = { + ["char"] = "󱘛", + ["code"] = "f161b", + }, + ["md-clipboard_outline"] = { + ["char"] = "󰅌", + ["code"] = "f014c", + }, + ["md-clipboard_play"] = { + ["char"] = "󰱙", + ["code"] = "f0c59", + }, + ["md-clipboard_play_multiple"] = { + ["char"] = "󱉩", + ["code"] = "f1269", + }, + ["md-clipboard_play_multiple_outline"] = { + ["char"] = "󱉪", + ["code"] = "f126a", + }, + ["md-clipboard_play_outline"] = { + ["char"] = "󰱚", + ["code"] = "f0c5a", + }, + ["md-clipboard_plus"] = { + ["char"] = "󰝑", + ["code"] = "f0751", + }, + ["md-clipboard_plus_outline"] = { + ["char"] = "󱌟", + ["code"] = "f131f", + }, + ["md-clipboard_pulse"] = { + ["char"] = "󰡝", + ["code"] = "f085d", + }, + ["md-clipboard_pulse_outline"] = { + ["char"] = "󰡞", + ["code"] = "f085e", + }, + ["md-clipboard_remove"] = { + ["char"] = "󱘜", + ["code"] = "f161c", + }, + ["md-clipboard_remove_outline"] = { + ["char"] = "󱘝", + ["code"] = "f161d", + }, + ["md-clipboard_search"] = { + ["char"] = "󱘞", + ["code"] = "f161e", + }, + ["md-clipboard_search_outline"] = { + ["char"] = "󱘟", + ["code"] = "f161f", + }, + ["md-clipboard_text"] = { + ["char"] = "󰅍", + ["code"] = "f014d", + }, + ["md-clipboard_text_clock"] = { + ["char"] = "󱣹", + ["code"] = "f18f9", + }, + ["md-clipboard_text_clock_outline"] = { + ["char"] = "󱣺", + ["code"] = "f18fa", + }, + ["md-clipboard_text_multiple"] = { + ["char"] = "󱉫", + ["code"] = "f126b", + }, + ["md-clipboard_text_multiple_outline"] = { + ["char"] = "󱉬", + ["code"] = "f126c", + }, + ["md-clipboard_text_off"] = { + ["char"] = "󱘠", + ["code"] = "f1620", + }, + ["md-clipboard_text_off_outline"] = { + ["char"] = "󱘡", + ["code"] = "f1621", + }, + ["md-clipboard_text_outline"] = { + ["char"] = "󰨸", + ["code"] = "f0a38", + }, + ["md-clipboard_text_play"] = { + ["char"] = "󰱛", + ["code"] = "f0c5b", + }, + ["md-clipboard_text_play_outline"] = { + ["char"] = "󰱜", + ["code"] = "f0c5c", + }, + ["md-clipboard_text_search"] = { + ["char"] = "󱘢", + ["code"] = "f1622", + }, + ["md-clipboard_text_search_outline"] = { + ["char"] = "󱘣", + ["code"] = "f1623", + }, + ["md-clippy"] = { + ["char"] = "󰅏", + ["code"] = "f014f", + }, + ["md-clock"] = { + ["char"] = "󰥔", + ["code"] = "f0954", + }, + ["md-clock_alert"] = { + ["char"] = "󰥕", + ["code"] = "f0955", + }, + ["md-clock_alert_outline"] = { + ["char"] = "󰗎", + ["code"] = "f05ce", + }, + ["md-clock_check"] = { + ["char"] = "󰾨", + ["code"] = "f0fa8", + }, + ["md-clock_check_outline"] = { + ["char"] = "󰾩", + ["code"] = "f0fa9", + }, + ["md-clock_digital"] = { + ["char"] = "󰺗", + ["code"] = "f0e97", + }, + ["md-clock_edit"] = { + ["char"] = "󱦺", + ["code"] = "f19ba", + }, + ["md-clock_edit_outline"] = { + ["char"] = "󱦻", + ["code"] = "f19bb", + }, + ["md-clock_end"] = { + ["char"] = "󰅑", + ["code"] = "f0151", + }, + ["md-clock_fast"] = { + ["char"] = "󰅒", + ["code"] = "f0152", + }, + ["md-clock_in"] = { + ["char"] = "󰅓", + ["code"] = "f0153", + }, + ["md-clock_minus"] = { + ["char"] = "󱡣", + ["code"] = "f1863", + }, + ["md-clock_minus_outline"] = { + ["char"] = "󱡤", + ["code"] = "f1864", + }, + ["md-clock_out"] = { + ["char"] = "󰅔", + ["code"] = "f0154", + }, + ["md-clock_outline"] = { + ["char"] = "󰅐", + ["code"] = "f0150", + }, + ["md-clock_plus"] = { + ["char"] = "󱡡", + ["code"] = "f1861", + }, + ["md-clock_plus_outline"] = { + ["char"] = "󱡢", + ["code"] = "f1862", + }, + ["md-clock_remove"] = { + ["char"] = "󱡥", + ["code"] = "f1865", + }, + ["md-clock_remove_outline"] = { + ["char"] = "󱡦", + ["code"] = "f1866", + }, + ["md-clock_start"] = { + ["char"] = "󰅕", + ["code"] = "f0155", + }, + ["md-clock_time_eight"] = { + ["char"] = "󱑆", + ["code"] = "f1446", + }, + ["md-clock_time_eight_outline"] = { + ["char"] = "󱑒", + ["code"] = "f1452", + }, + ["md-clock_time_eleven"] = { + ["char"] = "󱑉", + ["code"] = "f1449", + }, + ["md-clock_time_eleven_outline"] = { + ["char"] = "󱑕", + ["code"] = "f1455", + }, + ["md-clock_time_five"] = { + ["char"] = "󱑃", + ["code"] = "f1443", + }, + ["md-clock_time_five_outline"] = { + ["char"] = "󱑏", + ["code"] = "f144f", + }, + ["md-clock_time_four"] = { + ["char"] = "󱑂", + ["code"] = "f1442", + }, + ["md-clock_time_four_outline"] = { + ["char"] = "󱑎", + ["code"] = "f144e", + }, + ["md-clock_time_nine"] = { + ["char"] = "󱑇", + ["code"] = "f1447", + }, + ["md-clock_time_nine_outline"] = { + ["char"] = "󱑓", + ["code"] = "f1453", + }, + ["md-clock_time_one"] = { + ["char"] = "󱐿", + ["code"] = "f143f", + }, + ["md-clock_time_one_outline"] = { + ["char"] = "󱑋", + ["code"] = "f144b", + }, + ["md-clock_time_seven"] = { + ["char"] = "󱑅", + ["code"] = "f1445", + }, + ["md-clock_time_seven_outline"] = { + ["char"] = "󱑑", + ["code"] = "f1451", + }, + ["md-clock_time_six"] = { + ["char"] = "󱑄", + ["code"] = "f1444", + }, + ["md-clock_time_six_outline"] = { + ["char"] = "󱑐", + ["code"] = "f1450", + }, + ["md-clock_time_ten"] = { + ["char"] = "󱑈", + ["code"] = "f1448", + }, + ["md-clock_time_ten_outline"] = { + ["char"] = "󱑔", + ["code"] = "f1454", + }, + ["md-clock_time_three"] = { + ["char"] = "󱑁", + ["code"] = "f1441", + }, + ["md-clock_time_three_outline"] = { + ["char"] = "󱑍", + ["code"] = "f144d", + }, + ["md-clock_time_twelve"] = { + ["char"] = "󱑊", + ["code"] = "f144a", + }, + ["md-clock_time_twelve_outline"] = { + ["char"] = "󱑖", + ["code"] = "f1456", + }, + ["md-clock_time_two"] = { + ["char"] = "󱑀", + ["code"] = "f1440", + }, + ["md-clock_time_two_outline"] = { + ["char"] = "󱑌", + ["code"] = "f144c", + }, + ["md-close"] = { + ["char"] = "󰅖", + ["code"] = "f0156", + }, + ["md-close_box"] = { + ["char"] = "󰅗", + ["code"] = "f0157", + }, + ["md-close_box_multiple"] = { + ["char"] = "󰱝", + ["code"] = "f0c5d", + }, + ["md-close_box_multiple_outline"] = { + ["char"] = "󰱞", + ["code"] = "f0c5e", + }, + ["md-close_box_outline"] = { + ["char"] = "󰅘", + ["code"] = "f0158", + }, + ["md-close_circle"] = { + ["char"] = "󰅙", + ["code"] = "f0159", + }, + ["md-close_circle_multiple"] = { + ["char"] = "󰘪", + ["code"] = "f062a", + }, + ["md-close_circle_multiple_outline"] = { + ["char"] = "󰢃", + ["code"] = "f0883", + }, + ["md-close_circle_outline"] = { + ["char"] = "󰅚", + ["code"] = "f015a", + }, + ["md-close_network"] = { + ["char"] = "󰅛", + ["code"] = "f015b", + }, + ["md-close_network_outline"] = { + ["char"] = "󰱟", + ["code"] = "f0c5f", + }, + ["md-close_octagon"] = { + ["char"] = "󰅜", + ["code"] = "f015c", + }, + ["md-close_octagon_outline"] = { + ["char"] = "󰅝", + ["code"] = "f015d", + }, + ["md-close_outline"] = { + ["char"] = "󰛉", + ["code"] = "f06c9", + }, + ["md-close_thick"] = { + ["char"] = "󱎘", + ["code"] = "f1398", + }, + ["md-closed_caption"] = { + ["char"] = "󰅞", + ["code"] = "f015e", + }, + ["md-closed_caption_outline"] = { + ["char"] = "󰶽", + ["code"] = "f0dbd", + }, + ["md-cloud"] = { + ["char"] = "󰅟", + ["code"] = "f015f", + }, + ["md-cloud_alert"] = { + ["char"] = "󰧠", + ["code"] = "f09e0", + }, + ["md-cloud_braces"] = { + ["char"] = "󰞵", + ["code"] = "f07b5", + }, + ["md-cloud_check"] = { + ["char"] = "󰅠", + ["code"] = "f0160", + }, + ["md-cloud_check_outline"] = { + ["char"] = "󱋌", + ["code"] = "f12cc", + }, + ["md-cloud_circle"] = { + ["char"] = "󰅡", + ["code"] = "f0161", + }, + ["md-cloud_download"] = { + ["char"] = "󰅢", + ["code"] = "f0162", + }, + ["md-cloud_download_outline"] = { + ["char"] = "󰭽", + ["code"] = "f0b7d", + }, + ["md-cloud_lock"] = { + ["char"] = "󱇱", + ["code"] = "f11f1", + }, + ["md-cloud_lock_outline"] = { + ["char"] = "󱇲", + ["code"] = "f11f2", + }, + ["md-cloud_off_outline"] = { + ["char"] = "󰅤", + ["code"] = "f0164", + }, + ["md-cloud_outline"] = { + ["char"] = "󰅣", + ["code"] = "f0163", + }, + ["md-cloud_percent"] = { + ["char"] = "󱨵", + ["code"] = "f1a35", + }, + ["md-cloud_percent_outline"] = { + ["char"] = "󱨶", + ["code"] = "f1a36", + }, + ["md-cloud_print"] = { + ["char"] = "󰅥", + ["code"] = "f0165", + }, + ["md-cloud_print_outline"] = { + ["char"] = "󰅦", + ["code"] = "f0166", + }, + ["md-cloud_question"] = { + ["char"] = "󰨹", + ["code"] = "f0a39", + }, + ["md-cloud_refresh"] = { + ["char"] = "󰔪", + ["code"] = "f052a", + }, + ["md-cloud_search"] = { + ["char"] = "󰥖", + ["code"] = "f0956", + }, + ["md-cloud_search_outline"] = { + ["char"] = "󰥗", + ["code"] = "f0957", + }, + ["md-cloud_sync"] = { + ["char"] = "󰘿", + ["code"] = "f063f", + }, + ["md-cloud_sync_outline"] = { + ["char"] = "󱋖", + ["code"] = "f12d6", + }, + ["md-cloud_tags"] = { + ["char"] = "󰞶", + ["code"] = "f07b6", + }, + ["md-cloud_upload"] = { + ["char"] = "󰅧", + ["code"] = "f0167", + }, + ["md-cloud_upload_outline"] = { + ["char"] = "󰭾", + ["code"] = "f0b7e", + }, + ["md-clover"] = { + ["char"] = "󰠖", + ["code"] = "f0816", + }, + ["md-coach_lamp"] = { + ["char"] = "󱀠", + ["code"] = "f1020", + }, + ["md-coach_lamp_variant"] = { + ["char"] = "󱨷", + ["code"] = "f1a37", + }, + ["md-coat_rack"] = { + ["char"] = "󱂞", + ["code"] = "f109e", + }, + ["md-code_array"] = { + ["char"] = "󰅨", + ["code"] = "f0168", + }, + ["md-code_braces"] = { + ["char"] = "󰅩", + ["code"] = "f0169", + }, + ["md-code_braces_box"] = { + ["char"] = "󱃖", + ["code"] = "f10d6", + }, + ["md-code_brackets"] = { + ["char"] = "󰅪", + ["code"] = "f016a", + }, + ["md-code_equal"] = { + ["char"] = "󰅫", + ["code"] = "f016b", + }, + ["md-code_greater_than"] = { + ["char"] = "󰅬", + ["code"] = "f016c", + }, + ["md-code_greater_than_or_equal"] = { + ["char"] = "󰅭", + ["code"] = "f016d", + }, + ["md-code_json"] = { + ["char"] = "󰘦", + ["code"] = "f0626", + }, + ["md-code_less_than"] = { + ["char"] = "󰅮", + ["code"] = "f016e", + }, + ["md-code_less_than_or_equal"] = { + ["char"] = "󰅯", + ["code"] = "f016f", + }, + ["md-code_not_equal"] = { + ["char"] = "󰅰", + ["code"] = "f0170", + }, + ["md-code_not_equal_variant"] = { + ["char"] = "󰅱", + ["code"] = "f0171", + }, + ["md-code_parentheses"] = { + ["char"] = "󰅲", + ["code"] = "f0172", + }, + ["md-code_parentheses_box"] = { + ["char"] = "󱃗", + ["code"] = "f10d7", + }, + ["md-code_string"] = { + ["char"] = "󰅳", + ["code"] = "f0173", + }, + ["md-code_tags"] = { + ["char"] = "󰅴", + ["code"] = "f0174", + }, + ["md-code_tags_check"] = { + ["char"] = "󰚔", + ["code"] = "f0694", + }, + ["md-codepen"] = { + ["char"] = "󰅵", + ["code"] = "f0175", + }, + ["md-coffee"] = { + ["char"] = "󰅶", + ["code"] = "f0176", + }, + ["md-coffee_maker"] = { + ["char"] = "󱂟", + ["code"] = "f109f", + }, + ["md-coffee_maker_check"] = { + ["char"] = "󱤱", + ["code"] = "f1931", + }, + ["md-coffee_maker_check_outline"] = { + ["char"] = "󱤲", + ["code"] = "f1932", + }, + ["md-coffee_maker_outline"] = { + ["char"] = "󱠛", + ["code"] = "f181b", + }, + ["md-coffee_off"] = { + ["char"] = "󰾪", + ["code"] = "f0faa", + }, + ["md-coffee_off_outline"] = { + ["char"] = "󰾫", + ["code"] = "f0fab", + }, + ["md-coffee_outline"] = { + ["char"] = "󰛊", + ["code"] = "f06ca", + }, + ["md-coffee_to_go"] = { + ["char"] = "󰅷", + ["code"] = "f0177", + }, + ["md-coffee_to_go_outline"] = { + ["char"] = "󱌎", + ["code"] = "f130e", + }, + ["md-coffin"] = { + ["char"] = "󰭿", + ["code"] = "f0b7f", + }, + ["md-cog"] = { + ["char"] = "󰒓", + ["code"] = "f0493", + }, + ["md-cog_box"] = { + ["char"] = "󰒔", + ["code"] = "f0494", + }, + ["md-cog_clockwise"] = { + ["char"] = "󱇝", + ["code"] = "f11dd", + }, + ["md-cog_counterclockwise"] = { + ["char"] = "󱇞", + ["code"] = "f11de", + }, + ["md-cog_off"] = { + ["char"] = "󱏎", + ["code"] = "f13ce", + }, + ["md-cog_off_outline"] = { + ["char"] = "󱏏", + ["code"] = "f13cf", + }, + ["md-cog_outline"] = { + ["char"] = "󰢻", + ["code"] = "f08bb", + }, + ["md-cog_pause"] = { + ["char"] = "󱤳", + ["code"] = "f1933", + }, + ["md-cog_pause_outline"] = { + ["char"] = "󱤴", + ["code"] = "f1934", + }, + ["md-cog_play"] = { + ["char"] = "󱤵", + ["code"] = "f1935", + }, + ["md-cog_play_outline"] = { + ["char"] = "󱤶", + ["code"] = "f1936", + }, + ["md-cog_refresh"] = { + ["char"] = "󱑞", + ["code"] = "f145e", + }, + ["md-cog_refresh_outline"] = { + ["char"] = "󱑟", + ["code"] = "f145f", + }, + ["md-cog_stop"] = { + ["char"] = "󱤷", + ["code"] = "f1937", + }, + ["md-cog_stop_outline"] = { + ["char"] = "󱤸", + ["code"] = "f1938", + }, + ["md-cog_sync"] = { + ["char"] = "󱑠", + ["code"] = "f1460", + }, + ["md-cog_sync_outline"] = { + ["char"] = "󱑡", + ["code"] = "f1461", + }, + ["md-cog_transfer"] = { + ["char"] = "󱁛", + ["code"] = "f105b", + }, + ["md-cog_transfer_outline"] = { + ["char"] = "󱁜", + ["code"] = "f105c", + }, + ["md-cogs"] = { + ["char"] = "󰣖", + ["code"] = "f08d6", + }, + ["md-collage"] = { + ["char"] = "󰙀", + ["code"] = "f0640", + }, + ["md-collapse_all"] = { + ["char"] = "󰪦", + ["code"] = "f0aa6", + }, + ["md-collapse_all_outline"] = { + ["char"] = "󰪧", + ["code"] = "f0aa7", + }, + ["md-color_helper"] = { + ["char"] = "󰅹", + ["code"] = "f0179", + }, + ["md-comma"] = { + ["char"] = "󰸣", + ["code"] = "f0e23", + }, + ["md-comma_box"] = { + ["char"] = "󰸫", + ["code"] = "f0e2b", + }, + ["md-comma_box_outline"] = { + ["char"] = "󰸤", + ["code"] = "f0e24", + }, + ["md-comma_circle"] = { + ["char"] = "󰸥", + ["code"] = "f0e25", + }, + ["md-comma_circle_outline"] = { + ["char"] = "󰸦", + ["code"] = "f0e26", + }, + ["md-comment"] = { + ["char"] = "󰅺", + ["code"] = "f017a", + }, + ["md-comment_account"] = { + ["char"] = "󰅻", + ["code"] = "f017b", + }, + ["md-comment_account_outline"] = { + ["char"] = "󰅼", + ["code"] = "f017c", + }, + ["md-comment_alert"] = { + ["char"] = "󰅽", + ["code"] = "f017d", + }, + ["md-comment_alert_outline"] = { + ["char"] = "󰅾", + ["code"] = "f017e", + }, + ["md-comment_arrow_left"] = { + ["char"] = "󰧡", + ["code"] = "f09e1", + }, + ["md-comment_arrow_left_outline"] = { + ["char"] = "󰧢", + ["code"] = "f09e2", + }, + ["md-comment_arrow_right"] = { + ["char"] = "󰧣", + ["code"] = "f09e3", + }, + ["md-comment_arrow_right_outline"] = { + ["char"] = "󰧤", + ["code"] = "f09e4", + }, + ["md-comment_bookmark"] = { + ["char"] = "󱖮", + ["code"] = "f15ae", + }, + ["md-comment_bookmark_outline"] = { + ["char"] = "󱖯", + ["code"] = "f15af", + }, + ["md-comment_check"] = { + ["char"] = "󰅿", + ["code"] = "f017f", + }, + ["md-comment_check_outline"] = { + ["char"] = "󰆀", + ["code"] = "f0180", + }, + ["md-comment_edit"] = { + ["char"] = "󱆿", + ["code"] = "f11bf", + }, + ["md-comment_edit_outline"] = { + ["char"] = "󱋄", + ["code"] = "f12c4", + }, + ["md-comment_eye"] = { + ["char"] = "󰨺", + ["code"] = "f0a3a", + }, + ["md-comment_eye_outline"] = { + ["char"] = "󰨻", + ["code"] = "f0a3b", + }, + ["md-comment_flash"] = { + ["char"] = "󱖰", + ["code"] = "f15b0", + }, + ["md-comment_flash_outline"] = { + ["char"] = "󱖱", + ["code"] = "f15b1", + }, + ["md-comment_minus"] = { + ["char"] = "󱗟", + ["code"] = "f15df", + }, + ["md-comment_minus_outline"] = { + ["char"] = "󱗠", + ["code"] = "f15e0", + }, + ["md-comment_multiple"] = { + ["char"] = "󰡟", + ["code"] = "f085f", + }, + ["md-comment_multiple_outline"] = { + ["char"] = "󰆁", + ["code"] = "f0181", + }, + ["md-comment_off"] = { + ["char"] = "󱗡", + ["code"] = "f15e1", + }, + ["md-comment_off_outline"] = { + ["char"] = "󱗢", + ["code"] = "f15e2", + }, + ["md-comment_outline"] = { + ["char"] = "󰆂", + ["code"] = "f0182", + }, + ["md-comment_plus"] = { + ["char"] = "󰧥", + ["code"] = "f09e5", + }, + ["md-comment_plus_outline"] = { + ["char"] = "󰆃", + ["code"] = "f0183", + }, + ["md-comment_processing"] = { + ["char"] = "󰆄", + ["code"] = "f0184", + }, + ["md-comment_processing_outline"] = { + ["char"] = "󰆅", + ["code"] = "f0185", + }, + ["md-comment_question"] = { + ["char"] = "󰠗", + ["code"] = "f0817", + }, + ["md-comment_question_outline"] = { + ["char"] = "󰆆", + ["code"] = "f0186", + }, + ["md-comment_quote"] = { + ["char"] = "󱀡", + ["code"] = "f1021", + }, + ["md-comment_quote_outline"] = { + ["char"] = "󱀢", + ["code"] = "f1022", + }, + ["md-comment_remove"] = { + ["char"] = "󰗞", + ["code"] = "f05de", + }, + ["md-comment_remove_outline"] = { + ["char"] = "󰆇", + ["code"] = "f0187", + }, + ["md-comment_search"] = { + ["char"] = "󰨼", + ["code"] = "f0a3c", + }, + ["md-comment_search_outline"] = { + ["char"] = "󰨽", + ["code"] = "f0a3d", + }, + ["md-comment_text"] = { + ["char"] = "󰆈", + ["code"] = "f0188", + }, + ["md-comment_text_multiple"] = { + ["char"] = "󰡠", + ["code"] = "f0860", + }, + ["md-comment_text_multiple_outline"] = { + ["char"] = "󰡡", + ["code"] = "f0861", + }, + ["md-comment_text_outline"] = { + ["char"] = "󰆉", + ["code"] = "f0189", + }, + ["md-compare"] = { + ["char"] = "󰆊", + ["code"] = "f018a", + }, + ["md-compare_horizontal"] = { + ["char"] = "󱒒", + ["code"] = "f1492", + }, + ["md-compare_remove"] = { + ["char"] = "󱢳", + ["code"] = "f18b3", + }, + ["md-compare_vertical"] = { + ["char"] = "󱒓", + ["code"] = "f1493", + }, + ["md-compass"] = { + ["char"] = "󰆋", + ["code"] = "f018b", + }, + ["md-compass_off"] = { + ["char"] = "󰮀", + ["code"] = "f0b80", + }, + ["md-compass_off_outline"] = { + ["char"] = "󰮁", + ["code"] = "f0b81", + }, + ["md-compass_outline"] = { + ["char"] = "󰆌", + ["code"] = "f018c", + }, + ["md-compass_rose"] = { + ["char"] = "󱎂", + ["code"] = "f1382", + }, + ["md-compost"] = { + ["char"] = "󱨸", + ["code"] = "f1a38", + }, + ["md-cone"] = { + ["char"] = "󱥌", + ["code"] = "f194c", + }, + ["md-cone_off"] = { + ["char"] = "󱥍", + ["code"] = "f194d", + }, + ["md-connection"] = { + ["char"] = "󱘖", + ["code"] = "f1616", + }, + ["md-console"] = { + ["char"] = "󰆍", + ["code"] = "f018d", + }, + ["md-console_line"] = { + ["char"] = "󰞷", + ["code"] = "f07b7", + }, + ["md-console_network"] = { + ["char"] = "󰢩", + ["code"] = "f08a9", + }, + ["md-console_network_outline"] = { + ["char"] = "󰱠", + ["code"] = "f0c60", + }, + ["md-consolidate"] = { + ["char"] = "󱃘", + ["code"] = "f10d8", + }, + ["md-contactless_payment"] = { + ["char"] = "󰵪", + ["code"] = "f0d6a", + }, + ["md-contactless_payment_circle"] = { + ["char"] = "󰌡", + ["code"] = "f0321", + }, + ["md-contactless_payment_circle_outline"] = { + ["char"] = "󰐈", + ["code"] = "f0408", + }, + ["md-contacts"] = { + ["char"] = "󰛋", + ["code"] = "f06cb", + }, + ["md-contacts_outline"] = { + ["char"] = "󰖸", + ["code"] = "f05b8", + }, + ["md-contain"] = { + ["char"] = "󰨾", + ["code"] = "f0a3e", + }, + ["md-contain_end"] = { + ["char"] = "󰨿", + ["code"] = "f0a3f", + }, + ["md-contain_start"] = { + ["char"] = "󰩀", + ["code"] = "f0a40", + }, + ["md-content_copy"] = { + ["char"] = "󰆏", + ["code"] = "f018f", + }, + ["md-content_cut"] = { + ["char"] = "󰆐", + ["code"] = "f0190", + }, + ["md-content_duplicate"] = { + ["char"] = "󰆑", + ["code"] = "f0191", + }, + ["md-content_paste"] = { + ["char"] = "󰆒", + ["code"] = "f0192", + }, + ["md-content_save"] = { + ["char"] = "󰆓", + ["code"] = "f0193", + }, + ["md-content_save_alert"] = { + ["char"] = "󰽂", + ["code"] = "f0f42", + }, + ["md-content_save_alert_outline"] = { + ["char"] = "󰽃", + ["code"] = "f0f43", + }, + ["md-content_save_all"] = { + ["char"] = "󰆔", + ["code"] = "f0194", + }, + ["md-content_save_all_outline"] = { + ["char"] = "󰽄", + ["code"] = "f0f44", + }, + ["md-content_save_check"] = { + ["char"] = "󱣪", + ["code"] = "f18ea", + }, + ["md-content_save_check_outline"] = { + ["char"] = "󱣫", + ["code"] = "f18eb", + }, + ["md-content_save_cog"] = { + ["char"] = "󱑛", + ["code"] = "f145b", + }, + ["md-content_save_cog_outline"] = { + ["char"] = "󱑜", + ["code"] = "f145c", + }, + ["md-content_save_edit"] = { + ["char"] = "󰳻", + ["code"] = "f0cfb", + }, + ["md-content_save_edit_outline"] = { + ["char"] = "󰳼", + ["code"] = "f0cfc", + }, + ["md-content_save_move"] = { + ["char"] = "󰸧", + ["code"] = "f0e27", + }, + ["md-content_save_move_outline"] = { + ["char"] = "󰸨", + ["code"] = "f0e28", + }, + ["md-content_save_off"] = { + ["char"] = "󱙃", + ["code"] = "f1643", + }, + ["md-content_save_off_outline"] = { + ["char"] = "󱙄", + ["code"] = "f1644", + }, + ["md-content_save_outline"] = { + ["char"] = "󰠘", + ["code"] = "f0818", + }, + ["md-content_save_settings"] = { + ["char"] = "󰘛", + ["code"] = "f061b", + }, + ["md-content_save_settings_outline"] = { + ["char"] = "󰬮", + ["code"] = "f0b2e", + }, + ["md-contrast"] = { + ["char"] = "󰆕", + ["code"] = "f0195", + }, + ["md-contrast_box"] = { + ["char"] = "󰆖", + ["code"] = "f0196", + }, + ["md-contrast_circle"] = { + ["char"] = "󰆗", + ["code"] = "f0197", + }, + ["md-controller_classic"] = { + ["char"] = "󰮂", + ["code"] = "f0b82", + }, + ["md-controller_classic_outline"] = { + ["char"] = "󰮃", + ["code"] = "f0b83", + }, + ["md-cookie"] = { + ["char"] = "󰆘", + ["code"] = "f0198", + }, + ["md-cookie_alert"] = { + ["char"] = "󱛐", + ["code"] = "f16d0", + }, + ["md-cookie_alert_outline"] = { + ["char"] = "󱛑", + ["code"] = "f16d1", + }, + ["md-cookie_check"] = { + ["char"] = "󱛒", + ["code"] = "f16d2", + }, + ["md-cookie_check_outline"] = { + ["char"] = "󱛓", + ["code"] = "f16d3", + }, + ["md-cookie_clock"] = { + ["char"] = "󱛤", + ["code"] = "f16e4", + }, + ["md-cookie_clock_outline"] = { + ["char"] = "󱛥", + ["code"] = "f16e5", + }, + ["md-cookie_cog"] = { + ["char"] = "󱛔", + ["code"] = "f16d4", + }, + ["md-cookie_cog_outline"] = { + ["char"] = "󱛕", + ["code"] = "f16d5", + }, + ["md-cookie_edit"] = { + ["char"] = "󱛦", + ["code"] = "f16e6", + }, + ["md-cookie_edit_outline"] = { + ["char"] = "󱛧", + ["code"] = "f16e7", + }, + ["md-cookie_lock"] = { + ["char"] = "󱛨", + ["code"] = "f16e8", + }, + ["md-cookie_lock_outline"] = { + ["char"] = "󱛩", + ["code"] = "f16e9", + }, + ["md-cookie_minus"] = { + ["char"] = "󱛚", + ["code"] = "f16da", + }, + ["md-cookie_minus_outline"] = { + ["char"] = "󱛛", + ["code"] = "f16db", + }, + ["md-cookie_off"] = { + ["char"] = "󱛪", + ["code"] = "f16ea", + }, + ["md-cookie_off_outline"] = { + ["char"] = "󱛫", + ["code"] = "f16eb", + }, + ["md-cookie_outline"] = { + ["char"] = "󱛞", + ["code"] = "f16de", + }, + ["md-cookie_plus"] = { + ["char"] = "󱛖", + ["code"] = "f16d6", + }, + ["md-cookie_plus_outline"] = { + ["char"] = "󱛗", + ["code"] = "f16d7", + }, + ["md-cookie_refresh"] = { + ["char"] = "󱛬", + ["code"] = "f16ec", + }, + ["md-cookie_refresh_outline"] = { + ["char"] = "󱛭", + ["code"] = "f16ed", + }, + ["md-cookie_remove"] = { + ["char"] = "󱛘", + ["code"] = "f16d8", + }, + ["md-cookie_remove_outline"] = { + ["char"] = "󱛙", + ["code"] = "f16d9", + }, + ["md-cookie_settings"] = { + ["char"] = "󱛜", + ["code"] = "f16dc", + }, + ["md-cookie_settings_outline"] = { + ["char"] = "󱛝", + ["code"] = "f16dd", + }, + ["md-coolant_temperature"] = { + ["char"] = "󰏈", + ["code"] = "f03c8", + }, + ["md-copyleft"] = { + ["char"] = "󱤹", + ["code"] = "f1939", + }, + ["md-copyright"] = { + ["char"] = "󰗦", + ["code"] = "f05e6", + }, + ["md-cordova"] = { + ["char"] = "󰥘", + ["code"] = "f0958", + }, + ["md-corn"] = { + ["char"] = "󰞸", + ["code"] = "f07b8", + }, + ["md-corn_off"] = { + ["char"] = "󱏯", + ["code"] = "f13ef", + }, + ["md-cosine_wave"] = { + ["char"] = "󱑹", + ["code"] = "f1479", + }, + ["md-counter"] = { + ["char"] = "󰆙", + ["code"] = "f0199", + }, + ["md-countertop"] = { + ["char"] = "󱠜", + ["code"] = "f181c", + }, + ["md-countertop_outline"] = { + ["char"] = "󱠝", + ["code"] = "f181d", + }, + ["md-cow"] = { + ["char"] = "󰆚", + ["code"] = "f019a", + }, + ["md-cow_off"] = { + ["char"] = "󱣼", + ["code"] = "f18fc", + }, + ["md-cpu_32_bit"] = { + ["char"] = "󰻟", + ["code"] = "f0edf", + }, + ["md-cpu_64_bit"] = { + ["char"] = "󰻠", + ["code"] = "f0ee0", + }, + ["md-cradle"] = { + ["char"] = "󱦋", + ["code"] = "f198b", + }, + ["md-cradle_outline"] = { + ["char"] = "󱦑", + ["code"] = "f1991", + }, + ["md-crane"] = { + ["char"] = "󰡢", + ["code"] = "f0862", + }, + ["md-creation"] = { + ["char"] = "󰙴", + ["code"] = "f0674", + }, + ["md-creative_commons"] = { + ["char"] = "󰵫", + ["code"] = "f0d6b", + }, + ["md-credit_card"] = { + ["char"] = "󰿯", + ["code"] = "f0fef", + }, + ["md-credit_card_check"] = { + ["char"] = "󱏐", + ["code"] = "f13d0", + }, + ["md-credit_card_check_outline"] = { + ["char"] = "󱏑", + ["code"] = "f13d1", + }, + ["md-credit_card_chip"] = { + ["char"] = "󱤏", + ["code"] = "f190f", + }, + ["md-credit_card_chip_outline"] = { + ["char"] = "󱤐", + ["code"] = "f1910", + }, + ["md-credit_card_clock"] = { + ["char"] = "󰻡", + ["code"] = "f0ee1", + }, + ["md-credit_card_clock_outline"] = { + ["char"] = "󰻢", + ["code"] = "f0ee2", + }, + ["md-credit_card_edit"] = { + ["char"] = "󱟗", + ["code"] = "f17d7", + }, + ["md-credit_card_edit_outline"] = { + ["char"] = "󱟘", + ["code"] = "f17d8", + }, + ["md-credit_card_fast"] = { + ["char"] = "󱤑", + ["code"] = "f1911", + }, + ["md-credit_card_fast_outline"] = { + ["char"] = "󱤒", + ["code"] = "f1912", + }, + ["md-credit_card_lock"] = { + ["char"] = "󱣧", + ["code"] = "f18e7", + }, + ["md-credit_card_lock_outline"] = { + ["char"] = "󱣨", + ["code"] = "f18e8", + }, + ["md-credit_card_marker"] = { + ["char"] = "󰚨", + ["code"] = "f06a8", + }, + ["md-credit_card_marker_outline"] = { + ["char"] = "󰶾", + ["code"] = "f0dbe", + }, + ["md-credit_card_minus"] = { + ["char"] = "󰾬", + ["code"] = "f0fac", + }, + ["md-credit_card_minus_outline"] = { + ["char"] = "󰾭", + ["code"] = "f0fad", + }, + ["md-credit_card_multiple"] = { + ["char"] = "󰿰", + ["code"] = "f0ff0", + }, + ["md-credit_card_multiple_outline"] = { + ["char"] = "󰆜", + ["code"] = "f019c", + }, + ["md-credit_card_off"] = { + ["char"] = "󰿱", + ["code"] = "f0ff1", + }, + ["md-credit_card_off_outline"] = { + ["char"] = "󰗤", + ["code"] = "f05e4", + }, + ["md-credit_card_outline"] = { + ["char"] = "󰆛", + ["code"] = "f019b", + }, + ["md-credit_card_plus"] = { + ["char"] = "󰿲", + ["code"] = "f0ff2", + }, + ["md-credit_card_plus_outline"] = { + ["char"] = "󰙶", + ["code"] = "f0676", + }, + ["md-credit_card_refresh"] = { + ["char"] = "󱙅", + ["code"] = "f1645", + }, + ["md-credit_card_refresh_outline"] = { + ["char"] = "󱙆", + ["code"] = "f1646", + }, + ["md-credit_card_refund"] = { + ["char"] = "󰿳", + ["code"] = "f0ff3", + }, + ["md-credit_card_refund_outline"] = { + ["char"] = "󰪨", + ["code"] = "f0aa8", + }, + ["md-credit_card_remove"] = { + ["char"] = "󰾮", + ["code"] = "f0fae", + }, + ["md-credit_card_remove_outline"] = { + ["char"] = "󰾯", + ["code"] = "f0faf", + }, + ["md-credit_card_scan"] = { + ["char"] = "󰿴", + ["code"] = "f0ff4", + }, + ["md-credit_card_scan_outline"] = { + ["char"] = "󰆝", + ["code"] = "f019d", + }, + ["md-credit_card_search"] = { + ["char"] = "󱙇", + ["code"] = "f1647", + }, + ["md-credit_card_search_outline"] = { + ["char"] = "󱙈", + ["code"] = "f1648", + }, + ["md-credit_card_settings"] = { + ["char"] = "󰿵", + ["code"] = "f0ff5", + }, + ["md-credit_card_settings_outline"] = { + ["char"] = "󰣗", + ["code"] = "f08d7", + }, + ["md-credit_card_sync"] = { + ["char"] = "󱙉", + ["code"] = "f1649", + }, + ["md-credit_card_sync_outline"] = { + ["char"] = "󱙊", + ["code"] = "f164a", + }, + ["md-credit_card_wireless"] = { + ["char"] = "󰠂", + ["code"] = "f0802", + }, + ["md-credit_card_wireless_off"] = { + ["char"] = "󰕺", + ["code"] = "f057a", + }, + ["md-credit_card_wireless_off_outline"] = { + ["char"] = "󰕻", + ["code"] = "f057b", + }, + ["md-credit_card_wireless_outline"] = { + ["char"] = "󰵬", + ["code"] = "f0d6c", + }, + ["md-cricket"] = { + ["char"] = "󰵭", + ["code"] = "f0d6d", + }, + ["md-crop"] = { + ["char"] = "󰆞", + ["code"] = "f019e", + }, + ["md-crop_free"] = { + ["char"] = "󰆟", + ["code"] = "f019f", + }, + ["md-crop_landscape"] = { + ["char"] = "󰆠", + ["code"] = "f01a0", + }, + ["md-crop_portrait"] = { + ["char"] = "󰆡", + ["code"] = "f01a1", + }, + ["md-crop_rotate"] = { + ["char"] = "󰚖", + ["code"] = "f0696", + }, + ["md-crop_square"] = { + ["char"] = "󰆢", + ["code"] = "f01a2", + }, + ["md-cross"] = { + ["char"] = "󰥓", + ["code"] = "f0953", + }, + ["md-cross_bolnisi"] = { + ["char"] = "󰳭", + ["code"] = "f0ced", + }, + ["md-cross_celtic"] = { + ["char"] = "󰳵", + ["code"] = "f0cf5", + }, + ["md-cross_outline"] = { + ["char"] = "󰳶", + ["code"] = "f0cf6", + }, + ["md-crosshairs"] = { + ["char"] = "󰆣", + ["code"] = "f01a3", + }, + ["md-crosshairs_gps"] = { + ["char"] = "󰆤", + ["code"] = "f01a4", + }, + ["md-crosshairs_off"] = { + ["char"] = "󰽅", + ["code"] = "f0f45", + }, + ["md-crosshairs_question"] = { + ["char"] = "󱄶", + ["code"] = "f1136", + }, + ["md-crowd"] = { + ["char"] = "󱥵", + ["code"] = "f1975", + }, + ["md-crown"] = { + ["char"] = "󰆥", + ["code"] = "f01a5", + }, + ["md-crown_circle"] = { + ["char"] = "󱟜", + ["code"] = "f17dc", + }, + ["md-crown_circle_outline"] = { + ["char"] = "󱟝", + ["code"] = "f17dd", + }, + ["md-crown_outline"] = { + ["char"] = "󱇐", + ["code"] = "f11d0", + }, + ["md-cryengine"] = { + ["char"] = "󰥙", + ["code"] = "f0959", + }, + ["md-crystal_ball"] = { + ["char"] = "󰬯", + ["code"] = "f0b2f", + }, + ["md-cube"] = { + ["char"] = "󰆦", + ["code"] = "f01a6", + }, + ["md-cube_off"] = { + ["char"] = "󱐜", + ["code"] = "f141c", + }, + ["md-cube_off_outline"] = { + ["char"] = "󱐝", + ["code"] = "f141d", + }, + ["md-cube_outline"] = { + ["char"] = "󰆧", + ["code"] = "f01a7", + }, + ["md-cube_scan"] = { + ["char"] = "󰮄", + ["code"] = "f0b84", + }, + ["md-cube_send"] = { + ["char"] = "󰆨", + ["code"] = "f01a8", + }, + ["md-cube_unfolded"] = { + ["char"] = "󰆩", + ["code"] = "f01a9", + }, + ["md-cup"] = { + ["char"] = "󰆪", + ["code"] = "f01aa", + }, + ["md-cup_off"] = { + ["char"] = "󰗥", + ["code"] = "f05e5", + }, + ["md-cup_off_outline"] = { + ["char"] = "󱍽", + ["code"] = "f137d", + }, + ["md-cup_outline"] = { + ["char"] = "󱌏", + ["code"] = "f130f", + }, + ["md-cup_water"] = { + ["char"] = "󰆫", + ["code"] = "f01ab", + }, + ["md-cupboard"] = { + ["char"] = "󰽆", + ["code"] = "f0f46", + }, + ["md-cupboard_outline"] = { + ["char"] = "󰽇", + ["code"] = "f0f47", + }, + ["md-cupcake"] = { + ["char"] = "󰥚", + ["code"] = "f095a", + }, + ["md-curling"] = { + ["char"] = "󰡣", + ["code"] = "f0863", + }, + ["md-currency_bdt"] = { + ["char"] = "󰡤", + ["code"] = "f0864", + }, + ["md-currency_brl"] = { + ["char"] = "󰮅", + ["code"] = "f0b85", + }, + ["md-currency_btc"] = { + ["char"] = "󰆬", + ["code"] = "f01ac", + }, + ["md-currency_cny"] = { + ["char"] = "󰞺", + ["code"] = "f07ba", + }, + ["md-currency_eth"] = { + ["char"] = "󰞻", + ["code"] = "f07bb", + }, + ["md-currency_eur"] = { + ["char"] = "󰆭", + ["code"] = "f01ad", + }, + ["md-currency_eur_off"] = { + ["char"] = "󱌕", + ["code"] = "f1315", + }, + ["md-currency_fra"] = { + ["char"] = "󱨹", + ["code"] = "f1a39", + }, + ["md-currency_gbp"] = { + ["char"] = "󰆮", + ["code"] = "f01ae", + }, + ["md-currency_ils"] = { + ["char"] = "󰱡", + ["code"] = "f0c61", + }, + ["md-currency_inr"] = { + ["char"] = "󰆯", + ["code"] = "f01af", + }, + ["md-currency_jpy"] = { + ["char"] = "󰞼", + ["code"] = "f07bc", + }, + ["md-currency_krw"] = { + ["char"] = "󰞽", + ["code"] = "f07bd", + }, + ["md-currency_kzt"] = { + ["char"] = "󰡥", + ["code"] = "f0865", + }, + ["md-currency_mnt"] = { + ["char"] = "󱔒", + ["code"] = "f1512", + }, + ["md-currency_ngn"] = { + ["char"] = "󰆰", + ["code"] = "f01b0", + }, + ["md-currency_php"] = { + ["char"] = "󰧦", + ["code"] = "f09e6", + }, + ["md-currency_rial"] = { + ["char"] = "󰺜", + ["code"] = "f0e9c", + }, + ["md-currency_rub"] = { + ["char"] = "󰆱", + ["code"] = "f01b1", + }, + ["md-currency_rupee"] = { + ["char"] = "󱥶", + ["code"] = "f1976", + }, + ["md-currency_sign"] = { + ["char"] = "󰞾", + ["code"] = "f07be", + }, + ["md-currency_try"] = { + ["char"] = "󰆲", + ["code"] = "f01b2", + }, + ["md-currency_twd"] = { + ["char"] = "󰞿", + ["code"] = "f07bf", + }, + ["md-currency_usd"] = { + ["char"] = "󰇁", + ["code"] = "f01c1", + }, + ["md-currency_usd_off"] = { + ["char"] = "󰙺", + ["code"] = "f067a", + }, + ["md-current_ac"] = { + ["char"] = "󱒀", + ["code"] = "f1480", + }, + ["md-current_dc"] = { + ["char"] = "󰥜", + ["code"] = "f095c", + }, + ["md-cursor_default"] = { + ["char"] = "󰇀", + ["code"] = "f01c0", + }, + ["md-cursor_default_click"] = { + ["char"] = "󰳽", + ["code"] = "f0cfd", + }, + ["md-cursor_default_click_outline"] = { + ["char"] = "󰳾", + ["code"] = "f0cfe", + }, + ["md-cursor_default_gesture"] = { + ["char"] = "󱄧", + ["code"] = "f1127", + }, + ["md-cursor_default_gesture_outline"] = { + ["char"] = "󱄨", + ["code"] = "f1128", + }, + ["md-cursor_default_outline"] = { + ["char"] = "󰆿", + ["code"] = "f01bf", + }, + ["md-cursor_move"] = { + ["char"] = "󰆾", + ["code"] = "f01be", + }, + ["md-cursor_pointer"] = { + ["char"] = "󰆽", + ["code"] = "f01bd", + }, + ["md-cursor_text"] = { + ["char"] = "󰗧", + ["code"] = "f05e7", + }, + ["md-curtains"] = { + ["char"] = "󱡆", + ["code"] = "f1846", + }, + ["md-curtains_closed"] = { + ["char"] = "󱡇", + ["code"] = "f1847", + }, + ["md-cylinder"] = { + ["char"] = "󱥎", + ["code"] = "f194e", + }, + ["md-cylinder_off"] = { + ["char"] = "󱥏", + ["code"] = "f194f", + }, + ["md-dance_ballroom"] = { + ["char"] = "󱗻", + ["code"] = "f15fb", + }, + ["md-dance_pole"] = { + ["char"] = "󱕸", + ["code"] = "f1578", + }, + ["md-data_matrix"] = { + ["char"] = "󱔼", + ["code"] = "f153c", + }, + ["md-data_matrix_edit"] = { + ["char"] = "󱔽", + ["code"] = "f153d", + }, + ["md-data_matrix_minus"] = { + ["char"] = "󱔾", + ["code"] = "f153e", + }, + ["md-data_matrix_plus"] = { + ["char"] = "󱔿", + ["code"] = "f153f", + }, + ["md-data_matrix_remove"] = { + ["char"] = "󱕀", + ["code"] = "f1540", + }, + ["md-data_matrix_scan"] = { + ["char"] = "󱕁", + ["code"] = "f1541", + }, + ["md-database"] = { + ["char"] = "󰆼", + ["code"] = "f01bc", + }, + ["md-database_alert"] = { + ["char"] = "󱘺", + ["code"] = "f163a", + }, + ["md-database_alert_outline"] = { + ["char"] = "󱘤", + ["code"] = "f1624", + }, + ["md-database_arrow_down"] = { + ["char"] = "󱘻", + ["code"] = "f163b", + }, + ["md-database_arrow_down_outline"] = { + ["char"] = "󱘥", + ["code"] = "f1625", + }, + ["md-database_arrow_left"] = { + ["char"] = "󱘼", + ["code"] = "f163c", + }, + ["md-database_arrow_left_outline"] = { + ["char"] = "󱘦", + ["code"] = "f1626", + }, + ["md-database_arrow_right"] = { + ["char"] = "󱘽", + ["code"] = "f163d", + }, + ["md-database_arrow_right_outline"] = { + ["char"] = "󱘧", + ["code"] = "f1627", + }, + ["md-database_arrow_up"] = { + ["char"] = "󱘾", + ["code"] = "f163e", + }, + ["md-database_arrow_up_outline"] = { + ["char"] = "󱘨", + ["code"] = "f1628", + }, + ["md-database_check"] = { + ["char"] = "󰪩", + ["code"] = "f0aa9", + }, + ["md-database_check_outline"] = { + ["char"] = "󱘩", + ["code"] = "f1629", + }, + ["md-database_clock"] = { + ["char"] = "󱘿", + ["code"] = "f163f", + }, + ["md-database_clock_outline"] = { + ["char"] = "󱘪", + ["code"] = "f162a", + }, + ["md-database_cog"] = { + ["char"] = "󱙋", + ["code"] = "f164b", + }, + ["md-database_cog_outline"] = { + ["char"] = "󱙌", + ["code"] = "f164c", + }, + ["md-database_edit"] = { + ["char"] = "󰮆", + ["code"] = "f0b86", + }, + ["md-database_edit_outline"] = { + ["char"] = "󱘫", + ["code"] = "f162b", + }, + ["md-database_export"] = { + ["char"] = "󰥞", + ["code"] = "f095e", + }, + ["md-database_export_outline"] = { + ["char"] = "󱘬", + ["code"] = "f162c", + }, + ["md-database_eye"] = { + ["char"] = "󱤟", + ["code"] = "f191f", + }, + ["md-database_eye_off"] = { + ["char"] = "󱤠", + ["code"] = "f1920", + }, + ["md-database_eye_off_outline"] = { + ["char"] = "󱤡", + ["code"] = "f1921", + }, + ["md-database_eye_outline"] = { + ["char"] = "󱤢", + ["code"] = "f1922", + }, + ["md-database_import"] = { + ["char"] = "󰥝", + ["code"] = "f095d", + }, + ["md-database_import_outline"] = { + ["char"] = "󱘭", + ["code"] = "f162d", + }, + ["md-database_lock"] = { + ["char"] = "󰪪", + ["code"] = "f0aaa", + }, + ["md-database_lock_outline"] = { + ["char"] = "󱘮", + ["code"] = "f162e", + }, + ["md-database_marker"] = { + ["char"] = "󱋶", + ["code"] = "f12f6", + }, + ["md-database_marker_outline"] = { + ["char"] = "󱘯", + ["code"] = "f162f", + }, + ["md-database_minus"] = { + ["char"] = "󰆻", + ["code"] = "f01bb", + }, + ["md-database_minus_outline"] = { + ["char"] = "󱘰", + ["code"] = "f1630", + }, + ["md-database_off"] = { + ["char"] = "󱙀", + ["code"] = "f1640", + }, + ["md-database_off_outline"] = { + ["char"] = "󱘱", + ["code"] = "f1631", + }, + ["md-database_outline"] = { + ["char"] = "󱘲", + ["code"] = "f1632", + }, + ["md-database_plus"] = { + ["char"] = "󰆺", + ["code"] = "f01ba", + }, + ["md-database_plus_outline"] = { + ["char"] = "󱘳", + ["code"] = "f1633", + }, + ["md-database_refresh"] = { + ["char"] = "󰗂", + ["code"] = "f05c2", + }, + ["md-database_refresh_outline"] = { + ["char"] = "󱘴", + ["code"] = "f1634", + }, + ["md-database_remove"] = { + ["char"] = "󰴀", + ["code"] = "f0d00", + }, + ["md-database_remove_outline"] = { + ["char"] = "󱘵", + ["code"] = "f1635", + }, + ["md-database_search"] = { + ["char"] = "󰡦", + ["code"] = "f0866", + }, + ["md-database_search_outline"] = { + ["char"] = "󱘶", + ["code"] = "f1636", + }, + ["md-database_settings"] = { + ["char"] = "󰴁", + ["code"] = "f0d01", + }, + ["md-database_settings_outline"] = { + ["char"] = "󱘷", + ["code"] = "f1637", + }, + ["md-database_sync"] = { + ["char"] = "󰳿", + ["code"] = "f0cff", + }, + ["md-database_sync_outline"] = { + ["char"] = "󱘸", + ["code"] = "f1638", + }, + ["md-death_star"] = { + ["char"] = "󰣘", + ["code"] = "f08d8", + }, + ["md-death_star_variant"] = { + ["char"] = "󰣙", + ["code"] = "f08d9", + }, + ["md-deathly_hallows"] = { + ["char"] = "󰮇", + ["code"] = "f0b87", + }, + ["md-debian"] = { + ["char"] = "󰣚", + ["code"] = "f08da", + }, + ["md-debug_step_into"] = { + ["char"] = "󰆹", + ["code"] = "f01b9", + }, + ["md-debug_step_out"] = { + ["char"] = "󰆸", + ["code"] = "f01b8", + }, + ["md-debug_step_over"] = { + ["char"] = "󰆷", + ["code"] = "f01b7", + }, + ["md-decagram"] = { + ["char"] = "󰝬", + ["code"] = "f076c", + }, + ["md-decagram_outline"] = { + ["char"] = "󰝭", + ["code"] = "f076d", + }, + ["md-decimal"] = { + ["char"] = "󱂡", + ["code"] = "f10a1", + }, + ["md-decimal_comma"] = { + ["char"] = "󱂢", + ["code"] = "f10a2", + }, + ["md-decimal_comma_decrease"] = { + ["char"] = "󱂣", + ["code"] = "f10a3", + }, + ["md-decimal_comma_increase"] = { + ["char"] = "󱂤", + ["code"] = "f10a4", + }, + ["md-decimal_decrease"] = { + ["char"] = "󰆶", + ["code"] = "f01b6", + }, + ["md-decimal_increase"] = { + ["char"] = "󰆵", + ["code"] = "f01b5", + }, + ["md-delete"] = { + ["char"] = "󰆴", + ["code"] = "f01b4", + }, + ["md-delete_alert"] = { + ["char"] = "󱂥", + ["code"] = "f10a5", + }, + ["md-delete_alert_outline"] = { + ["char"] = "󱂦", + ["code"] = "f10a6", + }, + ["md-delete_circle"] = { + ["char"] = "󰚃", + ["code"] = "f0683", + }, + ["md-delete_circle_outline"] = { + ["char"] = "󰮈", + ["code"] = "f0b88", + }, + ["md-delete_clock"] = { + ["char"] = "󱕖", + ["code"] = "f1556", + }, + ["md-delete_clock_outline"] = { + ["char"] = "󱕗", + ["code"] = "f1557", + }, + ["md-delete_empty"] = { + ["char"] = "󰛌", + ["code"] = "f06cc", + }, + ["md-delete_empty_outline"] = { + ["char"] = "󰺝", + ["code"] = "f0e9d", + }, + ["md-delete_forever"] = { + ["char"] = "󰗨", + ["code"] = "f05e8", + }, + ["md-delete_forever_outline"] = { + ["char"] = "󰮉", + ["code"] = "f0b89", + }, + ["md-delete_off"] = { + ["char"] = "󱂧", + ["code"] = "f10a7", + }, + ["md-delete_off_outline"] = { + ["char"] = "󱂨", + ["code"] = "f10a8", + }, + ["md-delete_outline"] = { + ["char"] = "󰧧", + ["code"] = "f09e7", + }, + ["md-delete_restore"] = { + ["char"] = "󰠙", + ["code"] = "f0819", + }, + ["md-delete_sweep"] = { + ["char"] = "󰗩", + ["code"] = "f05e9", + }, + ["md-delete_sweep_outline"] = { + ["char"] = "󰱢", + ["code"] = "f0c62", + }, + ["md-delete_variant"] = { + ["char"] = "󰆳", + ["code"] = "f01b3", + }, + ["md-delta"] = { + ["char"] = "󰇂", + ["code"] = "f01c2", + }, + ["md-desk"] = { + ["char"] = "󱈹", + ["code"] = "f1239", + }, + ["md-desk_lamp"] = { + ["char"] = "󰥟", + ["code"] = "f095f", + }, + ["md-deskphone"] = { + ["char"] = "󰇃", + ["code"] = "f01c3", + }, + ["md-desktop_classic"] = { + ["char"] = "󰟀", + ["code"] = "f07c0", + }, + ["md-desktop_mac"] = { + ["char"] = "󰇄", + ["code"] = "f01c4", + }, + ["md-desktop_mac_dashboard"] = { + ["char"] = "󰧨", + ["code"] = "f09e8", + }, + ["md-desktop_tower"] = { + ["char"] = "󰇅", + ["code"] = "f01c5", + }, + ["md-desktop_tower_monitor"] = { + ["char"] = "󰪫", + ["code"] = "f0aab", + }, + ["md-details"] = { + ["char"] = "󰇆", + ["code"] = "f01c6", + }, + ["md-dev_to"] = { + ["char"] = "󰵮", + ["code"] = "f0d6e", + }, + ["md-developer_board"] = { + ["char"] = "󰚗", + ["code"] = "f0697", + }, + ["md-deviantart"] = { + ["char"] = "󰇇", + ["code"] = "f01c7", + }, + ["md-devices"] = { + ["char"] = "󰾰", + ["code"] = "f0fb0", + }, + ["md-dharmachakra"] = { + ["char"] = "󰥋", + ["code"] = "f094b", + }, + ["md-diabetes"] = { + ["char"] = "󱄦", + ["code"] = "f1126", + }, + ["md-dialpad"] = { + ["char"] = "󰘜", + ["code"] = "f061c", + }, + ["md-diameter"] = { + ["char"] = "󰱣", + ["code"] = "f0c63", + }, + ["md-diameter_outline"] = { + ["char"] = "󰱤", + ["code"] = "f0c64", + }, + ["md-diameter_variant"] = { + ["char"] = "󰱥", + ["code"] = "f0c65", + }, + ["md-diamond"] = { + ["char"] = "󰮊", + ["code"] = "f0b8a", + }, + ["md-diamond_outline"] = { + ["char"] = "󰮋", + ["code"] = "f0b8b", + }, + ["md-diamond_stone"] = { + ["char"] = "󰇈", + ["code"] = "f01c8", + }, + ["md-dice_1"] = { + ["char"] = "󰇊", + ["code"] = "f01ca", + }, + ["md-dice_1_outline"] = { + ["char"] = "󱅊", + ["code"] = "f114a", + }, + ["md-dice_2"] = { + ["char"] = "󰇋", + ["code"] = "f01cb", + }, + ["md-dice_2_outline"] = { + ["char"] = "󱅋", + ["code"] = "f114b", + }, + ["md-dice_3"] = { + ["char"] = "󰇌", + ["code"] = "f01cc", + }, + ["md-dice_3_outline"] = { + ["char"] = "󱅌", + ["code"] = "f114c", + }, + ["md-dice_4"] = { + ["char"] = "󰇍", + ["code"] = "f01cd", + }, + ["md-dice_4_outline"] = { + ["char"] = "󱅍", + ["code"] = "f114d", + }, + ["md-dice_5"] = { + ["char"] = "󰇎", + ["code"] = "f01ce", + }, + ["md-dice_5_outline"] = { + ["char"] = "󱅎", + ["code"] = "f114e", + }, + ["md-dice_6"] = { + ["char"] = "󰇏", + ["code"] = "f01cf", + }, + ["md-dice_6_outline"] = { + ["char"] = "󱅏", + ["code"] = "f114f", + }, + ["md-dice_d10"] = { + ["char"] = "󱅓", + ["code"] = "f1153", + }, + ["md-dice_d10_outline"] = { + ["char"] = "󰝯", + ["code"] = "f076f", + }, + ["md-dice_d12"] = { + ["char"] = "󱅔", + ["code"] = "f1154", + }, + ["md-dice_d12_outline"] = { + ["char"] = "󰡧", + ["code"] = "f0867", + }, + ["md-dice_d20"] = { + ["char"] = "󱅕", + ["code"] = "f1155", + }, + ["md-dice_d20_outline"] = { + ["char"] = "󰗪", + ["code"] = "f05ea", + }, + ["md-dice_d4"] = { + ["char"] = "󱅐", + ["code"] = "f1150", + }, + ["md-dice_d4_outline"] = { + ["char"] = "󰗫", + ["code"] = "f05eb", + }, + ["md-dice_d6"] = { + ["char"] = "󱅑", + ["code"] = "f1151", + }, + ["md-dice_d6_outline"] = { + ["char"] = "󰗭", + ["code"] = "f05ed", + }, + ["md-dice_d8"] = { + ["char"] = "󱅒", + ["code"] = "f1152", + }, + ["md-dice_d8_outline"] = { + ["char"] = "󰗬", + ["code"] = "f05ec", + }, + ["md-dice_multiple"] = { + ["char"] = "󰝮", + ["code"] = "f076e", + }, + ["md-dice_multiple_outline"] = { + ["char"] = "󱅖", + ["code"] = "f1156", + }, + ["md-digital_ocean"] = { + ["char"] = "󱈷", + ["code"] = "f1237", + }, + ["md-dip_switch"] = { + ["char"] = "󰟁", + ["code"] = "f07c1", + }, + ["md-directions"] = { + ["char"] = "󰇐", + ["code"] = "f01d0", + }, + ["md-directions_fork"] = { + ["char"] = "󰙁", + ["code"] = "f0641", + }, + ["md-disc"] = { + ["char"] = "󰗮", + ["code"] = "f05ee", + }, + ["md-disc_alert"] = { + ["char"] = "󰇑", + ["code"] = "f01d1", + }, + ["md-disc_player"] = { + ["char"] = "󰥠", + ["code"] = "f0960", + }, + ["md-discord"] = { + ["char"] = "󰙯", + ["code"] = "f066f", + }, + ["md-dishwasher"] = { + ["char"] = "󰪬", + ["code"] = "f0aac", + }, + ["md-dishwasher_alert"] = { + ["char"] = "󱆸", + ["code"] = "f11b8", + }, + ["md-dishwasher_off"] = { + ["char"] = "󱆹", + ["code"] = "f11b9", + }, + ["md-disqus"] = { + ["char"] = "󰇒", + ["code"] = "f01d2", + }, + ["md-distribute_horizontal_center"] = { + ["char"] = "󱇉", + ["code"] = "f11c9", + }, + ["md-distribute_horizontal_left"] = { + ["char"] = "󱇈", + ["code"] = "f11c8", + }, + ["md-distribute_horizontal_right"] = { + ["char"] = "󱇊", + ["code"] = "f11ca", + }, + ["md-distribute_vertical_bottom"] = { + ["char"] = "󱇋", + ["code"] = "f11cb", + }, + ["md-distribute_vertical_center"] = { + ["char"] = "󱇌", + ["code"] = "f11cc", + }, + ["md-distribute_vertical_top"] = { + ["char"] = "󱇍", + ["code"] = "f11cd", + }, + ["md-diversify"] = { + ["char"] = "󱡷", + ["code"] = "f1877", + }, + ["md-diving"] = { + ["char"] = "󱥷", + ["code"] = "f1977", + }, + ["md-diving_flippers"] = { + ["char"] = "󰶿", + ["code"] = "f0dbf", + }, + ["md-diving_helmet"] = { + ["char"] = "󰷀", + ["code"] = "f0dc0", + }, + ["md-diving_scuba"] = { + ["char"] = "󰷁", + ["code"] = "f0dc1", + }, + ["md-diving_scuba_flag"] = { + ["char"] = "󰷂", + ["code"] = "f0dc2", + }, + ["md-diving_scuba_tank"] = { + ["char"] = "󰷃", + ["code"] = "f0dc3", + }, + ["md-diving_scuba_tank_multiple"] = { + ["char"] = "󰷄", + ["code"] = "f0dc4", + }, + ["md-diving_snorkel"] = { + ["char"] = "󰷅", + ["code"] = "f0dc5", + }, + ["md-division"] = { + ["char"] = "󰇔", + ["code"] = "f01d4", + }, + ["md-division_box"] = { + ["char"] = "󰇕", + ["code"] = "f01d5", + }, + ["md-dlna"] = { + ["char"] = "󰩁", + ["code"] = "f0a41", + }, + ["md-dna"] = { + ["char"] = "󰚄", + ["code"] = "f0684", + }, + ["md-dns"] = { + ["char"] = "󰇖", + ["code"] = "f01d6", + }, + ["md-dns_outline"] = { + ["char"] = "󰮌", + ["code"] = "f0b8c", + }, + ["md-dock_bottom"] = { + ["char"] = "󱂩", + ["code"] = "f10a9", + }, + ["md-dock_left"] = { + ["char"] = "󱂪", + ["code"] = "f10aa", + }, + ["md-dock_right"] = { + ["char"] = "󱂫", + ["code"] = "f10ab", + }, + ["md-dock_top"] = { + ["char"] = "󱔓", + ["code"] = "f1513", + }, + ["md-dock_window"] = { + ["char"] = "󱂬", + ["code"] = "f10ac", + }, + ["md-docker"] = { + ["char"] = "󰡨", + ["code"] = "f0868", + }, + ["md-doctor"] = { + ["char"] = "󰩂", + ["code"] = "f0a42", + }, + ["md-dog"] = { + ["char"] = "󰩃", + ["code"] = "f0a43", + }, + ["md-dog_service"] = { + ["char"] = "󰪭", + ["code"] = "f0aad", + }, + ["md-dog_side"] = { + ["char"] = "󰩄", + ["code"] = "f0a44", + }, + ["md-dog_side_off"] = { + ["char"] = "󱛮", + ["code"] = "f16ee", + }, + ["md-dolby"] = { + ["char"] = "󰚳", + ["code"] = "f06b3", + }, + ["md-dolly"] = { + ["char"] = "󰺞", + ["code"] = "f0e9e", + }, + ["md-dolphin"] = { + ["char"] = "󱢴", + ["code"] = "f18b4", + }, + ["md-domain"] = { + ["char"] = "󰇗", + ["code"] = "f01d7", + }, + ["md-domain_off"] = { + ["char"] = "󰵯", + ["code"] = "f0d6f", + }, + ["md-domain_plus"] = { + ["char"] = "󱂭", + ["code"] = "f10ad", + }, + ["md-domain_remove"] = { + ["char"] = "󱂮", + ["code"] = "f10ae", + }, + ["md-dome_light"] = { + ["char"] = "󱐞", + ["code"] = "f141e", + }, + ["md-domino_mask"] = { + ["char"] = "󱀣", + ["code"] = "f1023", + }, + ["md-donkey"] = { + ["char"] = "󰟂", + ["code"] = "f07c2", + }, + ["md-door"] = { + ["char"] = "󰠚", + ["code"] = "f081a", + }, + ["md-door_closed"] = { + ["char"] = "󰠛", + ["code"] = "f081b", + }, + ["md-door_closed_lock"] = { + ["char"] = "󱂯", + ["code"] = "f10af", + }, + ["md-door_open"] = { + ["char"] = "󰠜", + ["code"] = "f081c", + }, + ["md-door_sliding"] = { + ["char"] = "󱠞", + ["code"] = "f181e", + }, + ["md-door_sliding_lock"] = { + ["char"] = "󱠟", + ["code"] = "f181f", + }, + ["md-door_sliding_open"] = { + ["char"] = "󱠠", + ["code"] = "f1820", + }, + ["md-doorbell"] = { + ["char"] = "󱋦", + ["code"] = "f12e6", + }, + ["md-doorbell_video"] = { + ["char"] = "󰡩", + ["code"] = "f0869", + }, + ["md-dot_net"] = { + ["char"] = "󰪮", + ["code"] = "f0aae", + }, + ["md-dots_circle"] = { + ["char"] = "󱥸", + ["code"] = "f1978", + }, + ["md-dots_grid"] = { + ["char"] = "󱗼", + ["code"] = "f15fc", + }, + ["md-dots_hexagon"] = { + ["char"] = "󱗿", + ["code"] = "f15ff", + }, + ["md-dots_horizontal"] = { + ["char"] = "󰇘", + ["code"] = "f01d8", + }, + ["md-dots_horizontal_circle"] = { + ["char"] = "󰟃", + ["code"] = "f07c3", + }, + ["md-dots_horizontal_circle_outline"] = { + ["char"] = "󰮍", + ["code"] = "f0b8d", + }, + ["md-dots_square"] = { + ["char"] = "󱗽", + ["code"] = "f15fd", + }, + ["md-dots_triangle"] = { + ["char"] = "󱗾", + ["code"] = "f15fe", + }, + ["md-dots_vertical"] = { + ["char"] = "󰇙", + ["code"] = "f01d9", + }, + ["md-dots_vertical_circle"] = { + ["char"] = "󰟄", + ["code"] = "f07c4", + }, + ["md-dots_vertical_circle_outline"] = { + ["char"] = "󰮎", + ["code"] = "f0b8e", + }, + ["md-download"] = { + ["char"] = "󰇚", + ["code"] = "f01da", + }, + ["md-download_box"] = { + ["char"] = "󱑢", + ["code"] = "f1462", + }, + ["md-download_box_outline"] = { + ["char"] = "󱑣", + ["code"] = "f1463", + }, + ["md-download_circle"] = { + ["char"] = "󱑤", + ["code"] = "f1464", + }, + ["md-download_circle_outline"] = { + ["char"] = "󱑥", + ["code"] = "f1465", + }, + ["md-download_lock"] = { + ["char"] = "󱌠", + ["code"] = "f1320", + }, + ["md-download_lock_outline"] = { + ["char"] = "󱌡", + ["code"] = "f1321", + }, + ["md-download_multiple"] = { + ["char"] = "󰧩", + ["code"] = "f09e9", + }, + ["md-download_network"] = { + ["char"] = "󰛴", + ["code"] = "f06f4", + }, + ["md-download_network_outline"] = { + ["char"] = "󰱦", + ["code"] = "f0c66", + }, + ["md-download_off"] = { + ["char"] = "󱂰", + ["code"] = "f10b0", + }, + ["md-download_off_outline"] = { + ["char"] = "󱂱", + ["code"] = "f10b1", + }, + ["md-download_outline"] = { + ["char"] = "󰮏", + ["code"] = "f0b8f", + }, + ["md-drag"] = { + ["char"] = "󰇛", + ["code"] = "f01db", + }, + ["md-drag_horizontal"] = { + ["char"] = "󰇜", + ["code"] = "f01dc", + }, + ["md-drag_horizontal_variant"] = { + ["char"] = "󱋰", + ["code"] = "f12f0", + }, + ["md-drag_variant"] = { + ["char"] = "󰮐", + ["code"] = "f0b90", + }, + ["md-drag_vertical"] = { + ["char"] = "󰇝", + ["code"] = "f01dd", + }, + ["md-drag_vertical_variant"] = { + ["char"] = "󱋱", + ["code"] = "f12f1", + }, + ["md-drama_masks"] = { + ["char"] = "󰴂", + ["code"] = "f0d02", + }, + ["md-draw"] = { + ["char"] = "󰽉", + ["code"] = "f0f49", + }, + ["md-draw_pen"] = { + ["char"] = "󱦹", + ["code"] = "f19b9", + }, + ["md-drawing"] = { + ["char"] = "󰇞", + ["code"] = "f01de", + }, + ["md-drawing_box"] = { + ["char"] = "󰇟", + ["code"] = "f01df", + }, + ["md-dresser"] = { + ["char"] = "󰽊", + ["code"] = "f0f4a", + }, + ["md-dresser_outline"] = { + ["char"] = "󰽋", + ["code"] = "f0f4b", + }, + ["md-drone"] = { + ["char"] = "󰇢", + ["code"] = "f01e2", + }, + ["md-dropbox"] = { + ["char"] = "󰇣", + ["code"] = "f01e3", + }, + ["md-drupal"] = { + ["char"] = "󰇤", + ["code"] = "f01e4", + }, + ["md-duck"] = { + ["char"] = "󰇥", + ["code"] = "f01e5", + }, + ["md-dumbbell"] = { + ["char"] = "󰇦", + ["code"] = "f01e6", + }, + ["md-dump_truck"] = { + ["char"] = "󰱧", + ["code"] = "f0c67", + }, + ["md-ear_hearing"] = { + ["char"] = "󰟅", + ["code"] = "f07c5", + }, + ["md-ear_hearing_loop"] = { + ["char"] = "󱫮", + ["code"] = "f1aee", + }, + ["md-ear_hearing_off"] = { + ["char"] = "󰩅", + ["code"] = "f0a45", + }, + ["md-earbuds"] = { + ["char"] = "󱡏", + ["code"] = "f184f", + }, + ["md-earbuds_off"] = { + ["char"] = "󱡐", + ["code"] = "f1850", + }, + ["md-earbuds_off_outline"] = { + ["char"] = "󱡑", + ["code"] = "f1851", + }, + ["md-earbuds_outline"] = { + ["char"] = "󱡒", + ["code"] = "f1852", + }, + ["md-earth"] = { + ["char"] = "󰇧", + ["code"] = "f01e7", + }, + ["md-earth_arrow_right"] = { + ["char"] = "󱌑", + ["code"] = "f1311", + }, + ["md-earth_box"] = { + ["char"] = "󰛍", + ["code"] = "f06cd", + }, + ["md-earth_box_minus"] = { + ["char"] = "󱐇", + ["code"] = "f1407", + }, + ["md-earth_box_off"] = { + ["char"] = "󰛎", + ["code"] = "f06ce", + }, + ["md-earth_box_plus"] = { + ["char"] = "󱐆", + ["code"] = "f1406", + }, + ["md-earth_box_remove"] = { + ["char"] = "󱐈", + ["code"] = "f1408", + }, + ["md-earth_minus"] = { + ["char"] = "󱐄", + ["code"] = "f1404", + }, + ["md-earth_off"] = { + ["char"] = "󰇨", + ["code"] = "f01e8", + }, + ["md-earth_plus"] = { + ["char"] = "󱐃", + ["code"] = "f1403", + }, + ["md-earth_remove"] = { + ["char"] = "󱐅", + ["code"] = "f1405", + }, + ["md-egg"] = { + ["char"] = "󰪯", + ["code"] = "f0aaf", + }, + ["md-egg_easter"] = { + ["char"] = "󰪰", + ["code"] = "f0ab0", + }, + ["md-egg_fried"] = { + ["char"] = "󱡊", + ["code"] = "f184a", + }, + ["md-egg_off"] = { + ["char"] = "󱏰", + ["code"] = "f13f0", + }, + ["md-egg_off_outline"] = { + ["char"] = "󱏱", + ["code"] = "f13f1", + }, + ["md-egg_outline"] = { + ["char"] = "󱏲", + ["code"] = "f13f2", + }, + ["md-eiffel_tower"] = { + ["char"] = "󱕫", + ["code"] = "f156b", + }, + ["md-eight_track"] = { + ["char"] = "󰧪", + ["code"] = "f09ea", + }, + ["md-eject"] = { + ["char"] = "󰇪", + ["code"] = "f01ea", + }, + ["md-eject_outline"] = { + ["char"] = "󰮑", + ["code"] = "f0b91", + }, + ["md-electric_switch"] = { + ["char"] = "󰺟", + ["code"] = "f0e9f", + }, + ["md-electric_switch_closed"] = { + ["char"] = "󱃙", + ["code"] = "f10d9", + }, + ["md-electron_framework"] = { + ["char"] = "󱀤", + ["code"] = "f1024", + }, + ["md-elephant"] = { + ["char"] = "󰟆", + ["code"] = "f07c6", + }, + ["md-elevation_decline"] = { + ["char"] = "󰇫", + ["code"] = "f01eb", + }, + ["md-elevation_rise"] = { + ["char"] = "󰇬", + ["code"] = "f01ec", + }, + ["md-elevator"] = { + ["char"] = "󰇭", + ["code"] = "f01ed", + }, + ["md-elevator_down"] = { + ["char"] = "󱋂", + ["code"] = "f12c2", + }, + ["md-elevator_passenger"] = { + ["char"] = "󱎁", + ["code"] = "f1381", + }, + ["md-elevator_passenger_off"] = { + ["char"] = "󱥹", + ["code"] = "f1979", + }, + ["md-elevator_passenger_off_outline"] = { + ["char"] = "󱥺", + ["code"] = "f197a", + }, + ["md-elevator_passenger_outline"] = { + ["char"] = "󱥻", + ["code"] = "f197b", + }, + ["md-elevator_up"] = { + ["char"] = "󱋁", + ["code"] = "f12c1", + }, + ["md-ellipse"] = { + ["char"] = "󰺠", + ["code"] = "f0ea0", + }, + ["md-ellipse_outline"] = { + ["char"] = "󰺡", + ["code"] = "f0ea1", + }, + ["md-email"] = { + ["char"] = "󰇮", + ["code"] = "f01ee", + }, + ["md-email_alert"] = { + ["char"] = "󰛏", + ["code"] = "f06cf", + }, + ["md-email_alert_outline"] = { + ["char"] = "󰵂", + ["code"] = "f0d42", + }, + ["md-email_box"] = { + ["char"] = "󰴃", + ["code"] = "f0d03", + }, + ["md-email_check"] = { + ["char"] = "󰪱", + ["code"] = "f0ab1", + }, + ["md-email_check_outline"] = { + ["char"] = "󰪲", + ["code"] = "f0ab2", + }, + ["md-email_edit"] = { + ["char"] = "󰻣", + ["code"] = "f0ee3", + }, + ["md-email_edit_outline"] = { + ["char"] = "󰻤", + ["code"] = "f0ee4", + }, + ["md-email_fast"] = { + ["char"] = "󱡯", + ["code"] = "f186f", + }, + ["md-email_fast_outline"] = { + ["char"] = "󱡰", + ["code"] = "f1870", + }, + ["md-email_lock"] = { + ["char"] = "󰇱", + ["code"] = "f01f1", + }, + ["md-email_mark_as_unread"] = { + ["char"] = "󰮒", + ["code"] = "f0b92", + }, + ["md-email_minus"] = { + ["char"] = "󰻥", + ["code"] = "f0ee5", + }, + ["md-email_minus_outline"] = { + ["char"] = "󰻦", + ["code"] = "f0ee6", + }, + ["md-email_multiple"] = { + ["char"] = "󰻧", + ["code"] = "f0ee7", + }, + ["md-email_multiple_outline"] = { + ["char"] = "󰻨", + ["code"] = "f0ee8", + }, + ["md-email_newsletter"] = { + ["char"] = "󰾱", + ["code"] = "f0fb1", + }, + ["md-email_off"] = { + ["char"] = "󱏣", + ["code"] = "f13e3", + }, + ["md-email_off_outline"] = { + ["char"] = "󱏤", + ["code"] = "f13e4", + }, + ["md-email_open"] = { + ["char"] = "󰇯", + ["code"] = "f01ef", + }, + ["md-email_open_multiple"] = { + ["char"] = "󰻩", + ["code"] = "f0ee9", + }, + ["md-email_open_multiple_outline"] = { + ["char"] = "󰻪", + ["code"] = "f0eea", + }, + ["md-email_open_outline"] = { + ["char"] = "󰗯", + ["code"] = "f05ef", + }, + ["md-email_outline"] = { + ["char"] = "󰇰", + ["code"] = "f01f0", + }, + ["md-email_plus"] = { + ["char"] = "󰧫", + ["code"] = "f09eb", + }, + ["md-email_plus_outline"] = { + ["char"] = "󰧬", + ["code"] = "f09ec", + }, + ["md-email_receive"] = { + ["char"] = "󱃚", + ["code"] = "f10da", + }, + ["md-email_receive_outline"] = { + ["char"] = "󱃛", + ["code"] = "f10db", + }, + ["md-email_remove"] = { + ["char"] = "󱙡", + ["code"] = "f1661", + }, + ["md-email_remove_outline"] = { + ["char"] = "󱙢", + ["code"] = "f1662", + }, + ["md-email_seal"] = { + ["char"] = "󱥛", + ["code"] = "f195b", + }, + ["md-email_seal_outline"] = { + ["char"] = "󱥜", + ["code"] = "f195c", + }, + ["md-email_search"] = { + ["char"] = "󰥡", + ["code"] = "f0961", + }, + ["md-email_search_outline"] = { + ["char"] = "󰥢", + ["code"] = "f0962", + }, + ["md-email_send"] = { + ["char"] = "󱃜", + ["code"] = "f10dc", + }, + ["md-email_send_outline"] = { + ["char"] = "󱃝", + ["code"] = "f10dd", + }, + ["md-email_sync"] = { + ["char"] = "󱋇", + ["code"] = "f12c7", + }, + ["md-email_sync_outline"] = { + ["char"] = "󱋈", + ["code"] = "f12c8", + }, + ["md-email_variant"] = { + ["char"] = "󰗰", + ["code"] = "f05f0", + }, + ["md-ember"] = { + ["char"] = "󰬰", + ["code"] = "f0b30", + }, + ["md-emby"] = { + ["char"] = "󰚴", + ["code"] = "f06b4", + }, + ["md-emoticon"] = { + ["char"] = "󰱨", + ["code"] = "f0c68", + }, + ["md-emoticon_angry"] = { + ["char"] = "󰱩", + ["code"] = "f0c69", + }, + ["md-emoticon_angry_outline"] = { + ["char"] = "󰱪", + ["code"] = "f0c6a", + }, + ["md-emoticon_confused"] = { + ["char"] = "󱃞", + ["code"] = "f10de", + }, + ["md-emoticon_confused_outline"] = { + ["char"] = "󱃟", + ["code"] = "f10df", + }, + ["md-emoticon_cool"] = { + ["char"] = "󰱫", + ["code"] = "f0c6b", + }, + ["md-emoticon_cool_outline"] = { + ["char"] = "󰇳", + ["code"] = "f01f3", + }, + ["md-emoticon_cry"] = { + ["char"] = "󰱬", + ["code"] = "f0c6c", + }, + ["md-emoticon_cry_outline"] = { + ["char"] = "󰱭", + ["code"] = "f0c6d", + }, + ["md-emoticon_dead"] = { + ["char"] = "󰱮", + ["code"] = "f0c6e", + }, + ["md-emoticon_dead_outline"] = { + ["char"] = "󰚛", + ["code"] = "f069b", + }, + ["md-emoticon_devil"] = { + ["char"] = "󰱯", + ["code"] = "f0c6f", + }, + ["md-emoticon_devil_outline"] = { + ["char"] = "󰇴", + ["code"] = "f01f4", + }, + ["md-emoticon_excited"] = { + ["char"] = "󰱰", + ["code"] = "f0c70", + }, + ["md-emoticon_excited_outline"] = { + ["char"] = "󰚜", + ["code"] = "f069c", + }, + ["md-emoticon_frown"] = { + ["char"] = "󰽌", + ["code"] = "f0f4c", + }, + ["md-emoticon_frown_outline"] = { + ["char"] = "󰽍", + ["code"] = "f0f4d", + }, + ["md-emoticon_happy"] = { + ["char"] = "󰱱", + ["code"] = "f0c71", + }, + ["md-emoticon_happy_outline"] = { + ["char"] = "󰇵", + ["code"] = "f01f5", + }, + ["md-emoticon_kiss"] = { + ["char"] = "󰱲", + ["code"] = "f0c72", + }, + ["md-emoticon_kiss_outline"] = { + ["char"] = "󰱳", + ["code"] = "f0c73", + }, + ["md-emoticon_lol"] = { + ["char"] = "󱈔", + ["code"] = "f1214", + }, + ["md-emoticon_lol_outline"] = { + ["char"] = "󱈕", + ["code"] = "f1215", + }, + ["md-emoticon_neutral"] = { + ["char"] = "󰱴", + ["code"] = "f0c74", + }, + ["md-emoticon_neutral_outline"] = { + ["char"] = "󰇶", + ["code"] = "f01f6", + }, + ["md-emoticon_outline"] = { + ["char"] = "󰇲", + ["code"] = "f01f2", + }, + ["md-emoticon_poop"] = { + ["char"] = "󰇷", + ["code"] = "f01f7", + }, + ["md-emoticon_poop_outline"] = { + ["char"] = "󰱵", + ["code"] = "f0c75", + }, + ["md-emoticon_sad"] = { + ["char"] = "󰱶", + ["code"] = "f0c76", + }, + ["md-emoticon_sad_outline"] = { + ["char"] = "󰇸", + ["code"] = "f01f8", + }, + ["md-emoticon_sick"] = { + ["char"] = "󱕼", + ["code"] = "f157c", + }, + ["md-emoticon_sick_outline"] = { + ["char"] = "󱕽", + ["code"] = "f157d", + }, + ["md-emoticon_tongue"] = { + ["char"] = "󰇹", + ["code"] = "f01f9", + }, + ["md-emoticon_tongue_outline"] = { + ["char"] = "󰱷", + ["code"] = "f0c77", + }, + ["md-emoticon_wink"] = { + ["char"] = "󰱸", + ["code"] = "f0c78", + }, + ["md-emoticon_wink_outline"] = { + ["char"] = "󰱹", + ["code"] = "f0c79", + }, + ["md-engine"] = { + ["char"] = "󰇺", + ["code"] = "f01fa", + }, + ["md-engine_off"] = { + ["char"] = "󰩆", + ["code"] = "f0a46", + }, + ["md-engine_off_outline"] = { + ["char"] = "󰩇", + ["code"] = "f0a47", + }, + ["md-engine_outline"] = { + ["char"] = "󰇻", + ["code"] = "f01fb", + }, + ["md-epsilon"] = { + ["char"] = "󱃠", + ["code"] = "f10e0", + }, + ["md-equal"] = { + ["char"] = "󰇼", + ["code"] = "f01fc", + }, + ["md-equal_box"] = { + ["char"] = "󰇽", + ["code"] = "f01fd", + }, + ["md-equalizer"] = { + ["char"] = "󰺢", + ["code"] = "f0ea2", + }, + ["md-equalizer_outline"] = { + ["char"] = "󰺣", + ["code"] = "f0ea3", + }, + ["md-eraser"] = { + ["char"] = "󰇾", + ["code"] = "f01fe", + }, + ["md-eraser_variant"] = { + ["char"] = "󰙂", + ["code"] = "f0642", + }, + ["md-escalator"] = { + ["char"] = "󰇿", + ["code"] = "f01ff", + }, + ["md-escalator_box"] = { + ["char"] = "󱎙", + ["code"] = "f1399", + }, + ["md-escalator_down"] = { + ["char"] = "󱋀", + ["code"] = "f12c0", + }, + ["md-escalator_up"] = { + ["char"] = "󱊿", + ["code"] = "f12bf", + }, + ["md-eslint"] = { + ["char"] = "󰱺", + ["code"] = "f0c7a", + }, + ["md-et"] = { + ["char"] = "󰪳", + ["code"] = "f0ab3", + }, + ["md-ethereum"] = { + ["char"] = "󰡪", + ["code"] = "f086a", + }, + ["md-ethernet"] = { + ["char"] = "󰈀", + ["code"] = "f0200", + }, + ["md-ethernet_cable"] = { + ["char"] = "󰈁", + ["code"] = "f0201", + }, + ["md-ethernet_cable_off"] = { + ["char"] = "󰈂", + ["code"] = "f0202", + }, + ["md-ev_plug_ccs1"] = { + ["char"] = "󱔙", + ["code"] = "f1519", + }, + ["md-ev_plug_ccs2"] = { + ["char"] = "󱔚", + ["code"] = "f151a", + }, + ["md-ev_plug_chademo"] = { + ["char"] = "󱔛", + ["code"] = "f151b", + }, + ["md-ev_plug_tesla"] = { + ["char"] = "󱔜", + ["code"] = "f151c", + }, + ["md-ev_plug_type1"] = { + ["char"] = "󱔝", + ["code"] = "f151d", + }, + ["md-ev_plug_type2"] = { + ["char"] = "󱔞", + ["code"] = "f151e", + }, + ["md-ev_station"] = { + ["char"] = "󰗱", + ["code"] = "f05f1", + }, + ["md-evernote"] = { + ["char"] = "󰈄", + ["code"] = "f0204", + }, + ["md-excavator"] = { + ["char"] = "󱀥", + ["code"] = "f1025", + }, + ["md-exclamation"] = { + ["char"] = "󰈅", + ["code"] = "f0205", + }, + ["md-exclamation_thick"] = { + ["char"] = "󱈸", + ["code"] = "f1238", + }, + ["md-exit_run"] = { + ["char"] = "󰩈", + ["code"] = "f0a48", + }, + ["md-exit_to_app"] = { + ["char"] = "󰗼", + ["code"] = "f05fc", + }, + ["md-expand_all"] = { + ["char"] = "󰪴", + ["code"] = "f0ab4", + }, + ["md-expand_all_outline"] = { + ["char"] = "󰪵", + ["code"] = "f0ab5", + }, + ["md-expansion_card"] = { + ["char"] = "󰢮", + ["code"] = "f08ae", + }, + ["md-expansion_card_variant"] = { + ["char"] = "󰾲", + ["code"] = "f0fb2", + }, + ["md-exponent"] = { + ["char"] = "󰥣", + ["code"] = "f0963", + }, + ["md-exponent_box"] = { + ["char"] = "󰥤", + ["code"] = "f0964", + }, + ["md-export"] = { + ["char"] = "󰈇", + ["code"] = "f0207", + }, + ["md-export_variant"] = { + ["char"] = "󰮓", + ["code"] = "f0b93", + }, + ["md-eye"] = { + ["char"] = "󰈈", + ["code"] = "f0208", + }, + ["md-eye_arrow_left"] = { + ["char"] = "󱣽", + ["code"] = "f18fd", + }, + ["md-eye_arrow_left_outline"] = { + ["char"] = "󱣾", + ["code"] = "f18fe", + }, + ["md-eye_arrow_right"] = { + ["char"] = "󱣿", + ["code"] = "f18ff", + }, + ["md-eye_arrow_right_outline"] = { + ["char"] = "󱤀", + ["code"] = "f1900", + }, + ["md-eye_check"] = { + ["char"] = "󰴄", + ["code"] = "f0d04", + }, + ["md-eye_check_outline"] = { + ["char"] = "󰴅", + ["code"] = "f0d05", + }, + ["md-eye_circle"] = { + ["char"] = "󰮔", + ["code"] = "f0b94", + }, + ["md-eye_circle_outline"] = { + ["char"] = "󰮕", + ["code"] = "f0b95", + }, + ["md-eye_minus"] = { + ["char"] = "󱀦", + ["code"] = "f1026", + }, + ["md-eye_minus_outline"] = { + ["char"] = "󱀧", + ["code"] = "f1027", + }, + ["md-eye_off"] = { + ["char"] = "󰈉", + ["code"] = "f0209", + }, + ["md-eye_off_outline"] = { + ["char"] = "󰛑", + ["code"] = "f06d1", + }, + ["md-eye_outline"] = { + ["char"] = "󰛐", + ["code"] = "f06d0", + }, + ["md-eye_plus"] = { + ["char"] = "󰡫", + ["code"] = "f086b", + }, + ["md-eye_plus_outline"] = { + ["char"] = "󰡬", + ["code"] = "f086c", + }, + ["md-eye_refresh"] = { + ["char"] = "󱥼", + ["code"] = "f197c", + }, + ["md-eye_refresh_outline"] = { + ["char"] = "󱥽", + ["code"] = "f197d", + }, + ["md-eye_remove"] = { + ["char"] = "󱗣", + ["code"] = "f15e3", + }, + ["md-eye_remove_outline"] = { + ["char"] = "󱗤", + ["code"] = "f15e4", + }, + ["md-eye_settings"] = { + ["char"] = "󰡭", + ["code"] = "f086d", + }, + ["md-eye_settings_outline"] = { + ["char"] = "󰡮", + ["code"] = "f086e", + }, + ["md-eyedropper"] = { + ["char"] = "󰈊", + ["code"] = "f020a", + }, + ["md-eyedropper_minus"] = { + ["char"] = "󱏝", + ["code"] = "f13dd", + }, + ["md-eyedropper_off"] = { + ["char"] = "󱏟", + ["code"] = "f13df", + }, + ["md-eyedropper_plus"] = { + ["char"] = "󱏜", + ["code"] = "f13dc", + }, + ["md-eyedropper_remove"] = { + ["char"] = "󱏞", + ["code"] = "f13de", + }, + ["md-eyedropper_variant"] = { + ["char"] = "󰈋", + ["code"] = "f020b", + }, + ["md-face_agent"] = { + ["char"] = "󰵰", + ["code"] = "f0d70", + }, + ["md-face_man"] = { + ["char"] = "󰙃", + ["code"] = "f0643", + }, + ["md-face_man_outline"] = { + ["char"] = "󰮖", + ["code"] = "f0b96", + }, + ["md-face_man_profile"] = { + ["char"] = "󰙄", + ["code"] = "f0644", + }, + ["md-face_man_shimmer"] = { + ["char"] = "󱗌", + ["code"] = "f15cc", + }, + ["md-face_man_shimmer_outline"] = { + ["char"] = "󱗍", + ["code"] = "f15cd", + }, + ["md-face_mask"] = { + ["char"] = "󱖆", + ["code"] = "f1586", + }, + ["md-face_mask_outline"] = { + ["char"] = "󱖇", + ["code"] = "f1587", + }, + ["md-face_recognition"] = { + ["char"] = "󰱻", + ["code"] = "f0c7b", + }, + ["md-face_woman"] = { + ["char"] = "󱁷", + ["code"] = "f1077", + }, + ["md-face_woman_outline"] = { + ["char"] = "󱁸", + ["code"] = "f1078", + }, + ["md-face_woman_profile"] = { + ["char"] = "󱁶", + ["code"] = "f1076", + }, + ["md-face_woman_shimmer"] = { + ["char"] = "󱗎", + ["code"] = "f15ce", + }, + ["md-face_woman_shimmer_outline"] = { + ["char"] = "󱗏", + ["code"] = "f15cf", + }, + ["md-facebook"] = { + ["char"] = "󰈌", + ["code"] = "f020c", + }, + ["md-facebook_gaming"] = { + ["char"] = "󰟝", + ["code"] = "f07dd", + }, + ["md-facebook_messenger"] = { + ["char"] = "󰈎", + ["code"] = "f020e", + }, + ["md-facebook_workplace"] = { + ["char"] = "󰬱", + ["code"] = "f0b31", + }, + ["md-factory"] = { + ["char"] = "󰈏", + ["code"] = "f020f", + }, + ["md-family_tree"] = { + ["char"] = "󱘎", + ["code"] = "f160e", + }, + ["md-fan"] = { + ["char"] = "󰈐", + ["code"] = "f0210", + }, + ["md-fan_alert"] = { + ["char"] = "󱑬", + ["code"] = "f146c", + }, + ["md-fan_auto"] = { + ["char"] = "󱜝", + ["code"] = "f171d", + }, + ["md-fan_chevron_down"] = { + ["char"] = "󱑭", + ["code"] = "f146d", + }, + ["md-fan_chevron_up"] = { + ["char"] = "󱑮", + ["code"] = "f146e", + }, + ["md-fan_clock"] = { + ["char"] = "󱨺", + ["code"] = "f1a3a", + }, + ["md-fan_minus"] = { + ["char"] = "󱑰", + ["code"] = "f1470", + }, + ["md-fan_off"] = { + ["char"] = "󰠝", + ["code"] = "f081d", + }, + ["md-fan_plus"] = { + ["char"] = "󱑯", + ["code"] = "f146f", + }, + ["md-fan_remove"] = { + ["char"] = "󱑱", + ["code"] = "f1471", + }, + ["md-fan_speed_1"] = { + ["char"] = "󱑲", + ["code"] = "f1472", + }, + ["md-fan_speed_2"] = { + ["char"] = "󱑳", + ["code"] = "f1473", + }, + ["md-fan_speed_3"] = { + ["char"] = "󱑴", + ["code"] = "f1474", + }, + ["md-fast_forward"] = { + ["char"] = "󰈑", + ["code"] = "f0211", + }, + ["md-fast_forward_10"] = { + ["char"] = "󰵱", + ["code"] = "f0d71", + }, + ["md-fast_forward_15"] = { + ["char"] = "󱤺", + ["code"] = "f193a", + }, + ["md-fast_forward_30"] = { + ["char"] = "󰴆", + ["code"] = "f0d06", + }, + ["md-fast_forward_5"] = { + ["char"] = "󱇸", + ["code"] = "f11f8", + }, + ["md-fast_forward_60"] = { + ["char"] = "󱘋", + ["code"] = "f160b", + }, + ["md-fast_forward_outline"] = { + ["char"] = "󰛒", + ["code"] = "f06d2", + }, + ["md-fax"] = { + ["char"] = "󰈒", + ["code"] = "f0212", + }, + ["md-feather"] = { + ["char"] = "󰛓", + ["code"] = "f06d3", + }, + ["md-feature_search"] = { + ["char"] = "󰩉", + ["code"] = "f0a49", + }, + ["md-feature_search_outline"] = { + ["char"] = "󰩊", + ["code"] = "f0a4a", + }, + ["md-fedora"] = { + ["char"] = "󰣛", + ["code"] = "f08db", + }, + ["md-fence"] = { + ["char"] = "󱞚", + ["code"] = "f179a", + }, + ["md-fence_electric"] = { + ["char"] = "󱟶", + ["code"] = "f17f6", + }, + ["md-fencing"] = { + ["char"] = "󱓁", + ["code"] = "f14c1", + }, + ["md-ferris_wheel"] = { + ["char"] = "󰺤", + ["code"] = "f0ea4", + }, + ["md-ferry"] = { + ["char"] = "󰈓", + ["code"] = "f0213", + }, + ["md-file"] = { + ["char"] = "󰈔", + ["code"] = "f0214", + }, + ["md-file_account"] = { + ["char"] = "󰜻", + ["code"] = "f073b", + }, + ["md-file_account_outline"] = { + ["char"] = "󱀨", + ["code"] = "f1028", + }, + ["md-file_alert"] = { + ["char"] = "󰩋", + ["code"] = "f0a4b", + }, + ["md-file_alert_outline"] = { + ["char"] = "󰩌", + ["code"] = "f0a4c", + }, + ["md-file_arrow_left_right"] = { + ["char"] = "󱪓", + ["code"] = "f1a93", + }, + ["md-file_arrow_left_right_outline"] = { + ["char"] = "󱪔", + ["code"] = "f1a94", + }, + ["md-file_arrow_up_down"] = { + ["char"] = "󱪕", + ["code"] = "f1a95", + }, + ["md-file_arrow_up_down_outline"] = { + ["char"] = "󱪖", + ["code"] = "f1a96", + }, + ["md-file_cabinet"] = { + ["char"] = "󰪶", + ["code"] = "f0ab6", + }, + ["md-file_cad"] = { + ["char"] = "󰻫", + ["code"] = "f0eeb", + }, + ["md-file_cad_box"] = { + ["char"] = "󰻬", + ["code"] = "f0eec", + }, + ["md-file_cancel"] = { + ["char"] = "󰷆", + ["code"] = "f0dc6", + }, + ["md-file_cancel_outline"] = { + ["char"] = "󰷇", + ["code"] = "f0dc7", + }, + ["md-file_certificate"] = { + ["char"] = "󱆆", + ["code"] = "f1186", + }, + ["md-file_certificate_outline"] = { + ["char"] = "󱆇", + ["code"] = "f1187", + }, + ["md-file_chart"] = { + ["char"] = "󰈕", + ["code"] = "f0215", + }, + ["md-file_chart_check"] = { + ["char"] = "󱧆", + ["code"] = "f19c6", + }, + ["md-file_chart_check_outline"] = { + ["char"] = "󱧇", + ["code"] = "f19c7", + }, + ["md-file_chart_outline"] = { + ["char"] = "󱀩", + ["code"] = "f1029", + }, + ["md-file_check"] = { + ["char"] = "󰈖", + ["code"] = "f0216", + }, + ["md-file_check_outline"] = { + ["char"] = "󰸩", + ["code"] = "f0e29", + }, + ["md-file_clock"] = { + ["char"] = "󱋡", + ["code"] = "f12e1", + }, + ["md-file_clock_outline"] = { + ["char"] = "󱋢", + ["code"] = "f12e2", + }, + ["md-file_cloud"] = { + ["char"] = "󰈗", + ["code"] = "f0217", + }, + ["md-file_cloud_outline"] = { + ["char"] = "󱀪", + ["code"] = "f102a", + }, + ["md-file_code"] = { + ["char"] = "󰈮", + ["code"] = "f022e", + }, + ["md-file_code_outline"] = { + ["char"] = "󱀫", + ["code"] = "f102b", + }, + ["md-file_cog"] = { + ["char"] = "󱁻", + ["code"] = "f107b", + }, + ["md-file_cog_outline"] = { + ["char"] = "󱁼", + ["code"] = "f107c", + }, + ["md-file_compare"] = { + ["char"] = "󰢪", + ["code"] = "f08aa", + }, + ["md-file_delimited"] = { + ["char"] = "󰈘", + ["code"] = "f0218", + }, + ["md-file_delimited_outline"] = { + ["char"] = "󰺥", + ["code"] = "f0ea5", + }, + ["md-file_document"] = { + ["char"] = "󰈙", + ["code"] = "f0219", + }, + ["md-file_document_alert"] = { + ["char"] = "󱪗", + ["code"] = "f1a97", + }, + ["md-file_document_alert_outline"] = { + ["char"] = "󱪘", + ["code"] = "f1a98", + }, + ["md-file_document_check"] = { + ["char"] = "󱪙", + ["code"] = "f1a99", + }, + ["md-file_document_check_outline"] = { + ["char"] = "󱪚", + ["code"] = "f1a9a", + }, + ["md-file_document_edit"] = { + ["char"] = "󰷈", + ["code"] = "f0dc8", + }, + ["md-file_document_edit_outline"] = { + ["char"] = "󰷉", + ["code"] = "f0dc9", + }, + ["md-file_document_minus"] = { + ["char"] = "󱪛", + ["code"] = "f1a9b", + }, + ["md-file_document_minus_outline"] = { + ["char"] = "󱪜", + ["code"] = "f1a9c", + }, + ["md-file_document_multiple"] = { + ["char"] = "󱔗", + ["code"] = "f1517", + }, + ["md-file_document_multiple_outline"] = { + ["char"] = "󱔘", + ["code"] = "f1518", + }, + ["md-file_document_outline"] = { + ["char"] = "󰧮", + ["code"] = "f09ee", + }, + ["md-file_document_plus"] = { + ["char"] = "󱪝", + ["code"] = "f1a9d", + }, + ["md-file_document_plus_outline"] = { + ["char"] = "󱪞", + ["code"] = "f1a9e", + }, + ["md-file_document_remove"] = { + ["char"] = "󱪟", + ["code"] = "f1a9f", + }, + ["md-file_document_remove_outline"] = { + ["char"] = "󱪠", + ["code"] = "f1aa0", + }, + ["md-file_download"] = { + ["char"] = "󰥥", + ["code"] = "f0965", + }, + ["md-file_download_outline"] = { + ["char"] = "󰥦", + ["code"] = "f0966", + }, + ["md-file_edit"] = { + ["char"] = "󱇧", + ["code"] = "f11e7", + }, + ["md-file_edit_outline"] = { + ["char"] = "󱇨", + ["code"] = "f11e8", + }, + ["md-file_excel"] = { + ["char"] = "󰈛", + ["code"] = "f021b", + }, + ["md-file_excel_box"] = { + ["char"] = "󰈜", + ["code"] = "f021c", + }, + ["md-file_excel_box_outline"] = { + ["char"] = "󱀬", + ["code"] = "f102c", + }, + ["md-file_excel_outline"] = { + ["char"] = "󱀭", + ["code"] = "f102d", + }, + ["md-file_export"] = { + ["char"] = "󰈝", + ["code"] = "f021d", + }, + ["md-file_export_outline"] = { + ["char"] = "󱀮", + ["code"] = "f102e", + }, + ["md-file_eye"] = { + ["char"] = "󰷊", + ["code"] = "f0dca", + }, + ["md-file_eye_outline"] = { + ["char"] = "󰷋", + ["code"] = "f0dcb", + }, + ["md-file_find"] = { + ["char"] = "󰈞", + ["code"] = "f021e", + }, + ["md-file_find_outline"] = { + ["char"] = "󰮗", + ["code"] = "f0b97", + }, + ["md-file_gif_box"] = { + ["char"] = "󰵸", + ["code"] = "f0d78", + }, + ["md-file_hidden"] = { + ["char"] = "󰘓", + ["code"] = "f0613", + }, + ["md-file_image"] = { + ["char"] = "󰈟", + ["code"] = "f021f", + }, + ["md-file_image_marker"] = { + ["char"] = "󱝲", + ["code"] = "f1772", + }, + ["md-file_image_marker_outline"] = { + ["char"] = "󱝳", + ["code"] = "f1773", + }, + ["md-file_image_minus"] = { + ["char"] = "󱤻", + ["code"] = "f193b", + }, + ["md-file_image_minus_outline"] = { + ["char"] = "󱤼", + ["code"] = "f193c", + }, + ["md-file_image_outline"] = { + ["char"] = "󰺰", + ["code"] = "f0eb0", + }, + ["md-file_image_plus"] = { + ["char"] = "󱤽", + ["code"] = "f193d", + }, + ["md-file_image_plus_outline"] = { + ["char"] = "󱤾", + ["code"] = "f193e", + }, + ["md-file_image_remove"] = { + ["char"] = "󱤿", + ["code"] = "f193f", + }, + ["md-file_image_remove_outline"] = { + ["char"] = "󱥀", + ["code"] = "f1940", + }, + ["md-file_import"] = { + ["char"] = "󰈠", + ["code"] = "f0220", + }, + ["md-file_import_outline"] = { + ["char"] = "󱀯", + ["code"] = "f102f", + }, + ["md-file_jpg_box"] = { + ["char"] = "󰈥", + ["code"] = "f0225", + }, + ["md-file_key"] = { + ["char"] = "󱆄", + ["code"] = "f1184", + }, + ["md-file_key_outline"] = { + ["char"] = "󱆅", + ["code"] = "f1185", + }, + ["md-file_link"] = { + ["char"] = "󱅷", + ["code"] = "f1177", + }, + ["md-file_link_outline"] = { + ["char"] = "󱅸", + ["code"] = "f1178", + }, + ["md-file_lock"] = { + ["char"] = "󰈡", + ["code"] = "f0221", + }, + ["md-file_lock_open"] = { + ["char"] = "󱧈", + ["code"] = "f19c8", + }, + ["md-file_lock_open_outline"] = { + ["char"] = "󱧉", + ["code"] = "f19c9", + }, + ["md-file_lock_outline"] = { + ["char"] = "󱀰", + ["code"] = "f1030", + }, + ["md-file_marker"] = { + ["char"] = "󱝴", + ["code"] = "f1774", + }, + ["md-file_marker_outline"] = { + ["char"] = "󱝵", + ["code"] = "f1775", + }, + ["md-file_minus"] = { + ["char"] = "󱪡", + ["code"] = "f1aa1", + }, + ["md-file_minus_outline"] = { + ["char"] = "󱪢", + ["code"] = "f1aa2", + }, + ["md-file_move"] = { + ["char"] = "󰪹", + ["code"] = "f0ab9", + }, + ["md-file_move_outline"] = { + ["char"] = "󱀱", + ["code"] = "f1031", + }, + ["md-file_multiple"] = { + ["char"] = "󰈢", + ["code"] = "f0222", + }, + ["md-file_multiple_outline"] = { + ["char"] = "󱀲", + ["code"] = "f1032", + }, + ["md-file_music"] = { + ["char"] = "󰈣", + ["code"] = "f0223", + }, + ["md-file_music_outline"] = { + ["char"] = "󰸪", + ["code"] = "f0e2a", + }, + ["md-file_outline"] = { + ["char"] = "󰈤", + ["code"] = "f0224", + }, + ["md-file_pdf_box"] = { + ["char"] = "󰈦", + ["code"] = "f0226", + }, + ["md-file_percent"] = { + ["char"] = "󰠞", + ["code"] = "f081e", + }, + ["md-file_percent_outline"] = { + ["char"] = "󱀳", + ["code"] = "f1033", + }, + ["md-file_phone"] = { + ["char"] = "󱅹", + ["code"] = "f1179", + }, + ["md-file_phone_outline"] = { + ["char"] = "󱅺", + ["code"] = "f117a", + }, + ["md-file_plus"] = { + ["char"] = "󰝒", + ["code"] = "f0752", + }, + ["md-file_plus_outline"] = { + ["char"] = "󰻭", + ["code"] = "f0eed", + }, + ["md-file_png_box"] = { + ["char"] = "󰸭", + ["code"] = "f0e2d", + }, + ["md-file_powerpoint"] = { + ["char"] = "󰈧", + ["code"] = "f0227", + }, + ["md-file_powerpoint_box"] = { + ["char"] = "󰈨", + ["code"] = "f0228", + }, + ["md-file_powerpoint_box_outline"] = { + ["char"] = "󱀴", + ["code"] = "f1034", + }, + ["md-file_powerpoint_outline"] = { + ["char"] = "󱀵", + ["code"] = "f1035", + }, + ["md-file_presentation_box"] = { + ["char"] = "󰈩", + ["code"] = "f0229", + }, + ["md-file_question"] = { + ["char"] = "󰡯", + ["code"] = "f086f", + }, + ["md-file_question_outline"] = { + ["char"] = "󱀶", + ["code"] = "f1036", + }, + ["md-file_refresh"] = { + ["char"] = "󰤘", + ["code"] = "f0918", + }, + ["md-file_refresh_outline"] = { + ["char"] = "󰕁", + ["code"] = "f0541", + }, + ["md-file_remove"] = { + ["char"] = "󰮘", + ["code"] = "f0b98", + }, + ["md-file_remove_outline"] = { + ["char"] = "󱀷", + ["code"] = "f1037", + }, + ["md-file_replace"] = { + ["char"] = "󰬲", + ["code"] = "f0b32", + }, + ["md-file_replace_outline"] = { + ["char"] = "󰬳", + ["code"] = "f0b33", + }, + ["md-file_restore"] = { + ["char"] = "󰙰", + ["code"] = "f0670", + }, + ["md-file_restore_outline"] = { + ["char"] = "󱀸", + ["code"] = "f1038", + }, + ["md-file_rotate_left"] = { + ["char"] = "󱨻", + ["code"] = "f1a3b", + }, + ["md-file_rotate_left_outline"] = { + ["char"] = "󱨼", + ["code"] = "f1a3c", + }, + ["md-file_rotate_right"] = { + ["char"] = "󱨽", + ["code"] = "f1a3d", + }, + ["md-file_rotate_right_outline"] = { + ["char"] = "󱨾", + ["code"] = "f1a3e", + }, + ["md-file_search"] = { + ["char"] = "󰱼", + ["code"] = "f0c7c", + }, + ["md-file_search_outline"] = { + ["char"] = "󰱽", + ["code"] = "f0c7d", + }, + ["md-file_send"] = { + ["char"] = "󰈪", + ["code"] = "f022a", + }, + ["md-file_send_outline"] = { + ["char"] = "󱀹", + ["code"] = "f1039", + }, + ["md-file_settings"] = { + ["char"] = "󱁹", + ["code"] = "f1079", + }, + ["md-file_settings_outline"] = { + ["char"] = "󱁺", + ["code"] = "f107a", + }, + ["md-file_sign"] = { + ["char"] = "󱧃", + ["code"] = "f19c3", + }, + ["md-file_star"] = { + ["char"] = "󱀺", + ["code"] = "f103a", + }, + ["md-file_star_outline"] = { + ["char"] = "󱀻", + ["code"] = "f103b", + }, + ["md-file_swap"] = { + ["char"] = "󰾴", + ["code"] = "f0fb4", + }, + ["md-file_swap_outline"] = { + ["char"] = "󰾵", + ["code"] = "f0fb5", + }, + ["md-file_sync"] = { + ["char"] = "󱈖", + ["code"] = "f1216", + }, + ["md-file_sync_outline"] = { + ["char"] = "󱈗", + ["code"] = "f1217", + }, + ["md-file_table"] = { + ["char"] = "󰱾", + ["code"] = "f0c7e", + }, + ["md-file_table_box"] = { + ["char"] = "󱃡", + ["code"] = "f10e1", + }, + ["md-file_table_box_multiple"] = { + ["char"] = "󱃢", + ["code"] = "f10e2", + }, + ["md-file_table_box_multiple_outline"] = { + ["char"] = "󱃣", + ["code"] = "f10e3", + }, + ["md-file_table_box_outline"] = { + ["char"] = "󱃤", + ["code"] = "f10e4", + }, + ["md-file_table_outline"] = { + ["char"] = "󰱿", + ["code"] = "f0c7f", + }, + ["md-file_tree"] = { + ["char"] = "󰙅", + ["code"] = "f0645", + }, + ["md-file_tree_outline"] = { + ["char"] = "󱏒", + ["code"] = "f13d2", + }, + ["md-file_undo"] = { + ["char"] = "󰣜", + ["code"] = "f08dc", + }, + ["md-file_undo_outline"] = { + ["char"] = "󱀼", + ["code"] = "f103c", + }, + ["md-file_upload"] = { + ["char"] = "󰩍", + ["code"] = "f0a4d", + }, + ["md-file_upload_outline"] = { + ["char"] = "󰩎", + ["code"] = "f0a4e", + }, + ["md-file_video"] = { + ["char"] = "󰈫", + ["code"] = "f022b", + }, + ["md-file_video_outline"] = { + ["char"] = "󰸬", + ["code"] = "f0e2c", + }, + ["md-file_word"] = { + ["char"] = "󰈬", + ["code"] = "f022c", + }, + ["md-file_word_box"] = { + ["char"] = "󰈭", + ["code"] = "f022d", + }, + ["md-file_word_box_outline"] = { + ["char"] = "󱀽", + ["code"] = "f103d", + }, + ["md-file_word_outline"] = { + ["char"] = "󱀾", + ["code"] = "f103e", + }, + ["md-film"] = { + ["char"] = "󰈯", + ["code"] = "f022f", + }, + ["md-filmstrip"] = { + ["char"] = "󰈰", + ["code"] = "f0230", + }, + ["md-filmstrip_box"] = { + ["char"] = "󰌲", + ["code"] = "f0332", + }, + ["md-filmstrip_box_multiple"] = { + ["char"] = "󰴘", + ["code"] = "f0d18", + }, + ["md-filmstrip_off"] = { + ["char"] = "󰈱", + ["code"] = "f0231", + }, + ["md-filter"] = { + ["char"] = "󰈲", + ["code"] = "f0232", + }, + ["md-filter_check"] = { + ["char"] = "󱣬", + ["code"] = "f18ec", + }, + ["md-filter_check_outline"] = { + ["char"] = "󱣭", + ["code"] = "f18ed", + }, + ["md-filter_cog"] = { + ["char"] = "󱪣", + ["code"] = "f1aa3", + }, + ["md-filter_cog_outline"] = { + ["char"] = "󱪤", + ["code"] = "f1aa4", + }, + ["md-filter_menu"] = { + ["char"] = "󱃥", + ["code"] = "f10e5", + }, + ["md-filter_menu_outline"] = { + ["char"] = "󱃦", + ["code"] = "f10e6", + }, + ["md-filter_minus"] = { + ["char"] = "󰻮", + ["code"] = "f0eee", + }, + ["md-filter_minus_outline"] = { + ["char"] = "󰻯", + ["code"] = "f0eef", + }, + ["md-filter_multiple"] = { + ["char"] = "󱨿", + ["code"] = "f1a3f", + }, + ["md-filter_multiple_outline"] = { + ["char"] = "󱩀", + ["code"] = "f1a40", + }, + ["md-filter_off"] = { + ["char"] = "󱓯", + ["code"] = "f14ef", + }, + ["md-filter_off_outline"] = { + ["char"] = "󱓰", + ["code"] = "f14f0", + }, + ["md-filter_outline"] = { + ["char"] = "󰈳", + ["code"] = "f0233", + }, + ["md-filter_plus"] = { + ["char"] = "󰻰", + ["code"] = "f0ef0", + }, + ["md-filter_plus_outline"] = { + ["char"] = "󰻱", + ["code"] = "f0ef1", + }, + ["md-filter_remove"] = { + ["char"] = "󰈴", + ["code"] = "f0234", + }, + ["md-filter_remove_outline"] = { + ["char"] = "󰈵", + ["code"] = "f0235", + }, + ["md-filter_settings"] = { + ["char"] = "󱪥", + ["code"] = "f1aa5", + }, + ["md-filter_settings_outline"] = { + ["char"] = "󱪦", + ["code"] = "f1aa6", + }, + ["md-filter_variant"] = { + ["char"] = "󰈶", + ["code"] = "f0236", + }, + ["md-filter_variant_minus"] = { + ["char"] = "󱄒", + ["code"] = "f1112", + }, + ["md-filter_variant_plus"] = { + ["char"] = "󱄓", + ["code"] = "f1113", + }, + ["md-filter_variant_remove"] = { + ["char"] = "󱀿", + ["code"] = "f103f", + }, + ["md-finance"] = { + ["char"] = "󰠟", + ["code"] = "f081f", + }, + ["md-find_replace"] = { + ["char"] = "󰛔", + ["code"] = "f06d4", + }, + ["md-fingerprint"] = { + ["char"] = "󰈷", + ["code"] = "f0237", + }, + ["md-fingerprint_off"] = { + ["char"] = "󰺱", + ["code"] = "f0eb1", + }, + ["md-fire"] = { + ["char"] = "󰈸", + ["code"] = "f0238", + }, + ["md-fire_alert"] = { + ["char"] = "󱗗", + ["code"] = "f15d7", + }, + ["md-fire_circle"] = { + ["char"] = "󱠇", + ["code"] = "f1807", + }, + ["md-fire_extinguisher"] = { + ["char"] = "󰻲", + ["code"] = "f0ef2", + }, + ["md-fire_hydrant"] = { + ["char"] = "󱄷", + ["code"] = "f1137", + }, + ["md-fire_hydrant_alert"] = { + ["char"] = "󱄸", + ["code"] = "f1138", + }, + ["md-fire_hydrant_off"] = { + ["char"] = "󱄹", + ["code"] = "f1139", + }, + ["md-fire_off"] = { + ["char"] = "󱜢", + ["code"] = "f1722", + }, + ["md-fire_truck"] = { + ["char"] = "󰢫", + ["code"] = "f08ab", + }, + ["md-firebase"] = { + ["char"] = "󰥧", + ["code"] = "f0967", + }, + ["md-firefox"] = { + ["char"] = "󰈹", + ["code"] = "f0239", + }, + ["md-fireplace"] = { + ["char"] = "󰸮", + ["code"] = "f0e2e", + }, + ["md-fireplace_off"] = { + ["char"] = "󰸯", + ["code"] = "f0e2f", + }, + ["md-firewire"] = { + ["char"] = "󰖾", + ["code"] = "f05be", + }, + ["md-firework"] = { + ["char"] = "󰸰", + ["code"] = "f0e30", + }, + ["md-firework_off"] = { + ["char"] = "󱜣", + ["code"] = "f1723", + }, + ["md-fish"] = { + ["char"] = "󰈺", + ["code"] = "f023a", + }, + ["md-fish_off"] = { + ["char"] = "󱏳", + ["code"] = "f13f3", + }, + ["md-fishbowl"] = { + ["char"] = "󰻳", + ["code"] = "f0ef3", + }, + ["md-fishbowl_outline"] = { + ["char"] = "󰻴", + ["code"] = "f0ef4", + }, + ["md-fit_to_page"] = { + ["char"] = "󰻵", + ["code"] = "f0ef5", + }, + ["md-fit_to_page_outline"] = { + ["char"] = "󰻶", + ["code"] = "f0ef6", + }, + ["md-fit_to_screen"] = { + ["char"] = "󱣴", + ["code"] = "f18f4", + }, + ["md-fit_to_screen_outline"] = { + ["char"] = "󱣵", + ["code"] = "f18f5", + }, + ["md-flag"] = { + ["char"] = "󰈻", + ["code"] = "f023b", + }, + ["md-flag_checkered"] = { + ["char"] = "󰈼", + ["code"] = "f023c", + }, + ["md-flag_minus"] = { + ["char"] = "󰮙", + ["code"] = "f0b99", + }, + ["md-flag_minus_outline"] = { + ["char"] = "󱂲", + ["code"] = "f10b2", + }, + ["md-flag_off"] = { + ["char"] = "󱣮", + ["code"] = "f18ee", + }, + ["md-flag_off_outline"] = { + ["char"] = "󱣯", + ["code"] = "f18ef", + }, + ["md-flag_outline"] = { + ["char"] = "󰈽", + ["code"] = "f023d", + }, + ["md-flag_plus"] = { + ["char"] = "󰮚", + ["code"] = "f0b9a", + }, + ["md-flag_plus_outline"] = { + ["char"] = "󱂳", + ["code"] = "f10b3", + }, + ["md-flag_remove"] = { + ["char"] = "󰮛", + ["code"] = "f0b9b", + }, + ["md-flag_remove_outline"] = { + ["char"] = "󱂴", + ["code"] = "f10b4", + }, + ["md-flag_triangle"] = { + ["char"] = "󰈿", + ["code"] = "f023f", + }, + ["md-flag_variant"] = { + ["char"] = "󰉀", + ["code"] = "f0240", + }, + ["md-flag_variant_outline"] = { + ["char"] = "󰈾", + ["code"] = "f023e", + }, + ["md-flare"] = { + ["char"] = "󰵲", + ["code"] = "f0d72", + }, + ["md-flash"] = { + ["char"] = "󰉁", + ["code"] = "f0241", + }, + ["md-flash_alert"] = { + ["char"] = "󰻷", + ["code"] = "f0ef7", + }, + ["md-flash_alert_outline"] = { + ["char"] = "󰻸", + ["code"] = "f0ef8", + }, + ["md-flash_auto"] = { + ["char"] = "󰉂", + ["code"] = "f0242", + }, + ["md-flash_off"] = { + ["char"] = "󰉃", + ["code"] = "f0243", + }, + ["md-flash_outline"] = { + ["char"] = "󰛕", + ["code"] = "f06d5", + }, + ["md-flash_red_eye"] = { + ["char"] = "󰙻", + ["code"] = "f067b", + }, + ["md-flashlight"] = { + ["char"] = "󰉄", + ["code"] = "f0244", + }, + ["md-flashlight_off"] = { + ["char"] = "󰉅", + ["code"] = "f0245", + }, + ["md-flask"] = { + ["char"] = "󰂓", + ["code"] = "f0093", + }, + ["md-flask_empty"] = { + ["char"] = "󰂔", + ["code"] = "f0094", + }, + ["md-flask_empty_minus"] = { + ["char"] = "󱈺", + ["code"] = "f123a", + }, + ["md-flask_empty_minus_outline"] = { + ["char"] = "󱈻", + ["code"] = "f123b", + }, + ["md-flask_empty_off"] = { + ["char"] = "󱏴", + ["code"] = "f13f4", + }, + ["md-flask_empty_off_outline"] = { + ["char"] = "󱏵", + ["code"] = "f13f5", + }, + ["md-flask_empty_outline"] = { + ["char"] = "󰂕", + ["code"] = "f0095", + }, + ["md-flask_empty_plus"] = { + ["char"] = "󱈼", + ["code"] = "f123c", + }, + ["md-flask_empty_plus_outline"] = { + ["char"] = "󱈽", + ["code"] = "f123d", + }, + ["md-flask_empty_remove"] = { + ["char"] = "󱈾", + ["code"] = "f123e", + }, + ["md-flask_empty_remove_outline"] = { + ["char"] = "󱈿", + ["code"] = "f123f", + }, + ["md-flask_minus"] = { + ["char"] = "󱉀", + ["code"] = "f1240", + }, + ["md-flask_minus_outline"] = { + ["char"] = "󱉁", + ["code"] = "f1241", + }, + ["md-flask_off"] = { + ["char"] = "󱏶", + ["code"] = "f13f6", + }, + ["md-flask_off_outline"] = { + ["char"] = "󱏷", + ["code"] = "f13f7", + }, + ["md-flask_outline"] = { + ["char"] = "󰂖", + ["code"] = "f0096", + }, + ["md-flask_plus"] = { + ["char"] = "󱉂", + ["code"] = "f1242", + }, + ["md-flask_plus_outline"] = { + ["char"] = "󱉃", + ["code"] = "f1243", + }, + ["md-flask_remove"] = { + ["char"] = "󱉄", + ["code"] = "f1244", + }, + ["md-flask_remove_outline"] = { + ["char"] = "󱉅", + ["code"] = "f1245", + }, + ["md-flask_round_bottom"] = { + ["char"] = "󱉋", + ["code"] = "f124b", + }, + ["md-flask_round_bottom_empty"] = { + ["char"] = "󱉌", + ["code"] = "f124c", + }, + ["md-flask_round_bottom_empty_outline"] = { + ["char"] = "󱉍", + ["code"] = "f124d", + }, + ["md-flask_round_bottom_outline"] = { + ["char"] = "󱉎", + ["code"] = "f124e", + }, + ["md-fleur_de_lis"] = { + ["char"] = "󱌃", + ["code"] = "f1303", + }, + ["md-flip_horizontal"] = { + ["char"] = "󱃧", + ["code"] = "f10e7", + }, + ["md-flip_to_back"] = { + ["char"] = "󰉇", + ["code"] = "f0247", + }, + ["md-flip_to_front"] = { + ["char"] = "󰉈", + ["code"] = "f0248", + }, + ["md-flip_vertical"] = { + ["char"] = "󱃨", + ["code"] = "f10e8", + }, + ["md-floor_lamp"] = { + ["char"] = "󰣝", + ["code"] = "f08dd", + }, + ["md-floor_lamp_dual"] = { + ["char"] = "󱁀", + ["code"] = "f1040", + }, + ["md-floor_lamp_dual_outline"] = { + ["char"] = "󱟎", + ["code"] = "f17ce", + }, + ["md-floor_lamp_outline"] = { + ["char"] = "󱟈", + ["code"] = "f17c8", + }, + ["md-floor_lamp_torchiere"] = { + ["char"] = "󱝇", + ["code"] = "f1747", + }, + ["md-floor_lamp_torchiere_outline"] = { + ["char"] = "󱟖", + ["code"] = "f17d6", + }, + ["md-floor_lamp_torchiere_variant"] = { + ["char"] = "󱁁", + ["code"] = "f1041", + }, + ["md-floor_lamp_torchiere_variant_outline"] = { + ["char"] = "󱟏", + ["code"] = "f17cf", + }, + ["md-floor_plan"] = { + ["char"] = "󰠡", + ["code"] = "f0821", + }, + ["md-floppy"] = { + ["char"] = "󰉉", + ["code"] = "f0249", + }, + ["md-floppy_variant"] = { + ["char"] = "󰧯", + ["code"] = "f09ef", + }, + ["md-flower"] = { + ["char"] = "󰉊", + ["code"] = "f024a", + }, + ["md-flower_outline"] = { + ["char"] = "󰧰", + ["code"] = "f09f0", + }, + ["md-flower_pollen"] = { + ["char"] = "󱢅", + ["code"] = "f1885", + }, + ["md-flower_pollen_outline"] = { + ["char"] = "󱢆", + ["code"] = "f1886", + }, + ["md-flower_poppy"] = { + ["char"] = "󰴈", + ["code"] = "f0d08", + }, + ["md-flower_tulip"] = { + ["char"] = "󰧱", + ["code"] = "f09f1", + }, + ["md-flower_tulip_outline"] = { + ["char"] = "󰧲", + ["code"] = "f09f2", + }, + ["md-focus_auto"] = { + ["char"] = "󰽎", + ["code"] = "f0f4e", + }, + ["md-focus_field"] = { + ["char"] = "󰽏", + ["code"] = "f0f4f", + }, + ["md-focus_field_horizontal"] = { + ["char"] = "󰽐", + ["code"] = "f0f50", + }, + ["md-focus_field_vertical"] = { + ["char"] = "󰽑", + ["code"] = "f0f51", + }, + ["md-folder"] = { + ["char"] = "󰉋", + ["code"] = "f024b", + }, + ["md-folder_account"] = { + ["char"] = "󰉌", + ["code"] = "f024c", + }, + ["md-folder_account_outline"] = { + ["char"] = "󰮜", + ["code"] = "f0b9c", + }, + ["md-folder_alert"] = { + ["char"] = "󰷌", + ["code"] = "f0dcc", + }, + ["md-folder_alert_outline"] = { + ["char"] = "󰷍", + ["code"] = "f0dcd", + }, + ["md-folder_arrow_down"] = { + ["char"] = "󱧨", + ["code"] = "f19e8", + }, + ["md-folder_arrow_down_outline"] = { + ["char"] = "󱧩", + ["code"] = "f19e9", + }, + ["md-folder_arrow_left"] = { + ["char"] = "󱧪", + ["code"] = "f19ea", + }, + ["md-folder_arrow_left_outline"] = { + ["char"] = "󱧫", + ["code"] = "f19eb", + }, + ["md-folder_arrow_left_right"] = { + ["char"] = "󱧬", + ["code"] = "f19ec", + }, + ["md-folder_arrow_left_right_outline"] = { + ["char"] = "󱧭", + ["code"] = "f19ed", + }, + ["md-folder_arrow_right"] = { + ["char"] = "󱧮", + ["code"] = "f19ee", + }, + ["md-folder_arrow_right_outline"] = { + ["char"] = "󱧯", + ["code"] = "f19ef", + }, + ["md-folder_arrow_up"] = { + ["char"] = "󱧰", + ["code"] = "f19f0", + }, + ["md-folder_arrow_up_down"] = { + ["char"] = "󱧱", + ["code"] = "f19f1", + }, + ["md-folder_arrow_up_down_outline"] = { + ["char"] = "󱧲", + ["code"] = "f19f2", + }, + ["md-folder_arrow_up_outline"] = { + ["char"] = "󱧳", + ["code"] = "f19f3", + }, + ["md-folder_cancel"] = { + ["char"] = "󱧴", + ["code"] = "f19f4", + }, + ["md-folder_cancel_outline"] = { + ["char"] = "󱧵", + ["code"] = "f19f5", + }, + ["md-folder_check"] = { + ["char"] = "󱥾", + ["code"] = "f197e", + }, + ["md-folder_check_outline"] = { + ["char"] = "󱥿", + ["code"] = "f197f", + }, + ["md-folder_clock"] = { + ["char"] = "󰪺", + ["code"] = "f0aba", + }, + ["md-folder_clock_outline"] = { + ["char"] = "󰪻", + ["code"] = "f0abb", + }, + ["md-folder_cog"] = { + ["char"] = "󱁿", + ["code"] = "f107f", + }, + ["md-folder_cog_outline"] = { + ["char"] = "󱂀", + ["code"] = "f1080", + }, + ["md-folder_download"] = { + ["char"] = "󰉍", + ["code"] = "f024d", + }, + ["md-folder_download_outline"] = { + ["char"] = "󱃩", + ["code"] = "f10e9", + }, + ["md-folder_edit"] = { + ["char"] = "󰣞", + ["code"] = "f08de", + }, + ["md-folder_edit_outline"] = { + ["char"] = "󰷎", + ["code"] = "f0dce", + }, + ["md-folder_eye"] = { + ["char"] = "󱞊", + ["code"] = "f178a", + }, + ["md-folder_eye_outline"] = { + ["char"] = "󱞋", + ["code"] = "f178b", + }, + ["md-folder_file"] = { + ["char"] = "󱧶", + ["code"] = "f19f6", + }, + ["md-folder_file_outline"] = { + ["char"] = "󱧷", + ["code"] = "f19f7", + }, + ["md-folder_google_drive"] = { + ["char"] = "󰉎", + ["code"] = "f024e", + }, + ["md-folder_heart"] = { + ["char"] = "󱃪", + ["code"] = "f10ea", + }, + ["md-folder_heart_outline"] = { + ["char"] = "󱃫", + ["code"] = "f10eb", + }, + ["md-folder_hidden"] = { + ["char"] = "󱞞", + ["code"] = "f179e", + }, + ["md-folder_home"] = { + ["char"] = "󱂵", + ["code"] = "f10b5", + }, + ["md-folder_home_outline"] = { + ["char"] = "󱂶", + ["code"] = "f10b6", + }, + ["md-folder_image"] = { + ["char"] = "󰉏", + ["code"] = "f024f", + }, + ["md-folder_information"] = { + ["char"] = "󱂷", + ["code"] = "f10b7", + }, + ["md-folder_information_outline"] = { + ["char"] = "󱂸", + ["code"] = "f10b8", + }, + ["md-folder_key"] = { + ["char"] = "󰢬", + ["code"] = "f08ac", + }, + ["md-folder_key_network"] = { + ["char"] = "󰢭", + ["code"] = "f08ad", + }, + ["md-folder_key_network_outline"] = { + ["char"] = "󰲀", + ["code"] = "f0c80", + }, + ["md-folder_key_outline"] = { + ["char"] = "󱃬", + ["code"] = "f10ec", + }, + ["md-folder_lock"] = { + ["char"] = "󰉐", + ["code"] = "f0250", + }, + ["md-folder_lock_open"] = { + ["char"] = "󰉑", + ["code"] = "f0251", + }, + ["md-folder_lock_open_outline"] = { + ["char"] = "󱪧", + ["code"] = "f1aa7", + }, + ["md-folder_lock_outline"] = { + ["char"] = "󱪨", + ["code"] = "f1aa8", + }, + ["md-folder_marker"] = { + ["char"] = "󱉭", + ["code"] = "f126d", + }, + ["md-folder_marker_outline"] = { + ["char"] = "󱉮", + ["code"] = "f126e", + }, + ["md-folder_move"] = { + ["char"] = "󰉒", + ["code"] = "f0252", + }, + ["md-folder_move_outline"] = { + ["char"] = "󱉆", + ["code"] = "f1246", + }, + ["md-folder_multiple"] = { + ["char"] = "󰉓", + ["code"] = "f0253", + }, + ["md-folder_multiple_image"] = { + ["char"] = "󰉔", + ["code"] = "f0254", + }, + ["md-folder_multiple_outline"] = { + ["char"] = "󰉕", + ["code"] = "f0255", + }, + ["md-folder_multiple_plus"] = { + ["char"] = "󱑾", + ["code"] = "f147e", + }, + ["md-folder_multiple_plus_outline"] = { + ["char"] = "󱑿", + ["code"] = "f147f", + }, + ["md-folder_music"] = { + ["char"] = "󱍙", + ["code"] = "f1359", + }, + ["md-folder_music_outline"] = { + ["char"] = "󱍚", + ["code"] = "f135a", + }, + ["md-folder_network"] = { + ["char"] = "󰡰", + ["code"] = "f0870", + }, + ["md-folder_network_outline"] = { + ["char"] = "󰲁", + ["code"] = "f0c81", + }, + ["md-folder_off"] = { + ["char"] = "󱧸", + ["code"] = "f19f8", + }, + ["md-folder_off_outline"] = { + ["char"] = "󱧹", + ["code"] = "f19f9", + }, + ["md-folder_open"] = { + ["char"] = "󰝰", + ["code"] = "f0770", + }, + ["md-folder_open_outline"] = { + ["char"] = "󰷏", + ["code"] = "f0dcf", + }, + ["md-folder_outline"] = { + ["char"] = "󰉖", + ["code"] = "f0256", + }, + ["md-folder_play"] = { + ["char"] = "󱧺", + ["code"] = "f19fa", + }, + ["md-folder_play_outline"] = { + ["char"] = "󱧻", + ["code"] = "f19fb", + }, + ["md-folder_plus"] = { + ["char"] = "󰉗", + ["code"] = "f0257", + }, + ["md-folder_plus_outline"] = { + ["char"] = "󰮝", + ["code"] = "f0b9d", + }, + ["md-folder_pound"] = { + ["char"] = "󰴉", + ["code"] = "f0d09", + }, + ["md-folder_pound_outline"] = { + ["char"] = "󰴊", + ["code"] = "f0d0a", + }, + ["md-folder_question"] = { + ["char"] = "󱧊", + ["code"] = "f19ca", + }, + ["md-folder_question_outline"] = { + ["char"] = "󱧋", + ["code"] = "f19cb", + }, + ["md-folder_refresh"] = { + ["char"] = "󰝉", + ["code"] = "f0749", + }, + ["md-folder_refresh_outline"] = { + ["char"] = "󰕂", + ["code"] = "f0542", + }, + ["md-folder_remove"] = { + ["char"] = "󰉘", + ["code"] = "f0258", + }, + ["md-folder_remove_outline"] = { + ["char"] = "󰮞", + ["code"] = "f0b9e", + }, + ["md-folder_search"] = { + ["char"] = "󰥨", + ["code"] = "f0968", + }, + ["md-folder_search_outline"] = { + ["char"] = "󰥩", + ["code"] = "f0969", + }, + ["md-folder_settings"] = { + ["char"] = "󱁽", + ["code"] = "f107d", + }, + ["md-folder_settings_outline"] = { + ["char"] = "󱁾", + ["code"] = "f107e", + }, + ["md-folder_star"] = { + ["char"] = "󰚝", + ["code"] = "f069d", + }, + ["md-folder_star_multiple"] = { + ["char"] = "󱏓", + ["code"] = "f13d3", + }, + ["md-folder_star_multiple_outline"] = { + ["char"] = "󱏔", + ["code"] = "f13d4", + }, + ["md-folder_star_outline"] = { + ["char"] = "󰮟", + ["code"] = "f0b9f", + }, + ["md-folder_swap"] = { + ["char"] = "󰾶", + ["code"] = "f0fb6", + }, + ["md-folder_swap_outline"] = { + ["char"] = "󰾷", + ["code"] = "f0fb7", + }, + ["md-folder_sync"] = { + ["char"] = "󰴋", + ["code"] = "f0d0b", + }, + ["md-folder_sync_outline"] = { + ["char"] = "󰴌", + ["code"] = "f0d0c", + }, + ["md-folder_table"] = { + ["char"] = "󱋣", + ["code"] = "f12e3", + }, + ["md-folder_table_outline"] = { + ["char"] = "󱋤", + ["code"] = "f12e4", + }, + ["md-folder_text"] = { + ["char"] = "󰲂", + ["code"] = "f0c82", + }, + ["md-folder_text_outline"] = { + ["char"] = "󰲃", + ["code"] = "f0c83", + }, + ["md-folder_upload"] = { + ["char"] = "󰉙", + ["code"] = "f0259", + }, + ["md-folder_upload_outline"] = { + ["char"] = "󱃭", + ["code"] = "f10ed", + }, + ["md-folder_wrench"] = { + ["char"] = "󱧼", + ["code"] = "f19fc", + }, + ["md-folder_wrench_outline"] = { + ["char"] = "󱧽", + ["code"] = "f19fd", + }, + ["md-folder_zip"] = { + ["char"] = "󰛫", + ["code"] = "f06eb", + }, + ["md-folder_zip_outline"] = { + ["char"] = "󰞹", + ["code"] = "f07b9", + }, + ["md-font_awesome"] = { + ["char"] = "󰀺", + ["code"] = "f003a", + }, + ["md-food"] = { + ["char"] = "󰉚", + ["code"] = "f025a", + }, + ["md-food_apple"] = { + ["char"] = "󰉛", + ["code"] = "f025b", + }, + ["md-food_apple_outline"] = { + ["char"] = "󰲄", + ["code"] = "f0c84", + }, + ["md-food_croissant"] = { + ["char"] = "󰟈", + ["code"] = "f07c8", + }, + ["md-food_drumstick"] = { + ["char"] = "󱐟", + ["code"] = "f141f", + }, + ["md-food_drumstick_off"] = { + ["char"] = "󱑨", + ["code"] = "f1468", + }, + ["md-food_drumstick_off_outline"] = { + ["char"] = "󱑩", + ["code"] = "f1469", + }, + ["md-food_drumstick_outline"] = { + ["char"] = "󱐠", + ["code"] = "f1420", + }, + ["md-food_fork_drink"] = { + ["char"] = "󰗲", + ["code"] = "f05f2", + }, + ["md-food_halal"] = { + ["char"] = "󱕲", + ["code"] = "f1572", + }, + ["md-food_hot_dog"] = { + ["char"] = "󱡋", + ["code"] = "f184b", + }, + ["md-food_kosher"] = { + ["char"] = "󱕳", + ["code"] = "f1573", + }, + ["md-food_off"] = { + ["char"] = "󰗳", + ["code"] = "f05f3", + }, + ["md-food_off_outline"] = { + ["char"] = "󱤕", + ["code"] = "f1915", + }, + ["md-food_outline"] = { + ["char"] = "󱤖", + ["code"] = "f1916", + }, + ["md-food_steak"] = { + ["char"] = "󱑪", + ["code"] = "f146a", + }, + ["md-food_steak_off"] = { + ["char"] = "󱑫", + ["code"] = "f146b", + }, + ["md-food_takeout_box"] = { + ["char"] = "󱠶", + ["code"] = "f1836", + }, + ["md-food_takeout_box_outline"] = { + ["char"] = "󱠷", + ["code"] = "f1837", + }, + ["md-food_turkey"] = { + ["char"] = "󱜜", + ["code"] = "f171c", + }, + ["md-food_variant"] = { + ["char"] = "󰉜", + ["code"] = "f025c", + }, + ["md-food_variant_off"] = { + ["char"] = "󱏥", + ["code"] = "f13e5", + }, + ["md-foot_print"] = { + ["char"] = "󰽒", + ["code"] = "f0f52", + }, + ["md-football"] = { + ["char"] = "󰉝", + ["code"] = "f025d", + }, + ["md-football_australian"] = { + ["char"] = "󰉞", + ["code"] = "f025e", + }, + ["md-football_helmet"] = { + ["char"] = "󰉟", + ["code"] = "f025f", + }, + ["md-forest"] = { + ["char"] = "󱢗", + ["code"] = "f1897", + }, + ["md-forklift"] = { + ["char"] = "󰟉", + ["code"] = "f07c9", + }, + ["md-form_dropdown"] = { + ["char"] = "󱐀", + ["code"] = "f1400", + }, + ["md-form_select"] = { + ["char"] = "󱐁", + ["code"] = "f1401", + }, + ["md-form_textarea"] = { + ["char"] = "󱂕", + ["code"] = "f1095", + }, + ["md-form_textbox"] = { + ["char"] = "󰘎", + ["code"] = "f060e", + }, + ["md-form_textbox_lock"] = { + ["char"] = "󱍝", + ["code"] = "f135d", + }, + ["md-form_textbox_password"] = { + ["char"] = "󰟵", + ["code"] = "f07f5", + }, + ["md-format_align_bottom"] = { + ["char"] = "󰝓", + ["code"] = "f0753", + }, + ["md-format_align_center"] = { + ["char"] = "󰉠", + ["code"] = "f0260", + }, + ["md-format_align_justify"] = { + ["char"] = "󰉡", + ["code"] = "f0261", + }, + ["md-format_align_left"] = { + ["char"] = "󰉢", + ["code"] = "f0262", + }, + ["md-format_align_middle"] = { + ["char"] = "󰝔", + ["code"] = "f0754", + }, + ["md-format_align_right"] = { + ["char"] = "󰉣", + ["code"] = "f0263", + }, + ["md-format_align_top"] = { + ["char"] = "󰝕", + ["code"] = "f0755", + }, + ["md-format_annotation_minus"] = { + ["char"] = "󰪼", + ["code"] = "f0abc", + }, + ["md-format_annotation_plus"] = { + ["char"] = "󰙆", + ["code"] = "f0646", + }, + ["md-format_bold"] = { + ["char"] = "󰉤", + ["code"] = "f0264", + }, + ["md-format_clear"] = { + ["char"] = "󰉥", + ["code"] = "f0265", + }, + ["md-format_color_fill"] = { + ["char"] = "󰉦", + ["code"] = "f0266", + }, + ["md-format_color_highlight"] = { + ["char"] = "󰸱", + ["code"] = "f0e31", + }, + ["md-format_color_marker_cancel"] = { + ["char"] = "󱌓", + ["code"] = "f1313", + }, + ["md-format_color_text"] = { + ["char"] = "󰚞", + ["code"] = "f069e", + }, + ["md-format_columns"] = { + ["char"] = "󰣟", + ["code"] = "f08df", + }, + ["md-format_float_center"] = { + ["char"] = "󰉧", + ["code"] = "f0267", + }, + ["md-format_float_left"] = { + ["char"] = "󰉨", + ["code"] = "f0268", + }, + ["md-format_float_none"] = { + ["char"] = "󰉩", + ["code"] = "f0269", + }, + ["md-format_float_right"] = { + ["char"] = "󰉪", + ["code"] = "f026a", + }, + ["md-format_font"] = { + ["char"] = "󰛖", + ["code"] = "f06d6", + }, + ["md-format_font_size_decrease"] = { + ["char"] = "󰧳", + ["code"] = "f09f3", + }, + ["md-format_font_size_increase"] = { + ["char"] = "󰧴", + ["code"] = "f09f4", + }, + ["md-format_header_1"] = { + ["char"] = "󰉫", + ["code"] = "f026b", + }, + ["md-format_header_2"] = { + ["char"] = "󰉬", + ["code"] = "f026c", + }, + ["md-format_header_3"] = { + ["char"] = "󰉭", + ["code"] = "f026d", + }, + ["md-format_header_4"] = { + ["char"] = "󰉮", + ["code"] = "f026e", + }, + ["md-format_header_5"] = { + ["char"] = "󰉯", + ["code"] = "f026f", + }, + ["md-format_header_6"] = { + ["char"] = "󰉰", + ["code"] = "f0270", + }, + ["md-format_header_decrease"] = { + ["char"] = "󰉱", + ["code"] = "f0271", + }, + ["md-format_header_equal"] = { + ["char"] = "󰉲", + ["code"] = "f0272", + }, + ["md-format_header_increase"] = { + ["char"] = "󰉳", + ["code"] = "f0273", + }, + ["md-format_header_pound"] = { + ["char"] = "󰉴", + ["code"] = "f0274", + }, + ["md-format_horizontal_align_center"] = { + ["char"] = "󰘞", + ["code"] = "f061e", + }, + ["md-format_horizontal_align_left"] = { + ["char"] = "󰘟", + ["code"] = "f061f", + }, + ["md-format_horizontal_align_right"] = { + ["char"] = "󰘠", + ["code"] = "f0620", + }, + ["md-format_indent_decrease"] = { + ["char"] = "󰉵", + ["code"] = "f0275", + }, + ["md-format_indent_increase"] = { + ["char"] = "󰉶", + ["code"] = "f0276", + }, + ["md-format_italic"] = { + ["char"] = "󰉷", + ["code"] = "f0277", + }, + ["md-format_letter_case"] = { + ["char"] = "󰬴", + ["code"] = "f0b34", + }, + ["md-format_letter_case_lower"] = { + ["char"] = "󰬵", + ["code"] = "f0b35", + }, + ["md-format_letter_case_upper"] = { + ["char"] = "󰬶", + ["code"] = "f0b36", + }, + ["md-format_letter_ends_with"] = { + ["char"] = "󰾸", + ["code"] = "f0fb8", + }, + ["md-format_letter_matches"] = { + ["char"] = "󰾹", + ["code"] = "f0fb9", + }, + ["md-format_letter_spacing"] = { + ["char"] = "󱥖", + ["code"] = "f1956", + }, + ["md-format_letter_starts_with"] = { + ["char"] = "󰾺", + ["code"] = "f0fba", + }, + ["md-format_line_spacing"] = { + ["char"] = "󰉸", + ["code"] = "f0278", + }, + ["md-format_line_style"] = { + ["char"] = "󰗈", + ["code"] = "f05c8", + }, + ["md-format_line_weight"] = { + ["char"] = "󰗉", + ["code"] = "f05c9", + }, + ["md-format_list_bulleted"] = { + ["char"] = "󰉹", + ["code"] = "f0279", + }, + ["md-format_list_bulleted_square"] = { + ["char"] = "󰷐", + ["code"] = "f0dd0", + }, + ["md-format_list_bulleted_triangle"] = { + ["char"] = "󰺲", + ["code"] = "f0eb2", + }, + ["md-format_list_bulleted_type"] = { + ["char"] = "󰉺", + ["code"] = "f027a", + }, + ["md-format_list_checkbox"] = { + ["char"] = "󰥪", + ["code"] = "f096a", + }, + ["md-format_list_checks"] = { + ["char"] = "󰝖", + ["code"] = "f0756", + }, + ["md-format_list_group"] = { + ["char"] = "󱡠", + ["code"] = "f1860", + }, + ["md-format_list_numbered"] = { + ["char"] = "󰉻", + ["code"] = "f027b", + }, + ["md-format_list_numbered_rtl"] = { + ["char"] = "󰴍", + ["code"] = "f0d0d", + }, + ["md-format_list_text"] = { + ["char"] = "󱉯", + ["code"] = "f126f", + }, + ["md-format_overline"] = { + ["char"] = "󰺳", + ["code"] = "f0eb3", + }, + ["md-format_page_break"] = { + ["char"] = "󰛗", + ["code"] = "f06d7", + }, + ["md-format_page_split"] = { + ["char"] = "󱤗", + ["code"] = "f1917", + }, + ["md-format_paint"] = { + ["char"] = "󰉼", + ["code"] = "f027c", + }, + ["md-format_paragraph"] = { + ["char"] = "󰉽", + ["code"] = "f027d", + }, + ["md-format_pilcrow"] = { + ["char"] = "󰛘", + ["code"] = "f06d8", + }, + ["md-format_quote_close"] = { + ["char"] = "󰉾", + ["code"] = "f027e", + }, + ["md-format_quote_close_outline"] = { + ["char"] = "󱆨", + ["code"] = "f11a8", + }, + ["md-format_quote_open"] = { + ["char"] = "󰝗", + ["code"] = "f0757", + }, + ["md-format_quote_open_outline"] = { + ["char"] = "󱆧", + ["code"] = "f11a7", + }, + ["md-format_rotate_90"] = { + ["char"] = "󰚪", + ["code"] = "f06aa", + }, + ["md-format_section"] = { + ["char"] = "󰚟", + ["code"] = "f069f", + }, + ["md-format_size"] = { + ["char"] = "󰉿", + ["code"] = "f027f", + }, + ["md-format_strikethrough"] = { + ["char"] = "󰊀", + ["code"] = "f0280", + }, + ["md-format_strikethrough_variant"] = { + ["char"] = "󰊁", + ["code"] = "f0281", + }, + ["md-format_subscript"] = { + ["char"] = "󰊂", + ["code"] = "f0282", + }, + ["md-format_superscript"] = { + ["char"] = "󰊃", + ["code"] = "f0283", + }, + ["md-format_text"] = { + ["char"] = "󰊄", + ["code"] = "f0284", + }, + ["md-format_text_rotation_angle_down"] = { + ["char"] = "󰾻", + ["code"] = "f0fbb", + }, + ["md-format_text_rotation_angle_up"] = { + ["char"] = "󰾼", + ["code"] = "f0fbc", + }, + ["md-format_text_rotation_down"] = { + ["char"] = "󰵳", + ["code"] = "f0d73", + }, + ["md-format_text_rotation_down_vertical"] = { + ["char"] = "󰾽", + ["code"] = "f0fbd", + }, + ["md-format_text_rotation_none"] = { + ["char"] = "󰵴", + ["code"] = "f0d74", + }, + ["md-format_text_rotation_up"] = { + ["char"] = "󰾾", + ["code"] = "f0fbe", + }, + ["md-format_text_rotation_vertical"] = { + ["char"] = "󰾿", + ["code"] = "f0fbf", + }, + ["md-format_text_variant"] = { + ["char"] = "󰸲", + ["code"] = "f0e32", + }, + ["md-format_text_variant_outline"] = { + ["char"] = "󱔏", + ["code"] = "f150f", + }, + ["md-format_text_wrapping_clip"] = { + ["char"] = "󰴎", + ["code"] = "f0d0e", + }, + ["md-format_text_wrapping_overflow"] = { + ["char"] = "󰴏", + ["code"] = "f0d0f", + }, + ["md-format_text_wrapping_wrap"] = { + ["char"] = "󰴐", + ["code"] = "f0d10", + }, + ["md-format_textbox"] = { + ["char"] = "󰴑", + ["code"] = "f0d11", + }, + ["md-format_textdirection_l_to_r"] = { + ["char"] = "󰊅", + ["code"] = "f0285", + }, + ["md-format_textdirection_r_to_l"] = { + ["char"] = "󰊆", + ["code"] = "f0286", + }, + ["md-format_title"] = { + ["char"] = "󰗴", + ["code"] = "f05f4", + }, + ["md-format_underline"] = { + ["char"] = "󰊇", + ["code"] = "f0287", + }, + ["md-format_underline_wavy"] = { + ["char"] = "󱣩", + ["code"] = "f18e9", + }, + ["md-format_vertical_align_bottom"] = { + ["char"] = "󰘡", + ["code"] = "f0621", + }, + ["md-format_vertical_align_center"] = { + ["char"] = "󰘢", + ["code"] = "f0622", + }, + ["md-format_vertical_align_top"] = { + ["char"] = "󰘣", + ["code"] = "f0623", + }, + ["md-format_wrap_inline"] = { + ["char"] = "󰊈", + ["code"] = "f0288", + }, + ["md-format_wrap_square"] = { + ["char"] = "󰊉", + ["code"] = "f0289", + }, + ["md-format_wrap_tight"] = { + ["char"] = "󰊊", + ["code"] = "f028a", + }, + ["md-format_wrap_top_bottom"] = { + ["char"] = "󰊋", + ["code"] = "f028b", + }, + ["md-forum"] = { + ["char"] = "󰊌", + ["code"] = "f028c", + }, + ["md-forum_minus"] = { + ["char"] = "󱪩", + ["code"] = "f1aa9", + }, + ["md-forum_minus_outline"] = { + ["char"] = "󱪪", + ["code"] = "f1aaa", + }, + ["md-forum_outline"] = { + ["char"] = "󰠢", + ["code"] = "f0822", + }, + ["md-forum_plus"] = { + ["char"] = "󱪫", + ["code"] = "f1aab", + }, + ["md-forum_plus_outline"] = { + ["char"] = "󱪬", + ["code"] = "f1aac", + }, + ["md-forum_remove"] = { + ["char"] = "󱪭", + ["code"] = "f1aad", + }, + ["md-forum_remove_outline"] = { + ["char"] = "󱪮", + ["code"] = "f1aae", + }, + ["md-forward"] = { + ["char"] = "󰊍", + ["code"] = "f028d", + }, + ["md-forwardburger"] = { + ["char"] = "󰵵", + ["code"] = "f0d75", + }, + ["md-fountain"] = { + ["char"] = "󰥫", + ["code"] = "f096b", + }, + ["md-fountain_pen"] = { + ["char"] = "󰴒", + ["code"] = "f0d12", + }, + ["md-fountain_pen_tip"] = { + ["char"] = "󰴓", + ["code"] = "f0d13", + }, + ["md-fraction_one_half"] = { + ["char"] = "󱦒", + ["code"] = "f1992", + }, + ["md-freebsd"] = { + ["char"] = "󰣠", + ["code"] = "f08e0", + }, + ["md-french_fries"] = { + ["char"] = "󱥗", + ["code"] = "f1957", + }, + ["md-frequently_asked_questions"] = { + ["char"] = "󰺴", + ["code"] = "f0eb4", + }, + ["md-fridge"] = { + ["char"] = "󰊐", + ["code"] = "f0290", + }, + ["md-fridge_alert"] = { + ["char"] = "󱆱", + ["code"] = "f11b1", + }, + ["md-fridge_alert_outline"] = { + ["char"] = "󱆲", + ["code"] = "f11b2", + }, + ["md-fridge_bottom"] = { + ["char"] = "󰊒", + ["code"] = "f0292", + }, + ["md-fridge_industrial"] = { + ["char"] = "󱗮", + ["code"] = "f15ee", + }, + ["md-fridge_industrial_alert"] = { + ["char"] = "󱗯", + ["code"] = "f15ef", + }, + ["md-fridge_industrial_alert_outline"] = { + ["char"] = "󱗰", + ["code"] = "f15f0", + }, + ["md-fridge_industrial_off"] = { + ["char"] = "󱗱", + ["code"] = "f15f1", + }, + ["md-fridge_industrial_off_outline"] = { + ["char"] = "󱗲", + ["code"] = "f15f2", + }, + ["md-fridge_industrial_outline"] = { + ["char"] = "󱗳", + ["code"] = "f15f3", + }, + ["md-fridge_off"] = { + ["char"] = "󱆯", + ["code"] = "f11af", + }, + ["md-fridge_off_outline"] = { + ["char"] = "󱆰", + ["code"] = "f11b0", + }, + ["md-fridge_outline"] = { + ["char"] = "󰊏", + ["code"] = "f028f", + }, + ["md-fridge_top"] = { + ["char"] = "󰊑", + ["code"] = "f0291", + }, + ["md-fridge_variant"] = { + ["char"] = "󱗴", + ["code"] = "f15f4", + }, + ["md-fridge_variant_alert"] = { + ["char"] = "󱗵", + ["code"] = "f15f5", + }, + ["md-fridge_variant_alert_outline"] = { + ["char"] = "󱗶", + ["code"] = "f15f6", + }, + ["md-fridge_variant_off"] = { + ["char"] = "󱗷", + ["code"] = "f15f7", + }, + ["md-fridge_variant_off_outline"] = { + ["char"] = "󱗸", + ["code"] = "f15f8", + }, + ["md-fridge_variant_outline"] = { + ["char"] = "󱗹", + ["code"] = "f15f9", + }, + ["md-fruit_cherries"] = { + ["char"] = "󱁂", + ["code"] = "f1042", + }, + ["md-fruit_cherries_off"] = { + ["char"] = "󱏸", + ["code"] = "f13f8", + }, + ["md-fruit_citrus"] = { + ["char"] = "󱁃", + ["code"] = "f1043", + }, + ["md-fruit_citrus_off"] = { + ["char"] = "󱏹", + ["code"] = "f13f9", + }, + ["md-fruit_grapes"] = { + ["char"] = "󱁄", + ["code"] = "f1044", + }, + ["md-fruit_grapes_outline"] = { + ["char"] = "󱁅", + ["code"] = "f1045", + }, + ["md-fruit_pear"] = { + ["char"] = "󱨎", + ["code"] = "f1a0e", + }, + ["md-fruit_pineapple"] = { + ["char"] = "󱁆", + ["code"] = "f1046", + }, + ["md-fruit_watermelon"] = { + ["char"] = "󱁇", + ["code"] = "f1047", + }, + ["md-fuel"] = { + ["char"] = "󰟊", + ["code"] = "f07ca", + }, + ["md-fuel_cell"] = { + ["char"] = "󱢵", + ["code"] = "f18b5", + }, + ["md-fullscreen"] = { + ["char"] = "󰊓", + ["code"] = "f0293", + }, + ["md-fullscreen_exit"] = { + ["char"] = "󰊔", + ["code"] = "f0294", + }, + ["md-function"] = { + ["char"] = "󰊕", + ["code"] = "f0295", + }, + ["md-function_variant"] = { + ["char"] = "󰡱", + ["code"] = "f0871", + }, + ["md-furigana_horizontal"] = { + ["char"] = "󱂁", + ["code"] = "f1081", + }, + ["md-furigana_vertical"] = { + ["char"] = "󱂂", + ["code"] = "f1082", + }, + ["md-fuse"] = { + ["char"] = "󰲅", + ["code"] = "f0c85", + }, + ["md-fuse_alert"] = { + ["char"] = "󱐭", + ["code"] = "f142d", + }, + ["md-fuse_blade"] = { + ["char"] = "󰲆", + ["code"] = "f0c86", + }, + ["md-fuse_off"] = { + ["char"] = "󱐬", + ["code"] = "f142c", + }, + ["md-gamepad"] = { + ["char"] = "󰊖", + ["code"] = "f0296", + }, + ["md-gamepad_circle"] = { + ["char"] = "󰸳", + ["code"] = "f0e33", + }, + ["md-gamepad_circle_down"] = { + ["char"] = "󰸴", + ["code"] = "f0e34", + }, + ["md-gamepad_circle_left"] = { + ["char"] = "󰸵", + ["code"] = "f0e35", + }, + ["md-gamepad_circle_outline"] = { + ["char"] = "󰸶", + ["code"] = "f0e36", + }, + ["md-gamepad_circle_right"] = { + ["char"] = "󰸷", + ["code"] = "f0e37", + }, + ["md-gamepad_circle_up"] = { + ["char"] = "󰸸", + ["code"] = "f0e38", + }, + ["md-gamepad_down"] = { + ["char"] = "󰸹", + ["code"] = "f0e39", + }, + ["md-gamepad_left"] = { + ["char"] = "󰸺", + ["code"] = "f0e3a", + }, + ["md-gamepad_outline"] = { + ["char"] = "󱤙", + ["code"] = "f1919", + }, + ["md-gamepad_right"] = { + ["char"] = "󰸻", + ["code"] = "f0e3b", + }, + ["md-gamepad_round"] = { + ["char"] = "󰸼", + ["code"] = "f0e3c", + }, + ["md-gamepad_round_down"] = { + ["char"] = "󰸽", + ["code"] = "f0e3d", + }, + ["md-gamepad_round_left"] = { + ["char"] = "󰸾", + ["code"] = "f0e3e", + }, + ["md-gamepad_round_outline"] = { + ["char"] = "󰸿", + ["code"] = "f0e3f", + }, + ["md-gamepad_round_right"] = { + ["char"] = "󰹀", + ["code"] = "f0e40", + }, + ["md-gamepad_round_up"] = { + ["char"] = "󰹁", + ["code"] = "f0e41", + }, + ["md-gamepad_square"] = { + ["char"] = "󰺵", + ["code"] = "f0eb5", + }, + ["md-gamepad_square_outline"] = { + ["char"] = "󰺶", + ["code"] = "f0eb6", + }, + ["md-gamepad_up"] = { + ["char"] = "󰹂", + ["code"] = "f0e42", + }, + ["md-gamepad_variant"] = { + ["char"] = "󰊗", + ["code"] = "f0297", + }, + ["md-gamepad_variant_outline"] = { + ["char"] = "󰺷", + ["code"] = "f0eb7", + }, + ["md-gamma"] = { + ["char"] = "󱃮", + ["code"] = "f10ee", + }, + ["md-gantry_crane"] = { + ["char"] = "󰷑", + ["code"] = "f0dd1", + }, + ["md-garage"] = { + ["char"] = "󰛙", + ["code"] = "f06d9", + }, + ["md-garage_alert"] = { + ["char"] = "󰡲", + ["code"] = "f0872", + }, + ["md-garage_alert_variant"] = { + ["char"] = "󱋕", + ["code"] = "f12d5", + }, + ["md-garage_lock"] = { + ["char"] = "󱟻", + ["code"] = "f17fb", + }, + ["md-garage_open"] = { + ["char"] = "󰛚", + ["code"] = "f06da", + }, + ["md-garage_open_variant"] = { + ["char"] = "󱋔", + ["code"] = "f12d4", + }, + ["md-garage_variant"] = { + ["char"] = "󱋓", + ["code"] = "f12d3", + }, + ["md-garage_variant_lock"] = { + ["char"] = "󱟼", + ["code"] = "f17fc", + }, + ["md-gas_burner"] = { + ["char"] = "󱨛", + ["code"] = "f1a1b", + }, + ["md-gas_cylinder"] = { + ["char"] = "󰙇", + ["code"] = "f0647", + }, + ["md-gas_station"] = { + ["char"] = "󰊘", + ["code"] = "f0298", + }, + ["md-gas_station_off"] = { + ["char"] = "󱐉", + ["code"] = "f1409", + }, + ["md-gas_station_off_outline"] = { + ["char"] = "󱐊", + ["code"] = "f140a", + }, + ["md-gas_station_outline"] = { + ["char"] = "󰺸", + ["code"] = "f0eb8", + }, + ["md-gate"] = { + ["char"] = "󰊙", + ["code"] = "f0299", + }, + ["md-gate_alert"] = { + ["char"] = "󱟸", + ["code"] = "f17f8", + }, + ["md-gate_and"] = { + ["char"] = "󰣡", + ["code"] = "f08e1", + }, + ["md-gate_arrow_left"] = { + ["char"] = "󱟷", + ["code"] = "f17f7", + }, + ["md-gate_arrow_right"] = { + ["char"] = "󱅩", + ["code"] = "f1169", + }, + ["md-gate_nand"] = { + ["char"] = "󰣢", + ["code"] = "f08e2", + }, + ["md-gate_nor"] = { + ["char"] = "󰣣", + ["code"] = "f08e3", + }, + ["md-gate_not"] = { + ["char"] = "󰣤", + ["code"] = "f08e4", + }, + ["md-gate_open"] = { + ["char"] = "󱅪", + ["code"] = "f116a", + }, + ["md-gate_or"] = { + ["char"] = "󰣥", + ["code"] = "f08e5", + }, + ["md-gate_xnor"] = { + ["char"] = "󰣦", + ["code"] = "f08e6", + }, + ["md-gate_xor"] = { + ["char"] = "󰣧", + ["code"] = "f08e7", + }, + ["md-gatsby"] = { + ["char"] = "󰹃", + ["code"] = "f0e43", + }, + ["md-gauge"] = { + ["char"] = "󰊚", + ["code"] = "f029a", + }, + ["md-gauge_empty"] = { + ["char"] = "󰡳", + ["code"] = "f0873", + }, + ["md-gauge_full"] = { + ["char"] = "󰡴", + ["code"] = "f0874", + }, + ["md-gauge_low"] = { + ["char"] = "󰡵", + ["code"] = "f0875", + }, + ["md-gavel"] = { + ["char"] = "󰊛", + ["code"] = "f029b", + }, + ["md-gender_female"] = { + ["char"] = "󰊜", + ["code"] = "f029c", + }, + ["md-gender_male"] = { + ["char"] = "󰊝", + ["code"] = "f029d", + }, + ["md-gender_male_female"] = { + ["char"] = "󰊞", + ["code"] = "f029e", + }, + ["md-gender_male_female_variant"] = { + ["char"] = "󱄿", + ["code"] = "f113f", + }, + ["md-gender_non_binary"] = { + ["char"] = "󱅀", + ["code"] = "f1140", + }, + ["md-gender_transgender"] = { + ["char"] = "󰊟", + ["code"] = "f029f", + }, + ["md-gentoo"] = { + ["char"] = "󰣨", + ["code"] = "f08e8", + }, + ["md-gesture"] = { + ["char"] = "󰟋", + ["code"] = "f07cb", + }, + ["md-gesture_double_tap"] = { + ["char"] = "󰜼", + ["code"] = "f073c", + }, + ["md-gesture_pinch"] = { + ["char"] = "󰪽", + ["code"] = "f0abd", + }, + ["md-gesture_spread"] = { + ["char"] = "󰪾", + ["code"] = "f0abe", + }, + ["md-gesture_swipe"] = { + ["char"] = "󰵶", + ["code"] = "f0d76", + }, + ["md-gesture_swipe_down"] = { + ["char"] = "󰜽", + ["code"] = "f073d", + }, + ["md-gesture_swipe_horizontal"] = { + ["char"] = "󰪿", + ["code"] = "f0abf", + }, + ["md-gesture_swipe_left"] = { + ["char"] = "󰜾", + ["code"] = "f073e", + }, + ["md-gesture_swipe_right"] = { + ["char"] = "󰜿", + ["code"] = "f073f", + }, + ["md-gesture_swipe_up"] = { + ["char"] = "󰝀", + ["code"] = "f0740", + }, + ["md-gesture_swipe_vertical"] = { + ["char"] = "󰫀", + ["code"] = "f0ac0", + }, + ["md-gesture_tap"] = { + ["char"] = "󰝁", + ["code"] = "f0741", + }, + ["md-gesture_tap_box"] = { + ["char"] = "󱊩", + ["code"] = "f12a9", + }, + ["md-gesture_tap_button"] = { + ["char"] = "󱊨", + ["code"] = "f12a8", + }, + ["md-gesture_tap_hold"] = { + ["char"] = "󰵷", + ["code"] = "f0d77", + }, + ["md-gesture_two_double_tap"] = { + ["char"] = "󰝂", + ["code"] = "f0742", + }, + ["md-gesture_two_tap"] = { + ["char"] = "󰝃", + ["code"] = "f0743", + }, + ["md-ghost"] = { + ["char"] = "󰊠", + ["code"] = "f02a0", + }, + ["md-ghost_off"] = { + ["char"] = "󰧵", + ["code"] = "f09f5", + }, + ["md-ghost_off_outline"] = { + ["char"] = "󱙜", + ["code"] = "f165c", + }, + ["md-ghost_outline"] = { + ["char"] = "󱙝", + ["code"] = "f165d", + }, + ["md-gift"] = { + ["char"] = "󰹄", + ["code"] = "f0e44", + }, + ["md-gift_off"] = { + ["char"] = "󱛯", + ["code"] = "f16ef", + }, + ["md-gift_off_outline"] = { + ["char"] = "󱛰", + ["code"] = "f16f0", + }, + ["md-gift_open"] = { + ["char"] = "󱛱", + ["code"] = "f16f1", + }, + ["md-gift_open_outline"] = { + ["char"] = "󱛲", + ["code"] = "f16f2", + }, + ["md-gift_outline"] = { + ["char"] = "󰊡", + ["code"] = "f02a1", + }, + ["md-git"] = { + ["char"] = "󰊢", + ["code"] = "f02a2", + }, + ["md-github"] = { + ["char"] = "󰊤", + ["code"] = "f02a4", + }, + ["md-gitlab"] = { + ["char"] = "󰮠", + ["code"] = "f0ba0", + }, + ["md-glass_cocktail"] = { + ["char"] = "󰍖", + ["code"] = "f0356", + }, + ["md-glass_cocktail_off"] = { + ["char"] = "󱗦", + ["code"] = "f15e6", + }, + ["md-glass_flute"] = { + ["char"] = "󰊥", + ["code"] = "f02a5", + }, + ["md-glass_fragile"] = { + ["char"] = "󱡳", + ["code"] = "f1873", + }, + ["md-glass_mug"] = { + ["char"] = "󰊦", + ["code"] = "f02a6", + }, + ["md-glass_mug_off"] = { + ["char"] = "󱗧", + ["code"] = "f15e7", + }, + ["md-glass_mug_variant"] = { + ["char"] = "󱄖", + ["code"] = "f1116", + }, + ["md-glass_mug_variant_off"] = { + ["char"] = "󱗨", + ["code"] = "f15e8", + }, + ["md-glass_pint_outline"] = { + ["char"] = "󱌍", + ["code"] = "f130d", + }, + ["md-glass_stange"] = { + ["char"] = "󰊧", + ["code"] = "f02a7", + }, + ["md-glass_tulip"] = { + ["char"] = "󰊨", + ["code"] = "f02a8", + }, + ["md-glass_wine"] = { + ["char"] = "󰡶", + ["code"] = "f0876", + }, + ["md-glasses"] = { + ["char"] = "󰊪", + ["code"] = "f02aa", + }, + ["md-globe_light"] = { + ["char"] = "󱋗", + ["code"] = "f12d7", + }, + ["md-globe_model"] = { + ["char"] = "󰣩", + ["code"] = "f08e9", + }, + ["md-gmail"] = { + ["char"] = "󰊫", + ["code"] = "f02ab", + }, + ["md-gnome"] = { + ["char"] = "󰊬", + ["code"] = "f02ac", + }, + ["md-go_kart"] = { + ["char"] = "󰵹", + ["code"] = "f0d79", + }, + ["md-go_kart_track"] = { + ["char"] = "󰵺", + ["code"] = "f0d7a", + }, + ["md-gog"] = { + ["char"] = "󰮡", + ["code"] = "f0ba1", + }, + ["md-gold"] = { + ["char"] = "󱉏", + ["code"] = "f124f", + }, + ["md-golf"] = { + ["char"] = "󰠣", + ["code"] = "f0823", + }, + ["md-golf_cart"] = { + ["char"] = "󱆤", + ["code"] = "f11a4", + }, + ["md-golf_tee"] = { + ["char"] = "󱂃", + ["code"] = "f1083", + }, + ["md-gondola"] = { + ["char"] = "󰚆", + ["code"] = "f0686", + }, + ["md-goodreads"] = { + ["char"] = "󰵻", + ["code"] = "f0d7b", + }, + ["md-google"] = { + ["char"] = "󰊭", + ["code"] = "f02ad", + }, + ["md-google_ads"] = { + ["char"] = "󰲇", + ["code"] = "f0c87", + }, + ["md-google_analytics"] = { + ["char"] = "󰟌", + ["code"] = "f07cc", + }, + ["md-google_assistant"] = { + ["char"] = "󰟍", + ["code"] = "f07cd", + }, + ["md-google_cardboard"] = { + ["char"] = "󰊮", + ["code"] = "f02ae", + }, + ["md-google_chrome"] = { + ["char"] = "󰊯", + ["code"] = "f02af", + }, + ["md-google_circles"] = { + ["char"] = "󰊰", + ["code"] = "f02b0", + }, + ["md-google_circles_communities"] = { + ["char"] = "󰊱", + ["code"] = "f02b1", + }, + ["md-google_circles_extended"] = { + ["char"] = "󰊲", + ["code"] = "f02b2", + }, + ["md-google_circles_group"] = { + ["char"] = "󰊳", + ["code"] = "f02b3", + }, + ["md-google_classroom"] = { + ["char"] = "󰋀", + ["code"] = "f02c0", + }, + ["md-google_cloud"] = { + ["char"] = "󱇶", + ["code"] = "f11f6", + }, + ["md-google_controller"] = { + ["char"] = "󰊴", + ["code"] = "f02b4", + }, + ["md-google_controller_off"] = { + ["char"] = "󰊵", + ["code"] = "f02b5", + }, + ["md-google_downasaur"] = { + ["char"] = "󱍢", + ["code"] = "f1362", + }, + ["md-google_drive"] = { + ["char"] = "󰊶", + ["code"] = "f02b6", + }, + ["md-google_earth"] = { + ["char"] = "󰊷", + ["code"] = "f02b7", + }, + ["md-google_fit"] = { + ["char"] = "󰥬", + ["code"] = "f096c", + }, + ["md-google_glass"] = { + ["char"] = "󰊸", + ["code"] = "f02b8", + }, + ["md-google_hangouts"] = { + ["char"] = "󰋉", + ["code"] = "f02c9", + }, + ["md-google_home"] = { + ["char"] = "󰠤", + ["code"] = "f0824", + }, + ["md-google_keep"] = { + ["char"] = "󰛜", + ["code"] = "f06dc", + }, + ["md-google_lens"] = { + ["char"] = "󰧶", + ["code"] = "f09f6", + }, + ["md-google_maps"] = { + ["char"] = "󰗵", + ["code"] = "f05f5", + }, + ["md-google_my_business"] = { + ["char"] = "󱁈", + ["code"] = "f1048", + }, + ["md-google_nearby"] = { + ["char"] = "󰊹", + ["code"] = "f02b9", + }, + ["md-google_play"] = { + ["char"] = "󰊼", + ["code"] = "f02bc", + }, + ["md-google_plus"] = { + ["char"] = "󰊽", + ["code"] = "f02bd", + }, + ["md-google_podcast"] = { + ["char"] = "󰺹", + ["code"] = "f0eb9", + }, + ["md-google_spreadsheet"] = { + ["char"] = "󰧷", + ["code"] = "f09f7", + }, + ["md-google_street_view"] = { + ["char"] = "󰲈", + ["code"] = "f0c88", + }, + ["md-google_translate"] = { + ["char"] = "󰊿", + ["code"] = "f02bf", + }, + ["md-gradient_horizontal"] = { + ["char"] = "󱝊", + ["code"] = "f174a", + }, + ["md-gradient_vertical"] = { + ["char"] = "󰚠", + ["code"] = "f06a0", + }, + ["md-grain"] = { + ["char"] = "󰵼", + ["code"] = "f0d7c", + }, + ["md-graph"] = { + ["char"] = "󱁉", + ["code"] = "f1049", + }, + ["md-graph_outline"] = { + ["char"] = "󱁊", + ["code"] = "f104a", + }, + ["md-graphql"] = { + ["char"] = "󰡷", + ["code"] = "f0877", + }, + ["md-grass"] = { + ["char"] = "󱔐", + ["code"] = "f1510", + }, + ["md-grave_stone"] = { + ["char"] = "󰮢", + ["code"] = "f0ba2", + }, + ["md-grease_pencil"] = { + ["char"] = "󰙈", + ["code"] = "f0648", + }, + ["md-greater_than"] = { + ["char"] = "󰥭", + ["code"] = "f096d", + }, + ["md-greater_than_or_equal"] = { + ["char"] = "󰥮", + ["code"] = "f096e", + }, + ["md-greenhouse"] = { + ["char"] = "󰀭", + ["code"] = "f002d", + }, + ["md-grid"] = { + ["char"] = "󰋁", + ["code"] = "f02c1", + }, + ["md-grid_large"] = { + ["char"] = "󰝘", + ["code"] = "f0758", + }, + ["md-grid_off"] = { + ["char"] = "󰋂", + ["code"] = "f02c2", + }, + ["md-grill"] = { + ["char"] = "󰹅", + ["code"] = "f0e45", + }, + ["md-grill_outline"] = { + ["char"] = "󱆊", + ["code"] = "f118a", + }, + ["md-group"] = { + ["char"] = "󰋃", + ["code"] = "f02c3", + }, + ["md-guitar_acoustic"] = { + ["char"] = "󰝱", + ["code"] = "f0771", + }, + ["md-guitar_electric"] = { + ["char"] = "󰋄", + ["code"] = "f02c4", + }, + ["md-guitar_pick"] = { + ["char"] = "󰋅", + ["code"] = "f02c5", + }, + ["md-guitar_pick_outline"] = { + ["char"] = "󰋆", + ["code"] = "f02c6", + }, + ["md-guy_fawkes_mask"] = { + ["char"] = "󰠥", + ["code"] = "f0825", + }, + ["md-gymnastics"] = { + ["char"] = "󱩁", + ["code"] = "f1a41", + }, + ["md-hail"] = { + ["char"] = "󰫁", + ["code"] = "f0ac1", + }, + ["md-hair_dryer"] = { + ["char"] = "󱃯", + ["code"] = "f10ef", + }, + ["md-hair_dryer_outline"] = { + ["char"] = "󱃰", + ["code"] = "f10f0", + }, + ["md-halloween"] = { + ["char"] = "󰮣", + ["code"] = "f0ba3", + }, + ["md-hamburger"] = { + ["char"] = "󰚅", + ["code"] = "f0685", + }, + ["md-hamburger_check"] = { + ["char"] = "󱝶", + ["code"] = "f1776", + }, + ["md-hamburger_minus"] = { + ["char"] = "󱝷", + ["code"] = "f1777", + }, + ["md-hamburger_off"] = { + ["char"] = "󱝸", + ["code"] = "f1778", + }, + ["md-hamburger_plus"] = { + ["char"] = "󱝹", + ["code"] = "f1779", + }, + ["md-hamburger_remove"] = { + ["char"] = "󱝺", + ["code"] = "f177a", + }, + ["md-hammer"] = { + ["char"] = "󰣪", + ["code"] = "f08ea", + }, + ["md-hammer_screwdriver"] = { + ["char"] = "󱌢", + ["code"] = "f1322", + }, + ["md-hammer_sickle"] = { + ["char"] = "󱢇", + ["code"] = "f1887", + }, + ["md-hammer_wrench"] = { + ["char"] = "󱌣", + ["code"] = "f1323", + }, + ["md-hand_back_left"] = { + ["char"] = "󰹆", + ["code"] = "f0e46", + }, + ["md-hand_back_left_off"] = { + ["char"] = "󱠰", + ["code"] = "f1830", + }, + ["md-hand_back_left_off_outline"] = { + ["char"] = "󱠲", + ["code"] = "f1832", + }, + ["md-hand_back_left_outline"] = { + ["char"] = "󱠬", + ["code"] = "f182c", + }, + ["md-hand_back_right"] = { + ["char"] = "󰹇", + ["code"] = "f0e47", + }, + ["md-hand_back_right_off"] = { + ["char"] = "󱠱", + ["code"] = "f1831", + }, + ["md-hand_back_right_off_outline"] = { + ["char"] = "󱠳", + ["code"] = "f1833", + }, + ["md-hand_back_right_outline"] = { + ["char"] = "󱠭", + ["code"] = "f182d", + }, + ["md-hand_clap"] = { + ["char"] = "󱥋", + ["code"] = "f194b", + }, + ["md-hand_clap_off"] = { + ["char"] = "󱩂", + ["code"] = "f1a42", + }, + ["md-hand_coin"] = { + ["char"] = "󱢏", + ["code"] = "f188f", + }, + ["md-hand_coin_outline"] = { + ["char"] = "󱢐", + ["code"] = "f1890", + }, + ["md-hand_extended"] = { + ["char"] = "󱢶", + ["code"] = "f18b6", + }, + ["md-hand_extended_outline"] = { + ["char"] = "󱢷", + ["code"] = "f18b7", + }, + ["md-hand_front_left"] = { + ["char"] = "󱠫", + ["code"] = "f182b", + }, + ["md-hand_front_left_outline"] = { + ["char"] = "󱠮", + ["code"] = "f182e", + }, + ["md-hand_front_right"] = { + ["char"] = "󰩏", + ["code"] = "f0a4f", + }, + ["md-hand_front_right_outline"] = { + ["char"] = "󱠯", + ["code"] = "f182f", + }, + ["md-hand_heart"] = { + ["char"] = "󱃱", + ["code"] = "f10f1", + }, + ["md-hand_heart_outline"] = { + ["char"] = "󱕾", + ["code"] = "f157e", + }, + ["md-hand_okay"] = { + ["char"] = "󰩐", + ["code"] = "f0a50", + }, + ["md-hand_peace"] = { + ["char"] = "󰩑", + ["code"] = "f0a51", + }, + ["md-hand_peace_variant"] = { + ["char"] = "󰩒", + ["code"] = "f0a52", + }, + ["md-hand_pointing_down"] = { + ["char"] = "󰩓", + ["code"] = "f0a53", + }, + ["md-hand_pointing_left"] = { + ["char"] = "󰩔", + ["code"] = "f0a54", + }, + ["md-hand_pointing_right"] = { + ["char"] = "󰋇", + ["code"] = "f02c7", + }, + ["md-hand_pointing_up"] = { + ["char"] = "󰩕", + ["code"] = "f0a55", + }, + ["md-hand_saw"] = { + ["char"] = "󰹈", + ["code"] = "f0e48", + }, + ["md-hand_wash"] = { + ["char"] = "󱕿", + ["code"] = "f157f", + }, + ["md-hand_wash_outline"] = { + ["char"] = "󱖀", + ["code"] = "f1580", + }, + ["md-hand_water"] = { + ["char"] = "󱎟", + ["code"] = "f139f", + }, + ["md-hand_wave"] = { + ["char"] = "󱠡", + ["code"] = "f1821", + }, + ["md-hand_wave_outline"] = { + ["char"] = "󱠢", + ["code"] = "f1822", + }, + ["md-handball"] = { + ["char"] = "󰽓", + ["code"] = "f0f53", + }, + ["md-handcuffs"] = { + ["char"] = "󱄾", + ["code"] = "f113e", + }, + ["md-hands_pray"] = { + ["char"] = "󰕹", + ["code"] = "f0579", + }, + ["md-handshake"] = { + ["char"] = "󱈘", + ["code"] = "f1218", + }, + ["md-handshake_outline"] = { + ["char"] = "󱖡", + ["code"] = "f15a1", + }, + ["md-hanger"] = { + ["char"] = "󰋈", + ["code"] = "f02c8", + }, + ["md-hard_hat"] = { + ["char"] = "󰥯", + ["code"] = "f096f", + }, + ["md-harddisk"] = { + ["char"] = "󰋊", + ["code"] = "f02ca", + }, + ["md-harddisk_plus"] = { + ["char"] = "󱁋", + ["code"] = "f104b", + }, + ["md-harddisk_remove"] = { + ["char"] = "󱁌", + ["code"] = "f104c", + }, + ["md-hat_fedora"] = { + ["char"] = "󰮤", + ["code"] = "f0ba4", + }, + ["md-hazard_lights"] = { + ["char"] = "󰲉", + ["code"] = "f0c89", + }, + ["md-hdr"] = { + ["char"] = "󰵽", + ["code"] = "f0d7d", + }, + ["md-hdr_off"] = { + ["char"] = "󰵾", + ["code"] = "f0d7e", + }, + ["md-head"] = { + ["char"] = "󱍞", + ["code"] = "f135e", + }, + ["md-head_alert"] = { + ["char"] = "󱌸", + ["code"] = "f1338", + }, + ["md-head_alert_outline"] = { + ["char"] = "󱌹", + ["code"] = "f1339", + }, + ["md-head_check"] = { + ["char"] = "󱌺", + ["code"] = "f133a", + }, + ["md-head_check_outline"] = { + ["char"] = "󱌻", + ["code"] = "f133b", + }, + ["md-head_cog"] = { + ["char"] = "󱌼", + ["code"] = "f133c", + }, + ["md-head_cog_outline"] = { + ["char"] = "󱌽", + ["code"] = "f133d", + }, + ["md-head_dots_horizontal"] = { + ["char"] = "󱌾", + ["code"] = "f133e", + }, + ["md-head_dots_horizontal_outline"] = { + ["char"] = "󱌿", + ["code"] = "f133f", + }, + ["md-head_flash"] = { + ["char"] = "󱍀", + ["code"] = "f1340", + }, + ["md-head_flash_outline"] = { + ["char"] = "󱍁", + ["code"] = "f1341", + }, + ["md-head_heart"] = { + ["char"] = "󱍂", + ["code"] = "f1342", + }, + ["md-head_heart_outline"] = { + ["char"] = "󱍃", + ["code"] = "f1343", + }, + ["md-head_lightbulb"] = { + ["char"] = "󱍄", + ["code"] = "f1344", + }, + ["md-head_lightbulb_outline"] = { + ["char"] = "󱍅", + ["code"] = "f1345", + }, + ["md-head_minus"] = { + ["char"] = "󱍆", + ["code"] = "f1346", + }, + ["md-head_minus_outline"] = { + ["char"] = "󱍇", + ["code"] = "f1347", + }, + ["md-head_outline"] = { + ["char"] = "󱍟", + ["code"] = "f135f", + }, + ["md-head_plus"] = { + ["char"] = "󱍈", + ["code"] = "f1348", + }, + ["md-head_plus_outline"] = { + ["char"] = "󱍉", + ["code"] = "f1349", + }, + ["md-head_question"] = { + ["char"] = "󱍊", + ["code"] = "f134a", + }, + ["md-head_question_outline"] = { + ["char"] = "󱍋", + ["code"] = "f134b", + }, + ["md-head_remove"] = { + ["char"] = "󱍌", + ["code"] = "f134c", + }, + ["md-head_remove_outline"] = { + ["char"] = "󱍍", + ["code"] = "f134d", + }, + ["md-head_snowflake"] = { + ["char"] = "󱍎", + ["code"] = "f134e", + }, + ["md-head_snowflake_outline"] = { + ["char"] = "󱍏", + ["code"] = "f134f", + }, + ["md-head_sync"] = { + ["char"] = "󱍐", + ["code"] = "f1350", + }, + ["md-head_sync_outline"] = { + ["char"] = "󱍑", + ["code"] = "f1351", + }, + ["md-headphones"] = { + ["char"] = "󰋋", + ["code"] = "f02cb", + }, + ["md-headphones_bluetooth"] = { + ["char"] = "󰥰", + ["code"] = "f0970", + }, + ["md-headphones_box"] = { + ["char"] = "󰋌", + ["code"] = "f02cc", + }, + ["md-headphones_off"] = { + ["char"] = "󰟎", + ["code"] = "f07ce", + }, + ["md-headphones_settings"] = { + ["char"] = "󰋍", + ["code"] = "f02cd", + }, + ["md-headset"] = { + ["char"] = "󰋎", + ["code"] = "f02ce", + }, + ["md-headset_dock"] = { + ["char"] = "󰋏", + ["code"] = "f02cf", + }, + ["md-headset_off"] = { + ["char"] = "󰋐", + ["code"] = "f02d0", + }, + ["md-heart"] = { + ["char"] = "󰣐", + ["code"] = "f08d0", + }, + ["md-heart_box"] = { + ["char"] = "󰋒", + ["code"] = "f02d2", + }, + ["md-heart_box_outline"] = { + ["char"] = "󰋓", + ["code"] = "f02d3", + }, + ["md-heart_broken"] = { + ["char"] = "󰋔", + ["code"] = "f02d4", + }, + ["md-heart_broken_outline"] = { + ["char"] = "󰴔", + ["code"] = "f0d14", + }, + ["md-heart_circle"] = { + ["char"] = "󰥱", + ["code"] = "f0971", + }, + ["md-heart_circle_outline"] = { + ["char"] = "󰥲", + ["code"] = "f0972", + }, + ["md-heart_cog"] = { + ["char"] = "󱙣", + ["code"] = "f1663", + }, + ["md-heart_cog_outline"] = { + ["char"] = "󱙤", + ["code"] = "f1664", + }, + ["md-heart_flash"] = { + ["char"] = "󰻹", + ["code"] = "f0ef9", + }, + ["md-heart_half"] = { + ["char"] = "󰛟", + ["code"] = "f06df", + }, + ["md-heart_half_full"] = { + ["char"] = "󰛞", + ["code"] = "f06de", + }, + ["md-heart_half_outline"] = { + ["char"] = "󰛠", + ["code"] = "f06e0", + }, + ["md-heart_minus"] = { + ["char"] = "󱐯", + ["code"] = "f142f", + }, + ["md-heart_minus_outline"] = { + ["char"] = "󱐲", + ["code"] = "f1432", + }, + ["md-heart_multiple"] = { + ["char"] = "󰩖", + ["code"] = "f0a56", + }, + ["md-heart_multiple_outline"] = { + ["char"] = "󰩗", + ["code"] = "f0a57", + }, + ["md-heart_off"] = { + ["char"] = "󰝙", + ["code"] = "f0759", + }, + ["md-heart_off_outline"] = { + ["char"] = "󱐴", + ["code"] = "f1434", + }, + ["md-heart_outline"] = { + ["char"] = "󱢠", + ["code"] = "f18a0", + }, + ["md-heart_plus"] = { + ["char"] = "󱐮", + ["code"] = "f142e", + }, + ["md-heart_plus_outline"] = { + ["char"] = "󱐱", + ["code"] = "f1431", + }, + ["md-heart_pulse"] = { + ["char"] = "󰗶", + ["code"] = "f05f6", + }, + ["md-heart_remove"] = { + ["char"] = "󱐰", + ["code"] = "f1430", + }, + ["md-heart_remove_outline"] = { + ["char"] = "󱐳", + ["code"] = "f1433", + }, + ["md-heart_settings"] = { + ["char"] = "󱙥", + ["code"] = "f1665", + }, + ["md-heart_settings_outline"] = { + ["char"] = "󱙦", + ["code"] = "f1666", + }, + ["md-heat_pump"] = { + ["char"] = "󱩃", + ["code"] = "f1a43", + }, + ["md-heat_pump_outline"] = { + ["char"] = "󱩄", + ["code"] = "f1a44", + }, + ["md-heat_wave"] = { + ["char"] = "󱩅", + ["code"] = "f1a45", + }, + ["md-heating_coil"] = { + ["char"] = "󱪯", + ["code"] = "f1aaf", + }, + ["md-helicopter"] = { + ["char"] = "󰫂", + ["code"] = "f0ac2", + }, + ["md-help"] = { + ["char"] = "󰋖", + ["code"] = "f02d6", + }, + ["md-help_box"] = { + ["char"] = "󰞋", + ["code"] = "f078b", + }, + ["md-help_circle"] = { + ["char"] = "󰋗", + ["code"] = "f02d7", + }, + ["md-help_circle_outline"] = { + ["char"] = "󰘥", + ["code"] = "f0625", + }, + ["md-help_network"] = { + ["char"] = "󰛵", + ["code"] = "f06f5", + }, + ["md-help_network_outline"] = { + ["char"] = "󰲊", + ["code"] = "f0c8a", + }, + ["md-help_rhombus"] = { + ["char"] = "󰮥", + ["code"] = "f0ba5", + }, + ["md-help_rhombus_outline"] = { + ["char"] = "󰮦", + ["code"] = "f0ba6", + }, + ["md-hexadecimal"] = { + ["char"] = "󱊧", + ["code"] = "f12a7", + }, + ["md-hexagon"] = { + ["char"] = "󰋘", + ["code"] = "f02d8", + }, + ["md-hexagon_multiple"] = { + ["char"] = "󰛡", + ["code"] = "f06e1", + }, + ["md-hexagon_multiple_outline"] = { + ["char"] = "󱃲", + ["code"] = "f10f2", + }, + ["md-hexagon_outline"] = { + ["char"] = "󰋙", + ["code"] = "f02d9", + }, + ["md-hexagon_slice_1"] = { + ["char"] = "󰫃", + ["code"] = "f0ac3", + }, + ["md-hexagon_slice_2"] = { + ["char"] = "󰫄", + ["code"] = "f0ac4", + }, + ["md-hexagon_slice_3"] = { + ["char"] = "󰫅", + ["code"] = "f0ac5", + }, + ["md-hexagon_slice_4"] = { + ["char"] = "󰫆", + ["code"] = "f0ac6", + }, + ["md-hexagon_slice_5"] = { + ["char"] = "󰫇", + ["code"] = "f0ac7", + }, + ["md-hexagon_slice_6"] = { + ["char"] = "󰫈", + ["code"] = "f0ac8", + }, + ["md-hexagram"] = { + ["char"] = "󰫉", + ["code"] = "f0ac9", + }, + ["md-hexagram_outline"] = { + ["char"] = "󰫊", + ["code"] = "f0aca", + }, + ["md-high_definition"] = { + ["char"] = "󰟏", + ["code"] = "f07cf", + }, + ["md-high_definition_box"] = { + ["char"] = "󰡸", + ["code"] = "f0878", + }, + ["md-highway"] = { + ["char"] = "󰗷", + ["code"] = "f05f7", + }, + ["md-hiking"] = { + ["char"] = "󰵿", + ["code"] = "f0d7f", + }, + ["md-history"] = { + ["char"] = "󰋚", + ["code"] = "f02da", + }, + ["md-hockey_puck"] = { + ["char"] = "󰡹", + ["code"] = "f0879", + }, + ["md-hockey_sticks"] = { + ["char"] = "󰡺", + ["code"] = "f087a", + }, + ["md-hololens"] = { + ["char"] = "󰋛", + ["code"] = "f02db", + }, + ["md-home"] = { + ["char"] = "󰋜", + ["code"] = "f02dc", + }, + ["md-home_account"] = { + ["char"] = "󰠦", + ["code"] = "f0826", + }, + ["md-home_alert"] = { + ["char"] = "󰡻", + ["code"] = "f087b", + }, + ["md-home_alert_outline"] = { + ["char"] = "󱗐", + ["code"] = "f15d0", + }, + ["md-home_analytics"] = { + ["char"] = "󰺺", + ["code"] = "f0eba", + }, + ["md-home_assistant"] = { + ["char"] = "󰟐", + ["code"] = "f07d0", + }, + ["md-home_automation"] = { + ["char"] = "󰟑", + ["code"] = "f07d1", + }, + ["md-home_battery"] = { + ["char"] = "󱤁", + ["code"] = "f1901", + }, + ["md-home_battery_outline"] = { + ["char"] = "󱤂", + ["code"] = "f1902", + }, + ["md-home_circle"] = { + ["char"] = "󰟒", + ["code"] = "f07d2", + }, + ["md-home_circle_outline"] = { + ["char"] = "󱁍", + ["code"] = "f104d", + }, + ["md-home_city"] = { + ["char"] = "󰴕", + ["code"] = "f0d15", + }, + ["md-home_city_outline"] = { + ["char"] = "󰴖", + ["code"] = "f0d16", + }, + ["md-home_clock"] = { + ["char"] = "󱨒", + ["code"] = "f1a12", + }, + ["md-home_clock_outline"] = { + ["char"] = "󱨓", + ["code"] = "f1a13", + }, + ["md-home_edit"] = { + ["char"] = "󱅙", + ["code"] = "f1159", + }, + ["md-home_edit_outline"] = { + ["char"] = "󱅚", + ["code"] = "f115a", + }, + ["md-home_export_outline"] = { + ["char"] = "󰾛", + ["code"] = "f0f9b", + }, + ["md-home_flood"] = { + ["char"] = "󰻺", + ["code"] = "f0efa", + }, + ["md-home_floor_0"] = { + ["char"] = "󰷒", + ["code"] = "f0dd2", + }, + ["md-home_floor_1"] = { + ["char"] = "󰶀", + ["code"] = "f0d80", + }, + ["md-home_floor_2"] = { + ["char"] = "󰶁", + ["code"] = "f0d81", + }, + ["md-home_floor_3"] = { + ["char"] = "󰶂", + ["code"] = "f0d82", + }, + ["md-home_floor_a"] = { + ["char"] = "󰶃", + ["code"] = "f0d83", + }, + ["md-home_floor_b"] = { + ["char"] = "󰶄", + ["code"] = "f0d84", + }, + ["md-home_floor_g"] = { + ["char"] = "󰶅", + ["code"] = "f0d85", + }, + ["md-home_floor_l"] = { + ["char"] = "󰶆", + ["code"] = "f0d86", + }, + ["md-home_floor_negative_1"] = { + ["char"] = "󰷓", + ["code"] = "f0dd3", + }, + ["md-home_group"] = { + ["char"] = "󰷔", + ["code"] = "f0dd4", + }, + ["md-home_group_minus"] = { + ["char"] = "󱧁", + ["code"] = "f19c1", + }, + ["md-home_group_plus"] = { + ["char"] = "󱧀", + ["code"] = "f19c0", + }, + ["md-home_group_remove"] = { + ["char"] = "󱧂", + ["code"] = "f19c2", + }, + ["md-home_heart"] = { + ["char"] = "󰠧", + ["code"] = "f0827", + }, + ["md-home_import_outline"] = { + ["char"] = "󰾜", + ["code"] = "f0f9c", + }, + ["md-home_lightbulb"] = { + ["char"] = "󱉑", + ["code"] = "f1251", + }, + ["md-home_lightbulb_outline"] = { + ["char"] = "󱉒", + ["code"] = "f1252", + }, + ["md-home_lightning_bolt"] = { + ["char"] = "󱤃", + ["code"] = "f1903", + }, + ["md-home_lightning_bolt_outline"] = { + ["char"] = "󱤄", + ["code"] = "f1904", + }, + ["md-home_lock"] = { + ["char"] = "󰣫", + ["code"] = "f08eb", + }, + ["md-home_lock_open"] = { + ["char"] = "󰣬", + ["code"] = "f08ec", + }, + ["md-home_map_marker"] = { + ["char"] = "󰗸", + ["code"] = "f05f8", + }, + ["md-home_minus"] = { + ["char"] = "󰥴", + ["code"] = "f0974", + }, + ["md-home_minus_outline"] = { + ["char"] = "󱏕", + ["code"] = "f13d5", + }, + ["md-home_modern"] = { + ["char"] = "󰋝", + ["code"] = "f02dd", + }, + ["md-home_off"] = { + ["char"] = "󱩆", + ["code"] = "f1a46", + }, + ["md-home_off_outline"] = { + ["char"] = "󱩇", + ["code"] = "f1a47", + }, + ["md-home_outline"] = { + ["char"] = "󰚡", + ["code"] = "f06a1", + }, + ["md-home_plus"] = { + ["char"] = "󰥵", + ["code"] = "f0975", + }, + ["md-home_plus_outline"] = { + ["char"] = "󱏖", + ["code"] = "f13d6", + }, + ["md-home_remove"] = { + ["char"] = "󱉇", + ["code"] = "f1247", + }, + ["md-home_remove_outline"] = { + ["char"] = "󱏗", + ["code"] = "f13d7", + }, + ["md-home_roof"] = { + ["char"] = "󱄫", + ["code"] = "f112b", + }, + ["md-home_search"] = { + ["char"] = "󱎰", + ["code"] = "f13b0", + }, + ["md-home_search_outline"] = { + ["char"] = "󱎱", + ["code"] = "f13b1", + }, + ["md-home_switch"] = { + ["char"] = "󱞔", + ["code"] = "f1794", + }, + ["md-home_switch_outline"] = { + ["char"] = "󱞕", + ["code"] = "f1795", + }, + ["md-home_thermometer"] = { + ["char"] = "󰽔", + ["code"] = "f0f54", + }, + ["md-home_thermometer_outline"] = { + ["char"] = "󰽕", + ["code"] = "f0f55", + }, + ["md-home_variant"] = { + ["char"] = "󰋞", + ["code"] = "f02de", + }, + ["md-home_variant_outline"] = { + ["char"] = "󰮧", + ["code"] = "f0ba7", + }, + ["md-hook"] = { + ["char"] = "󰛢", + ["code"] = "f06e2", + }, + ["md-hook_off"] = { + ["char"] = "󰛣", + ["code"] = "f06e3", + }, + ["md-hoop_house"] = { + ["char"] = "󰹖", + ["code"] = "f0e56", + }, + ["md-hops"] = { + ["char"] = "󰋟", + ["code"] = "f02df", + }, + ["md-horizontal_rotate_clockwise"] = { + ["char"] = "󱃳", + ["code"] = "f10f3", + }, + ["md-horizontal_rotate_counterclockwise"] = { + ["char"] = "󱃴", + ["code"] = "f10f4", + }, + ["md-horse"] = { + ["char"] = "󱖿", + ["code"] = "f15bf", + }, + ["md-horse_human"] = { + ["char"] = "󱗀", + ["code"] = "f15c0", + }, + ["md-horse_variant"] = { + ["char"] = "󱗁", + ["code"] = "f15c1", + }, + ["md-horse_variant_fast"] = { + ["char"] = "󱡮", + ["code"] = "f186e", + }, + ["md-horseshoe"] = { + ["char"] = "󰩘", + ["code"] = "f0a58", + }, + ["md-hospital"] = { + ["char"] = "󰿶", + ["code"] = "f0ff6", + }, + ["md-hospital_box"] = { + ["char"] = "󰋠", + ["code"] = "f02e0", + }, + ["md-hospital_box_outline"] = { + ["char"] = "󰿷", + ["code"] = "f0ff7", + }, + ["md-hospital_building"] = { + ["char"] = "󰋡", + ["code"] = "f02e1", + }, + ["md-hospital_marker"] = { + ["char"] = "󰋢", + ["code"] = "f02e2", + }, + ["md-hot_tub"] = { + ["char"] = "󰠨", + ["code"] = "f0828", + }, + ["md-hours_24"] = { + ["char"] = "󱑸", + ["code"] = "f1478", + }, + ["md-hubspot"] = { + ["char"] = "󰴗", + ["code"] = "f0d17", + }, + ["md-hulu"] = { + ["char"] = "󰠩", + ["code"] = "f0829", + }, + ["md-human"] = { + ["char"] = "󰋦", + ["code"] = "f02e6", + }, + ["md-human_baby_changing_table"] = { + ["char"] = "󱎋", + ["code"] = "f138b", + }, + ["md-human_cane"] = { + ["char"] = "󱖁", + ["code"] = "f1581", + }, + ["md-human_capacity_decrease"] = { + ["char"] = "󱖛", + ["code"] = "f159b", + }, + ["md-human_capacity_increase"] = { + ["char"] = "󱖜", + ["code"] = "f159c", + }, + ["md-human_child"] = { + ["char"] = "󰋧", + ["code"] = "f02e7", + }, + ["md-human_dolly"] = { + ["char"] = "󱦀", + ["code"] = "f1980", + }, + ["md-human_edit"] = { + ["char"] = "󱓨", + ["code"] = "f14e8", + }, + ["md-human_female"] = { + ["char"] = "󰙉", + ["code"] = "f0649", + }, + ["md-human_female_boy"] = { + ["char"] = "󰩙", + ["code"] = "f0a59", + }, + ["md-human_female_dance"] = { + ["char"] = "󱗉", + ["code"] = "f15c9", + }, + ["md-human_female_female"] = { + ["char"] = "󰩚", + ["code"] = "f0a5a", + }, + ["md-human_female_girl"] = { + ["char"] = "󰩛", + ["code"] = "f0a5b", + }, + ["md-human_greeting"] = { + ["char"] = "󱟄", + ["code"] = "f17c4", + }, + ["md-human_greeting_proximity"] = { + ["char"] = "󱖝", + ["code"] = "f159d", + }, + ["md-human_greeting_variant"] = { + ["char"] = "󰙊", + ["code"] = "f064a", + }, + ["md-human_handsdown"] = { + ["char"] = "󰙋", + ["code"] = "f064b", + }, + ["md-human_handsup"] = { + ["char"] = "󰙌", + ["code"] = "f064c", + }, + ["md-human_male"] = { + ["char"] = "󰙍", + ["code"] = "f064d", + }, + ["md-human_male_board"] = { + ["char"] = "󰢐", + ["code"] = "f0890", + }, + ["md-human_male_board_poll"] = { + ["char"] = "󰡆", + ["code"] = "f0846", + }, + ["md-human_male_boy"] = { + ["char"] = "󰩜", + ["code"] = "f0a5c", + }, + ["md-human_male_child"] = { + ["char"] = "󱎌", + ["code"] = "f138c", + }, + ["md-human_male_female"] = { + ["char"] = "󰋨", + ["code"] = "f02e8", + }, + ["md-human_male_female_child"] = { + ["char"] = "󱠣", + ["code"] = "f1823", + }, + ["md-human_male_girl"] = { + ["char"] = "󰩝", + ["code"] = "f0a5d", + }, + ["md-human_male_height"] = { + ["char"] = "󰻻", + ["code"] = "f0efb", + }, + ["md-human_male_height_variant"] = { + ["char"] = "󰻼", + ["code"] = "f0efc", + }, + ["md-human_male_male"] = { + ["char"] = "󰩞", + ["code"] = "f0a5e", + }, + ["md-human_non_binary"] = { + ["char"] = "󱡈", + ["code"] = "f1848", + }, + ["md-human_pregnant"] = { + ["char"] = "󰗏", + ["code"] = "f05cf", + }, + ["md-human_queue"] = { + ["char"] = "󱕱", + ["code"] = "f1571", + }, + ["md-human_scooter"] = { + ["char"] = "󱇩", + ["code"] = "f11e9", + }, + ["md-human_wheelchair"] = { + ["char"] = "󱎍", + ["code"] = "f138d", + }, + ["md-human_white_cane"] = { + ["char"] = "󱦁", + ["code"] = "f1981", + }, + ["md-humble_bundle"] = { + ["char"] = "󰝄", + ["code"] = "f0744", + }, + ["md-hvac"] = { + ["char"] = "󱍒", + ["code"] = "f1352", + }, + ["md-hvac_off"] = { + ["char"] = "󱖞", + ["code"] = "f159e", + }, + ["md-hydraulic_oil_level"] = { + ["char"] = "󱌤", + ["code"] = "f1324", + }, + ["md-hydraulic_oil_temperature"] = { + ["char"] = "󱌥", + ["code"] = "f1325", + }, + ["md-hydro_power"] = { + ["char"] = "󱋥", + ["code"] = "f12e5", + }, + ["md-hydrogen_station"] = { + ["char"] = "󱢔", + ["code"] = "f1894", + }, + ["md-ice_cream"] = { + ["char"] = "󰠪", + ["code"] = "f082a", + }, + ["md-ice_cream_off"] = { + ["char"] = "󰹒", + ["code"] = "f0e52", + }, + ["md-ice_pop"] = { + ["char"] = "󰻽", + ["code"] = "f0efd", + }, + ["md-id_card"] = { + ["char"] = "󰿀", + ["code"] = "f0fc0", + }, + ["md-identifier"] = { + ["char"] = "󰻾", + ["code"] = "f0efe", + }, + ["md-ideogram_cjk"] = { + ["char"] = "󱌱", + ["code"] = "f1331", + }, + ["md-ideogram_cjk_variant"] = { + ["char"] = "󱌲", + ["code"] = "f1332", + }, + ["md-image"] = { + ["char"] = "󰋩", + ["code"] = "f02e9", + }, + ["md-image_album"] = { + ["char"] = "󰋪", + ["code"] = "f02ea", + }, + ["md-image_area"] = { + ["char"] = "󰋫", + ["code"] = "f02eb", + }, + ["md-image_area_close"] = { + ["char"] = "󰋬", + ["code"] = "f02ec", + }, + ["md-image_auto_adjust"] = { + ["char"] = "󰿁", + ["code"] = "f0fc1", + }, + ["md-image_broken"] = { + ["char"] = "󰋭", + ["code"] = "f02ed", + }, + ["md-image_broken_variant"] = { + ["char"] = "󰋮", + ["code"] = "f02ee", + }, + ["md-image_edit"] = { + ["char"] = "󱇣", + ["code"] = "f11e3", + }, + ["md-image_edit_outline"] = { + ["char"] = "󱇤", + ["code"] = "f11e4", + }, + ["md-image_filter_black_white"] = { + ["char"] = "󰋰", + ["code"] = "f02f0", + }, + ["md-image_filter_center_focus"] = { + ["char"] = "󰋱", + ["code"] = "f02f1", + }, + ["md-image_filter_center_focus_strong"] = { + ["char"] = "󰻿", + ["code"] = "f0eff", + }, + ["md-image_filter_center_focus_strong_outline"] = { + ["char"] = "󰼀", + ["code"] = "f0f00", + }, + ["md-image_filter_center_focus_weak"] = { + ["char"] = "󰋲", + ["code"] = "f02f2", + }, + ["md-image_filter_drama"] = { + ["char"] = "󰋳", + ["code"] = "f02f3", + }, + ["md-image_filter_frames"] = { + ["char"] = "󰋴", + ["code"] = "f02f4", + }, + ["md-image_filter_hdr"] = { + ["char"] = "󰔉", + ["code"] = "f0509", + }, + ["md-image_filter_none"] = { + ["char"] = "󰋶", + ["code"] = "f02f6", + }, + ["md-image_filter_tilt_shift"] = { + ["char"] = "󰋷", + ["code"] = "f02f7", + }, + ["md-image_filter_vintage"] = { + ["char"] = "󰋸", + ["code"] = "f02f8", + }, + ["md-image_frame"] = { + ["char"] = "󰹉", + ["code"] = "f0e49", + }, + ["md-image_lock"] = { + ["char"] = "󱪰", + ["code"] = "f1ab0", + }, + ["md-image_lock_outline"] = { + ["char"] = "󱪱", + ["code"] = "f1ab1", + }, + ["md-image_marker"] = { + ["char"] = "󱝻", + ["code"] = "f177b", + }, + ["md-image_marker_outline"] = { + ["char"] = "󱝼", + ["code"] = "f177c", + }, + ["md-image_minus"] = { + ["char"] = "󱐙", + ["code"] = "f1419", + }, + ["md-image_move"] = { + ["char"] = "󰧸", + ["code"] = "f09f8", + }, + ["md-image_multiple"] = { + ["char"] = "󰋹", + ["code"] = "f02f9", + }, + ["md-image_multiple_outline"] = { + ["char"] = "󰋯", + ["code"] = "f02ef", + }, + ["md-image_off"] = { + ["char"] = "󰠫", + ["code"] = "f082b", + }, + ["md-image_off_outline"] = { + ["char"] = "󱇑", + ["code"] = "f11d1", + }, + ["md-image_outline"] = { + ["char"] = "󰥶", + ["code"] = "f0976", + }, + ["md-image_plus"] = { + ["char"] = "󰡼", + ["code"] = "f087c", + }, + ["md-image_refresh"] = { + ["char"] = "󱧾", + ["code"] = "f19fe", + }, + ["md-image_refresh_outline"] = { + ["char"] = "󱧿", + ["code"] = "f19ff", + }, + ["md-image_remove"] = { + ["char"] = "󱐘", + ["code"] = "f1418", + }, + ["md-image_search"] = { + ["char"] = "󰥷", + ["code"] = "f0977", + }, + ["md-image_search_outline"] = { + ["char"] = "󰥸", + ["code"] = "f0978", + }, + ["md-image_size_select_actual"] = { + ["char"] = "󰲍", + ["code"] = "f0c8d", + }, + ["md-image_size_select_large"] = { + ["char"] = "󰲎", + ["code"] = "f0c8e", + }, + ["md-image_size_select_small"] = { + ["char"] = "󰲏", + ["code"] = "f0c8f", + }, + ["md-image_sync"] = { + ["char"] = "󱨀", + ["code"] = "f1a00", + }, + ["md-image_sync_outline"] = { + ["char"] = "󱨁", + ["code"] = "f1a01", + }, + ["md-image_text"] = { + ["char"] = "󱘍", + ["code"] = "f160d", + }, + ["md-import"] = { + ["char"] = "󰋺", + ["code"] = "f02fa", + }, + ["md-inbox"] = { + ["char"] = "󰚇", + ["code"] = "f0687", + }, + ["md-inbox_arrow_down"] = { + ["char"] = "󰋻", + ["code"] = "f02fb", + }, + ["md-inbox_arrow_down_outline"] = { + ["char"] = "󱉰", + ["code"] = "f1270", + }, + ["md-inbox_arrow_up"] = { + ["char"] = "󰏑", + ["code"] = "f03d1", + }, + ["md-inbox_arrow_up_outline"] = { + ["char"] = "󱉱", + ["code"] = "f1271", + }, + ["md-inbox_full"] = { + ["char"] = "󱉲", + ["code"] = "f1272", + }, + ["md-inbox_full_outline"] = { + ["char"] = "󱉳", + ["code"] = "f1273", + }, + ["md-inbox_multiple"] = { + ["char"] = "󰢰", + ["code"] = "f08b0", + }, + ["md-inbox_multiple_outline"] = { + ["char"] = "󰮨", + ["code"] = "f0ba8", + }, + ["md-inbox_outline"] = { + ["char"] = "󱉴", + ["code"] = "f1274", + }, + ["md-inbox_remove"] = { + ["char"] = "󱖟", + ["code"] = "f159f", + }, + ["md-inbox_remove_outline"] = { + ["char"] = "󱖠", + ["code"] = "f15a0", + }, + ["md-incognito"] = { + ["char"] = "󰗹", + ["code"] = "f05f9", + }, + ["md-incognito_circle"] = { + ["char"] = "󱐡", + ["code"] = "f1421", + }, + ["md-incognito_circle_off"] = { + ["char"] = "󱐢", + ["code"] = "f1422", + }, + ["md-incognito_off"] = { + ["char"] = "󰁵", + ["code"] = "f0075", + }, + ["md-induction"] = { + ["char"] = "󱡌", + ["code"] = "f184c", + }, + ["md-infinity"] = { + ["char"] = "󰛤", + ["code"] = "f06e4", + }, + ["md-information"] = { + ["char"] = "󰋼", + ["code"] = "f02fc", + }, + ["md-information_off"] = { + ["char"] = "󱞌", + ["code"] = "f178c", + }, + ["md-information_off_outline"] = { + ["char"] = "󱞍", + ["code"] = "f178d", + }, + ["md-information_outline"] = { + ["char"] = "󰋽", + ["code"] = "f02fd", + }, + ["md-information_variant"] = { + ["char"] = "󰙎", + ["code"] = "f064e", + }, + ["md-instagram"] = { + ["char"] = "󰋾", + ["code"] = "f02fe", + }, + ["md-instrument_triangle"] = { + ["char"] = "󱁎", + ["code"] = "f104e", + }, + ["md-integrated_circuit_chip"] = { + ["char"] = "󱤓", + ["code"] = "f1913", + }, + ["md-invert_colors"] = { + ["char"] = "󰌁", + ["code"] = "f0301", + }, + ["md-invert_colors_off"] = { + ["char"] = "󰹊", + ["code"] = "f0e4a", + }, + ["md-iobroker"] = { + ["char"] = "󱋨", + ["code"] = "f12e8", + }, + ["md-ip"] = { + ["char"] = "󰩟", + ["code"] = "f0a5f", + }, + ["md-ip_network"] = { + ["char"] = "󰩠", + ["code"] = "f0a60", + }, + ["md-ip_network_outline"] = { + ["char"] = "󰲐", + ["code"] = "f0c90", + }, + ["md-ip_outline"] = { + ["char"] = "󱦂", + ["code"] = "f1982", + }, + ["md-ipod"] = { + ["char"] = "󰲑", + ["code"] = "f0c91", + }, + ["md-iron"] = { + ["char"] = "󱠤", + ["code"] = "f1824", + }, + ["md-iron_board"] = { + ["char"] = "󱠸", + ["code"] = "f1838", + }, + ["md-iron_outline"] = { + ["char"] = "󱠥", + ["code"] = "f1825", + }, + ["md-island"] = { + ["char"] = "󱁏", + ["code"] = "f104f", + }, + ["md-iv_bag"] = { + ["char"] = "󱂹", + ["code"] = "f10b9", + }, + ["md-jabber"] = { + ["char"] = "󰷕", + ["code"] = "f0dd5", + }, + ["md-jeepney"] = { + ["char"] = "󰌂", + ["code"] = "f0302", + }, + ["md-jellyfish"] = { + ["char"] = "󰼁", + ["code"] = "f0f01", + }, + ["md-jellyfish_outline"] = { + ["char"] = "󰼂", + ["code"] = "f0f02", + }, + ["md-jira"] = { + ["char"] = "󰌃", + ["code"] = "f0303", + }, + ["md-jquery"] = { + ["char"] = "󰡽", + ["code"] = "f087d", + }, + ["md-jsfiddle"] = { + ["char"] = "󰌄", + ["code"] = "f0304", + }, + ["md-jump_rope"] = { + ["char"] = "󱋿", + ["code"] = "f12ff", + }, + ["md-kabaddi"] = { + ["char"] = "󰶇", + ["code"] = "f0d87", + }, + ["md-kangaroo"] = { + ["char"] = "󱕘", + ["code"] = "f1558", + }, + ["md-karate"] = { + ["char"] = "󰠬", + ["code"] = "f082c", + }, + ["md-kayaking"] = { + ["char"] = "󰢯", + ["code"] = "f08af", + }, + ["md-keg"] = { + ["char"] = "󰌅", + ["code"] = "f0305", + }, + ["md-kettle"] = { + ["char"] = "󰗺", + ["code"] = "f05fa", + }, + ["md-kettle_alert"] = { + ["char"] = "󱌗", + ["code"] = "f1317", + }, + ["md-kettle_alert_outline"] = { + ["char"] = "󱌘", + ["code"] = "f1318", + }, + ["md-kettle_off"] = { + ["char"] = "󱌛", + ["code"] = "f131b", + }, + ["md-kettle_off_outline"] = { + ["char"] = "󱌜", + ["code"] = "f131c", + }, + ["md-kettle_outline"] = { + ["char"] = "󰽖", + ["code"] = "f0f56", + }, + ["md-kettle_pour_over"] = { + ["char"] = "󱜼", + ["code"] = "f173c", + }, + ["md-kettle_steam"] = { + ["char"] = "󱌙", + ["code"] = "f1319", + }, + ["md-kettle_steam_outline"] = { + ["char"] = "󱌚", + ["code"] = "f131a", + }, + ["md-kettlebell"] = { + ["char"] = "󱌀", + ["code"] = "f1300", + }, + ["md-key"] = { + ["char"] = "󰌆", + ["code"] = "f0306", + }, + ["md-key_alert"] = { + ["char"] = "󱦃", + ["code"] = "f1983", + }, + ["md-key_alert_outline"] = { + ["char"] = "󱦄", + ["code"] = "f1984", + }, + ["md-key_arrow_right"] = { + ["char"] = "󱌒", + ["code"] = "f1312", + }, + ["md-key_chain"] = { + ["char"] = "󱕴", + ["code"] = "f1574", + }, + ["md-key_chain_variant"] = { + ["char"] = "󱕵", + ["code"] = "f1575", + }, + ["md-key_change"] = { + ["char"] = "󰌇", + ["code"] = "f0307", + }, + ["md-key_link"] = { + ["char"] = "󱆟", + ["code"] = "f119f", + }, + ["md-key_minus"] = { + ["char"] = "󰌈", + ["code"] = "f0308", + }, + ["md-key_outline"] = { + ["char"] = "󰷖", + ["code"] = "f0dd6", + }, + ["md-key_plus"] = { + ["char"] = "󰌉", + ["code"] = "f0309", + }, + ["md-key_remove"] = { + ["char"] = "󰌊", + ["code"] = "f030a", + }, + ["md-key_star"] = { + ["char"] = "󱆞", + ["code"] = "f119e", + }, + ["md-key_variant"] = { + ["char"] = "󰌋", + ["code"] = "f030b", + }, + ["md-key_wireless"] = { + ["char"] = "󰿂", + ["code"] = "f0fc2", + }, + ["md-keyboard"] = { + ["char"] = "󰌌", + ["code"] = "f030c", + }, + ["md-keyboard_backspace"] = { + ["char"] = "󰌍", + ["code"] = "f030d", + }, + ["md-keyboard_caps"] = { + ["char"] = "󰌎", + ["code"] = "f030e", + }, + ["md-keyboard_close"] = { + ["char"] = "󰌏", + ["code"] = "f030f", + }, + ["md-keyboard_esc"] = { + ["char"] = "󱊷", + ["code"] = "f12b7", + }, + ["md-keyboard_f1"] = { + ["char"] = "󱊫", + ["code"] = "f12ab", + }, + ["md-keyboard_f10"] = { + ["char"] = "󱊴", + ["code"] = "f12b4", + }, + ["md-keyboard_f11"] = { + ["char"] = "󱊵", + ["code"] = "f12b5", + }, + ["md-keyboard_f12"] = { + ["char"] = "󱊶", + ["code"] = "f12b6", + }, + ["md-keyboard_f2"] = { + ["char"] = "󱊬", + ["code"] = "f12ac", + }, + ["md-keyboard_f3"] = { + ["char"] = "󱊭", + ["code"] = "f12ad", + }, + ["md-keyboard_f4"] = { + ["char"] = "󱊮", + ["code"] = "f12ae", + }, + ["md-keyboard_f5"] = { + ["char"] = "󱊯", + ["code"] = "f12af", + }, + ["md-keyboard_f6"] = { + ["char"] = "󱊰", + ["code"] = "f12b0", + }, + ["md-keyboard_f7"] = { + ["char"] = "󱊱", + ["code"] = "f12b1", + }, + ["md-keyboard_f8"] = { + ["char"] = "󱊲", + ["code"] = "f12b2", + }, + ["md-keyboard_f9"] = { + ["char"] = "󱊳", + ["code"] = "f12b3", + }, + ["md-keyboard_off"] = { + ["char"] = "󰌐", + ["code"] = "f0310", + }, + ["md-keyboard_off_outline"] = { + ["char"] = "󰹋", + ["code"] = "f0e4b", + }, + ["md-keyboard_outline"] = { + ["char"] = "󰥻", + ["code"] = "f097b", + }, + ["md-keyboard_return"] = { + ["char"] = "󰌑", + ["code"] = "f0311", + }, + ["md-keyboard_settings"] = { + ["char"] = "󰧹", + ["code"] = "f09f9", + }, + ["md-keyboard_settings_outline"] = { + ["char"] = "󰧺", + ["code"] = "f09fa", + }, + ["md-keyboard_space"] = { + ["char"] = "󱁐", + ["code"] = "f1050", + }, + ["md-keyboard_tab"] = { + ["char"] = "󰌒", + ["code"] = "f0312", + }, + ["md-keyboard_tab_reverse"] = { + ["char"] = "󰌥", + ["code"] = "f0325", + }, + ["md-keyboard_variant"] = { + ["char"] = "󰌓", + ["code"] = "f0313", + }, + ["md-khanda"] = { + ["char"] = "󱃽", + ["code"] = "f10fd", + }, + ["md-kickstarter"] = { + ["char"] = "󰝅", + ["code"] = "f0745", + }, + ["md-kite"] = { + ["char"] = "󱦅", + ["code"] = "f1985", + }, + ["md-kite_outline"] = { + ["char"] = "󱦆", + ["code"] = "f1986", + }, + ["md-kitesurfing"] = { + ["char"] = "󱝄", + ["code"] = "f1744", + }, + ["md-klingon"] = { + ["char"] = "󱍛", + ["code"] = "f135b", + }, + ["md-knife"] = { + ["char"] = "󰧻", + ["code"] = "f09fb", + }, + ["md-knife_military"] = { + ["char"] = "󰧼", + ["code"] = "f09fc", + }, + ["md-koala"] = { + ["char"] = "󱜿", + ["code"] = "f173f", + }, + ["md-kodi"] = { + ["char"] = "󰌔", + ["code"] = "f0314", + }, + ["md-kubernetes"] = { + ["char"] = "󱃾", + ["code"] = "f10fe", + }, + ["md-label"] = { + ["char"] = "󰌕", + ["code"] = "f0315", + }, + ["md-label_multiple"] = { + ["char"] = "󱍵", + ["code"] = "f1375", + }, + ["md-label_multiple_outline"] = { + ["char"] = "󱍶", + ["code"] = "f1376", + }, + ["md-label_off"] = { + ["char"] = "󰫋", + ["code"] = "f0acb", + }, + ["md-label_off_outline"] = { + ["char"] = "󰫌", + ["code"] = "f0acc", + }, + ["md-label_outline"] = { + ["char"] = "󰌖", + ["code"] = "f0316", + }, + ["md-label_percent"] = { + ["char"] = "󱋪", + ["code"] = "f12ea", + }, + ["md-label_percent_outline"] = { + ["char"] = "󱋫", + ["code"] = "f12eb", + }, + ["md-label_variant"] = { + ["char"] = "󰫍", + ["code"] = "f0acd", + }, + ["md-label_variant_outline"] = { + ["char"] = "󰫎", + ["code"] = "f0ace", + }, + ["md-ladder"] = { + ["char"] = "󱖢", + ["code"] = "f15a2", + }, + ["md-ladybug"] = { + ["char"] = "󰠭", + ["code"] = "f082d", + }, + ["md-lambda"] = { + ["char"] = "󰘧", + ["code"] = "f0627", + }, + ["md-lamp"] = { + ["char"] = "󰚵", + ["code"] = "f06b5", + }, + ["md-lamp_outline"] = { + ["char"] = "󱟐", + ["code"] = "f17d0", + }, + ["md-lamps"] = { + ["char"] = "󱕶", + ["code"] = "f1576", + }, + ["md-lamps_outline"] = { + ["char"] = "󱟑", + ["code"] = "f17d1", + }, + ["md-lan"] = { + ["char"] = "󰌗", + ["code"] = "f0317", + }, + ["md-lan_check"] = { + ["char"] = "󱊪", + ["code"] = "f12aa", + }, + ["md-lan_connect"] = { + ["char"] = "󰌘", + ["code"] = "f0318", + }, + ["md-lan_disconnect"] = { + ["char"] = "󰌙", + ["code"] = "f0319", + }, + ["md-lan_pending"] = { + ["char"] = "󰌚", + ["code"] = "f031a", + }, + ["md-land_fields"] = { + ["char"] = "󱪲", + ["code"] = "f1ab2", + }, + ["md-land_plots"] = { + ["char"] = "󱪳", + ["code"] = "f1ab3", + }, + ["md-land_plots_circle"] = { + ["char"] = "󱪴", + ["code"] = "f1ab4", + }, + ["md-land_plots_circle_variant"] = { + ["char"] = "󱪵", + ["code"] = "f1ab5", + }, + ["md-land_rows_horizontal"] = { + ["char"] = "󱪶", + ["code"] = "f1ab6", + }, + ["md-land_rows_vertical"] = { + ["char"] = "󱪷", + ["code"] = "f1ab7", + }, + ["md-landslide"] = { + ["char"] = "󱩈", + ["code"] = "f1a48", + }, + ["md-landslide_outline"] = { + ["char"] = "󱩉", + ["code"] = "f1a49", + }, + ["md-language_c"] = { + ["char"] = "󰙱", + ["code"] = "f0671", + }, + ["md-language_cpp"] = { + ["char"] = "󰙲", + ["code"] = "f0672", + }, + ["md-language_csharp"] = { + ["char"] = "󰌛", + ["code"] = "f031b", + }, + ["md-language_css3"] = { + ["char"] = "󰌜", + ["code"] = "f031c", + }, + ["md-language_fortran"] = { + ["char"] = "󱈚", + ["code"] = "f121a", + }, + ["md-language_go"] = { + ["char"] = "󰟓", + ["code"] = "f07d3", + }, + ["md-language_haskell"] = { + ["char"] = "󰲒", + ["code"] = "f0c92", + }, + ["md-language_html5"] = { + ["char"] = "󰌝", + ["code"] = "f031d", + }, + ["md-language_java"] = { + ["char"] = "󰬷", + ["code"] = "f0b37", + }, + ["md-language_javascript"] = { + ["char"] = "󰌞", + ["code"] = "f031e", + }, + ["md-language_kotlin"] = { + ["char"] = "󱈙", + ["code"] = "f1219", + }, + ["md-language_lua"] = { + ["char"] = "󰢱", + ["code"] = "f08b1", + }, + ["md-language_markdown"] = { + ["char"] = "󰍔", + ["code"] = "f0354", + }, + ["md-language_markdown_outline"] = { + ["char"] = "󰽛", + ["code"] = "f0f5b", + }, + ["md-language_php"] = { + ["char"] = "󰌟", + ["code"] = "f031f", + }, + ["md-language_python"] = { + ["char"] = "󰌠", + ["code"] = "f0320", + }, + ["md-language_r"] = { + ["char"] = "󰟔", + ["code"] = "f07d4", + }, + ["md-language_ruby"] = { + ["char"] = "󰴭", + ["code"] = "f0d2d", + }, + ["md-language_ruby_on_rails"] = { + ["char"] = "󰫏", + ["code"] = "f0acf", + }, + ["md-language_rust"] = { + ["char"] = "󱘗", + ["code"] = "f1617", + }, + ["md-language_swift"] = { + ["char"] = "󰛥", + ["code"] = "f06e5", + }, + ["md-language_typescript"] = { + ["char"] = "󰛦", + ["code"] = "f06e6", + }, + ["md-language_xaml"] = { + ["char"] = "󰙳", + ["code"] = "f0673", + }, + ["md-laptop"] = { + ["char"] = "󰌢", + ["code"] = "f0322", + }, + ["md-laptop_account"] = { + ["char"] = "󱩊", + ["code"] = "f1a4a", + }, + ["md-laptop_off"] = { + ["char"] = "󰛧", + ["code"] = "f06e7", + }, + ["md-laravel"] = { + ["char"] = "󰫐", + ["code"] = "f0ad0", + }, + ["md-laser_pointer"] = { + ["char"] = "󱒄", + ["code"] = "f1484", + }, + ["md-lasso"] = { + ["char"] = "󰼃", + ["code"] = "f0f03", + }, + ["md-lastpass"] = { + ["char"] = "󰑆", + ["code"] = "f0446", + }, + ["md-latitude"] = { + ["char"] = "󰽗", + ["code"] = "f0f57", + }, + ["md-launch"] = { + ["char"] = "󰌧", + ["code"] = "f0327", + }, + ["md-lava_lamp"] = { + ["char"] = "󰟕", + ["code"] = "f07d5", + }, + ["md-layers"] = { + ["char"] = "󰌨", + ["code"] = "f0328", + }, + ["md-layers_edit"] = { + ["char"] = "󱢒", + ["code"] = "f1892", + }, + ["md-layers_minus"] = { + ["char"] = "󰹌", + ["code"] = "f0e4c", + }, + ["md-layers_off"] = { + ["char"] = "󰌩", + ["code"] = "f0329", + }, + ["md-layers_off_outline"] = { + ["char"] = "󰧽", + ["code"] = "f09fd", + }, + ["md-layers_outline"] = { + ["char"] = "󰧾", + ["code"] = "f09fe", + }, + ["md-layers_plus"] = { + ["char"] = "󰹍", + ["code"] = "f0e4d", + }, + ["md-layers_remove"] = { + ["char"] = "󰹎", + ["code"] = "f0e4e", + }, + ["md-layers_search"] = { + ["char"] = "󱈆", + ["code"] = "f1206", + }, + ["md-layers_search_outline"] = { + ["char"] = "󱈇", + ["code"] = "f1207", + }, + ["md-layers_triple"] = { + ["char"] = "󰽘", + ["code"] = "f0f58", + }, + ["md-layers_triple_outline"] = { + ["char"] = "󰽙", + ["code"] = "f0f59", + }, + ["md-lead_pencil"] = { + ["char"] = "󰙏", + ["code"] = "f064f", + }, + ["md-leaf"] = { + ["char"] = "󰌪", + ["code"] = "f032a", + }, + ["md-leaf_circle"] = { + ["char"] = "󱤅", + ["code"] = "f1905", + }, + ["md-leaf_circle_outline"] = { + ["char"] = "󱤆", + ["code"] = "f1906", + }, + ["md-leaf_maple"] = { + ["char"] = "󰲓", + ["code"] = "f0c93", + }, + ["md-leaf_maple_off"] = { + ["char"] = "󱋚", + ["code"] = "f12da", + }, + ["md-leaf_off"] = { + ["char"] = "󱋙", + ["code"] = "f12d9", + }, + ["md-leak"] = { + ["char"] = "󰷗", + ["code"] = "f0dd7", + }, + ["md-leak_off"] = { + ["char"] = "󰷘", + ["code"] = "f0dd8", + }, + ["md-lecturn"] = { + ["char"] = "󱫰", + ["code"] = "f1af0", + }, + ["md-led_off"] = { + ["char"] = "󰌫", + ["code"] = "f032b", + }, + ["md-led_on"] = { + ["char"] = "󰌬", + ["code"] = "f032c", + }, + ["md-led_outline"] = { + ["char"] = "󰌭", + ["code"] = "f032d", + }, + ["md-led_strip"] = { + ["char"] = "󰟖", + ["code"] = "f07d6", + }, + ["md-led_strip_variant"] = { + ["char"] = "󱁑", + ["code"] = "f1051", + }, + ["md-led_strip_variant_off"] = { + ["char"] = "󱩋", + ["code"] = "f1a4b", + }, + ["md-led_variant_off"] = { + ["char"] = "󰌮", + ["code"] = "f032e", + }, + ["md-led_variant_on"] = { + ["char"] = "󰌯", + ["code"] = "f032f", + }, + ["md-led_variant_outline"] = { + ["char"] = "󰌰", + ["code"] = "f0330", + }, + ["md-leek"] = { + ["char"] = "󱅽", + ["code"] = "f117d", + }, + ["md-less_than"] = { + ["char"] = "󰥼", + ["code"] = "f097c", + }, + ["md-less_than_or_equal"] = { + ["char"] = "󰥽", + ["code"] = "f097d", + }, + ["md-library"] = { + ["char"] = "󰌱", + ["code"] = "f0331", + }, + ["md-library_outline"] = { + ["char"] = "󱨢", + ["code"] = "f1a22", + }, + ["md-library_shelves"] = { + ["char"] = "󰮩", + ["code"] = "f0ba9", + }, + ["md-license"] = { + ["char"] = "󰿃", + ["code"] = "f0fc3", + }, + ["md-lifebuoy"] = { + ["char"] = "󰡾", + ["code"] = "f087e", + }, + ["md-light_flood_down"] = { + ["char"] = "󱦇", + ["code"] = "f1987", + }, + ["md-light_flood_up"] = { + ["char"] = "󱦈", + ["code"] = "f1988", + }, + ["md-light_recessed"] = { + ["char"] = "󱞛", + ["code"] = "f179b", + }, + ["md-light_switch"] = { + ["char"] = "󰥾", + ["code"] = "f097e", + }, + ["md-light_switch_off"] = { + ["char"] = "󱨤", + ["code"] = "f1a24", + }, + ["md-lightbulb"] = { + ["char"] = "󰌵", + ["code"] = "f0335", + }, + ["md-lightbulb_alert"] = { + ["char"] = "󱧡", + ["code"] = "f19e1", + }, + ["md-lightbulb_alert_outline"] = { + ["char"] = "󱧢", + ["code"] = "f19e2", + }, + ["md-lightbulb_auto"] = { + ["char"] = "󱠀", + ["code"] = "f1800", + }, + ["md-lightbulb_auto_outline"] = { + ["char"] = "󱠁", + ["code"] = "f1801", + }, + ["md-lightbulb_cfl"] = { + ["char"] = "󱈈", + ["code"] = "f1208", + }, + ["md-lightbulb_cfl_off"] = { + ["char"] = "󱈉", + ["code"] = "f1209", + }, + ["md-lightbulb_cfl_spiral"] = { + ["char"] = "󱉵", + ["code"] = "f1275", + }, + ["md-lightbulb_cfl_spiral_off"] = { + ["char"] = "󱋃", + ["code"] = "f12c3", + }, + ["md-lightbulb_fluorescent_tube"] = { + ["char"] = "󱠄", + ["code"] = "f1804", + }, + ["md-lightbulb_fluorescent_tube_outline"] = { + ["char"] = "󱠅", + ["code"] = "f1805", + }, + ["md-lightbulb_group"] = { + ["char"] = "󱉓", + ["code"] = "f1253", + }, + ["md-lightbulb_group_off"] = { + ["char"] = "󱋍", + ["code"] = "f12cd", + }, + ["md-lightbulb_group_off_outline"] = { + ["char"] = "󱋎", + ["code"] = "f12ce", + }, + ["md-lightbulb_group_outline"] = { + ["char"] = "󱉔", + ["code"] = "f1254", + }, + ["md-lightbulb_multiple"] = { + ["char"] = "󱉕", + ["code"] = "f1255", + }, + ["md-lightbulb_multiple_off"] = { + ["char"] = "󱋏", + ["code"] = "f12cf", + }, + ["md-lightbulb_multiple_off_outline"] = { + ["char"] = "󱋐", + ["code"] = "f12d0", + }, + ["md-lightbulb_multiple_outline"] = { + ["char"] = "󱉖", + ["code"] = "f1256", + }, + ["md-lightbulb_night"] = { + ["char"] = "󱩌", + ["code"] = "f1a4c", + }, + ["md-lightbulb_night_outline"] = { + ["char"] = "󱩍", + ["code"] = "f1a4d", + }, + ["md-lightbulb_off"] = { + ["char"] = "󰹏", + ["code"] = "f0e4f", + }, + ["md-lightbulb_off_outline"] = { + ["char"] = "󰹐", + ["code"] = "f0e50", + }, + ["md-lightbulb_on"] = { + ["char"] = "󰛨", + ["code"] = "f06e8", + }, + ["md-lightbulb_on_10"] = { + ["char"] = "󱩎", + ["code"] = "f1a4e", + }, + ["md-lightbulb_on_20"] = { + ["char"] = "󱩏", + ["code"] = "f1a4f", + }, + ["md-lightbulb_on_30"] = { + ["char"] = "󱩐", + ["code"] = "f1a50", + }, + ["md-lightbulb_on_40"] = { + ["char"] = "󱩑", + ["code"] = "f1a51", + }, + ["md-lightbulb_on_50"] = { + ["char"] = "󱩒", + ["code"] = "f1a52", + }, + ["md-lightbulb_on_60"] = { + ["char"] = "󱩓", + ["code"] = "f1a53", + }, + ["md-lightbulb_on_70"] = { + ["char"] = "󱩔", + ["code"] = "f1a54", + }, + ["md-lightbulb_on_80"] = { + ["char"] = "󱩕", + ["code"] = "f1a55", + }, + ["md-lightbulb_on_90"] = { + ["char"] = "󱩖", + ["code"] = "f1a56", + }, + ["md-lightbulb_on_outline"] = { + ["char"] = "󰛩", + ["code"] = "f06e9", + }, + ["md-lightbulb_outline"] = { + ["char"] = "󰌶", + ["code"] = "f0336", + }, + ["md-lightbulb_question"] = { + ["char"] = "󱧣", + ["code"] = "f19e3", + }, + ["md-lightbulb_question_outline"] = { + ["char"] = "󱧤", + ["code"] = "f19e4", + }, + ["md-lightbulb_spot"] = { + ["char"] = "󱟴", + ["code"] = "f17f4", + }, + ["md-lightbulb_spot_off"] = { + ["char"] = "󱟵", + ["code"] = "f17f5", + }, + ["md-lightbulb_variant"] = { + ["char"] = "󱠂", + ["code"] = "f1802", + }, + ["md-lightbulb_variant_outline"] = { + ["char"] = "󱠃", + ["code"] = "f1803", + }, + ["md-lighthouse"] = { + ["char"] = "󰧿", + ["code"] = "f09ff", + }, + ["md-lighthouse_on"] = { + ["char"] = "󰨀", + ["code"] = "f0a00", + }, + ["md-lightning_bolt"] = { + ["char"] = "󱐋", + ["code"] = "f140b", + }, + ["md-lightning_bolt_circle"] = { + ["char"] = "󰠠", + ["code"] = "f0820", + }, + ["md-lightning_bolt_outline"] = { + ["char"] = "󱐌", + ["code"] = "f140c", + }, + ["md-line_scan"] = { + ["char"] = "󰘤", + ["code"] = "f0624", + }, + ["md-lingerie"] = { + ["char"] = "󱑶", + ["code"] = "f1476", + }, + ["md-link"] = { + ["char"] = "󰌷", + ["code"] = "f0337", + }, + ["md-link_box"] = { + ["char"] = "󰴚", + ["code"] = "f0d1a", + }, + ["md-link_box_outline"] = { + ["char"] = "󰴛", + ["code"] = "f0d1b", + }, + ["md-link_box_variant"] = { + ["char"] = "󰴜", + ["code"] = "f0d1c", + }, + ["md-link_box_variant_outline"] = { + ["char"] = "󰴝", + ["code"] = "f0d1d", + }, + ["md-link_lock"] = { + ["char"] = "󱂺", + ["code"] = "f10ba", + }, + ["md-link_off"] = { + ["char"] = "󰌸", + ["code"] = "f0338", + }, + ["md-link_plus"] = { + ["char"] = "󰲔", + ["code"] = "f0c94", + }, + ["md-link_variant"] = { + ["char"] = "󰌹", + ["code"] = "f0339", + }, + ["md-link_variant_minus"] = { + ["char"] = "󱃿", + ["code"] = "f10ff", + }, + ["md-link_variant_off"] = { + ["char"] = "󰌺", + ["code"] = "f033a", + }, + ["md-link_variant_plus"] = { + ["char"] = "󱄀", + ["code"] = "f1100", + }, + ["md-link_variant_remove"] = { + ["char"] = "󱄁", + ["code"] = "f1101", + }, + ["md-linkedin"] = { + ["char"] = "󰌻", + ["code"] = "f033b", + }, + ["md-linux"] = { + ["char"] = "󰌽", + ["code"] = "f033d", + }, + ["md-linux_mint"] = { + ["char"] = "󰣭", + ["code"] = "f08ed", + }, + ["md-lipstick"] = { + ["char"] = "󱎵", + ["code"] = "f13b5", + }, + ["md-liquid_spot"] = { + ["char"] = "󱠦", + ["code"] = "f1826", + }, + ["md-liquor"] = { + ["char"] = "󱤞", + ["code"] = "f191e", + }, + ["md-list_status"] = { + ["char"] = "󱖫", + ["code"] = "f15ab", + }, + ["md-litecoin"] = { + ["char"] = "󰩡", + ["code"] = "f0a61", + }, + ["md-loading"] = { + ["char"] = "󰝲", + ["code"] = "f0772", + }, + ["md-location_enter"] = { + ["char"] = "󰿄", + ["code"] = "f0fc4", + }, + ["md-location_exit"] = { + ["char"] = "󰿅", + ["code"] = "f0fc5", + }, + ["md-lock"] = { + ["char"] = "󰌾", + ["code"] = "f033e", + }, + ["md-lock_alert"] = { + ["char"] = "󰣮", + ["code"] = "f08ee", + }, + ["md-lock_alert_outline"] = { + ["char"] = "󱗑", + ["code"] = "f15d1", + }, + ["md-lock_check"] = { + ["char"] = "󱎚", + ["code"] = "f139a", + }, + ["md-lock_check_outline"] = { + ["char"] = "󱚨", + ["code"] = "f16a8", + }, + ["md-lock_clock"] = { + ["char"] = "󰥿", + ["code"] = "f097f", + }, + ["md-lock_minus"] = { + ["char"] = "󱚩", + ["code"] = "f16a9", + }, + ["md-lock_minus_outline"] = { + ["char"] = "󱚪", + ["code"] = "f16aa", + }, + ["md-lock_off"] = { + ["char"] = "󱙱", + ["code"] = "f1671", + }, + ["md-lock_off_outline"] = { + ["char"] = "󱙲", + ["code"] = "f1672", + }, + ["md-lock_open"] = { + ["char"] = "󰌿", + ["code"] = "f033f", + }, + ["md-lock_open_alert"] = { + ["char"] = "󱎛", + ["code"] = "f139b", + }, + ["md-lock_open_alert_outline"] = { + ["char"] = "󱗒", + ["code"] = "f15d2", + }, + ["md-lock_open_check"] = { + ["char"] = "󱎜", + ["code"] = "f139c", + }, + ["md-lock_open_check_outline"] = { + ["char"] = "󱚫", + ["code"] = "f16ab", + }, + ["md-lock_open_minus"] = { + ["char"] = "󱚬", + ["code"] = "f16ac", + }, + ["md-lock_open_minus_outline"] = { + ["char"] = "󱚭", + ["code"] = "f16ad", + }, + ["md-lock_open_outline"] = { + ["char"] = "󰍀", + ["code"] = "f0340", + }, + ["md-lock_open_plus"] = { + ["char"] = "󱚮", + ["code"] = "f16ae", + }, + ["md-lock_open_plus_outline"] = { + ["char"] = "󱚯", + ["code"] = "f16af", + }, + ["md-lock_open_remove"] = { + ["char"] = "󱚰", + ["code"] = "f16b0", + }, + ["md-lock_open_remove_outline"] = { + ["char"] = "󱚱", + ["code"] = "f16b1", + }, + ["md-lock_open_variant"] = { + ["char"] = "󰿆", + ["code"] = "f0fc6", + }, + ["md-lock_open_variant_outline"] = { + ["char"] = "󰿇", + ["code"] = "f0fc7", + }, + ["md-lock_outline"] = { + ["char"] = "󰍁", + ["code"] = "f0341", + }, + ["md-lock_pattern"] = { + ["char"] = "󰛪", + ["code"] = "f06ea", + }, + ["md-lock_plus"] = { + ["char"] = "󰗻", + ["code"] = "f05fb", + }, + ["md-lock_plus_outline"] = { + ["char"] = "󱚲", + ["code"] = "f16b2", + }, + ["md-lock_question"] = { + ["char"] = "󰣯", + ["code"] = "f08ef", + }, + ["md-lock_remove"] = { + ["char"] = "󱚳", + ["code"] = "f16b3", + }, + ["md-lock_remove_outline"] = { + ["char"] = "󱚴", + ["code"] = "f16b4", + }, + ["md-lock_reset"] = { + ["char"] = "󰝳", + ["code"] = "f0773", + }, + ["md-lock_smart"] = { + ["char"] = "󰢲", + ["code"] = "f08b2", + }, + ["md-locker"] = { + ["char"] = "󰟗", + ["code"] = "f07d7", + }, + ["md-locker_multiple"] = { + ["char"] = "󰟘", + ["code"] = "f07d8", + }, + ["md-login"] = { + ["char"] = "󰍂", + ["code"] = "f0342", + }, + ["md-logout"] = { + ["char"] = "󰍃", + ["code"] = "f0343", + }, + ["md-logout_variant"] = { + ["char"] = "󰗽", + ["code"] = "f05fd", + }, + ["md-longitude"] = { + ["char"] = "󰽚", + ["code"] = "f0f5a", + }, + ["md-looks"] = { + ["char"] = "󰍄", + ["code"] = "f0344", + }, + ["md-lotion"] = { + ["char"] = "󱖂", + ["code"] = "f1582", + }, + ["md-lotion_outline"] = { + ["char"] = "󱖃", + ["code"] = "f1583", + }, + ["md-lotion_plus"] = { + ["char"] = "󱖄", + ["code"] = "f1584", + }, + ["md-lotion_plus_outline"] = { + ["char"] = "󱖅", + ["code"] = "f1585", + }, + ["md-loupe"] = { + ["char"] = "󰍅", + ["code"] = "f0345", + }, + ["md-lumx"] = { + ["char"] = "󰍆", + ["code"] = "f0346", + }, + ["md-lungs"] = { + ["char"] = "󱂄", + ["code"] = "f1084", + }, + ["md-mace"] = { + ["char"] = "󱡃", + ["code"] = "f1843", + }, + ["md-magazine_pistol"] = { + ["char"] = "󰌤", + ["code"] = "f0324", + }, + ["md-magazine_rifle"] = { + ["char"] = "󰌣", + ["code"] = "f0323", + }, + ["md-magic_staff"] = { + ["char"] = "󱡄", + ["code"] = "f1844", + }, + ["md-magnet"] = { + ["char"] = "󰍇", + ["code"] = "f0347", + }, + ["md-magnet_on"] = { + ["char"] = "󰍈", + ["code"] = "f0348", + }, + ["md-magnify"] = { + ["char"] = "󰍉", + ["code"] = "f0349", + }, + ["md-magnify_close"] = { + ["char"] = "󰦀", + ["code"] = "f0980", + }, + ["md-magnify_expand"] = { + ["char"] = "󱡴", + ["code"] = "f1874", + }, + ["md-magnify_minus"] = { + ["char"] = "󰍊", + ["code"] = "f034a", + }, + ["md-magnify_minus_cursor"] = { + ["char"] = "󰩢", + ["code"] = "f0a62", + }, + ["md-magnify_minus_outline"] = { + ["char"] = "󰛬", + ["code"] = "f06ec", + }, + ["md-magnify_plus"] = { + ["char"] = "󰍋", + ["code"] = "f034b", + }, + ["md-magnify_plus_cursor"] = { + ["char"] = "󰩣", + ["code"] = "f0a63", + }, + ["md-magnify_plus_outline"] = { + ["char"] = "󰛭", + ["code"] = "f06ed", + }, + ["md-magnify_remove_cursor"] = { + ["char"] = "󱈌", + ["code"] = "f120c", + }, + ["md-magnify_remove_outline"] = { + ["char"] = "󱈍", + ["code"] = "f120d", + }, + ["md-magnify_scan"] = { + ["char"] = "󱉶", + ["code"] = "f1276", + }, + ["md-mail"] = { + ["char"] = "󰺻", + ["code"] = "f0ebb", + }, + ["md-mailbox"] = { + ["char"] = "󰛮", + ["code"] = "f06ee", + }, + ["md-mailbox_open"] = { + ["char"] = "󰶈", + ["code"] = "f0d88", + }, + ["md-mailbox_open_outline"] = { + ["char"] = "󰶉", + ["code"] = "f0d89", + }, + ["md-mailbox_open_up"] = { + ["char"] = "󰶊", + ["code"] = "f0d8a", + }, + ["md-mailbox_open_up_outline"] = { + ["char"] = "󰶋", + ["code"] = "f0d8b", + }, + ["md-mailbox_outline"] = { + ["char"] = "󰶌", + ["code"] = "f0d8c", + }, + ["md-mailbox_up"] = { + ["char"] = "󰶍", + ["code"] = "f0d8d", + }, + ["md-mailbox_up_outline"] = { + ["char"] = "󰶎", + ["code"] = "f0d8e", + }, + ["md-manjaro"] = { + ["char"] = "󱘊", + ["code"] = "f160a", + }, + ["md-map"] = { + ["char"] = "󰍍", + ["code"] = "f034d", + }, + ["md-map_check"] = { + ["char"] = "󰺼", + ["code"] = "f0ebc", + }, + ["md-map_check_outline"] = { + ["char"] = "󰺽", + ["code"] = "f0ebd", + }, + ["md-map_clock"] = { + ["char"] = "󰴞", + ["code"] = "f0d1e", + }, + ["md-map_clock_outline"] = { + ["char"] = "󰴟", + ["code"] = "f0d1f", + }, + ["md-map_legend"] = { + ["char"] = "󰨁", + ["code"] = "f0a01", + }, + ["md-map_marker"] = { + ["char"] = "󰍎", + ["code"] = "f034e", + }, + ["md-map_marker_account"] = { + ["char"] = "󱣣", + ["code"] = "f18e3", + }, + ["md-map_marker_account_outline"] = { + ["char"] = "󱣤", + ["code"] = "f18e4", + }, + ["md-map_marker_alert"] = { + ["char"] = "󰼅", + ["code"] = "f0f05", + }, + ["md-map_marker_alert_outline"] = { + ["char"] = "󰼆", + ["code"] = "f0f06", + }, + ["md-map_marker_check"] = { + ["char"] = "󰲕", + ["code"] = "f0c95", + }, + ["md-map_marker_check_outline"] = { + ["char"] = "󱋻", + ["code"] = "f12fb", + }, + ["md-map_marker_circle"] = { + ["char"] = "󰍏", + ["code"] = "f034f", + }, + ["md-map_marker_distance"] = { + ["char"] = "󰣰", + ["code"] = "f08f0", + }, + ["md-map_marker_down"] = { + ["char"] = "󱄂", + ["code"] = "f1102", + }, + ["md-map_marker_left"] = { + ["char"] = "󱋛", + ["code"] = "f12db", + }, + ["md-map_marker_left_outline"] = { + ["char"] = "󱋝", + ["code"] = "f12dd", + }, + ["md-map_marker_minus"] = { + ["char"] = "󰙐", + ["code"] = "f0650", + }, + ["md-map_marker_minus_outline"] = { + ["char"] = "󱋹", + ["code"] = "f12f9", + }, + ["md-map_marker_multiple"] = { + ["char"] = "󰍐", + ["code"] = "f0350", + }, + ["md-map_marker_multiple_outline"] = { + ["char"] = "󱉷", + ["code"] = "f1277", + }, + ["md-map_marker_off"] = { + ["char"] = "󰍑", + ["code"] = "f0351", + }, + ["md-map_marker_off_outline"] = { + ["char"] = "󱋽", + ["code"] = "f12fd", + }, + ["md-map_marker_outline"] = { + ["char"] = "󰟙", + ["code"] = "f07d9", + }, + ["md-map_marker_path"] = { + ["char"] = "󰴠", + ["code"] = "f0d20", + }, + ["md-map_marker_plus"] = { + ["char"] = "󰙑", + ["code"] = "f0651", + }, + ["md-map_marker_plus_outline"] = { + ["char"] = "󱋸", + ["code"] = "f12f8", + }, + ["md-map_marker_question"] = { + ["char"] = "󰼇", + ["code"] = "f0f07", + }, + ["md-map_marker_question_outline"] = { + ["char"] = "󰼈", + ["code"] = "f0f08", + }, + ["md-map_marker_radius"] = { + ["char"] = "󰍒", + ["code"] = "f0352", + }, + ["md-map_marker_radius_outline"] = { + ["char"] = "󱋼", + ["code"] = "f12fc", + }, + ["md-map_marker_remove"] = { + ["char"] = "󰼉", + ["code"] = "f0f09", + }, + ["md-map_marker_remove_outline"] = { + ["char"] = "󱋺", + ["code"] = "f12fa", + }, + ["md-map_marker_remove_variant"] = { + ["char"] = "󰼊", + ["code"] = "f0f0a", + }, + ["md-map_marker_right"] = { + ["char"] = "󱋜", + ["code"] = "f12dc", + }, + ["md-map_marker_right_outline"] = { + ["char"] = "󱋞", + ["code"] = "f12de", + }, + ["md-map_marker_star"] = { + ["char"] = "󱘈", + ["code"] = "f1608", + }, + ["md-map_marker_star_outline"] = { + ["char"] = "󱘉", + ["code"] = "f1609", + }, + ["md-map_marker_up"] = { + ["char"] = "󱄃", + ["code"] = "f1103", + }, + ["md-map_minus"] = { + ["char"] = "󰦁", + ["code"] = "f0981", + }, + ["md-map_outline"] = { + ["char"] = "󰦂", + ["code"] = "f0982", + }, + ["md-map_plus"] = { + ["char"] = "󰦃", + ["code"] = "f0983", + }, + ["md-map_search"] = { + ["char"] = "󰦄", + ["code"] = "f0984", + }, + ["md-map_search_outline"] = { + ["char"] = "󰦅", + ["code"] = "f0985", + }, + ["md-mapbox"] = { + ["char"] = "󰮪", + ["code"] = "f0baa", + }, + ["md-margin"] = { + ["char"] = "󰍓", + ["code"] = "f0353", + }, + ["md-marker"] = { + ["char"] = "󰙒", + ["code"] = "f0652", + }, + ["md-marker_cancel"] = { + ["char"] = "󰷙", + ["code"] = "f0dd9", + }, + ["md-marker_check"] = { + ["char"] = "󰍕", + ["code"] = "f0355", + }, + ["md-mastodon"] = { + ["char"] = "󰫑", + ["code"] = "f0ad1", + }, + ["md-material_design"] = { + ["char"] = "󰦆", + ["code"] = "f0986", + }, + ["md-material_ui"] = { + ["char"] = "󰍗", + ["code"] = "f0357", + }, + ["md-math_compass"] = { + ["char"] = "󰍘", + ["code"] = "f0358", + }, + ["md-math_cos"] = { + ["char"] = "󰲖", + ["code"] = "f0c96", + }, + ["md-math_integral"] = { + ["char"] = "󰿈", + ["code"] = "f0fc8", + }, + ["md-math_integral_box"] = { + ["char"] = "󰿉", + ["code"] = "f0fc9", + }, + ["md-math_log"] = { + ["char"] = "󱂅", + ["code"] = "f1085", + }, + ["md-math_norm"] = { + ["char"] = "󰿊", + ["code"] = "f0fca", + }, + ["md-math_norm_box"] = { + ["char"] = "󰿋", + ["code"] = "f0fcb", + }, + ["md-math_sin"] = { + ["char"] = "󰲗", + ["code"] = "f0c97", + }, + ["md-math_tan"] = { + ["char"] = "󰲘", + ["code"] = "f0c98", + }, + ["md-matrix"] = { + ["char"] = "󰘨", + ["code"] = "f0628", + }, + ["md-medal"] = { + ["char"] = "󰦇", + ["code"] = "f0987", + }, + ["md-medal_outline"] = { + ["char"] = "󱌦", + ["code"] = "f1326", + }, + ["md-medical_bag"] = { + ["char"] = "󰛯", + ["code"] = "f06ef", + }, + ["md-medical_cotton_swab"] = { + ["char"] = "󱪸", + ["code"] = "f1ab8", + }, + ["md-meditation"] = { + ["char"] = "󱅻", + ["code"] = "f117b", + }, + ["md-memory"] = { + ["char"] = "󰍛", + ["code"] = "f035b", + }, + ["md-menorah"] = { + ["char"] = "󱟔", + ["code"] = "f17d4", + }, + ["md-menorah_fire"] = { + ["char"] = "󱟕", + ["code"] = "f17d5", + }, + ["md-menu"] = { + ["char"] = "󰍜", + ["code"] = "f035c", + }, + ["md-menu_down"] = { + ["char"] = "󰍝", + ["code"] = "f035d", + }, + ["md-menu_down_outline"] = { + ["char"] = "󰚶", + ["code"] = "f06b6", + }, + ["md-menu_left"] = { + ["char"] = "󰍞", + ["code"] = "f035e", + }, + ["md-menu_left_outline"] = { + ["char"] = "󰨂", + ["code"] = "f0a02", + }, + ["md-menu_open"] = { + ["char"] = "󰮫", + ["code"] = "f0bab", + }, + ["md-menu_right"] = { + ["char"] = "󰍟", + ["code"] = "f035f", + }, + ["md-menu_right_outline"] = { + ["char"] = "󰨃", + ["code"] = "f0a03", + }, + ["md-menu_swap"] = { + ["char"] = "󰩤", + ["code"] = "f0a64", + }, + ["md-menu_swap_outline"] = { + ["char"] = "󰩥", + ["code"] = "f0a65", + }, + ["md-menu_up"] = { + ["char"] = "󰍠", + ["code"] = "f0360", + }, + ["md-menu_up_outline"] = { + ["char"] = "󰚷", + ["code"] = "f06b7", + }, + ["md-merge"] = { + ["char"] = "󰽜", + ["code"] = "f0f5c", + }, + ["md-message"] = { + ["char"] = "󰍡", + ["code"] = "f0361", + }, + ["md-message_alert"] = { + ["char"] = "󰍢", + ["code"] = "f0362", + }, + ["md-message_alert_outline"] = { + ["char"] = "󰨄", + ["code"] = "f0a04", + }, + ["md-message_arrow_left"] = { + ["char"] = "󱋲", + ["code"] = "f12f2", + }, + ["md-message_arrow_left_outline"] = { + ["char"] = "󱋳", + ["code"] = "f12f3", + }, + ["md-message_arrow_right"] = { + ["char"] = "󱋴", + ["code"] = "f12f4", + }, + ["md-message_arrow_right_outline"] = { + ["char"] = "󱋵", + ["code"] = "f12f5", + }, + ["md-message_badge"] = { + ["char"] = "󱥁", + ["code"] = "f1941", + }, + ["md-message_badge_outline"] = { + ["char"] = "󱥂", + ["code"] = "f1942", + }, + ["md-message_bookmark"] = { + ["char"] = "󱖬", + ["code"] = "f15ac", + }, + ["md-message_bookmark_outline"] = { + ["char"] = "󱖭", + ["code"] = "f15ad", + }, + ["md-message_bulleted"] = { + ["char"] = "󰚢", + ["code"] = "f06a2", + }, + ["md-message_bulleted_off"] = { + ["char"] = "󰚣", + ["code"] = "f06a3", + }, + ["md-message_cog"] = { + ["char"] = "󰛱", + ["code"] = "f06f1", + }, + ["md-message_cog_outline"] = { + ["char"] = "󱅲", + ["code"] = "f1172", + }, + ["md-message_draw"] = { + ["char"] = "󰍣", + ["code"] = "f0363", + }, + ["md-message_fast"] = { + ["char"] = "󱧌", + ["code"] = "f19cc", + }, + ["md-message_fast_outline"] = { + ["char"] = "󱧍", + ["code"] = "f19cd", + }, + ["md-message_flash"] = { + ["char"] = "󱖩", + ["code"] = "f15a9", + }, + ["md-message_flash_outline"] = { + ["char"] = "󱖪", + ["code"] = "f15aa", + }, + ["md-message_image"] = { + ["char"] = "󰍤", + ["code"] = "f0364", + }, + ["md-message_image_outline"] = { + ["char"] = "󱅬", + ["code"] = "f116c", + }, + ["md-message_lock"] = { + ["char"] = "󰿌", + ["code"] = "f0fcc", + }, + ["md-message_lock_outline"] = { + ["char"] = "󱅭", + ["code"] = "f116d", + }, + ["md-message_minus"] = { + ["char"] = "󱅮", + ["code"] = "f116e", + }, + ["md-message_minus_outline"] = { + ["char"] = "󱅯", + ["code"] = "f116f", + }, + ["md-message_off"] = { + ["char"] = "󱙍", + ["code"] = "f164d", + }, + ["md-message_off_outline"] = { + ["char"] = "󱙎", + ["code"] = "f164e", + }, + ["md-message_outline"] = { + ["char"] = "󰍥", + ["code"] = "f0365", + }, + ["md-message_plus"] = { + ["char"] = "󰙓", + ["code"] = "f0653", + }, + ["md-message_plus_outline"] = { + ["char"] = "󱂻", + ["code"] = "f10bb", + }, + ["md-message_processing"] = { + ["char"] = "󰍦", + ["code"] = "f0366", + }, + ["md-message_processing_outline"] = { + ["char"] = "󱅰", + ["code"] = "f1170", + }, + ["md-message_question"] = { + ["char"] = "󱜺", + ["code"] = "f173a", + }, + ["md-message_question_outline"] = { + ["char"] = "󱜻", + ["code"] = "f173b", + }, + ["md-message_reply"] = { + ["char"] = "󰍧", + ["code"] = "f0367", + }, + ["md-message_reply_outline"] = { + ["char"] = "󱜽", + ["code"] = "f173d", + }, + ["md-message_reply_text"] = { + ["char"] = "󰍨", + ["code"] = "f0368", + }, + ["md-message_reply_text_outline"] = { + ["char"] = "󱜾", + ["code"] = "f173e", + }, + ["md-message_settings"] = { + ["char"] = "󰛰", + ["code"] = "f06f0", + }, + ["md-message_settings_outline"] = { + ["char"] = "󱅱", + ["code"] = "f1171", + }, + ["md-message_star"] = { + ["char"] = "󰚚", + ["code"] = "f069a", + }, + ["md-message_star_outline"] = { + ["char"] = "󱉐", + ["code"] = "f1250", + }, + ["md-message_text"] = { + ["char"] = "󰍩", + ["code"] = "f0369", + }, + ["md-message_text_clock"] = { + ["char"] = "󱅳", + ["code"] = "f1173", + }, + ["md-message_text_clock_outline"] = { + ["char"] = "󱅴", + ["code"] = "f1174", + }, + ["md-message_text_fast"] = { + ["char"] = "󱧎", + ["code"] = "f19ce", + }, + ["md-message_text_fast_outline"] = { + ["char"] = "󱧏", + ["code"] = "f19cf", + }, + ["md-message_text_lock"] = { + ["char"] = "󰿍", + ["code"] = "f0fcd", + }, + ["md-message_text_lock_outline"] = { + ["char"] = "󱅵", + ["code"] = "f1175", + }, + ["md-message_text_outline"] = { + ["char"] = "󰍪", + ["code"] = "f036a", + }, + ["md-message_video"] = { + ["char"] = "󰍫", + ["code"] = "f036b", + }, + ["md-meteor"] = { + ["char"] = "󰘩", + ["code"] = "f0629", + }, + ["md-meter_electric"] = { + ["char"] = "󱩗", + ["code"] = "f1a57", + }, + ["md-meter_electric_outline"] = { + ["char"] = "󱩘", + ["code"] = "f1a58", + }, + ["md-meter_gas"] = { + ["char"] = "󱩙", + ["code"] = "f1a59", + }, + ["md-meter_gas_outline"] = { + ["char"] = "󱩚", + ["code"] = "f1a5a", + }, + ["md-metronome"] = { + ["char"] = "󰟚", + ["code"] = "f07da", + }, + ["md-metronome_tick"] = { + ["char"] = "󰟛", + ["code"] = "f07db", + }, + ["md-micro_sd"] = { + ["char"] = "󰟜", + ["code"] = "f07dc", + }, + ["md-microphone"] = { + ["char"] = "󰍬", + ["code"] = "f036c", + }, + ["md-microphone_minus"] = { + ["char"] = "󰢳", + ["code"] = "f08b3", + }, + ["md-microphone_off"] = { + ["char"] = "󰍭", + ["code"] = "f036d", + }, + ["md-microphone_outline"] = { + ["char"] = "󰍮", + ["code"] = "f036e", + }, + ["md-microphone_plus"] = { + ["char"] = "󰢴", + ["code"] = "f08b4", + }, + ["md-microphone_question"] = { + ["char"] = "󱦉", + ["code"] = "f1989", + }, + ["md-microphone_question_outline"] = { + ["char"] = "󱦊", + ["code"] = "f198a", + }, + ["md-microphone_settings"] = { + ["char"] = "󰍯", + ["code"] = "f036f", + }, + ["md-microphone_variant"] = { + ["char"] = "󰍰", + ["code"] = "f0370", + }, + ["md-microphone_variant_off"] = { + ["char"] = "󰍱", + ["code"] = "f0371", + }, + ["md-microscope"] = { + ["char"] = "󰙔", + ["code"] = "f0654", + }, + ["md-microsoft"] = { + ["char"] = "󰍲", + ["code"] = "f0372", + }, + ["md-microsoft_access"] = { + ["char"] = "󱎎", + ["code"] = "f138e", + }, + ["md-microsoft_azure"] = { + ["char"] = "󰠅", + ["code"] = "f0805", + }, + ["md-microsoft_azure_devops"] = { + ["char"] = "󰿕", + ["code"] = "f0fd5", + }, + ["md-microsoft_bing"] = { + ["char"] = "󰂤", + ["code"] = "f00a4", + }, + ["md-microsoft_dynamics_365"] = { + ["char"] = "󰦈", + ["code"] = "f0988", + }, + ["md-microsoft_edge"] = { + ["char"] = "󰇩", + ["code"] = "f01e9", + }, + ["md-microsoft_excel"] = { + ["char"] = "󱎏", + ["code"] = "f138f", + }, + ["md-microsoft_internet_explorer"] = { + ["char"] = "󰌀", + ["code"] = "f0300", + }, + ["md-microsoft_office"] = { + ["char"] = "󰏆", + ["code"] = "f03c6", + }, + ["md-microsoft_onedrive"] = { + ["char"] = "󰏊", + ["code"] = "f03ca", + }, + ["md-microsoft_onenote"] = { + ["char"] = "󰝇", + ["code"] = "f0747", + }, + ["md-microsoft_outlook"] = { + ["char"] = "󰴢", + ["code"] = "f0d22", + }, + ["md-microsoft_powerpoint"] = { + ["char"] = "󱎐", + ["code"] = "f1390", + }, + ["md-microsoft_sharepoint"] = { + ["char"] = "󱎑", + ["code"] = "f1391", + }, + ["md-microsoft_teams"] = { + ["char"] = "󰊻", + ["code"] = "f02bb", + }, + ["md-microsoft_visual_studio"] = { + ["char"] = "󰘐", + ["code"] = "f0610", + }, + ["md-microsoft_visual_studio_code"] = { + ["char"] = "󰨞", + ["code"] = "f0a1e", + }, + ["md-microsoft_windows"] = { + ["char"] = "󰖳", + ["code"] = "f05b3", + }, + ["md-microsoft_windows_classic"] = { + ["char"] = "󰨡", + ["code"] = "f0a21", + }, + ["md-microsoft_word"] = { + ["char"] = "󱎒", + ["code"] = "f1392", + }, + ["md-microsoft_xbox"] = { + ["char"] = "󰖹", + ["code"] = "f05b9", + }, + ["md-microsoft_xbox_controller"] = { + ["char"] = "󰖺", + ["code"] = "f05ba", + }, + ["md-microsoft_xbox_controller_battery_alert"] = { + ["char"] = "󰝋", + ["code"] = "f074b", + }, + ["md-microsoft_xbox_controller_battery_charging"] = { + ["char"] = "󰨢", + ["code"] = "f0a22", + }, + ["md-microsoft_xbox_controller_battery_empty"] = { + ["char"] = "󰝌", + ["code"] = "f074c", + }, + ["md-microsoft_xbox_controller_battery_full"] = { + ["char"] = "󰝍", + ["code"] = "f074d", + }, + ["md-microsoft_xbox_controller_battery_low"] = { + ["char"] = "󰝎", + ["code"] = "f074e", + }, + ["md-microsoft_xbox_controller_battery_medium"] = { + ["char"] = "󰝏", + ["code"] = "f074f", + }, + ["md-microsoft_xbox_controller_battery_unknown"] = { + ["char"] = "󰝐", + ["code"] = "f0750", + }, + ["md-microsoft_xbox_controller_menu"] = { + ["char"] = "󰹯", + ["code"] = "f0e6f", + }, + ["md-microsoft_xbox_controller_off"] = { + ["char"] = "󰖻", + ["code"] = "f05bb", + }, + ["md-microsoft_xbox_controller_view"] = { + ["char"] = "󰹰", + ["code"] = "f0e70", + }, + ["md-microwave"] = { + ["char"] = "󰲙", + ["code"] = "f0c99", + }, + ["md-microwave_off"] = { + ["char"] = "󱐣", + ["code"] = "f1423", + }, + ["md-middleware"] = { + ["char"] = "󰽝", + ["code"] = "f0f5d", + }, + ["md-middleware_outline"] = { + ["char"] = "󰽞", + ["code"] = "f0f5e", + }, + ["md-midi"] = { + ["char"] = "󰣱", + ["code"] = "f08f1", + }, + ["md-midi_port"] = { + ["char"] = "󰣲", + ["code"] = "f08f2", + }, + ["md-mine"] = { + ["char"] = "󰷚", + ["code"] = "f0dda", + }, + ["md-minecraft"] = { + ["char"] = "󰍳", + ["code"] = "f0373", + }, + ["md-mini_sd"] = { + ["char"] = "󰨅", + ["code"] = "f0a05", + }, + ["md-minidisc"] = { + ["char"] = "󰨆", + ["code"] = "f0a06", + }, + ["md-minus"] = { + ["char"] = "󰍴", + ["code"] = "f0374", + }, + ["md-minus_box"] = { + ["char"] = "󰍵", + ["code"] = "f0375", + }, + ["md-minus_box_multiple"] = { + ["char"] = "󱅁", + ["code"] = "f1141", + }, + ["md-minus_box_multiple_outline"] = { + ["char"] = "󱅂", + ["code"] = "f1142", + }, + ["md-minus_box_outline"] = { + ["char"] = "󰛲", + ["code"] = "f06f2", + }, + ["md-minus_circle"] = { + ["char"] = "󰍶", + ["code"] = "f0376", + }, + ["md-minus_circle_multiple"] = { + ["char"] = "󰍚", + ["code"] = "f035a", + }, + ["md-minus_circle_multiple_outline"] = { + ["char"] = "󰫓", + ["code"] = "f0ad3", + }, + ["md-minus_circle_off"] = { + ["char"] = "󱑙", + ["code"] = "f1459", + }, + ["md-minus_circle_off_outline"] = { + ["char"] = "󱑚", + ["code"] = "f145a", + }, + ["md-minus_circle_outline"] = { + ["char"] = "󰍷", + ["code"] = "f0377", + }, + ["md-minus_network"] = { + ["char"] = "󰍸", + ["code"] = "f0378", + }, + ["md-minus_network_outline"] = { + ["char"] = "󰲚", + ["code"] = "f0c9a", + }, + ["md-minus_thick"] = { + ["char"] = "󱘹", + ["code"] = "f1639", + }, + ["md-mirror"] = { + ["char"] = "󱇽", + ["code"] = "f11fd", + }, + ["md-mirror_rectangle"] = { + ["char"] = "󱞟", + ["code"] = "f179f", + }, + ["md-mirror_variant"] = { + ["char"] = "󱞠", + ["code"] = "f17a0", + }, + ["md-mixed_martial_arts"] = { + ["char"] = "󰶏", + ["code"] = "f0d8f", + }, + ["md-mixed_reality"] = { + ["char"] = "󰡿", + ["code"] = "f087f", + }, + ["md-molecule"] = { + ["char"] = "󰮬", + ["code"] = "f0bac", + }, + ["md-molecule_co"] = { + ["char"] = "󱋾", + ["code"] = "f12fe", + }, + ["md-molecule_co2"] = { + ["char"] = "󰟤", + ["code"] = "f07e4", + }, + ["md-monitor"] = { + ["char"] = "󰍹", + ["code"] = "f0379", + }, + ["md-monitor_account"] = { + ["char"] = "󱩛", + ["code"] = "f1a5b", + }, + ["md-monitor_arrow_down"] = { + ["char"] = "󱧐", + ["code"] = "f19d0", + }, + ["md-monitor_arrow_down_variant"] = { + ["char"] = "󱧑", + ["code"] = "f19d1", + }, + ["md-monitor_cellphone"] = { + ["char"] = "󰦉", + ["code"] = "f0989", + }, + ["md-monitor_cellphone_star"] = { + ["char"] = "󰦊", + ["code"] = "f098a", + }, + ["md-monitor_dashboard"] = { + ["char"] = "󰨇", + ["code"] = "f0a07", + }, + ["md-monitor_edit"] = { + ["char"] = "󱋆", + ["code"] = "f12c6", + }, + ["md-monitor_eye"] = { + ["char"] = "󱎴", + ["code"] = "f13b4", + }, + ["md-monitor_lock"] = { + ["char"] = "󰷛", + ["code"] = "f0ddb", + }, + ["md-monitor_multiple"] = { + ["char"] = "󰍺", + ["code"] = "f037a", + }, + ["md-monitor_off"] = { + ["char"] = "󰶐", + ["code"] = "f0d90", + }, + ["md-monitor_screenshot"] = { + ["char"] = "󰹑", + ["code"] = "f0e51", + }, + ["md-monitor_share"] = { + ["char"] = "󱒃", + ["code"] = "f1483", + }, + ["md-monitor_shimmer"] = { + ["char"] = "󱄄", + ["code"] = "f1104", + }, + ["md-monitor_small"] = { + ["char"] = "󱡶", + ["code"] = "f1876", + }, + ["md-monitor_speaker"] = { + ["char"] = "󰽟", + ["code"] = "f0f5f", + }, + ["md-monitor_speaker_off"] = { + ["char"] = "󰽠", + ["code"] = "f0f60", + }, + ["md-monitor_star"] = { + ["char"] = "󰷜", + ["code"] = "f0ddc", + }, + ["md-moon_first_quarter"] = { + ["char"] = "󰽡", + ["code"] = "f0f61", + }, + ["md-moon_full"] = { + ["char"] = "󰽢", + ["code"] = "f0f62", + }, + ["md-moon_last_quarter"] = { + ["char"] = "󰽣", + ["code"] = "f0f63", + }, + ["md-moon_new"] = { + ["char"] = "󰽤", + ["code"] = "f0f64", + }, + ["md-moon_waning_crescent"] = { + ["char"] = "󰽥", + ["code"] = "f0f65", + }, + ["md-moon_waning_gibbous"] = { + ["char"] = "󰽦", + ["code"] = "f0f66", + }, + ["md-moon_waxing_crescent"] = { + ["char"] = "󰽧", + ["code"] = "f0f67", + }, + ["md-moon_waxing_gibbous"] = { + ["char"] = "󰽨", + ["code"] = "f0f68", + }, + ["md-moped"] = { + ["char"] = "󱂆", + ["code"] = "f1086", + }, + ["md-moped_electric"] = { + ["char"] = "󱖷", + ["code"] = "f15b7", + }, + ["md-moped_electric_outline"] = { + ["char"] = "󱖸", + ["code"] = "f15b8", + }, + ["md-moped_outline"] = { + ["char"] = "󱖹", + ["code"] = "f15b9", + }, + ["md-more"] = { + ["char"] = "󰍻", + ["code"] = "f037b", + }, + ["md-mortar_pestle"] = { + ["char"] = "󱝈", + ["code"] = "f1748", + }, + ["md-mortar_pestle_plus"] = { + ["char"] = "󰏱", + ["code"] = "f03f1", + }, + ["md-mosque"] = { + ["char"] = "󱠧", + ["code"] = "f1827", + }, + ["md-mother_heart"] = { + ["char"] = "󱌔", + ["code"] = "f1314", + }, + ["md-mother_nurse"] = { + ["char"] = "󰴡", + ["code"] = "f0d21", + }, + ["md-motion"] = { + ["char"] = "󱖲", + ["code"] = "f15b2", + }, + ["md-motion_outline"] = { + ["char"] = "󱖳", + ["code"] = "f15b3", + }, + ["md-motion_pause"] = { + ["char"] = "󱖐", + ["code"] = "f1590", + }, + ["md-motion_pause_outline"] = { + ["char"] = "󱖒", + ["code"] = "f1592", + }, + ["md-motion_play"] = { + ["char"] = "󱖏", + ["code"] = "f158f", + }, + ["md-motion_play_outline"] = { + ["char"] = "󱖑", + ["code"] = "f1591", + }, + ["md-motion_sensor"] = { + ["char"] = "󰶑", + ["code"] = "f0d91", + }, + ["md-motion_sensor_off"] = { + ["char"] = "󱐵", + ["code"] = "f1435", + }, + ["md-motorbike"] = { + ["char"] = "󰍼", + ["code"] = "f037c", + }, + ["md-motorbike_electric"] = { + ["char"] = "󱖺", + ["code"] = "f15ba", + }, + ["md-mouse"] = { + ["char"] = "󰍽", + ["code"] = "f037d", + }, + ["md-mouse_bluetooth"] = { + ["char"] = "󰦋", + ["code"] = "f098b", + }, + ["md-mouse_move_down"] = { + ["char"] = "󱕐", + ["code"] = "f1550", + }, + ["md-mouse_move_up"] = { + ["char"] = "󱕑", + ["code"] = "f1551", + }, + ["md-mouse_move_vertical"] = { + ["char"] = "󱕒", + ["code"] = "f1552", + }, + ["md-mouse_off"] = { + ["char"] = "󰍾", + ["code"] = "f037e", + }, + ["md-mouse_variant"] = { + ["char"] = "󰍿", + ["code"] = "f037f", + }, + ["md-mouse_variant_off"] = { + ["char"] = "󰎀", + ["code"] = "f0380", + }, + ["md-move_resize"] = { + ["char"] = "󰙕", + ["code"] = "f0655", + }, + ["md-move_resize_variant"] = { + ["char"] = "󰙖", + ["code"] = "f0656", + }, + ["md-movie"] = { + ["char"] = "󰎁", + ["code"] = "f0381", + }, + ["md-movie_check"] = { + ["char"] = "󱛳", + ["code"] = "f16f3", + }, + ["md-movie_check_outline"] = { + ["char"] = "󱛴", + ["code"] = "f16f4", + }, + ["md-movie_cog"] = { + ["char"] = "󱛵", + ["code"] = "f16f5", + }, + ["md-movie_cog_outline"] = { + ["char"] = "󱛶", + ["code"] = "f16f6", + }, + ["md-movie_edit"] = { + ["char"] = "󱄢", + ["code"] = "f1122", + }, + ["md-movie_edit_outline"] = { + ["char"] = "󱄣", + ["code"] = "f1123", + }, + ["md-movie_filter"] = { + ["char"] = "󱄤", + ["code"] = "f1124", + }, + ["md-movie_filter_outline"] = { + ["char"] = "󱄥", + ["code"] = "f1125", + }, + ["md-movie_minus"] = { + ["char"] = "󱛷", + ["code"] = "f16f7", + }, + ["md-movie_minus_outline"] = { + ["char"] = "󱛸", + ["code"] = "f16f8", + }, + ["md-movie_off"] = { + ["char"] = "󱛹", + ["code"] = "f16f9", + }, + ["md-movie_off_outline"] = { + ["char"] = "󱛺", + ["code"] = "f16fa", + }, + ["md-movie_open"] = { + ["char"] = "󰿎", + ["code"] = "f0fce", + }, + ["md-movie_open_check"] = { + ["char"] = "󱛻", + ["code"] = "f16fb", + }, + ["md-movie_open_check_outline"] = { + ["char"] = "󱛼", + ["code"] = "f16fc", + }, + ["md-movie_open_cog"] = { + ["char"] = "󱛽", + ["code"] = "f16fd", + }, + ["md-movie_open_cog_outline"] = { + ["char"] = "󱛾", + ["code"] = "f16fe", + }, + ["md-movie_open_edit"] = { + ["char"] = "󱛿", + ["code"] = "f16ff", + }, + ["md-movie_open_edit_outline"] = { + ["char"] = "󱜀", + ["code"] = "f1700", + }, + ["md-movie_open_minus"] = { + ["char"] = "󱜁", + ["code"] = "f1701", + }, + ["md-movie_open_minus_outline"] = { + ["char"] = "󱜂", + ["code"] = "f1702", + }, + ["md-movie_open_off"] = { + ["char"] = "󱜃", + ["code"] = "f1703", + }, + ["md-movie_open_off_outline"] = { + ["char"] = "󱜄", + ["code"] = "f1704", + }, + ["md-movie_open_outline"] = { + ["char"] = "󰿏", + ["code"] = "f0fcf", + }, + ["md-movie_open_play"] = { + ["char"] = "󱜅", + ["code"] = "f1705", + }, + ["md-movie_open_play_outline"] = { + ["char"] = "󱜆", + ["code"] = "f1706", + }, + ["md-movie_open_plus"] = { + ["char"] = "󱜇", + ["code"] = "f1707", + }, + ["md-movie_open_plus_outline"] = { + ["char"] = "󱜈", + ["code"] = "f1708", + }, + ["md-movie_open_remove"] = { + ["char"] = "󱜉", + ["code"] = "f1709", + }, + ["md-movie_open_remove_outline"] = { + ["char"] = "󱜊", + ["code"] = "f170a", + }, + ["md-movie_open_settings"] = { + ["char"] = "󱜋", + ["code"] = "f170b", + }, + ["md-movie_open_settings_outline"] = { + ["char"] = "󱜌", + ["code"] = "f170c", + }, + ["md-movie_open_star"] = { + ["char"] = "󱜍", + ["code"] = "f170d", + }, + ["md-movie_open_star_outline"] = { + ["char"] = "󱜎", + ["code"] = "f170e", + }, + ["md-movie_outline"] = { + ["char"] = "󰷝", + ["code"] = "f0ddd", + }, + ["md-movie_play"] = { + ["char"] = "󱜏", + ["code"] = "f170f", + }, + ["md-movie_play_outline"] = { + ["char"] = "󱜐", + ["code"] = "f1710", + }, + ["md-movie_plus"] = { + ["char"] = "󱜑", + ["code"] = "f1711", + }, + ["md-movie_plus_outline"] = { + ["char"] = "󱜒", + ["code"] = "f1712", + }, + ["md-movie_remove"] = { + ["char"] = "󱜓", + ["code"] = "f1713", + }, + ["md-movie_remove_outline"] = { + ["char"] = "󱜔", + ["code"] = "f1714", + }, + ["md-movie_roll"] = { + ["char"] = "󰟞", + ["code"] = "f07de", + }, + ["md-movie_search"] = { + ["char"] = "󱇒", + ["code"] = "f11d2", + }, + ["md-movie_search_outline"] = { + ["char"] = "󱇓", + ["code"] = "f11d3", + }, + ["md-movie_settings"] = { + ["char"] = "󱜕", + ["code"] = "f1715", + }, + ["md-movie_settings_outline"] = { + ["char"] = "󱜖", + ["code"] = "f1716", + }, + ["md-movie_star"] = { + ["char"] = "󱜗", + ["code"] = "f1717", + }, + ["md-movie_star_outline"] = { + ["char"] = "󱜘", + ["code"] = "f1718", + }, + ["md-mower"] = { + ["char"] = "󱙯", + ["code"] = "f166f", + }, + ["md-mower_bag"] = { + ["char"] = "󱙰", + ["code"] = "f1670", + }, + ["md-muffin"] = { + ["char"] = "󰦌", + ["code"] = "f098c", + }, + ["md-multicast"] = { + ["char"] = "󱢓", + ["code"] = "f1893", + }, + ["md-multiplication"] = { + ["char"] = "󰎂", + ["code"] = "f0382", + }, + ["md-multiplication_box"] = { + ["char"] = "󰎃", + ["code"] = "f0383", + }, + ["md-mushroom"] = { + ["char"] = "󰟟", + ["code"] = "f07df", + }, + ["md-mushroom_off"] = { + ["char"] = "󱏺", + ["code"] = "f13fa", + }, + ["md-mushroom_off_outline"] = { + ["char"] = "󱏻", + ["code"] = "f13fb", + }, + ["md-mushroom_outline"] = { + ["char"] = "󰟠", + ["code"] = "f07e0", + }, + ["md-music"] = { + ["char"] = "󰝚", + ["code"] = "f075a", + }, + ["md-music_accidental_double_flat"] = { + ["char"] = "󰽩", + ["code"] = "f0f69", + }, + ["md-music_accidental_double_sharp"] = { + ["char"] = "󰽪", + ["code"] = "f0f6a", + }, + ["md-music_accidental_flat"] = { + ["char"] = "󰽫", + ["code"] = "f0f6b", + }, + ["md-music_accidental_natural"] = { + ["char"] = "󰽬", + ["code"] = "f0f6c", + }, + ["md-music_accidental_sharp"] = { + ["char"] = "󰽭", + ["code"] = "f0f6d", + }, + ["md-music_box"] = { + ["char"] = "󰎄", + ["code"] = "f0384", + }, + ["md-music_box_multiple"] = { + ["char"] = "󰌳", + ["code"] = "f0333", + }, + ["md-music_box_multiple_outline"] = { + ["char"] = "󰼄", + ["code"] = "f0f04", + }, + ["md-music_box_outline"] = { + ["char"] = "󰎅", + ["code"] = "f0385", + }, + ["md-music_circle"] = { + ["char"] = "󰎆", + ["code"] = "f0386", + }, + ["md-music_circle_outline"] = { + ["char"] = "󰫔", + ["code"] = "f0ad4", + }, + ["md-music_clef_alto"] = { + ["char"] = "󰽮", + ["code"] = "f0f6e", + }, + ["md-music_clef_bass"] = { + ["char"] = "󰽯", + ["code"] = "f0f6f", + }, + ["md-music_clef_treble"] = { + ["char"] = "󰽰", + ["code"] = "f0f70", + }, + ["md-music_note"] = { + ["char"] = "󰎈", + ["code"] = "f0388", + }, + ["md-music_note_bluetooth"] = { + ["char"] = "󰗾", + ["code"] = "f05fe", + }, + ["md-music_note_bluetooth_off"] = { + ["char"] = "󰗿", + ["code"] = "f05ff", + }, + ["md-music_note_eighth_dotted"] = { + ["char"] = "󰽱", + ["code"] = "f0f71", + }, + ["md-music_note_half"] = { + ["char"] = "󰎉", + ["code"] = "f0389", + }, + ["md-music_note_half_dotted"] = { + ["char"] = "󰽲", + ["code"] = "f0f72", + }, + ["md-music_note_off"] = { + ["char"] = "󰎊", + ["code"] = "f038a", + }, + ["md-music_note_off_outline"] = { + ["char"] = "󰽳", + ["code"] = "f0f73", + }, + ["md-music_note_outline"] = { + ["char"] = "󰽴", + ["code"] = "f0f74", + }, + ["md-music_note_plus"] = { + ["char"] = "󰷞", + ["code"] = "f0dde", + }, + ["md-music_note_quarter"] = { + ["char"] = "󰎋", + ["code"] = "f038b", + }, + ["md-music_note_quarter_dotted"] = { + ["char"] = "󰽵", + ["code"] = "f0f75", + }, + ["md-music_note_sixteenth"] = { + ["char"] = "󰎌", + ["code"] = "f038c", + }, + ["md-music_note_sixteenth_dotted"] = { + ["char"] = "󰽶", + ["code"] = "f0f76", + }, + ["md-music_note_whole"] = { + ["char"] = "󰎍", + ["code"] = "f038d", + }, + ["md-music_note_whole_dotted"] = { + ["char"] = "󰽷", + ["code"] = "f0f77", + }, + ["md-music_off"] = { + ["char"] = "󰝛", + ["code"] = "f075b", + }, + ["md-music_rest_eighth"] = { + ["char"] = "󰽸", + ["code"] = "f0f78", + }, + ["md-music_rest_half"] = { + ["char"] = "󰽹", + ["code"] = "f0f79", + }, + ["md-music_rest_quarter"] = { + ["char"] = "󰽺", + ["code"] = "f0f7a", + }, + ["md-music_rest_sixteenth"] = { + ["char"] = "󰽻", + ["code"] = "f0f7b", + }, + ["md-music_rest_whole"] = { + ["char"] = "󰽼", + ["code"] = "f0f7c", + }, + ["md-mustache"] = { + ["char"] = "󱗞", + ["code"] = "f15de", + }, + ["md-nail"] = { + ["char"] = "󰷟", + ["code"] = "f0ddf", + }, + ["md-nas"] = { + ["char"] = "󰣳", + ["code"] = "f08f3", + }, + ["md-nativescript"] = { + ["char"] = "󰢀", + ["code"] = "f0880", + }, + ["md-nature"] = { + ["char"] = "󰎎", + ["code"] = "f038e", + }, + ["md-nature_people"] = { + ["char"] = "󰎏", + ["code"] = "f038f", + }, + ["md-navigation"] = { + ["char"] = "󰎐", + ["code"] = "f0390", + }, + ["md-navigation_outline"] = { + ["char"] = "󱘇", + ["code"] = "f1607", + }, + ["md-navigation_variant_outline"] = { + ["char"] = "󱣱", + ["code"] = "f18f1", + }, + ["md-near_me"] = { + ["char"] = "󱣰", + ["code"] = "f18f0", + }, + ["md-necklace"] = { + ["char"] = "󰼋", + ["code"] = "f0f0b", + }, + ["md-needle"] = { + ["char"] = "󰎑", + ["code"] = "f0391", + }, + ["md-needle_off"] = { + ["char"] = "󱧒", + ["code"] = "f19d2", + }, + ["md-netflix"] = { + ["char"] = "󰝆", + ["code"] = "f0746", + }, + ["md-network"] = { + ["char"] = "󰛳", + ["code"] = "f06f3", + }, + ["md-network_off"] = { + ["char"] = "󰲛", + ["code"] = "f0c9b", + }, + ["md-network_off_outline"] = { + ["char"] = "󰲜", + ["code"] = "f0c9c", + }, + ["md-network_outline"] = { + ["char"] = "󰲝", + ["code"] = "f0c9d", + }, + ["md-network_pos"] = { + ["char"] = "󱫋", + ["code"] = "f1acb", + }, + ["md-network_strength_1"] = { + ["char"] = "󰣴", + ["code"] = "f08f4", + }, + ["md-network_strength_1_alert"] = { + ["char"] = "󰣵", + ["code"] = "f08f5", + }, + ["md-network_strength_2"] = { + ["char"] = "󰣶", + ["code"] = "f08f6", + }, + ["md-network_strength_2_alert"] = { + ["char"] = "󰣷", + ["code"] = "f08f7", + }, + ["md-network_strength_3"] = { + ["char"] = "󰣸", + ["code"] = "f08f8", + }, + ["md-network_strength_3_alert"] = { + ["char"] = "󰣹", + ["code"] = "f08f9", + }, + ["md-network_strength_4"] = { + ["char"] = "󰣺", + ["code"] = "f08fa", + }, + ["md-network_strength_4_alert"] = { + ["char"] = "󰣻", + ["code"] = "f08fb", + }, + ["md-network_strength_4_cog"] = { + ["char"] = "󱤚", + ["code"] = "f191a", + }, + ["md-network_strength_off"] = { + ["char"] = "󰣼", + ["code"] = "f08fc", + }, + ["md-network_strength_off_outline"] = { + ["char"] = "󰣽", + ["code"] = "f08fd", + }, + ["md-network_strength_outline"] = { + ["char"] = "󰣾", + ["code"] = "f08fe", + }, + ["md-new_box"] = { + ["char"] = "󰎔", + ["code"] = "f0394", + }, + ["md-newspaper"] = { + ["char"] = "󰎕", + ["code"] = "f0395", + }, + ["md-newspaper_check"] = { + ["char"] = "󱥃", + ["code"] = "f1943", + }, + ["md-newspaper_minus"] = { + ["char"] = "󰼌", + ["code"] = "f0f0c", + }, + ["md-newspaper_plus"] = { + ["char"] = "󰼍", + ["code"] = "f0f0d", + }, + ["md-newspaper_remove"] = { + ["char"] = "󱥄", + ["code"] = "f1944", + }, + ["md-newspaper_variant"] = { + ["char"] = "󱀁", + ["code"] = "f1001", + }, + ["md-newspaper_variant_multiple"] = { + ["char"] = "󱀂", + ["code"] = "f1002", + }, + ["md-newspaper_variant_multiple_outline"] = { + ["char"] = "󱀃", + ["code"] = "f1003", + }, + ["md-newspaper_variant_outline"] = { + ["char"] = "󱀄", + ["code"] = "f1004", + }, + ["md-nfc"] = { + ["char"] = "󰎖", + ["code"] = "f0396", + }, + ["md-nfc_search_variant"] = { + ["char"] = "󰹓", + ["code"] = "f0e53", + }, + ["md-nfc_tap"] = { + ["char"] = "󰎗", + ["code"] = "f0397", + }, + ["md-nfc_variant"] = { + ["char"] = "󰎘", + ["code"] = "f0398", + }, + ["md-nfc_variant_off"] = { + ["char"] = "󰹔", + ["code"] = "f0e54", + }, + ["md-ninja"] = { + ["char"] = "󰝴", + ["code"] = "f0774", + }, + ["md-nintendo_game_boy"] = { + ["char"] = "󱎓", + ["code"] = "f1393", + }, + ["md-nintendo_switch"] = { + ["char"] = "󰟡", + ["code"] = "f07e1", + }, + ["md-nintendo_wii"] = { + ["char"] = "󰖫", + ["code"] = "f05ab", + }, + ["md-nintendo_wiiu"] = { + ["char"] = "󰜭", + ["code"] = "f072d", + }, + ["md-nix"] = { + ["char"] = "󱄅", + ["code"] = "f1105", + }, + ["md-nodejs"] = { + ["char"] = "󰎙", + ["code"] = "f0399", + }, + ["md-noodles"] = { + ["char"] = "󱅾", + ["code"] = "f117e", + }, + ["md-not_equal"] = { + ["char"] = "󰦍", + ["code"] = "f098d", + }, + ["md-not_equal_variant"] = { + ["char"] = "󰦎", + ["code"] = "f098e", + }, + ["md-note"] = { + ["char"] = "󰎚", + ["code"] = "f039a", + }, + ["md-note_alert"] = { + ["char"] = "󱝽", + ["code"] = "f177d", + }, + ["md-note_alert_outline"] = { + ["char"] = "󱝾", + ["code"] = "f177e", + }, + ["md-note_check"] = { + ["char"] = "󱝿", + ["code"] = "f177f", + }, + ["md-note_check_outline"] = { + ["char"] = "󱞀", + ["code"] = "f1780", + }, + ["md-note_edit"] = { + ["char"] = "󱞁", + ["code"] = "f1781", + }, + ["md-note_edit_outline"] = { + ["char"] = "󱞂", + ["code"] = "f1782", + }, + ["md-note_minus"] = { + ["char"] = "󱙏", + ["code"] = "f164f", + }, + ["md-note_minus_outline"] = { + ["char"] = "󱙐", + ["code"] = "f1650", + }, + ["md-note_multiple"] = { + ["char"] = "󰚸", + ["code"] = "f06b8", + }, + ["md-note_multiple_outline"] = { + ["char"] = "󰚹", + ["code"] = "f06b9", + }, + ["md-note_off"] = { + ["char"] = "󱞃", + ["code"] = "f1783", + }, + ["md-note_off_outline"] = { + ["char"] = "󱞄", + ["code"] = "f1784", + }, + ["md-note_outline"] = { + ["char"] = "󰎛", + ["code"] = "f039b", + }, + ["md-note_plus"] = { + ["char"] = "󰎜", + ["code"] = "f039c", + }, + ["md-note_plus_outline"] = { + ["char"] = "󰎝", + ["code"] = "f039d", + }, + ["md-note_remove"] = { + ["char"] = "󱙑", + ["code"] = "f1651", + }, + ["md-note_remove_outline"] = { + ["char"] = "󱙒", + ["code"] = "f1652", + }, + ["md-note_search"] = { + ["char"] = "󱙓", + ["code"] = "f1653", + }, + ["md-note_search_outline"] = { + ["char"] = "󱙔", + ["code"] = "f1654", + }, + ["md-note_text"] = { + ["char"] = "󰎞", + ["code"] = "f039e", + }, + ["md-note_text_outline"] = { + ["char"] = "󱇗", + ["code"] = "f11d7", + }, + ["md-notebook"] = { + ["char"] = "󰠮", + ["code"] = "f082e", + }, + ["md-notebook_check"] = { + ["char"] = "󱓵", + ["code"] = "f14f5", + }, + ["md-notebook_check_outline"] = { + ["char"] = "󱓶", + ["code"] = "f14f6", + }, + ["md-notebook_edit"] = { + ["char"] = "󱓧", + ["code"] = "f14e7", + }, + ["md-notebook_edit_outline"] = { + ["char"] = "󱓩", + ["code"] = "f14e9", + }, + ["md-notebook_heart"] = { + ["char"] = "󱨋", + ["code"] = "f1a0b", + }, + ["md-notebook_heart_outline"] = { + ["char"] = "󱨌", + ["code"] = "f1a0c", + }, + ["md-notebook_minus"] = { + ["char"] = "󱘐", + ["code"] = "f1610", + }, + ["md-notebook_minus_outline"] = { + ["char"] = "󱘑", + ["code"] = "f1611", + }, + ["md-notebook_multiple"] = { + ["char"] = "󰹕", + ["code"] = "f0e55", + }, + ["md-notebook_outline"] = { + ["char"] = "󰺿", + ["code"] = "f0ebf", + }, + ["md-notebook_plus"] = { + ["char"] = "󱘒", + ["code"] = "f1612", + }, + ["md-notebook_plus_outline"] = { + ["char"] = "󱘓", + ["code"] = "f1613", + }, + ["md-notebook_remove"] = { + ["char"] = "󱘔", + ["code"] = "f1614", + }, + ["md-notebook_remove_outline"] = { + ["char"] = "󱘕", + ["code"] = "f1615", + }, + ["md-notification_clear_all"] = { + ["char"] = "󰎟", + ["code"] = "f039f", + }, + ["md-npm"] = { + ["char"] = "󰛷", + ["code"] = "f06f7", + }, + ["md-nuke"] = { + ["char"] = "󰚤", + ["code"] = "f06a4", + }, + ["md-null"] = { + ["char"] = "󰟢", + ["code"] = "f07e2", + }, + ["md-numeric"] = { + ["char"] = "󰎠", + ["code"] = "f03a0", + }, + ["md-numeric_0_box"] = { + ["char"] = "󰎡", + ["code"] = "f03a1", + }, + ["md-numeric_0_box_multiple"] = { + ["char"] = "󰼎", + ["code"] = "f0f0e", + }, + ["md-numeric_0_box_multiple_outline"] = { + ["char"] = "󰎢", + ["code"] = "f03a2", + }, + ["md-numeric_0_box_outline"] = { + ["char"] = "󰎣", + ["code"] = "f03a3", + }, + ["md-numeric_1"] = { + ["char"] = "󰬺", + ["code"] = "f0b3a", + }, + ["md-numeric_10"] = { + ["char"] = "󰿩", + ["code"] = "f0fe9", + }, + ["md-numeric_10_box"] = { + ["char"] = "󰽽", + ["code"] = "f0f7d", + }, + ["md-numeric_10_box_multiple"] = { + ["char"] = "󰿪", + ["code"] = "f0fea", + }, + ["md-numeric_10_box_multiple_outline"] = { + ["char"] = "󰿫", + ["code"] = "f0feb", + }, + ["md-numeric_10_box_outline"] = { + ["char"] = "󰽾", + ["code"] = "f0f7e", + }, + ["md-numeric_10_circle"] = { + ["char"] = "󰿬", + ["code"] = "f0fec", + }, + ["md-numeric_10_circle_outline"] = { + ["char"] = "󰿭", + ["code"] = "f0fed", + }, + ["md-numeric_1_box"] = { + ["char"] = "󰎤", + ["code"] = "f03a4", + }, + ["md-numeric_1_box_multiple"] = { + ["char"] = "󰼏", + ["code"] = "f0f0f", + }, + ["md-numeric_1_box_multiple_outline"] = { + ["char"] = "󰎥", + ["code"] = "f03a5", + }, + ["md-numeric_1_box_outline"] = { + ["char"] = "󰎦", + ["code"] = "f03a6", + }, + ["md-numeric_1_circle"] = { + ["char"] = "󰲠", + ["code"] = "f0ca0", + }, + ["md-numeric_1_circle_outline"] = { + ["char"] = "󰲡", + ["code"] = "f0ca1", + }, + ["md-numeric_2"] = { + ["char"] = "󰬻", + ["code"] = "f0b3b", + }, + ["md-numeric_2_box"] = { + ["char"] = "󰎧", + ["code"] = "f03a7", + }, + ["md-numeric_2_box_multiple"] = { + ["char"] = "󰼐", + ["code"] = "f0f10", + }, + ["md-numeric_2_box_multiple_outline"] = { + ["char"] = "󰎨", + ["code"] = "f03a8", + }, + ["md-numeric_2_box_outline"] = { + ["char"] = "󰎩", + ["code"] = "f03a9", + }, + ["md-numeric_2_circle"] = { + ["char"] = "󰲢", + ["code"] = "f0ca2", + }, + ["md-numeric_2_circle_outline"] = { + ["char"] = "󰲣", + ["code"] = "f0ca3", + }, + ["md-numeric_3"] = { + ["char"] = "󰬼", + ["code"] = "f0b3c", + }, + ["md-numeric_3_box"] = { + ["char"] = "󰎪", + ["code"] = "f03aa", + }, + ["md-numeric_3_box_multiple"] = { + ["char"] = "󰼑", + ["code"] = "f0f11", + }, + ["md-numeric_3_box_multiple_outline"] = { + ["char"] = "󰎫", + ["code"] = "f03ab", + }, + ["md-numeric_3_box_outline"] = { + ["char"] = "󰎬", + ["code"] = "f03ac", + }, + ["md-numeric_3_circle"] = { + ["char"] = "󰲤", + ["code"] = "f0ca4", + }, + ["md-numeric_3_circle_outline"] = { + ["char"] = "󰲥", + ["code"] = "f0ca5", + }, + ["md-numeric_4"] = { + ["char"] = "󰬽", + ["code"] = "f0b3d", + }, + ["md-numeric_4_box"] = { + ["char"] = "󰎭", + ["code"] = "f03ad", + }, + ["md-numeric_4_box_multiple"] = { + ["char"] = "󰼒", + ["code"] = "f0f12", + }, + ["md-numeric_4_box_multiple_outline"] = { + ["char"] = "󰎲", + ["code"] = "f03b2", + }, + ["md-numeric_4_box_outline"] = { + ["char"] = "󰎮", + ["code"] = "f03ae", + }, + ["md-numeric_4_circle"] = { + ["char"] = "󰲦", + ["code"] = "f0ca6", + }, + ["md-numeric_4_circle_outline"] = { + ["char"] = "󰲧", + ["code"] = "f0ca7", + }, + ["md-numeric_5"] = { + ["char"] = "󰬾", + ["code"] = "f0b3e", + }, + ["md-numeric_5_box"] = { + ["char"] = "󰎱", + ["code"] = "f03b1", + }, + ["md-numeric_5_box_multiple"] = { + ["char"] = "󰼓", + ["code"] = "f0f13", + }, + ["md-numeric_5_box_multiple_outline"] = { + ["char"] = "󰎯", + ["code"] = "f03af", + }, + ["md-numeric_5_box_outline"] = { + ["char"] = "󰎰", + ["code"] = "f03b0", + }, + ["md-numeric_5_circle"] = { + ["char"] = "󰲨", + ["code"] = "f0ca8", + }, + ["md-numeric_5_circle_outline"] = { + ["char"] = "󰲩", + ["code"] = "f0ca9", + }, + ["md-numeric_6"] = { + ["char"] = "󰬿", + ["code"] = "f0b3f", + }, + ["md-numeric_6_box"] = { + ["char"] = "󰎳", + ["code"] = "f03b3", + }, + ["md-numeric_6_box_multiple"] = { + ["char"] = "󰼔", + ["code"] = "f0f14", + }, + ["md-numeric_6_box_multiple_outline"] = { + ["char"] = "󰎴", + ["code"] = "f03b4", + }, + ["md-numeric_6_box_outline"] = { + ["char"] = "󰎵", + ["code"] = "f03b5", + }, + ["md-numeric_6_circle"] = { + ["char"] = "󰲪", + ["code"] = "f0caa", + }, + ["md-numeric_6_circle_outline"] = { + ["char"] = "󰲫", + ["code"] = "f0cab", + }, + ["md-numeric_7"] = { + ["char"] = "󰭀", + ["code"] = "f0b40", + }, + ["md-numeric_7_box"] = { + ["char"] = "󰎶", + ["code"] = "f03b6", + }, + ["md-numeric_7_box_multiple"] = { + ["char"] = "󰼕", + ["code"] = "f0f15", + }, + ["md-numeric_7_box_multiple_outline"] = { + ["char"] = "󰎷", + ["code"] = "f03b7", + }, + ["md-numeric_7_box_outline"] = { + ["char"] = "󰎸", + ["code"] = "f03b8", + }, + ["md-numeric_7_circle"] = { + ["char"] = "󰲬", + ["code"] = "f0cac", + }, + ["md-numeric_7_circle_outline"] = { + ["char"] = "󰲭", + ["code"] = "f0cad", + }, + ["md-numeric_8"] = { + ["char"] = "󰭁", + ["code"] = "f0b41", + }, + ["md-numeric_8_box"] = { + ["char"] = "󰎹", + ["code"] = "f03b9", + }, + ["md-numeric_8_box_multiple"] = { + ["char"] = "󰼖", + ["code"] = "f0f16", + }, + ["md-numeric_8_box_multiple_outline"] = { + ["char"] = "󰎺", + ["code"] = "f03ba", + }, + ["md-numeric_8_box_outline"] = { + ["char"] = "󰎻", + ["code"] = "f03bb", + }, + ["md-numeric_8_circle"] = { + ["char"] = "󰲮", + ["code"] = "f0cae", + }, + ["md-numeric_8_circle_outline"] = { + ["char"] = "󰲯", + ["code"] = "f0caf", + }, + ["md-numeric_9"] = { + ["char"] = "󰭂", + ["code"] = "f0b42", + }, + ["md-numeric_9_box"] = { + ["char"] = "󰎼", + ["code"] = "f03bc", + }, + ["md-numeric_9_box_multiple"] = { + ["char"] = "󰼗", + ["code"] = "f0f17", + }, + ["md-numeric_9_box_multiple_outline"] = { + ["char"] = "󰎽", + ["code"] = "f03bd", + }, + ["md-numeric_9_box_outline"] = { + ["char"] = "󰎾", + ["code"] = "f03be", + }, + ["md-numeric_9_circle"] = { + ["char"] = "󰲰", + ["code"] = "f0cb0", + }, + ["md-numeric_9_circle_outline"] = { + ["char"] = "󰲱", + ["code"] = "f0cb1", + }, + ["md-numeric_9_plus"] = { + ["char"] = "󰿮", + ["code"] = "f0fee", + }, + ["md-numeric_9_plus_box"] = { + ["char"] = "󰎿", + ["code"] = "f03bf", + }, + ["md-numeric_9_plus_box_multiple"] = { + ["char"] = "󰼘", + ["code"] = "f0f18", + }, + ["md-numeric_9_plus_box_multiple_outline"] = { + ["char"] = "󰏀", + ["code"] = "f03c0", + }, + ["md-numeric_9_plus_box_outline"] = { + ["char"] = "󰏁", + ["code"] = "f03c1", + }, + ["md-numeric_9_plus_circle"] = { + ["char"] = "󰲲", + ["code"] = "f0cb2", + }, + ["md-numeric_9_plus_circle_outline"] = { + ["char"] = "󰲳", + ["code"] = "f0cb3", + }, + ["md-numeric_negative_1"] = { + ["char"] = "󱁒", + ["code"] = "f1052", + }, + ["md-numeric_off"] = { + ["char"] = "󱧓", + ["code"] = "f19d3", + }, + ["md-numeric_positive_1"] = { + ["char"] = "󱗋", + ["code"] = "f15cb", + }, + ["md-nut"] = { + ["char"] = "󰛸", + ["code"] = "f06f8", + }, + ["md-nutrition"] = { + ["char"] = "󰏂", + ["code"] = "f03c2", + }, + ["md-nuxt"] = { + ["char"] = "󱄆", + ["code"] = "f1106", + }, + ["md-oar"] = { + ["char"] = "󰙼", + ["code"] = "f067c", + }, + ["md-ocarina"] = { + ["char"] = "󰷠", + ["code"] = "f0de0", + }, + ["md-oci"] = { + ["char"] = "󱋩", + ["code"] = "f12e9", + }, + ["md-ocr"] = { + ["char"] = "󱄺", + ["code"] = "f113a", + }, + ["md-octagon"] = { + ["char"] = "󰏃", + ["code"] = "f03c3", + }, + ["md-octagon_outline"] = { + ["char"] = "󰏄", + ["code"] = "f03c4", + }, + ["md-octagram"] = { + ["char"] = "󰛹", + ["code"] = "f06f9", + }, + ["md-octagram_outline"] = { + ["char"] = "󰝵", + ["code"] = "f0775", + }, + ["md-octahedron"] = { + ["char"] = "󱥐", + ["code"] = "f1950", + }, + ["md-octahedron_off"] = { + ["char"] = "󱥑", + ["code"] = "f1951", + }, + ["md-odnoklassniki"] = { + ["char"] = "󰏅", + ["code"] = "f03c5", + }, + ["md-offer"] = { + ["char"] = "󱈛", + ["code"] = "f121b", + }, + ["md-office_building"] = { + ["char"] = "󰦑", + ["code"] = "f0991", + }, + ["md-office_building_cog"] = { + ["char"] = "󱥉", + ["code"] = "f1949", + }, + ["md-office_building_cog_outline"] = { + ["char"] = "󱥊", + ["code"] = "f194a", + }, + ["md-office_building_marker"] = { + ["char"] = "󱔠", + ["code"] = "f1520", + }, + ["md-office_building_marker_outline"] = { + ["char"] = "󱔡", + ["code"] = "f1521", + }, + ["md-office_building_outline"] = { + ["char"] = "󱔟", + ["code"] = "f151f", + }, + ["md-oil"] = { + ["char"] = "󰏇", + ["code"] = "f03c7", + }, + ["md-oil_lamp"] = { + ["char"] = "󰼙", + ["code"] = "f0f19", + }, + ["md-oil_level"] = { + ["char"] = "󱁓", + ["code"] = "f1053", + }, + ["md-oil_temperature"] = { + ["char"] = "󰿸", + ["code"] = "f0ff8", + }, + ["md-om"] = { + ["char"] = "󰥳", + ["code"] = "f0973", + }, + ["md-omega"] = { + ["char"] = "󰏉", + ["code"] = "f03c9", + }, + ["md-one_up"] = { + ["char"] = "󰮭", + ["code"] = "f0bad", + }, + ["md-onepassword"] = { + ["char"] = "󰢁", + ["code"] = "f0881", + }, + ["md-opacity"] = { + ["char"] = "󰗌", + ["code"] = "f05cc", + }, + ["md-open_in_app"] = { + ["char"] = "󰏋", + ["code"] = "f03cb", + }, + ["md-open_in_new"] = { + ["char"] = "󰏌", + ["code"] = "f03cc", + }, + ["md-open_source_initiative"] = { + ["char"] = "󰮮", + ["code"] = "f0bae", + }, + ["md-openid"] = { + ["char"] = "󰏍", + ["code"] = "f03cd", + }, + ["md-opera"] = { + ["char"] = "󰏎", + ["code"] = "f03ce", + }, + ["md-orbit"] = { + ["char"] = "󰀘", + ["code"] = "f0018", + }, + ["md-orbit_variant"] = { + ["char"] = "󱗛", + ["code"] = "f15db", + }, + ["md-order_alphabetical_ascending"] = { + ["char"] = "󰈍", + ["code"] = "f020d", + }, + ["md-order_alphabetical_descending"] = { + ["char"] = "󰴇", + ["code"] = "f0d07", + }, + ["md-order_bool_ascending"] = { + ["char"] = "󰊾", + ["code"] = "f02be", + }, + ["md-order_bool_ascending_variant"] = { + ["char"] = "󰦏", + ["code"] = "f098f", + }, + ["md-order_bool_descending"] = { + ["char"] = "󱎄", + ["code"] = "f1384", + }, + ["md-order_bool_descending_variant"] = { + ["char"] = "󰦐", + ["code"] = "f0990", + }, + ["md-order_numeric_ascending"] = { + ["char"] = "󰕅", + ["code"] = "f0545", + }, + ["md-order_numeric_descending"] = { + ["char"] = "󰕆", + ["code"] = "f0546", + }, + ["md-origin"] = { + ["char"] = "󰭃", + ["code"] = "f0b43", + }, + ["md-ornament"] = { + ["char"] = "󰏏", + ["code"] = "f03cf", + }, + ["md-ornament_variant"] = { + ["char"] = "󰏐", + ["code"] = "f03d0", + }, + ["md-outdoor_lamp"] = { + ["char"] = "󱁔", + ["code"] = "f1054", + }, + ["md-overscan"] = { + ["char"] = "󱀅", + ["code"] = "f1005", + }, + ["md-owl"] = { + ["char"] = "󰏒", + ["code"] = "f03d2", + }, + ["md-pac_man"] = { + ["char"] = "󰮯", + ["code"] = "f0baf", + }, + ["md-package"] = { + ["char"] = "󰏓", + ["code"] = "f03d3", + }, + ["md-package_down"] = { + ["char"] = "󰏔", + ["code"] = "f03d4", + }, + ["md-package_up"] = { + ["char"] = "󰏕", + ["code"] = "f03d5", + }, + ["md-package_variant"] = { + ["char"] = "󰏖", + ["code"] = "f03d6", + }, + ["md-package_variant_closed"] = { + ["char"] = "󰏗", + ["code"] = "f03d7", + }, + ["md-package_variant_closed_minus"] = { + ["char"] = "󱧔", + ["code"] = "f19d4", + }, + ["md-package_variant_closed_plus"] = { + ["char"] = "󱧕", + ["code"] = "f19d5", + }, + ["md-package_variant_closed_remove"] = { + ["char"] = "󱧖", + ["code"] = "f19d6", + }, + ["md-package_variant_minus"] = { + ["char"] = "󱧗", + ["code"] = "f19d7", + }, + ["md-package_variant_plus"] = { + ["char"] = "󱧘", + ["code"] = "f19d8", + }, + ["md-package_variant_remove"] = { + ["char"] = "󱧙", + ["code"] = "f19d9", + }, + ["md-page_first"] = { + ["char"] = "󰘀", + ["code"] = "f0600", + }, + ["md-page_last"] = { + ["char"] = "󰘁", + ["code"] = "f0601", + }, + ["md-page_layout_body"] = { + ["char"] = "󰛺", + ["code"] = "f06fa", + }, + ["md-page_layout_footer"] = { + ["char"] = "󰛻", + ["code"] = "f06fb", + }, + ["md-page_layout_header"] = { + ["char"] = "󰛼", + ["code"] = "f06fc", + }, + ["md-page_layout_header_footer"] = { + ["char"] = "󰽿", + ["code"] = "f0f7f", + }, + ["md-page_layout_sidebar_left"] = { + ["char"] = "󰛽", + ["code"] = "f06fd", + }, + ["md-page_layout_sidebar_right"] = { + ["char"] = "󰛾", + ["code"] = "f06fe", + }, + ["md-page_next"] = { + ["char"] = "󰮰", + ["code"] = "f0bb0", + }, + ["md-page_next_outline"] = { + ["char"] = "󰮱", + ["code"] = "f0bb1", + }, + ["md-page_previous"] = { + ["char"] = "󰮲", + ["code"] = "f0bb2", + }, + ["md-page_previous_outline"] = { + ["char"] = "󰮳", + ["code"] = "f0bb3", + }, + ["md-pail"] = { + ["char"] = "󱐗", + ["code"] = "f1417", + }, + ["md-pail_minus"] = { + ["char"] = "󱐷", + ["code"] = "f1437", + }, + ["md-pail_minus_outline"] = { + ["char"] = "󱐼", + ["code"] = "f143c", + }, + ["md-pail_off"] = { + ["char"] = "󱐹", + ["code"] = "f1439", + }, + ["md-pail_off_outline"] = { + ["char"] = "󱐾", + ["code"] = "f143e", + }, + ["md-pail_outline"] = { + ["char"] = "󱐺", + ["code"] = "f143a", + }, + ["md-pail_plus"] = { + ["char"] = "󱐶", + ["code"] = "f1436", + }, + ["md-pail_plus_outline"] = { + ["char"] = "󱐻", + ["code"] = "f143b", + }, + ["md-pail_remove"] = { + ["char"] = "󱐸", + ["code"] = "f1438", + }, + ["md-pail_remove_outline"] = { + ["char"] = "󱐽", + ["code"] = "f143d", + }, + ["md-palette"] = { + ["char"] = "󰏘", + ["code"] = "f03d8", + }, + ["md-palette_advanced"] = { + ["char"] = "󰏙", + ["code"] = "f03d9", + }, + ["md-palette_outline"] = { + ["char"] = "󰸌", + ["code"] = "f0e0c", + }, + ["md-palette_swatch"] = { + ["char"] = "󰢵", + ["code"] = "f08b5", + }, + ["md-palette_swatch_outline"] = { + ["char"] = "󱍜", + ["code"] = "f135c", + }, + ["md-palette_swatch_variant"] = { + ["char"] = "󱥚", + ["code"] = "f195a", + }, + ["md-palm_tree"] = { + ["char"] = "󱁕", + ["code"] = "f1055", + }, + ["md-pan"] = { + ["char"] = "󰮴", + ["code"] = "f0bb4", + }, + ["md-pan_bottom_left"] = { + ["char"] = "󰮵", + ["code"] = "f0bb5", + }, + ["md-pan_bottom_right"] = { + ["char"] = "󰮶", + ["code"] = "f0bb6", + }, + ["md-pan_down"] = { + ["char"] = "󰮷", + ["code"] = "f0bb7", + }, + ["md-pan_horizontal"] = { + ["char"] = "󰮸", + ["code"] = "f0bb8", + }, + ["md-pan_left"] = { + ["char"] = "󰮹", + ["code"] = "f0bb9", + }, + ["md-pan_right"] = { + ["char"] = "󰮺", + ["code"] = "f0bba", + }, + ["md-pan_top_left"] = { + ["char"] = "󰮻", + ["code"] = "f0bbb", + }, + ["md-pan_top_right"] = { + ["char"] = "󰮼", + ["code"] = "f0bbc", + }, + ["md-pan_up"] = { + ["char"] = "󰮽", + ["code"] = "f0bbd", + }, + ["md-pan_vertical"] = { + ["char"] = "󰮾", + ["code"] = "f0bbe", + }, + ["md-panda"] = { + ["char"] = "󰏚", + ["code"] = "f03da", + }, + ["md-pandora"] = { + ["char"] = "󰏛", + ["code"] = "f03db", + }, + ["md-panorama"] = { + ["char"] = "󰏜", + ["code"] = "f03dc", + }, + ["md-panorama_fisheye"] = { + ["char"] = "󰏝", + ["code"] = "f03dd", + }, + ["md-panorama_horizontal"] = { + ["char"] = "󱤨", + ["code"] = "f1928", + }, + ["md-panorama_horizontal_outline"] = { + ["char"] = "󰏞", + ["code"] = "f03de", + }, + ["md-panorama_outline"] = { + ["char"] = "󱦌", + ["code"] = "f198c", + }, + ["md-panorama_sphere"] = { + ["char"] = "󱦍", + ["code"] = "f198d", + }, + ["md-panorama_sphere_outline"] = { + ["char"] = "󱦎", + ["code"] = "f198e", + }, + ["md-panorama_variant"] = { + ["char"] = "󱦏", + ["code"] = "f198f", + }, + ["md-panorama_variant_outline"] = { + ["char"] = "󱦐", + ["code"] = "f1990", + }, + ["md-panorama_vertical"] = { + ["char"] = "󱤩", + ["code"] = "f1929", + }, + ["md-panorama_vertical_outline"] = { + ["char"] = "󰏟", + ["code"] = "f03df", + }, + ["md-panorama_wide_angle"] = { + ["char"] = "󱥟", + ["code"] = "f195f", + }, + ["md-panorama_wide_angle_outline"] = { + ["char"] = "󰏠", + ["code"] = "f03e0", + }, + ["md-paper_cut_vertical"] = { + ["char"] = "󰏡", + ["code"] = "f03e1", + }, + ["md-paper_roll"] = { + ["char"] = "󱅗", + ["code"] = "f1157", + }, + ["md-paper_roll_outline"] = { + ["char"] = "󱅘", + ["code"] = "f1158", + }, + ["md-paperclip"] = { + ["char"] = "󰏢", + ["code"] = "f03e2", + }, + ["md-paperclip_check"] = { + ["char"] = "󱫆", + ["code"] = "f1ac6", + }, + ["md-paperclip_lock"] = { + ["char"] = "󱧚", + ["code"] = "f19da", + }, + ["md-paperclip_minus"] = { + ["char"] = "󱫇", + ["code"] = "f1ac7", + }, + ["md-paperclip_off"] = { + ["char"] = "󱫈", + ["code"] = "f1ac8", + }, + ["md-paperclip_plus"] = { + ["char"] = "󱫉", + ["code"] = "f1ac9", + }, + ["md-paperclip_remove"] = { + ["char"] = "󱫊", + ["code"] = "f1aca", + }, + ["md-parachute"] = { + ["char"] = "󰲴", + ["code"] = "f0cb4", + }, + ["md-parachute_outline"] = { + ["char"] = "󰲵", + ["code"] = "f0cb5", + }, + ["md-paragliding"] = { + ["char"] = "󱝅", + ["code"] = "f1745", + }, + ["md-parking"] = { + ["char"] = "󰏣", + ["code"] = "f03e3", + }, + ["md-party_popper"] = { + ["char"] = "󱁖", + ["code"] = "f1056", + }, + ["md-passport"] = { + ["char"] = "󰟣", + ["code"] = "f07e3", + }, + ["md-passport_biometric"] = { + ["char"] = "󰷡", + ["code"] = "f0de1", + }, + ["md-pasta"] = { + ["char"] = "󱅠", + ["code"] = "f1160", + }, + ["md-patio_heater"] = { + ["char"] = "󰾀", + ["code"] = "f0f80", + }, + ["md-patreon"] = { + ["char"] = "󰢂", + ["code"] = "f0882", + }, + ["md-pause"] = { + ["char"] = "󰏤", + ["code"] = "f03e4", + }, + ["md-pause_circle"] = { + ["char"] = "󰏥", + ["code"] = "f03e5", + }, + ["md-pause_circle_outline"] = { + ["char"] = "󰏦", + ["code"] = "f03e6", + }, + ["md-pause_octagon"] = { + ["char"] = "󰏧", + ["code"] = "f03e7", + }, + ["md-pause_octagon_outline"] = { + ["char"] = "󰏨", + ["code"] = "f03e8", + }, + ["md-paw"] = { + ["char"] = "󰏩", + ["code"] = "f03e9", + }, + ["md-paw_off"] = { + ["char"] = "󰙗", + ["code"] = "f0657", + }, + ["md-paw_off_outline"] = { + ["char"] = "󱙶", + ["code"] = "f1676", + }, + ["md-paw_outline"] = { + ["char"] = "󱙵", + ["code"] = "f1675", + }, + ["md-peace"] = { + ["char"] = "󰢄", + ["code"] = "f0884", + }, + ["md-peanut"] = { + ["char"] = "󰿼", + ["code"] = "f0ffc", + }, + ["md-peanut_off"] = { + ["char"] = "󰿽", + ["code"] = "f0ffd", + }, + ["md-peanut_off_outline"] = { + ["char"] = "󰿿", + ["code"] = "f0fff", + }, + ["md-peanut_outline"] = { + ["char"] = "󰿾", + ["code"] = "f0ffe", + }, + ["md-pen"] = { + ["char"] = "󰏪", + ["code"] = "f03ea", + }, + ["md-pen_lock"] = { + ["char"] = "󰷢", + ["code"] = "f0de2", + }, + ["md-pen_minus"] = { + ["char"] = "󰷣", + ["code"] = "f0de3", + }, + ["md-pen_off"] = { + ["char"] = "󰷤", + ["code"] = "f0de4", + }, + ["md-pen_plus"] = { + ["char"] = "󰷥", + ["code"] = "f0de5", + }, + ["md-pen_remove"] = { + ["char"] = "󰷦", + ["code"] = "f0de6", + }, + ["md-pencil"] = { + ["char"] = "󰏫", + ["code"] = "f03eb", + }, + ["md-pencil_box"] = { + ["char"] = "󰏬", + ["code"] = "f03ec", + }, + ["md-pencil_box_multiple"] = { + ["char"] = "󱅄", + ["code"] = "f1144", + }, + ["md-pencil_box_multiple_outline"] = { + ["char"] = "󱅅", + ["code"] = "f1145", + }, + ["md-pencil_box_outline"] = { + ["char"] = "󰏭", + ["code"] = "f03ed", + }, + ["md-pencil_circle"] = { + ["char"] = "󰛿", + ["code"] = "f06ff", + }, + ["md-pencil_circle_outline"] = { + ["char"] = "󰝶", + ["code"] = "f0776", + }, + ["md-pencil_lock"] = { + ["char"] = "󰏮", + ["code"] = "f03ee", + }, + ["md-pencil_lock_outline"] = { + ["char"] = "󰷧", + ["code"] = "f0de7", + }, + ["md-pencil_minus"] = { + ["char"] = "󰷨", + ["code"] = "f0de8", + }, + ["md-pencil_minus_outline"] = { + ["char"] = "󰷩", + ["code"] = "f0de9", + }, + ["md-pencil_off"] = { + ["char"] = "󰏯", + ["code"] = "f03ef", + }, + ["md-pencil_off_outline"] = { + ["char"] = "󰷪", + ["code"] = "f0dea", + }, + ["md-pencil_outline"] = { + ["char"] = "󰲶", + ["code"] = "f0cb6", + }, + ["md-pencil_plus"] = { + ["char"] = "󰷫", + ["code"] = "f0deb", + }, + ["md-pencil_plus_outline"] = { + ["char"] = "󰷬", + ["code"] = "f0dec", + }, + ["md-pencil_remove"] = { + ["char"] = "󰷭", + ["code"] = "f0ded", + }, + ["md-pencil_remove_outline"] = { + ["char"] = "󰷮", + ["code"] = "f0dee", + }, + ["md-pencil_ruler"] = { + ["char"] = "󱍓", + ["code"] = "f1353", + }, + ["md-penguin"] = { + ["char"] = "󰻀", + ["code"] = "f0ec0", + }, + ["md-pentagon"] = { + ["char"] = "󰜁", + ["code"] = "f0701", + }, + ["md-pentagon_outline"] = { + ["char"] = "󰜀", + ["code"] = "f0700", + }, + ["md-pentagram"] = { + ["char"] = "󱙧", + ["code"] = "f1667", + }, + ["md-percent"] = { + ["char"] = "󰏰", + ["code"] = "f03f0", + }, + ["md-percent_box"] = { + ["char"] = "󱨂", + ["code"] = "f1a02", + }, + ["md-percent_box_outline"] = { + ["char"] = "󱨃", + ["code"] = "f1a03", + }, + ["md-percent_circle"] = { + ["char"] = "󱨄", + ["code"] = "f1a04", + }, + ["md-percent_circle_outline"] = { + ["char"] = "󱨅", + ["code"] = "f1a05", + }, + ["md-percent_outline"] = { + ["char"] = "󱉸", + ["code"] = "f1278", + }, + ["md-periodic_table"] = { + ["char"] = "󰢶", + ["code"] = "f08b6", + }, + ["md-perspective_less"] = { + ["char"] = "󰴣", + ["code"] = "f0d23", + }, + ["md-perspective_more"] = { + ["char"] = "󰴤", + ["code"] = "f0d24", + }, + ["md-ph"] = { + ["char"] = "󱟅", + ["code"] = "f17c5", + }, + ["md-phone"] = { + ["char"] = "󰏲", + ["code"] = "f03f2", + }, + ["md-phone_alert"] = { + ["char"] = "󰼚", + ["code"] = "f0f1a", + }, + ["md-phone_alert_outline"] = { + ["char"] = "󱆎", + ["code"] = "f118e", + }, + ["md-phone_bluetooth"] = { + ["char"] = "󰏳", + ["code"] = "f03f3", + }, + ["md-phone_bluetooth_outline"] = { + ["char"] = "󱆏", + ["code"] = "f118f", + }, + ["md-phone_cancel"] = { + ["char"] = "󱂼", + ["code"] = "f10bc", + }, + ["md-phone_cancel_outline"] = { + ["char"] = "󱆐", + ["code"] = "f1190", + }, + ["md-phone_check"] = { + ["char"] = "󱆩", + ["code"] = "f11a9", + }, + ["md-phone_check_outline"] = { + ["char"] = "󱆪", + ["code"] = "f11aa", + }, + ["md-phone_classic"] = { + ["char"] = "󰘂", + ["code"] = "f0602", + }, + ["md-phone_classic_off"] = { + ["char"] = "󱉹", + ["code"] = "f1279", + }, + ["md-phone_clock"] = { + ["char"] = "󱧛", + ["code"] = "f19db", + }, + ["md-phone_dial"] = { + ["char"] = "󱕙", + ["code"] = "f1559", + }, + ["md-phone_dial_outline"] = { + ["char"] = "󱕚", + ["code"] = "f155a", + }, + ["md-phone_forward"] = { + ["char"] = "󰏴", + ["code"] = "f03f4", + }, + ["md-phone_forward_outline"] = { + ["char"] = "󱆑", + ["code"] = "f1191", + }, + ["md-phone_hangup"] = { + ["char"] = "󰏵", + ["code"] = "f03f5", + }, + ["md-phone_hangup_outline"] = { + ["char"] = "󱆒", + ["code"] = "f1192", + }, + ["md-phone_in_talk"] = { + ["char"] = "󰏶", + ["code"] = "f03f6", + }, + ["md-phone_in_talk_outline"] = { + ["char"] = "󱆂", + ["code"] = "f1182", + }, + ["md-phone_incoming"] = { + ["char"] = "󰏷", + ["code"] = "f03f7", + }, + ["md-phone_incoming_outline"] = { + ["char"] = "󱆓", + ["code"] = "f1193", + }, + ["md-phone_lock"] = { + ["char"] = "󰏸", + ["code"] = "f03f8", + }, + ["md-phone_lock_outline"] = { + ["char"] = "󱆔", + ["code"] = "f1194", + }, + ["md-phone_log"] = { + ["char"] = "󰏹", + ["code"] = "f03f9", + }, + ["md-phone_log_outline"] = { + ["char"] = "󱆕", + ["code"] = "f1195", + }, + ["md-phone_message"] = { + ["char"] = "󱆖", + ["code"] = "f1196", + }, + ["md-phone_message_outline"] = { + ["char"] = "󱆗", + ["code"] = "f1197", + }, + ["md-phone_minus"] = { + ["char"] = "󰙘", + ["code"] = "f0658", + }, + ["md-phone_minus_outline"] = { + ["char"] = "󱆘", + ["code"] = "f1198", + }, + ["md-phone_missed"] = { + ["char"] = "󰏺", + ["code"] = "f03fa", + }, + ["md-phone_missed_outline"] = { + ["char"] = "󱆥", + ["code"] = "f11a5", + }, + ["md-phone_off"] = { + ["char"] = "󰷯", + ["code"] = "f0def", + }, + ["md-phone_off_outline"] = { + ["char"] = "󱆦", + ["code"] = "f11a6", + }, + ["md-phone_outgoing"] = { + ["char"] = "󰏻", + ["code"] = "f03fb", + }, + ["md-phone_outgoing_outline"] = { + ["char"] = "󱆙", + ["code"] = "f1199", + }, + ["md-phone_outline"] = { + ["char"] = "󰷰", + ["code"] = "f0df0", + }, + ["md-phone_paused"] = { + ["char"] = "󰏼", + ["code"] = "f03fc", + }, + ["md-phone_paused_outline"] = { + ["char"] = "󱆚", + ["code"] = "f119a", + }, + ["md-phone_plus"] = { + ["char"] = "󰙙", + ["code"] = "f0659", + }, + ["md-phone_plus_outline"] = { + ["char"] = "󱆛", + ["code"] = "f119b", + }, + ["md-phone_refresh"] = { + ["char"] = "󱦓", + ["code"] = "f1993", + }, + ["md-phone_refresh_outline"] = { + ["char"] = "󱦔", + ["code"] = "f1994", + }, + ["md-phone_remove"] = { + ["char"] = "󱔯", + ["code"] = "f152f", + }, + ["md-phone_remove_outline"] = { + ["char"] = "󱔰", + ["code"] = "f1530", + }, + ["md-phone_return"] = { + ["char"] = "󰠯", + ["code"] = "f082f", + }, + ["md-phone_return_outline"] = { + ["char"] = "󱆜", + ["code"] = "f119c", + }, + ["md-phone_ring"] = { + ["char"] = "󱆫", + ["code"] = "f11ab", + }, + ["md-phone_ring_outline"] = { + ["char"] = "󱆬", + ["code"] = "f11ac", + }, + ["md-phone_rotate_landscape"] = { + ["char"] = "󰢅", + ["code"] = "f0885", + }, + ["md-phone_rotate_portrait"] = { + ["char"] = "󰢆", + ["code"] = "f0886", + }, + ["md-phone_settings"] = { + ["char"] = "󰏽", + ["code"] = "f03fd", + }, + ["md-phone_settings_outline"] = { + ["char"] = "󱆝", + ["code"] = "f119d", + }, + ["md-phone_sync"] = { + ["char"] = "󱦕", + ["code"] = "f1995", + }, + ["md-phone_sync_outline"] = { + ["char"] = "󱦖", + ["code"] = "f1996", + }, + ["md-phone_voip"] = { + ["char"] = "󰏾", + ["code"] = "f03fe", + }, + ["md-pi"] = { + ["char"] = "󰏿", + ["code"] = "f03ff", + }, + ["md-pi_box"] = { + ["char"] = "󰐀", + ["code"] = "f0400", + }, + ["md-pi_hole"] = { + ["char"] = "󰷱", + ["code"] = "f0df1", + }, + ["md-piano"] = { + ["char"] = "󰙽", + ["code"] = "f067d", + }, + ["md-piano_off"] = { + ["char"] = "󰚘", + ["code"] = "f0698", + }, + ["md-pickaxe"] = { + ["char"] = "󰢷", + ["code"] = "f08b7", + }, + ["md-picture_in_picture_bottom_right"] = { + ["char"] = "󰹗", + ["code"] = "f0e57", + }, + ["md-picture_in_picture_bottom_right_outline"] = { + ["char"] = "󰹘", + ["code"] = "f0e58", + }, + ["md-picture_in_picture_top_right"] = { + ["char"] = "󰹙", + ["code"] = "f0e59", + }, + ["md-picture_in_picture_top_right_outline"] = { + ["char"] = "󰹚", + ["code"] = "f0e5a", + }, + ["md-pier"] = { + ["char"] = "󰢇", + ["code"] = "f0887", + }, + ["md-pier_crane"] = { + ["char"] = "󰢈", + ["code"] = "f0888", + }, + ["md-pig"] = { + ["char"] = "󰐁", + ["code"] = "f0401", + }, + ["md-pig_variant"] = { + ["char"] = "󱀆", + ["code"] = "f1006", + }, + ["md-pig_variant_outline"] = { + ["char"] = "󱙸", + ["code"] = "f1678", + }, + ["md-piggy_bank"] = { + ["char"] = "󱀇", + ["code"] = "f1007", + }, + ["md-piggy_bank_outline"] = { + ["char"] = "󱙹", + ["code"] = "f1679", + }, + ["md-pill"] = { + ["char"] = "󰐂", + ["code"] = "f0402", + }, + ["md-pill_off"] = { + ["char"] = "󱩜", + ["code"] = "f1a5c", + }, + ["md-pillar"] = { + ["char"] = "󰜂", + ["code"] = "f0702", + }, + ["md-pin"] = { + ["char"] = "󰐃", + ["code"] = "f0403", + }, + ["md-pin_off"] = { + ["char"] = "󰐄", + ["code"] = "f0404", + }, + ["md-pin_off_outline"] = { + ["char"] = "󰤰", + ["code"] = "f0930", + }, + ["md-pin_outline"] = { + ["char"] = "󰤱", + ["code"] = "f0931", + }, + ["md-pine_tree"] = { + ["char"] = "󰐅", + ["code"] = "f0405", + }, + ["md-pine_tree_box"] = { + ["char"] = "󰐆", + ["code"] = "f0406", + }, + ["md-pine_tree_fire"] = { + ["char"] = "󱐚", + ["code"] = "f141a", + }, + ["md-pinterest"] = { + ["char"] = "󰐇", + ["code"] = "f0407", + }, + ["md-pinwheel"] = { + ["char"] = "󰫕", + ["code"] = "f0ad5", + }, + ["md-pinwheel_outline"] = { + ["char"] = "󰫖", + ["code"] = "f0ad6", + }, + ["md-pipe"] = { + ["char"] = "󰟥", + ["code"] = "f07e5", + }, + ["md-pipe_disconnected"] = { + ["char"] = "󰟦", + ["code"] = "f07e6", + }, + ["md-pipe_leak"] = { + ["char"] = "󰢉", + ["code"] = "f0889", + }, + ["md-pipe_valve"] = { + ["char"] = "󱡍", + ["code"] = "f184d", + }, + ["md-pipe_wrench"] = { + ["char"] = "󱍔", + ["code"] = "f1354", + }, + ["md-pirate"] = { + ["char"] = "󰨈", + ["code"] = "f0a08", + }, + ["md-pistol"] = { + ["char"] = "󰜃", + ["code"] = "f0703", + }, + ["md-piston"] = { + ["char"] = "󰢊", + ["code"] = "f088a", + }, + ["md-pitchfork"] = { + ["char"] = "󱕓", + ["code"] = "f1553", + }, + ["md-pizza"] = { + ["char"] = "󰐉", + ["code"] = "f0409", + }, + ["md-play"] = { + ["char"] = "󰐊", + ["code"] = "f040a", + }, + ["md-play_box"] = { + ["char"] = "󱉺", + ["code"] = "f127a", + }, + ["md-play_box_lock"] = { + ["char"] = "󱨖", + ["code"] = "f1a16", + }, + ["md-play_box_lock_open"] = { + ["char"] = "󱨗", + ["code"] = "f1a17", + }, + ["md-play_box_lock_open_outline"] = { + ["char"] = "󱨘", + ["code"] = "f1a18", + }, + ["md-play_box_lock_outline"] = { + ["char"] = "󱨙", + ["code"] = "f1a19", + }, + ["md-play_box_multiple"] = { + ["char"] = "󰴙", + ["code"] = "f0d19", + }, + ["md-play_box_multiple_outline"] = { + ["char"] = "󱏦", + ["code"] = "f13e6", + }, + ["md-play_box_outline"] = { + ["char"] = "󰐋", + ["code"] = "f040b", + }, + ["md-play_circle"] = { + ["char"] = "󰐌", + ["code"] = "f040c", + }, + ["md-play_circle_outline"] = { + ["char"] = "󰐍", + ["code"] = "f040d", + }, + ["md-play_network"] = { + ["char"] = "󰢋", + ["code"] = "f088b", + }, + ["md-play_network_outline"] = { + ["char"] = "󰲷", + ["code"] = "f0cb7", + }, + ["md-play_outline"] = { + ["char"] = "󰼛", + ["code"] = "f0f1b", + }, + ["md-play_pause"] = { + ["char"] = "󰐎", + ["code"] = "f040e", + }, + ["md-play_protected_content"] = { + ["char"] = "󰐏", + ["code"] = "f040f", + }, + ["md-play_speed"] = { + ["char"] = "󰣿", + ["code"] = "f08ff", + }, + ["md-playlist_check"] = { + ["char"] = "󰗇", + ["code"] = "f05c7", + }, + ["md-playlist_edit"] = { + ["char"] = "󰤀", + ["code"] = "f0900", + }, + ["md-playlist_minus"] = { + ["char"] = "󰐐", + ["code"] = "f0410", + }, + ["md-playlist_music"] = { + ["char"] = "󰲸", + ["code"] = "f0cb8", + }, + ["md-playlist_music_outline"] = { + ["char"] = "󰲹", + ["code"] = "f0cb9", + }, + ["md-playlist_play"] = { + ["char"] = "󰐑", + ["code"] = "f0411", + }, + ["md-playlist_plus"] = { + ["char"] = "󰐒", + ["code"] = "f0412", + }, + ["md-playlist_remove"] = { + ["char"] = "󰐓", + ["code"] = "f0413", + }, + ["md-playlist_star"] = { + ["char"] = "󰷲", + ["code"] = "f0df2", + }, + ["md-plex"] = { + ["char"] = "󰚺", + ["code"] = "f06ba", + }, + ["md-pliers"] = { + ["char"] = "󱦤", + ["code"] = "f19a4", + }, + ["md-plus"] = { + ["char"] = "󰐕", + ["code"] = "f0415", + }, + ["md-plus_box"] = { + ["char"] = "󰐖", + ["code"] = "f0416", + }, + ["md-plus_box_multiple"] = { + ["char"] = "󰌴", + ["code"] = "f0334", + }, + ["md-plus_box_multiple_outline"] = { + ["char"] = "󱅃", + ["code"] = "f1143", + }, + ["md-plus_box_outline"] = { + ["char"] = "󰜄", + ["code"] = "f0704", + }, + ["md-plus_circle"] = { + ["char"] = "󰐗", + ["code"] = "f0417", + }, + ["md-plus_circle_multiple"] = { + ["char"] = "󰍌", + ["code"] = "f034c", + }, + ["md-plus_circle_multiple_outline"] = { + ["char"] = "󰐘", + ["code"] = "f0418", + }, + ["md-plus_circle_outline"] = { + ["char"] = "󰐙", + ["code"] = "f0419", + }, + ["md-plus_lock"] = { + ["char"] = "󱩝", + ["code"] = "f1a5d", + }, + ["md-plus_lock_open"] = { + ["char"] = "󱩞", + ["code"] = "f1a5e", + }, + ["md-plus_minus"] = { + ["char"] = "󰦒", + ["code"] = "f0992", + }, + ["md-plus_minus_box"] = { + ["char"] = "󰦓", + ["code"] = "f0993", + }, + ["md-plus_minus_variant"] = { + ["char"] = "󱓉", + ["code"] = "f14c9", + }, + ["md-plus_network"] = { + ["char"] = "󰐚", + ["code"] = "f041a", + }, + ["md-plus_network_outline"] = { + ["char"] = "󰲺", + ["code"] = "f0cba", + }, + ["md-plus_outline"] = { + ["char"] = "󰜅", + ["code"] = "f0705", + }, + ["md-plus_thick"] = { + ["char"] = "󱇬", + ["code"] = "f11ec", + }, + ["md-podcast"] = { + ["char"] = "󰦔", + ["code"] = "f0994", + }, + ["md-podium"] = { + ["char"] = "󰴥", + ["code"] = "f0d25", + }, + ["md-podium_bronze"] = { + ["char"] = "󰴦", + ["code"] = "f0d26", + }, + ["md-podium_gold"] = { + ["char"] = "󰴧", + ["code"] = "f0d27", + }, + ["md-podium_silver"] = { + ["char"] = "󰴨", + ["code"] = "f0d28", + }, + ["md-point_of_sale"] = { + ["char"] = "󰶒", + ["code"] = "f0d92", + }, + ["md-pokeball"] = { + ["char"] = "󰐝", + ["code"] = "f041d", + }, + ["md-pokemon_go"] = { + ["char"] = "󰨉", + ["code"] = "f0a09", + }, + ["md-poker_chip"] = { + ["char"] = "󰠰", + ["code"] = "f0830", + }, + ["md-polaroid"] = { + ["char"] = "󰐞", + ["code"] = "f041e", + }, + ["md-police_badge"] = { + ["char"] = "󱅧", + ["code"] = "f1167", + }, + ["md-police_badge_outline"] = { + ["char"] = "󱅨", + ["code"] = "f1168", + }, + ["md-police_station"] = { + ["char"] = "󱠹", + ["code"] = "f1839", + }, + ["md-poll"] = { + ["char"] = "󰐟", + ["code"] = "f041f", + }, + ["md-polo"] = { + ["char"] = "󱓃", + ["code"] = "f14c3", + }, + ["md-polymer"] = { + ["char"] = "󰐡", + ["code"] = "f0421", + }, + ["md-pool"] = { + ["char"] = "󰘆", + ["code"] = "f0606", + }, + ["md-pool_thermometer"] = { + ["char"] = "󱩟", + ["code"] = "f1a5f", + }, + ["md-popcorn"] = { + ["char"] = "󰐢", + ["code"] = "f0422", + }, + ["md-post"] = { + ["char"] = "󱀈", + ["code"] = "f1008", + }, + ["md-post_lamp"] = { + ["char"] = "󱩠", + ["code"] = "f1a60", + }, + ["md-post_outline"] = { + ["char"] = "󱀉", + ["code"] = "f1009", + }, + ["md-postage_stamp"] = { + ["char"] = "󰲻", + ["code"] = "f0cbb", + }, + ["md-pot"] = { + ["char"] = "󰋥", + ["code"] = "f02e5", + }, + ["md-pot_mix"] = { + ["char"] = "󰙛", + ["code"] = "f065b", + }, + ["md-pot_mix_outline"] = { + ["char"] = "󰙷", + ["code"] = "f0677", + }, + ["md-pot_outline"] = { + ["char"] = "󰋿", + ["code"] = "f02ff", + }, + ["md-pot_steam"] = { + ["char"] = "󰙚", + ["code"] = "f065a", + }, + ["md-pot_steam_outline"] = { + ["char"] = "󰌦", + ["code"] = "f0326", + }, + ["md-pound"] = { + ["char"] = "󰐣", + ["code"] = "f0423", + }, + ["md-pound_box"] = { + ["char"] = "󰐤", + ["code"] = "f0424", + }, + ["md-pound_box_outline"] = { + ["char"] = "󱅿", + ["code"] = "f117f", + }, + ["md-power"] = { + ["char"] = "󰐥", + ["code"] = "f0425", + }, + ["md-power_cycle"] = { + ["char"] = "󰤁", + ["code"] = "f0901", + }, + ["md-power_off"] = { + ["char"] = "󰤂", + ["code"] = "f0902", + }, + ["md-power_on"] = { + ["char"] = "󰤃", + ["code"] = "f0903", + }, + ["md-power_plug"] = { + ["char"] = "󰚥", + ["code"] = "f06a5", + }, + ["md-power_plug_off"] = { + ["char"] = "󰚦", + ["code"] = "f06a6", + }, + ["md-power_plug_off_outline"] = { + ["char"] = "󱐤", + ["code"] = "f1424", + }, + ["md-power_plug_outline"] = { + ["char"] = "󱐥", + ["code"] = "f1425", + }, + ["md-power_settings"] = { + ["char"] = "󰐦", + ["code"] = "f0426", + }, + ["md-power_sleep"] = { + ["char"] = "󰤄", + ["code"] = "f0904", + }, + ["md-power_socket"] = { + ["char"] = "󰐧", + ["code"] = "f0427", + }, + ["md-power_socket_au"] = { + ["char"] = "󰤅", + ["code"] = "f0905", + }, + ["md-power_socket_ch"] = { + ["char"] = "󰾳", + ["code"] = "f0fb3", + }, + ["md-power_socket_de"] = { + ["char"] = "󱄇", + ["code"] = "f1107", + }, + ["md-power_socket_eu"] = { + ["char"] = "󰟧", + ["code"] = "f07e7", + }, + ["md-power_socket_fr"] = { + ["char"] = "󱄈", + ["code"] = "f1108", + }, + ["md-power_socket_it"] = { + ["char"] = "󱓿", + ["code"] = "f14ff", + }, + ["md-power_socket_jp"] = { + ["char"] = "󱄉", + ["code"] = "f1109", + }, + ["md-power_socket_uk"] = { + ["char"] = "󰟨", + ["code"] = "f07e8", + }, + ["md-power_socket_us"] = { + ["char"] = "󰟩", + ["code"] = "f07e9", + }, + ["md-power_standby"] = { + ["char"] = "󰤆", + ["code"] = "f0906", + }, + ["md-powershell"] = { + ["char"] = "󰨊", + ["code"] = "f0a0a", + }, + ["md-prescription"] = { + ["char"] = "󰜆", + ["code"] = "f0706", + }, + ["md-presentation"] = { + ["char"] = "󰐨", + ["code"] = "f0428", + }, + ["md-presentation_play"] = { + ["char"] = "󰐩", + ["code"] = "f0429", + }, + ["md-pretzel"] = { + ["char"] = "󱕢", + ["code"] = "f1562", + }, + ["md-printer"] = { + ["char"] = "󰐪", + ["code"] = "f042a", + }, + ["md-printer_3d"] = { + ["char"] = "󰐫", + ["code"] = "f042b", + }, + ["md-printer_3d_nozzle"] = { + ["char"] = "󰹛", + ["code"] = "f0e5b", + }, + ["md-printer_3d_nozzle_alert"] = { + ["char"] = "󱇀", + ["code"] = "f11c0", + }, + ["md-printer_3d_nozzle_alert_outline"] = { + ["char"] = "󱇁", + ["code"] = "f11c1", + }, + ["md-printer_3d_nozzle_heat"] = { + ["char"] = "󱢸", + ["code"] = "f18b8", + }, + ["md-printer_3d_nozzle_heat_outline"] = { + ["char"] = "󱢹", + ["code"] = "f18b9", + }, + ["md-printer_3d_nozzle_outline"] = { + ["char"] = "󰹜", + ["code"] = "f0e5c", + }, + ["md-printer_alert"] = { + ["char"] = "󰐬", + ["code"] = "f042c", + }, + ["md-printer_check"] = { + ["char"] = "󱅆", + ["code"] = "f1146", + }, + ["md-printer_eye"] = { + ["char"] = "󱑘", + ["code"] = "f1458", + }, + ["md-printer_off"] = { + ["char"] = "󰹝", + ["code"] = "f0e5d", + }, + ["md-printer_off_outline"] = { + ["char"] = "󱞅", + ["code"] = "f1785", + }, + ["md-printer_outline"] = { + ["char"] = "󱞆", + ["code"] = "f1786", + }, + ["md-printer_pos"] = { + ["char"] = "󱁗", + ["code"] = "f1057", + }, + ["md-printer_search"] = { + ["char"] = "󱑗", + ["code"] = "f1457", + }, + ["md-printer_settings"] = { + ["char"] = "󰜇", + ["code"] = "f0707", + }, + ["md-printer_wireless"] = { + ["char"] = "󰨋", + ["code"] = "f0a0b", + }, + ["md-priority_high"] = { + ["char"] = "󰘃", + ["code"] = "f0603", + }, + ["md-priority_low"] = { + ["char"] = "󰘄", + ["code"] = "f0604", + }, + ["md-professional_hexagon"] = { + ["char"] = "󰐭", + ["code"] = "f042d", + }, + ["md-progress_alert"] = { + ["char"] = "󰲼", + ["code"] = "f0cbc", + }, + ["md-progress_check"] = { + ["char"] = "󰦕", + ["code"] = "f0995", + }, + ["md-progress_clock"] = { + ["char"] = "󰦖", + ["code"] = "f0996", + }, + ["md-progress_close"] = { + ["char"] = "󱄊", + ["code"] = "f110a", + }, + ["md-progress_download"] = { + ["char"] = "󰦗", + ["code"] = "f0997", + }, + ["md-progress_pencil"] = { + ["char"] = "󱞇", + ["code"] = "f1787", + }, + ["md-progress_question"] = { + ["char"] = "󱔢", + ["code"] = "f1522", + }, + ["md-progress_star"] = { + ["char"] = "󱞈", + ["code"] = "f1788", + }, + ["md-progress_upload"] = { + ["char"] = "󰦘", + ["code"] = "f0998", + }, + ["md-progress_wrench"] = { + ["char"] = "󰲽", + ["code"] = "f0cbd", + }, + ["md-projector"] = { + ["char"] = "󰐮", + ["code"] = "f042e", + }, + ["md-projector_off"] = { + ["char"] = "󱨣", + ["code"] = "f1a23", + }, + ["md-projector_screen"] = { + ["char"] = "󰐯", + ["code"] = "f042f", + }, + ["md-projector_screen_off"] = { + ["char"] = "󱠍", + ["code"] = "f180d", + }, + ["md-projector_screen_off_outline"] = { + ["char"] = "󱠎", + ["code"] = "f180e", + }, + ["md-projector_screen_outline"] = { + ["char"] = "󱜤", + ["code"] = "f1724", + }, + ["md-projector_screen_variant"] = { + ["char"] = "󱠏", + ["code"] = "f180f", + }, + ["md-projector_screen_variant_off"] = { + ["char"] = "󱠐", + ["code"] = "f1810", + }, + ["md-projector_screen_variant_off_outline"] = { + ["char"] = "󱠑", + ["code"] = "f1811", + }, + ["md-projector_screen_variant_outline"] = { + ["char"] = "󱠒", + ["code"] = "f1812", + }, + ["md-propane_tank"] = { + ["char"] = "󱍗", + ["code"] = "f1357", + }, + ["md-propane_tank_outline"] = { + ["char"] = "󱍘", + ["code"] = "f1358", + }, + ["md-protocol"] = { + ["char"] = "󰿘", + ["code"] = "f0fd8", + }, + ["md-publish"] = { + ["char"] = "󰚧", + ["code"] = "f06a7", + }, + ["md-publish_off"] = { + ["char"] = "󱥅", + ["code"] = "f1945", + }, + ["md-pulse"] = { + ["char"] = "󰐰", + ["code"] = "f0430", + }, + ["md-pump"] = { + ["char"] = "󱐂", + ["code"] = "f1402", + }, + ["md-pumpkin"] = { + ["char"] = "󰮿", + ["code"] = "f0bbf", + }, + ["md-purse"] = { + ["char"] = "󰼜", + ["code"] = "f0f1c", + }, + ["md-purse_outline"] = { + ["char"] = "󰼝", + ["code"] = "f0f1d", + }, + ["md-puzzle"] = { + ["char"] = "󰐱", + ["code"] = "f0431", + }, + ["md-puzzle_check"] = { + ["char"] = "󱐦", + ["code"] = "f1426", + }, + ["md-puzzle_check_outline"] = { + ["char"] = "󱐧", + ["code"] = "f1427", + }, + ["md-puzzle_edit"] = { + ["char"] = "󱓓", + ["code"] = "f14d3", + }, + ["md-puzzle_edit_outline"] = { + ["char"] = "󱓙", + ["code"] = "f14d9", + }, + ["md-puzzle_heart"] = { + ["char"] = "󱓔", + ["code"] = "f14d4", + }, + ["md-puzzle_heart_outline"] = { + ["char"] = "󱓚", + ["code"] = "f14da", + }, + ["md-puzzle_minus"] = { + ["char"] = "󱓑", + ["code"] = "f14d1", + }, + ["md-puzzle_minus_outline"] = { + ["char"] = "󱓗", + ["code"] = "f14d7", + }, + ["md-puzzle_outline"] = { + ["char"] = "󰩦", + ["code"] = "f0a66", + }, + ["md-puzzle_plus"] = { + ["char"] = "󱓐", + ["code"] = "f14d0", + }, + ["md-puzzle_plus_outline"] = { + ["char"] = "󱓖", + ["code"] = "f14d6", + }, + ["md-puzzle_remove"] = { + ["char"] = "󱓒", + ["code"] = "f14d2", + }, + ["md-puzzle_remove_outline"] = { + ["char"] = "󱓘", + ["code"] = "f14d8", + }, + ["md-puzzle_star"] = { + ["char"] = "󱓕", + ["code"] = "f14d5", + }, + ["md-puzzle_star_outline"] = { + ["char"] = "󱓛", + ["code"] = "f14db", + }, + ["md-pyramid"] = { + ["char"] = "󱥒", + ["code"] = "f1952", + }, + ["md-pyramid_off"] = { + ["char"] = "󱥓", + ["code"] = "f1953", + }, + ["md-qi"] = { + ["char"] = "󰦙", + ["code"] = "f0999", + }, + ["md-qqchat"] = { + ["char"] = "󰘅", + ["code"] = "f0605", + }, + ["md-qrcode"] = { + ["char"] = "󰐲", + ["code"] = "f0432", + }, + ["md-qrcode_edit"] = { + ["char"] = "󰢸", + ["code"] = "f08b8", + }, + ["md-qrcode_minus"] = { + ["char"] = "󱆌", + ["code"] = "f118c", + }, + ["md-qrcode_plus"] = { + ["char"] = "󱆋", + ["code"] = "f118b", + }, + ["md-qrcode_remove"] = { + ["char"] = "󱆍", + ["code"] = "f118d", + }, + ["md-qrcode_scan"] = { + ["char"] = "󰐳", + ["code"] = "f0433", + }, + ["md-quadcopter"] = { + ["char"] = "󰐴", + ["code"] = "f0434", + }, + ["md-quality_high"] = { + ["char"] = "󰐵", + ["code"] = "f0435", + }, + ["md-quality_low"] = { + ["char"] = "󰨌", + ["code"] = "f0a0c", + }, + ["md-quality_medium"] = { + ["char"] = "󰨍", + ["code"] = "f0a0d", + }, + ["md-quora"] = { + ["char"] = "󰴩", + ["code"] = "f0d29", + }, + ["md-rabbit"] = { + ["char"] = "󰤇", + ["code"] = "f0907", + }, + ["md-rabbit_variant"] = { + ["char"] = "󱩡", + ["code"] = "f1a61", + }, + ["md-rabbit_variant_outline"] = { + ["char"] = "󱩢", + ["code"] = "f1a62", + }, + ["md-racing_helmet"] = { + ["char"] = "󰶓", + ["code"] = "f0d93", + }, + ["md-racquetball"] = { + ["char"] = "󰶔", + ["code"] = "f0d94", + }, + ["md-radar"] = { + ["char"] = "󰐷", + ["code"] = "f0437", + }, + ["md-radiator"] = { + ["char"] = "󰐸", + ["code"] = "f0438", + }, + ["md-radiator_disabled"] = { + ["char"] = "󰫗", + ["code"] = "f0ad7", + }, + ["md-radiator_off"] = { + ["char"] = "󰫘", + ["code"] = "f0ad8", + }, + ["md-radio"] = { + ["char"] = "󰐹", + ["code"] = "f0439", + }, + ["md-radio_am"] = { + ["char"] = "󰲾", + ["code"] = "f0cbe", + }, + ["md-radio_fm"] = { + ["char"] = "󰲿", + ["code"] = "f0cbf", + }, + ["md-radio_handheld"] = { + ["char"] = "󰐺", + ["code"] = "f043a", + }, + ["md-radio_off"] = { + ["char"] = "󱈜", + ["code"] = "f121c", + }, + ["md-radio_tower"] = { + ["char"] = "󰐻", + ["code"] = "f043b", + }, + ["md-radioactive"] = { + ["char"] = "󰐼", + ["code"] = "f043c", + }, + ["md-radioactive_circle"] = { + ["char"] = "󱡝", + ["code"] = "f185d", + }, + ["md-radioactive_circle_outline"] = { + ["char"] = "󱡞", + ["code"] = "f185e", + }, + ["md-radioactive_off"] = { + ["char"] = "󰻁", + ["code"] = "f0ec1", + }, + ["md-radiobox_marked"] = { + ["char"] = "󰐾", + ["code"] = "f043e", + }, + ["md-radiology_box"] = { + ["char"] = "󱓅", + ["code"] = "f14c5", + }, + ["md-radiology_box_outline"] = { + ["char"] = "󱓆", + ["code"] = "f14c6", + }, + ["md-radius"] = { + ["char"] = "󰳀", + ["code"] = "f0cc0", + }, + ["md-radius_outline"] = { + ["char"] = "󰳁", + ["code"] = "f0cc1", + }, + ["md-railroad_light"] = { + ["char"] = "󰼞", + ["code"] = "f0f1e", + }, + ["md-rake"] = { + ["char"] = "󱕄", + ["code"] = "f1544", + }, + ["md-raspberry_pi"] = { + ["char"] = "󰐿", + ["code"] = "f043f", + }, + ["md-raw"] = { + ["char"] = "󱨏", + ["code"] = "f1a0f", + }, + ["md-raw_off"] = { + ["char"] = "󱨐", + ["code"] = "f1a10", + }, + ["md-ray_end"] = { + ["char"] = "󰑀", + ["code"] = "f0440", + }, + ["md-ray_end_arrow"] = { + ["char"] = "󰑁", + ["code"] = "f0441", + }, + ["md-ray_start"] = { + ["char"] = "󰑂", + ["code"] = "f0442", + }, + ["md-ray_start_arrow"] = { + ["char"] = "󰑃", + ["code"] = "f0443", + }, + ["md-ray_start_end"] = { + ["char"] = "󰑄", + ["code"] = "f0444", + }, + ["md-ray_start_vertex_end"] = { + ["char"] = "󱗘", + ["code"] = "f15d8", + }, + ["md-ray_vertex"] = { + ["char"] = "󰑅", + ["code"] = "f0445", + }, + ["md-razor_double_edge"] = { + ["char"] = "󱦗", + ["code"] = "f1997", + }, + ["md-razor_single_edge"] = { + ["char"] = "󱦘", + ["code"] = "f1998", + }, + ["md-react"] = { + ["char"] = "󰜈", + ["code"] = "f0708", + }, + ["md-read"] = { + ["char"] = "󰑇", + ["code"] = "f0447", + }, + ["md-receipt"] = { + ["char"] = "󰑉", + ["code"] = "f0449", + }, + ["md-receipt_outline"] = { + ["char"] = "󱧜", + ["code"] = "f19dc", + }, + ["md-receipt_text_check"] = { + ["char"] = "󱩣", + ["code"] = "f1a63", + }, + ["md-receipt_text_check_outline"] = { + ["char"] = "󱩤", + ["code"] = "f1a64", + }, + ["md-receipt_text_minus"] = { + ["char"] = "󱩥", + ["code"] = "f1a65", + }, + ["md-receipt_text_minus_outline"] = { + ["char"] = "󱩦", + ["code"] = "f1a66", + }, + ["md-receipt_text_plus"] = { + ["char"] = "󱩧", + ["code"] = "f1a67", + }, + ["md-receipt_text_plus_outline"] = { + ["char"] = "󱩨", + ["code"] = "f1a68", + }, + ["md-receipt_text_remove"] = { + ["char"] = "󱩩", + ["code"] = "f1a69", + }, + ["md-receipt_text_remove_outline"] = { + ["char"] = "󱩪", + ["code"] = "f1a6a", + }, + ["md-record"] = { + ["char"] = "󰑊", + ["code"] = "f044a", + }, + ["md-record_circle"] = { + ["char"] = "󰻂", + ["code"] = "f0ec2", + }, + ["md-record_circle_outline"] = { + ["char"] = "󰻃", + ["code"] = "f0ec3", + }, + ["md-record_player"] = { + ["char"] = "󰦚", + ["code"] = "f099a", + }, + ["md-record_rec"] = { + ["char"] = "󰑋", + ["code"] = "f044b", + }, + ["md-rectangle"] = { + ["char"] = "󰹞", + ["code"] = "f0e5e", + }, + ["md-rectangle_outline"] = { + ["char"] = "󰹟", + ["code"] = "f0e5f", + }, + ["md-recycle"] = { + ["char"] = "󰑌", + ["code"] = "f044c", + }, + ["md-recycle_variant"] = { + ["char"] = "󱎝", + ["code"] = "f139d", + }, + ["md-reddit"] = { + ["char"] = "󰑍", + ["code"] = "f044d", + }, + ["md-redhat"] = { + ["char"] = "󱄛", + ["code"] = "f111b", + }, + ["md-redo"] = { + ["char"] = "󰑎", + ["code"] = "f044e", + }, + ["md-redo_variant"] = { + ["char"] = "󰑏", + ["code"] = "f044f", + }, + ["md-reflect_horizontal"] = { + ["char"] = "󰨎", + ["code"] = "f0a0e", + }, + ["md-reflect_vertical"] = { + ["char"] = "󰨏", + ["code"] = "f0a0f", + }, + ["md-refresh"] = { + ["char"] = "󰑐", + ["code"] = "f0450", + }, + ["md-refresh_auto"] = { + ["char"] = "󱣲", + ["code"] = "f18f2", + }, + ["md-refresh_circle"] = { + ["char"] = "󱍷", + ["code"] = "f1377", + }, + ["md-regex"] = { + ["char"] = "󰑑", + ["code"] = "f0451", + }, + ["md-registered_trademark"] = { + ["char"] = "󰩧", + ["code"] = "f0a67", + }, + ["md-reiterate"] = { + ["char"] = "󱖈", + ["code"] = "f1588", + }, + ["md-relation_many_to_many"] = { + ["char"] = "󱒖", + ["code"] = "f1496", + }, + ["md-relation_many_to_one"] = { + ["char"] = "󱒗", + ["code"] = "f1497", + }, + ["md-relation_many_to_one_or_many"] = { + ["char"] = "󱒘", + ["code"] = "f1498", + }, + ["md-relation_many_to_only_one"] = { + ["char"] = "󱒙", + ["code"] = "f1499", + }, + ["md-relation_many_to_zero_or_many"] = { + ["char"] = "󱒚", + ["code"] = "f149a", + }, + ["md-relation_many_to_zero_or_one"] = { + ["char"] = "󱒛", + ["code"] = "f149b", + }, + ["md-relation_one_or_many_to_many"] = { + ["char"] = "󱒜", + ["code"] = "f149c", + }, + ["md-relation_one_or_many_to_one"] = { + ["char"] = "󱒝", + ["code"] = "f149d", + }, + ["md-relation_one_or_many_to_one_or_many"] = { + ["char"] = "󱒞", + ["code"] = "f149e", + }, + ["md-relation_one_or_many_to_only_one"] = { + ["char"] = "󱒟", + ["code"] = "f149f", + }, + ["md-relation_one_or_many_to_zero_or_many"] = { + ["char"] = "󱒠", + ["code"] = "f14a0", + }, + ["md-relation_one_or_many_to_zero_or_one"] = { + ["char"] = "󱒡", + ["code"] = "f14a1", + }, + ["md-relation_one_to_many"] = { + ["char"] = "󱒢", + ["code"] = "f14a2", + }, + ["md-relation_one_to_one"] = { + ["char"] = "󱒣", + ["code"] = "f14a3", + }, + ["md-relation_one_to_one_or_many"] = { + ["char"] = "󱒤", + ["code"] = "f14a4", + }, + ["md-relation_one_to_only_one"] = { + ["char"] = "󱒥", + ["code"] = "f14a5", + }, + ["md-relation_one_to_zero_or_many"] = { + ["char"] = "󱒦", + ["code"] = "f14a6", + }, + ["md-relation_one_to_zero_or_one"] = { + ["char"] = "󱒧", + ["code"] = "f14a7", + }, + ["md-relation_only_one_to_many"] = { + ["char"] = "󱒨", + ["code"] = "f14a8", + }, + ["md-relation_only_one_to_one"] = { + ["char"] = "󱒩", + ["code"] = "f14a9", + }, + ["md-relation_only_one_to_one_or_many"] = { + ["char"] = "󱒪", + ["code"] = "f14aa", + }, + ["md-relation_only_one_to_only_one"] = { + ["char"] = "󱒫", + ["code"] = "f14ab", + }, + ["md-relation_only_one_to_zero_or_many"] = { + ["char"] = "󱒬", + ["code"] = "f14ac", + }, + ["md-relation_only_one_to_zero_or_one"] = { + ["char"] = "󱒭", + ["code"] = "f14ad", + }, + ["md-relation_zero_or_many_to_many"] = { + ["char"] = "󱒮", + ["code"] = "f14ae", + }, + ["md-relation_zero_or_many_to_one"] = { + ["char"] = "󱒯", + ["code"] = "f14af", + }, + ["md-relation_zero_or_many_to_one_or_many"] = { + ["char"] = "󱒰", + ["code"] = "f14b0", + }, + ["md-relation_zero_or_many_to_only_one"] = { + ["char"] = "󱒱", + ["code"] = "f14b1", + }, + ["md-relation_zero_or_many_to_zero_or_many"] = { + ["char"] = "󱒲", + ["code"] = "f14b2", + }, + ["md-relation_zero_or_many_to_zero_or_one"] = { + ["char"] = "󱒳", + ["code"] = "f14b3", + }, + ["md-relation_zero_or_one_to_many"] = { + ["char"] = "󱒴", + ["code"] = "f14b4", + }, + ["md-relation_zero_or_one_to_one"] = { + ["char"] = "󱒵", + ["code"] = "f14b5", + }, + ["md-relation_zero_or_one_to_one_or_many"] = { + ["char"] = "󱒶", + ["code"] = "f14b6", + }, + ["md-relation_zero_or_one_to_only_one"] = { + ["char"] = "󱒷", + ["code"] = "f14b7", + }, + ["md-relation_zero_or_one_to_zero_or_many"] = { + ["char"] = "󱒸", + ["code"] = "f14b8", + }, + ["md-relation_zero_or_one_to_zero_or_one"] = { + ["char"] = "󱒹", + ["code"] = "f14b9", + }, + ["md-relative_scale"] = { + ["char"] = "󰑒", + ["code"] = "f0452", + }, + ["md-reload"] = { + ["char"] = "󰑓", + ["code"] = "f0453", + }, + ["md-reload_alert"] = { + ["char"] = "󱄋", + ["code"] = "f110b", + }, + ["md-reminder"] = { + ["char"] = "󰢌", + ["code"] = "f088c", + }, + ["md-remote"] = { + ["char"] = "󰑔", + ["code"] = "f0454", + }, + ["md-remote_desktop"] = { + ["char"] = "󰢹", + ["code"] = "f08b9", + }, + ["md-remote_off"] = { + ["char"] = "󰻄", + ["code"] = "f0ec4", + }, + ["md-remote_tv"] = { + ["char"] = "󰻅", + ["code"] = "f0ec5", + }, + ["md-remote_tv_off"] = { + ["char"] = "󰻆", + ["code"] = "f0ec6", + }, + ["md-rename_box"] = { + ["char"] = "󰑕", + ["code"] = "f0455", + }, + ["md-reorder_horizontal"] = { + ["char"] = "󰚈", + ["code"] = "f0688", + }, + ["md-reorder_vertical"] = { + ["char"] = "󰚉", + ["code"] = "f0689", + }, + ["md-repeat"] = { + ["char"] = "󰑖", + ["code"] = "f0456", + }, + ["md-repeat_off"] = { + ["char"] = "󰑗", + ["code"] = "f0457", + }, + ["md-repeat_once"] = { + ["char"] = "󰑘", + ["code"] = "f0458", + }, + ["md-repeat_variant"] = { + ["char"] = "󰕇", + ["code"] = "f0547", + }, + ["md-replay"] = { + ["char"] = "󰑙", + ["code"] = "f0459", + }, + ["md-reply"] = { + ["char"] = "󰑚", + ["code"] = "f045a", + }, + ["md-reply_all"] = { + ["char"] = "󰑛", + ["code"] = "f045b", + }, + ["md-reply_all_outline"] = { + ["char"] = "󰼟", + ["code"] = "f0f1f", + }, + ["md-reply_circle"] = { + ["char"] = "󱆮", + ["code"] = "f11ae", + }, + ["md-reply_outline"] = { + ["char"] = "󰼠", + ["code"] = "f0f20", + }, + ["md-reproduction"] = { + ["char"] = "󰑜", + ["code"] = "f045c", + }, + ["md-resistor"] = { + ["char"] = "󰭄", + ["code"] = "f0b44", + }, + ["md-resistor_nodes"] = { + ["char"] = "󰭅", + ["code"] = "f0b45", + }, + ["md-resize"] = { + ["char"] = "󰩨", + ["code"] = "f0a68", + }, + ["md-resize_bottom_right"] = { + ["char"] = "󰑝", + ["code"] = "f045d", + }, + ["md-responsive"] = { + ["char"] = "󰑞", + ["code"] = "f045e", + }, + ["md-restart"] = { + ["char"] = "󰜉", + ["code"] = "f0709", + }, + ["md-restart_alert"] = { + ["char"] = "󱄌", + ["code"] = "f110c", + }, + ["md-restart_off"] = { + ["char"] = "󰶕", + ["code"] = "f0d95", + }, + ["md-restore"] = { + ["char"] = "󰦛", + ["code"] = "f099b", + }, + ["md-restore_alert"] = { + ["char"] = "󱄍", + ["code"] = "f110d", + }, + ["md-rewind"] = { + ["char"] = "󰑟", + ["code"] = "f045f", + }, + ["md-rewind_10"] = { + ["char"] = "󰴪", + ["code"] = "f0d2a", + }, + ["md-rewind_15"] = { + ["char"] = "󱥆", + ["code"] = "f1946", + }, + ["md-rewind_30"] = { + ["char"] = "󰶖", + ["code"] = "f0d96", + }, + ["md-rewind_5"] = { + ["char"] = "󱇹", + ["code"] = "f11f9", + }, + ["md-rewind_60"] = { + ["char"] = "󱘌", + ["code"] = "f160c", + }, + ["md-rewind_outline"] = { + ["char"] = "󰜊", + ["code"] = "f070a", + }, + ["md-rhombus"] = { + ["char"] = "󰜋", + ["code"] = "f070b", + }, + ["md-rhombus_medium"] = { + ["char"] = "󰨐", + ["code"] = "f0a10", + }, + ["md-rhombus_medium_outline"] = { + ["char"] = "󱓜", + ["code"] = "f14dc", + }, + ["md-rhombus_outline"] = { + ["char"] = "󰜌", + ["code"] = "f070c", + }, + ["md-rhombus_split"] = { + ["char"] = "󰨑", + ["code"] = "f0a11", + }, + ["md-rhombus_split_outline"] = { + ["char"] = "󱓝", + ["code"] = "f14dd", + }, + ["md-ribbon"] = { + ["char"] = "󰑠", + ["code"] = "f0460", + }, + ["md-rice"] = { + ["char"] = "󰟪", + ["code"] = "f07ea", + }, + ["md-rickshaw"] = { + ["char"] = "󱖻", + ["code"] = "f15bb", + }, + ["md-rickshaw_electric"] = { + ["char"] = "󱖼", + ["code"] = "f15bc", + }, + ["md-ring"] = { + ["char"] = "󰟫", + ["code"] = "f07eb", + }, + ["md-rivet"] = { + ["char"] = "󰹠", + ["code"] = "f0e60", + }, + ["md-road"] = { + ["char"] = "󰑡", + ["code"] = "f0461", + }, + ["md-road_variant"] = { + ["char"] = "󰑢", + ["code"] = "f0462", + }, + ["md-robber"] = { + ["char"] = "󱁘", + ["code"] = "f1058", + }, + ["md-robot"] = { + ["char"] = "󰚩", + ["code"] = "f06a9", + }, + ["md-robot_angry"] = { + ["char"] = "󱚝", + ["code"] = "f169d", + }, + ["md-robot_angry_outline"] = { + ["char"] = "󱚞", + ["code"] = "f169e", + }, + ["md-robot_confused"] = { + ["char"] = "󱚟", + ["code"] = "f169f", + }, + ["md-robot_confused_outline"] = { + ["char"] = "󱚠", + ["code"] = "f16a0", + }, + ["md-robot_dead"] = { + ["char"] = "󱚡", + ["code"] = "f16a1", + }, + ["md-robot_dead_outline"] = { + ["char"] = "󱚢", + ["code"] = "f16a2", + }, + ["md-robot_excited"] = { + ["char"] = "󱚣", + ["code"] = "f16a3", + }, + ["md-robot_excited_outline"] = { + ["char"] = "󱚤", + ["code"] = "f16a4", + }, + ["md-robot_happy"] = { + ["char"] = "󱜙", + ["code"] = "f1719", + }, + ["md-robot_happy_outline"] = { + ["char"] = "󱜚", + ["code"] = "f171a", + }, + ["md-robot_industrial"] = { + ["char"] = "󰭆", + ["code"] = "f0b46", + }, + ["md-robot_industrial_outline"] = { + ["char"] = "󱨚", + ["code"] = "f1a1a", + }, + ["md-robot_love"] = { + ["char"] = "󱚥", + ["code"] = "f16a5", + }, + ["md-robot_love_outline"] = { + ["char"] = "󱚦", + ["code"] = "f16a6", + }, + ["md-robot_mower"] = { + ["char"] = "󱇷", + ["code"] = "f11f7", + }, + ["md-robot_mower_outline"] = { + ["char"] = "󱇳", + ["code"] = "f11f3", + }, + ["md-robot_off"] = { + ["char"] = "󱚧", + ["code"] = "f16a7", + }, + ["md-robot_off_outline"] = { + ["char"] = "󱙻", + ["code"] = "f167b", + }, + ["md-robot_outline"] = { + ["char"] = "󱙺", + ["code"] = "f167a", + }, + ["md-robot_vacuum"] = { + ["char"] = "󰜍", + ["code"] = "f070d", + }, + ["md-robot_vacuum_variant"] = { + ["char"] = "󰤈", + ["code"] = "f0908", + }, + ["md-rocket"] = { + ["char"] = "󰑣", + ["code"] = "f0463", + }, + ["md-rocket_launch"] = { + ["char"] = "󱓞", + ["code"] = "f14de", + }, + ["md-rocket_launch_outline"] = { + ["char"] = "󱓟", + ["code"] = "f14df", + }, + ["md-rocket_outline"] = { + ["char"] = "󱎯", + ["code"] = "f13af", + }, + ["md-rodent"] = { + ["char"] = "󱌧", + ["code"] = "f1327", + }, + ["md-roller_shade"] = { + ["char"] = "󱩫", + ["code"] = "f1a6b", + }, + ["md-roller_shade_closed"] = { + ["char"] = "󱩬", + ["code"] = "f1a6c", + }, + ["md-roller_skate"] = { + ["char"] = "󰴫", + ["code"] = "f0d2b", + }, + ["md-roller_skate_off"] = { + ["char"] = "󰅅", + ["code"] = "f0145", + }, + ["md-rollerblade"] = { + ["char"] = "󰴬", + ["code"] = "f0d2c", + }, + ["md-rollerblade_off"] = { + ["char"] = "󰀮", + ["code"] = "f002e", + }, + ["md-rollupjs"] = { + ["char"] = "󰯀", + ["code"] = "f0bc0", + }, + ["md-rolodex"] = { + ["char"] = "󱪹", + ["code"] = "f1ab9", + }, + ["md-rolodex_outline"] = { + ["char"] = "󱪺", + ["code"] = "f1aba", + }, + ["md-roman_numeral_2"] = { + ["char"] = "󱂉", + ["code"] = "f1089", + }, + ["md-roman_numeral_3"] = { + ["char"] = "󱂊", + ["code"] = "f108a", + }, + ["md-roman_numeral_4"] = { + ["char"] = "󱂋", + ["code"] = "f108b", + }, + ["md-roman_numeral_6"] = { + ["char"] = "󱂍", + ["code"] = "f108d", + }, + ["md-roman_numeral_7"] = { + ["char"] = "󱂎", + ["code"] = "f108e", + }, + ["md-roman_numeral_8"] = { + ["char"] = "󱂏", + ["code"] = "f108f", + }, + ["md-roman_numeral_9"] = { + ["char"] = "󱂐", + ["code"] = "f1090", + }, + ["md-room_service"] = { + ["char"] = "󰢍", + ["code"] = "f088d", + }, + ["md-room_service_outline"] = { + ["char"] = "󰶗", + ["code"] = "f0d97", + }, + ["md-rotate_360"] = { + ["char"] = "󱦙", + ["code"] = "f1999", + }, + ["md-rotate_3d"] = { + ["char"] = "󰻇", + ["code"] = "f0ec7", + }, + ["md-rotate_3d_variant"] = { + ["char"] = "󰑤", + ["code"] = "f0464", + }, + ["md-rotate_left"] = { + ["char"] = "󰑥", + ["code"] = "f0465", + }, + ["md-rotate_left_variant"] = { + ["char"] = "󰑦", + ["code"] = "f0466", + }, + ["md-rotate_orbit"] = { + ["char"] = "󰶘", + ["code"] = "f0d98", + }, + ["md-rotate_right"] = { + ["char"] = "󰑧", + ["code"] = "f0467", + }, + ["md-rotate_right_variant"] = { + ["char"] = "󰑨", + ["code"] = "f0468", + }, + ["md-rounded_corner"] = { + ["char"] = "󰘇", + ["code"] = "f0607", + }, + ["md-router"] = { + ["char"] = "󱇢", + ["code"] = "f11e2", + }, + ["md-router_network"] = { + ["char"] = "󱂇", + ["code"] = "f1087", + }, + ["md-router_wireless"] = { + ["char"] = "󰑩", + ["code"] = "f0469", + }, + ["md-router_wireless_off"] = { + ["char"] = "󱖣", + ["code"] = "f15a3", + }, + ["md-router_wireless_settings"] = { + ["char"] = "󰩩", + ["code"] = "f0a69", + }, + ["md-routes"] = { + ["char"] = "󰑪", + ["code"] = "f046a", + }, + ["md-routes_clock"] = { + ["char"] = "󱁙", + ["code"] = "f1059", + }, + ["md-rowing"] = { + ["char"] = "󰘈", + ["code"] = "f0608", + }, + ["md-rss"] = { + ["char"] = "󰑫", + ["code"] = "f046b", + }, + ["md-rss_box"] = { + ["char"] = "󰑬", + ["code"] = "f046c", + }, + ["md-rss_off"] = { + ["char"] = "󰼡", + ["code"] = "f0f21", + }, + ["md-rug"] = { + ["char"] = "󱑵", + ["code"] = "f1475", + }, + ["md-rugby"] = { + ["char"] = "󰶙", + ["code"] = "f0d99", + }, + ["md-ruler"] = { + ["char"] = "󰑭", + ["code"] = "f046d", + }, + ["md-ruler_square"] = { + ["char"] = "󰳂", + ["code"] = "f0cc2", + }, + ["md-ruler_square_compass"] = { + ["char"] = "󰺾", + ["code"] = "f0ebe", + }, + ["md-run"] = { + ["char"] = "󰜎", + ["code"] = "f070e", + }, + ["md-run_fast"] = { + ["char"] = "󰑮", + ["code"] = "f046e", + }, + ["md-rv_truck"] = { + ["char"] = "󱇔", + ["code"] = "f11d4", + }, + ["md-sack"] = { + ["char"] = "󰴮", + ["code"] = "f0d2e", + }, + ["md-sack_percent"] = { + ["char"] = "󰴯", + ["code"] = "f0d2f", + }, + ["md-safe"] = { + ["char"] = "󰩪", + ["code"] = "f0a6a", + }, + ["md-safe_square"] = { + ["char"] = "󱉼", + ["code"] = "f127c", + }, + ["md-safe_square_outline"] = { + ["char"] = "󱉽", + ["code"] = "f127d", + }, + ["md-safety_goggles"] = { + ["char"] = "󰴰", + ["code"] = "f0d30", + }, + ["md-sail_boat"] = { + ["char"] = "󰻈", + ["code"] = "f0ec8", + }, + ["md-sail_boat_sink"] = { + ["char"] = "󱫯", + ["code"] = "f1aef", + }, + ["md-sale"] = { + ["char"] = "󰑯", + ["code"] = "f046f", + }, + ["md-sale_outline"] = { + ["char"] = "󱨆", + ["code"] = "f1a06", + }, + ["md-salesforce"] = { + ["char"] = "󰢎", + ["code"] = "f088e", + }, + ["md-sass"] = { + ["char"] = "󰟬", + ["code"] = "f07ec", + }, + ["md-satellite"] = { + ["char"] = "󰑰", + ["code"] = "f0470", + }, + ["md-satellite_uplink"] = { + ["char"] = "󰤉", + ["code"] = "f0909", + }, + ["md-satellite_variant"] = { + ["char"] = "󰑱", + ["code"] = "f0471", + }, + ["md-sausage"] = { + ["char"] = "󰢺", + ["code"] = "f08ba", + }, + ["md-sausage_off"] = { + ["char"] = "󱞉", + ["code"] = "f1789", + }, + ["md-saw_blade"] = { + ["char"] = "󰹡", + ["code"] = "f0e61", + }, + ["md-sawtooth_wave"] = { + ["char"] = "󱑺", + ["code"] = "f147a", + }, + ["md-saxophone"] = { + ["char"] = "󰘉", + ["code"] = "f0609", + }, + ["md-scale"] = { + ["char"] = "󰑲", + ["code"] = "f0472", + }, + ["md-scale_balance"] = { + ["char"] = "󰗑", + ["code"] = "f05d1", + }, + ["md-scale_bathroom"] = { + ["char"] = "󰑳", + ["code"] = "f0473", + }, + ["md-scale_off"] = { + ["char"] = "󱁚", + ["code"] = "f105a", + }, + ["md-scale_unbalanced"] = { + ["char"] = "󱦸", + ["code"] = "f19b8", + }, + ["md-scan_helper"] = { + ["char"] = "󱏘", + ["code"] = "f13d8", + }, + ["md-scanner"] = { + ["char"] = "󰚫", + ["code"] = "f06ab", + }, + ["md-scanner_off"] = { + ["char"] = "󰤊", + ["code"] = "f090a", + }, + ["md-scatter_plot"] = { + ["char"] = "󰻉", + ["code"] = "f0ec9", + }, + ["md-scatter_plot_outline"] = { + ["char"] = "󰻊", + ["code"] = "f0eca", + }, + ["md-scent"] = { + ["char"] = "󱥘", + ["code"] = "f1958", + }, + ["md-scent_off"] = { + ["char"] = "󱥙", + ["code"] = "f1959", + }, + ["md-school"] = { + ["char"] = "󰑴", + ["code"] = "f0474", + }, + ["md-school_outline"] = { + ["char"] = "󱆀", + ["code"] = "f1180", + }, + ["md-scissors_cutting"] = { + ["char"] = "󰩫", + ["code"] = "f0a6b", + }, + ["md-scooter"] = { + ["char"] = "󱖽", + ["code"] = "f15bd", + }, + ["md-scooter_electric"] = { + ["char"] = "󱖾", + ["code"] = "f15be", + }, + ["md-scoreboard"] = { + ["char"] = "󱉾", + ["code"] = "f127e", + }, + ["md-scoreboard_outline"] = { + ["char"] = "󱉿", + ["code"] = "f127f", + }, + ["md-screen_rotation"] = { + ["char"] = "󰑵", + ["code"] = "f0475", + }, + ["md-screen_rotation_lock"] = { + ["char"] = "󰑸", + ["code"] = "f0478", + }, + ["md-screw_flat_top"] = { + ["char"] = "󰷳", + ["code"] = "f0df3", + }, + ["md-screw_lag"] = { + ["char"] = "󰷴", + ["code"] = "f0df4", + }, + ["md-screw_machine_flat_top"] = { + ["char"] = "󰷵", + ["code"] = "f0df5", + }, + ["md-screw_machine_round_top"] = { + ["char"] = "󰷶", + ["code"] = "f0df6", + }, + ["md-screw_round_top"] = { + ["char"] = "󰷷", + ["code"] = "f0df7", + }, + ["md-screwdriver"] = { + ["char"] = "󰑶", + ["code"] = "f0476", + }, + ["md-script"] = { + ["char"] = "󰯁", + ["code"] = "f0bc1", + }, + ["md-script_outline"] = { + ["char"] = "󰑷", + ["code"] = "f0477", + }, + ["md-script_text"] = { + ["char"] = "󰯂", + ["code"] = "f0bc2", + }, + ["md-script_text_key"] = { + ["char"] = "󱜥", + ["code"] = "f1725", + }, + ["md-script_text_key_outline"] = { + ["char"] = "󱜦", + ["code"] = "f1726", + }, + ["md-script_text_outline"] = { + ["char"] = "󰯃", + ["code"] = "f0bc3", + }, + ["md-script_text_play"] = { + ["char"] = "󱜧", + ["code"] = "f1727", + }, + ["md-script_text_play_outline"] = { + ["char"] = "󱜨", + ["code"] = "f1728", + }, + ["md-sd"] = { + ["char"] = "󰑹", + ["code"] = "f0479", + }, + ["md-seal"] = { + ["char"] = "󰑺", + ["code"] = "f047a", + }, + ["md-seal_variant"] = { + ["char"] = "󰿙", + ["code"] = "f0fd9", + }, + ["md-search_web"] = { + ["char"] = "󰜏", + ["code"] = "f070f", + }, + ["md-seat"] = { + ["char"] = "󰳃", + ["code"] = "f0cc3", + }, + ["md-seat_flat"] = { + ["char"] = "󰑻", + ["code"] = "f047b", + }, + ["md-seat_flat_angled"] = { + ["char"] = "󰑼", + ["code"] = "f047c", + }, + ["md-seat_individual_suite"] = { + ["char"] = "󰑽", + ["code"] = "f047d", + }, + ["md-seat_legroom_extra"] = { + ["char"] = "󰑾", + ["code"] = "f047e", + }, + ["md-seat_legroom_normal"] = { + ["char"] = "󰑿", + ["code"] = "f047f", + }, + ["md-seat_legroom_reduced"] = { + ["char"] = "󰒀", + ["code"] = "f0480", + }, + ["md-seat_outline"] = { + ["char"] = "󰳄", + ["code"] = "f0cc4", + }, + ["md-seat_passenger"] = { + ["char"] = "󱉉", + ["code"] = "f1249", + }, + ["md-seat_recline_extra"] = { + ["char"] = "󰒁", + ["code"] = "f0481", + }, + ["md-seat_recline_normal"] = { + ["char"] = "󰒂", + ["code"] = "f0482", + }, + ["md-seatbelt"] = { + ["char"] = "󰳅", + ["code"] = "f0cc5", + }, + ["md-security"] = { + ["char"] = "󰒃", + ["code"] = "f0483", + }, + ["md-security_network"] = { + ["char"] = "󰒄", + ["code"] = "f0484", + }, + ["md-seed"] = { + ["char"] = "󰹢", + ["code"] = "f0e62", + }, + ["md-seed_off"] = { + ["char"] = "󱏽", + ["code"] = "f13fd", + }, + ["md-seed_off_outline"] = { + ["char"] = "󱏾", + ["code"] = "f13fe", + }, + ["md-seed_outline"] = { + ["char"] = "󰹣", + ["code"] = "f0e63", + }, + ["md-seed_plus"] = { + ["char"] = "󱩭", + ["code"] = "f1a6d", + }, + ["md-seed_plus_outline"] = { + ["char"] = "󱩮", + ["code"] = "f1a6e", + }, + ["md-seesaw"] = { + ["char"] = "󱖤", + ["code"] = "f15a4", + }, + ["md-segment"] = { + ["char"] = "󰻋", + ["code"] = "f0ecb", + }, + ["md-select"] = { + ["char"] = "󰒅", + ["code"] = "f0485", + }, + ["md-select_all"] = { + ["char"] = "󰒆", + ["code"] = "f0486", + }, + ["md-select_color"] = { + ["char"] = "󰴱", + ["code"] = "f0d31", + }, + ["md-select_compare"] = { + ["char"] = "󰫙", + ["code"] = "f0ad9", + }, + ["md-select_drag"] = { + ["char"] = "󰩬", + ["code"] = "f0a6c", + }, + ["md-select_group"] = { + ["char"] = "󰾂", + ["code"] = "f0f82", + }, + ["md-select_inverse"] = { + ["char"] = "󰒇", + ["code"] = "f0487", + }, + ["md-select_marker"] = { + ["char"] = "󱊀", + ["code"] = "f1280", + }, + ["md-select_multiple"] = { + ["char"] = "󱊁", + ["code"] = "f1281", + }, + ["md-select_multiple_marker"] = { + ["char"] = "󱊂", + ["code"] = "f1282", + }, + ["md-select_off"] = { + ["char"] = "󰒈", + ["code"] = "f0488", + }, + ["md-select_place"] = { + ["char"] = "󰿚", + ["code"] = "f0fda", + }, + ["md-select_remove"] = { + ["char"] = "󱟁", + ["code"] = "f17c1", + }, + ["md-select_search"] = { + ["char"] = "󱈄", + ["code"] = "f1204", + }, + ["md-selection"] = { + ["char"] = "󰒉", + ["code"] = "f0489", + }, + ["md-selection_drag"] = { + ["char"] = "󰩭", + ["code"] = "f0a6d", + }, + ["md-selection_ellipse"] = { + ["char"] = "󰴲", + ["code"] = "f0d32", + }, + ["md-selection_ellipse_arrow_inside"] = { + ["char"] = "󰼢", + ["code"] = "f0f22", + }, + ["md-selection_ellipse_remove"] = { + ["char"] = "󱟂", + ["code"] = "f17c2", + }, + ["md-selection_marker"] = { + ["char"] = "󱊃", + ["code"] = "f1283", + }, + ["md-selection_multiple"] = { + ["char"] = "󱊅", + ["code"] = "f1285", + }, + ["md-selection_multiple_marker"] = { + ["char"] = "󱊄", + ["code"] = "f1284", + }, + ["md-selection_off"] = { + ["char"] = "󰝷", + ["code"] = "f0777", + }, + ["md-selection_remove"] = { + ["char"] = "󱟃", + ["code"] = "f17c3", + }, + ["md-selection_search"] = { + ["char"] = "󱈅", + ["code"] = "f1205", + }, + ["md-semantic_web"] = { + ["char"] = "󱌖", + ["code"] = "f1316", + }, + ["md-send"] = { + ["char"] = "󰒊", + ["code"] = "f048a", + }, + ["md-send_check"] = { + ["char"] = "󱅡", + ["code"] = "f1161", + }, + ["md-send_check_outline"] = { + ["char"] = "󱅢", + ["code"] = "f1162", + }, + ["md-send_circle"] = { + ["char"] = "󰷸", + ["code"] = "f0df8", + }, + ["md-send_circle_outline"] = { + ["char"] = "󰷹", + ["code"] = "f0df9", + }, + ["md-send_clock"] = { + ["char"] = "󱅣", + ["code"] = "f1163", + }, + ["md-send_clock_outline"] = { + ["char"] = "󱅤", + ["code"] = "f1164", + }, + ["md-send_lock"] = { + ["char"] = "󰟭", + ["code"] = "f07ed", + }, + ["md-send_lock_outline"] = { + ["char"] = "󱅦", + ["code"] = "f1166", + }, + ["md-send_outline"] = { + ["char"] = "󱅥", + ["code"] = "f1165", + }, + ["md-serial_port"] = { + ["char"] = "󰙜", + ["code"] = "f065c", + }, + ["md-server"] = { + ["char"] = "󰒋", + ["code"] = "f048b", + }, + ["md-server_minus"] = { + ["char"] = "󰒌", + ["code"] = "f048c", + }, + ["md-server_network"] = { + ["char"] = "󰒍", + ["code"] = "f048d", + }, + ["md-server_network_off"] = { + ["char"] = "󰒎", + ["code"] = "f048e", + }, + ["md-server_off"] = { + ["char"] = "󰒏", + ["code"] = "f048f", + }, + ["md-server_plus"] = { + ["char"] = "󰒐", + ["code"] = "f0490", + }, + ["md-server_remove"] = { + ["char"] = "󰒑", + ["code"] = "f0491", + }, + ["md-server_security"] = { + ["char"] = "󰒒", + ["code"] = "f0492", + }, + ["md-set_all"] = { + ["char"] = "󰝸", + ["code"] = "f0778", + }, + ["md-set_center"] = { + ["char"] = "󰝹", + ["code"] = "f0779", + }, + ["md-set_center_right"] = { + ["char"] = "󰝺", + ["code"] = "f077a", + }, + ["md-set_left"] = { + ["char"] = "󰝻", + ["code"] = "f077b", + }, + ["md-set_left_center"] = { + ["char"] = "󰝼", + ["code"] = "f077c", + }, + ["md-set_left_right"] = { + ["char"] = "󰝽", + ["code"] = "f077d", + }, + ["md-set_merge"] = { + ["char"] = "󱓠", + ["code"] = "f14e0", + }, + ["md-set_none"] = { + ["char"] = "󰝾", + ["code"] = "f077e", + }, + ["md-set_right"] = { + ["char"] = "󰝿", + ["code"] = "f077f", + }, + ["md-set_split"] = { + ["char"] = "󱓡", + ["code"] = "f14e1", + }, + ["md-set_square"] = { + ["char"] = "󱑝", + ["code"] = "f145d", + }, + ["md-set_top_box"] = { + ["char"] = "󰦟", + ["code"] = "f099f", + }, + ["md-settings_helper"] = { + ["char"] = "󰩮", + ["code"] = "f0a6e", + }, + ["md-shaker"] = { + ["char"] = "󱄎", + ["code"] = "f110e", + }, + ["md-shaker_outline"] = { + ["char"] = "󱄏", + ["code"] = "f110f", + }, + ["md-shape"] = { + ["char"] = "󰠱", + ["code"] = "f0831", + }, + ["md-shape_circle_plus"] = { + ["char"] = "󰙝", + ["code"] = "f065d", + }, + ["md-shape_outline"] = { + ["char"] = "󰠲", + ["code"] = "f0832", + }, + ["md-shape_oval_plus"] = { + ["char"] = "󱇺", + ["code"] = "f11fa", + }, + ["md-shape_plus"] = { + ["char"] = "󰒕", + ["code"] = "f0495", + }, + ["md-shape_polygon_plus"] = { + ["char"] = "󰙞", + ["code"] = "f065e", + }, + ["md-shape_rectangle_plus"] = { + ["char"] = "󰙟", + ["code"] = "f065f", + }, + ["md-shape_square_plus"] = { + ["char"] = "󰙠", + ["code"] = "f0660", + }, + ["md-shape_square_rounded_plus"] = { + ["char"] = "󱓺", + ["code"] = "f14fa", + }, + ["md-share"] = { + ["char"] = "󰒖", + ["code"] = "f0496", + }, + ["md-share_all"] = { + ["char"] = "󱇴", + ["code"] = "f11f4", + }, + ["md-share_all_outline"] = { + ["char"] = "󱇵", + ["code"] = "f11f5", + }, + ["md-share_circle"] = { + ["char"] = "󱆭", + ["code"] = "f11ad", + }, + ["md-share_off"] = { + ["char"] = "󰼣", + ["code"] = "f0f23", + }, + ["md-share_off_outline"] = { + ["char"] = "󰼤", + ["code"] = "f0f24", + }, + ["md-share_outline"] = { + ["char"] = "󰤲", + ["code"] = "f0932", + }, + ["md-share_variant"] = { + ["char"] = "󰒗", + ["code"] = "f0497", + }, + ["md-share_variant_outline"] = { + ["char"] = "󱔔", + ["code"] = "f1514", + }, + ["md-shark"] = { + ["char"] = "󱢺", + ["code"] = "f18ba", + }, + ["md-shark_fin"] = { + ["char"] = "󱙳", + ["code"] = "f1673", + }, + ["md-shark_fin_outline"] = { + ["char"] = "󱙴", + ["code"] = "f1674", + }, + ["md-shark_off"] = { + ["char"] = "󱢻", + ["code"] = "f18bb", + }, + ["md-sheep"] = { + ["char"] = "󰳆", + ["code"] = "f0cc6", + }, + ["md-shield"] = { + ["char"] = "󰒘", + ["code"] = "f0498", + }, + ["md-shield_account"] = { + ["char"] = "󰢏", + ["code"] = "f088f", + }, + ["md-shield_account_outline"] = { + ["char"] = "󰨒", + ["code"] = "f0a12", + }, + ["md-shield_account_variant"] = { + ["char"] = "󱖧", + ["code"] = "f15a7", + }, + ["md-shield_account_variant_outline"] = { + ["char"] = "󱖨", + ["code"] = "f15a8", + }, + ["md-shield_airplane"] = { + ["char"] = "󰚻", + ["code"] = "f06bb", + }, + ["md-shield_airplane_outline"] = { + ["char"] = "󰳇", + ["code"] = "f0cc7", + }, + ["md-shield_alert"] = { + ["char"] = "󰻌", + ["code"] = "f0ecc", + }, + ["md-shield_alert_outline"] = { + ["char"] = "󰻍", + ["code"] = "f0ecd", + }, + ["md-shield_bug"] = { + ["char"] = "󱏚", + ["code"] = "f13da", + }, + ["md-shield_bug_outline"] = { + ["char"] = "󱏛", + ["code"] = "f13db", + }, + ["md-shield_car"] = { + ["char"] = "󰾃", + ["code"] = "f0f83", + }, + ["md-shield_check"] = { + ["char"] = "󰕥", + ["code"] = "f0565", + }, + ["md-shield_check_outline"] = { + ["char"] = "󰳈", + ["code"] = "f0cc8", + }, + ["md-shield_cross"] = { + ["char"] = "󰳉", + ["code"] = "f0cc9", + }, + ["md-shield_cross_outline"] = { + ["char"] = "󰳊", + ["code"] = "f0cca", + }, + ["md-shield_crown"] = { + ["char"] = "󱢼", + ["code"] = "f18bc", + }, + ["md-shield_crown_outline"] = { + ["char"] = "󱢽", + ["code"] = "f18bd", + }, + ["md-shield_edit"] = { + ["char"] = "󱆠", + ["code"] = "f11a0", + }, + ["md-shield_edit_outline"] = { + ["char"] = "󱆡", + ["code"] = "f11a1", + }, + ["md-shield_half"] = { + ["char"] = "󱍠", + ["code"] = "f1360", + }, + ["md-shield_half_full"] = { + ["char"] = "󰞀", + ["code"] = "f0780", + }, + ["md-shield_home"] = { + ["char"] = "󰚊", + ["code"] = "f068a", + }, + ["md-shield_home_outline"] = { + ["char"] = "󰳋", + ["code"] = "f0ccb", + }, + ["md-shield_key"] = { + ["char"] = "󰯄", + ["code"] = "f0bc4", + }, + ["md-shield_key_outline"] = { + ["char"] = "󰯅", + ["code"] = "f0bc5", + }, + ["md-shield_link_variant"] = { + ["char"] = "󰴳", + ["code"] = "f0d33", + }, + ["md-shield_link_variant_outline"] = { + ["char"] = "󰴴", + ["code"] = "f0d34", + }, + ["md-shield_lock"] = { + ["char"] = "󰦝", + ["code"] = "f099d", + }, + ["md-shield_lock_open"] = { + ["char"] = "󱦚", + ["code"] = "f199a", + }, + ["md-shield_lock_open_outline"] = { + ["char"] = "󱦛", + ["code"] = "f199b", + }, + ["md-shield_lock_outline"] = { + ["char"] = "󰳌", + ["code"] = "f0ccc", + }, + ["md-shield_moon"] = { + ["char"] = "󱠨", + ["code"] = "f1828", + }, + ["md-shield_moon_outline"] = { + ["char"] = "󱠩", + ["code"] = "f1829", + }, + ["md-shield_off"] = { + ["char"] = "󰦞", + ["code"] = "f099e", + }, + ["md-shield_off_outline"] = { + ["char"] = "󰦜", + ["code"] = "f099c", + }, + ["md-shield_outline"] = { + ["char"] = "󰒙", + ["code"] = "f0499", + }, + ["md-shield_plus"] = { + ["char"] = "󰫚", + ["code"] = "f0ada", + }, + ["md-shield_plus_outline"] = { + ["char"] = "󰫛", + ["code"] = "f0adb", + }, + ["md-shield_refresh"] = { + ["char"] = "󰂪", + ["code"] = "f00aa", + }, + ["md-shield_refresh_outline"] = { + ["char"] = "󰇠", + ["code"] = "f01e0", + }, + ["md-shield_remove"] = { + ["char"] = "󰫜", + ["code"] = "f0adc", + }, + ["md-shield_remove_outline"] = { + ["char"] = "󰫝", + ["code"] = "f0add", + }, + ["md-shield_search"] = { + ["char"] = "󰶚", + ["code"] = "f0d9a", + }, + ["md-shield_star"] = { + ["char"] = "󱄻", + ["code"] = "f113b", + }, + ["md-shield_star_outline"] = { + ["char"] = "󱄼", + ["code"] = "f113c", + }, + ["md-shield_sun"] = { + ["char"] = "󱁝", + ["code"] = "f105d", + }, + ["md-shield_sun_outline"] = { + ["char"] = "󱁞", + ["code"] = "f105e", + }, + ["md-shield_sword"] = { + ["char"] = "󱢾", + ["code"] = "f18be", + }, + ["md-shield_sword_outline"] = { + ["char"] = "󱢿", + ["code"] = "f18bf", + }, + ["md-shield_sync"] = { + ["char"] = "󱆢", + ["code"] = "f11a2", + }, + ["md-shield_sync_outline"] = { + ["char"] = "󱆣", + ["code"] = "f11a3", + }, + ["md-shimmer"] = { + ["char"] = "󱕅", + ["code"] = "f1545", + }, + ["md-ship_wheel"] = { + ["char"] = "󰠳", + ["code"] = "f0833", + }, + ["md-shipping_pallet"] = { + ["char"] = "󱡎", + ["code"] = "f184e", + }, + ["md-shoe_ballet"] = { + ["char"] = "󱗊", + ["code"] = "f15ca", + }, + ["md-shoe_cleat"] = { + ["char"] = "󱗇", + ["code"] = "f15c7", + }, + ["md-shoe_formal"] = { + ["char"] = "󰭇", + ["code"] = "f0b47", + }, + ["md-shoe_heel"] = { + ["char"] = "󰭈", + ["code"] = "f0b48", + }, + ["md-shoe_print"] = { + ["char"] = "󰷺", + ["code"] = "f0dfa", + }, + ["md-shoe_sneaker"] = { + ["char"] = "󱗈", + ["code"] = "f15c8", + }, + ["md-shopping"] = { + ["char"] = "󰒚", + ["code"] = "f049a", + }, + ["md-shopping_music"] = { + ["char"] = "󰒛", + ["code"] = "f049b", + }, + ["md-shopping_outline"] = { + ["char"] = "󱇕", + ["code"] = "f11d5", + }, + ["md-shopping_search"] = { + ["char"] = "󰾄", + ["code"] = "f0f84", + }, + ["md-shopping_search_outline"] = { + ["char"] = "󱩯", + ["code"] = "f1a6f", + }, + ["md-shore"] = { + ["char"] = "󱓹", + ["code"] = "f14f9", + }, + ["md-shovel"] = { + ["char"] = "󰜐", + ["code"] = "f0710", + }, + ["md-shovel_off"] = { + ["char"] = "󰜑", + ["code"] = "f0711", + }, + ["md-shower"] = { + ["char"] = "󰦠", + ["code"] = "f09a0", + }, + ["md-shower_head"] = { + ["char"] = "󰦡", + ["code"] = "f09a1", + }, + ["md-shredder"] = { + ["char"] = "󰒜", + ["code"] = "f049c", + }, + ["md-shuffle"] = { + ["char"] = "󰒝", + ["code"] = "f049d", + }, + ["md-shuffle_disabled"] = { + ["char"] = "󰒞", + ["code"] = "f049e", + }, + ["md-shuffle_variant"] = { + ["char"] = "󰒟", + ["code"] = "f049f", + }, + ["md-shuriken"] = { + ["char"] = "󱍿", + ["code"] = "f137f", + }, + ["md-sickle"] = { + ["char"] = "󱣀", + ["code"] = "f18c0", + }, + ["md-sigma"] = { + ["char"] = "󰒠", + ["code"] = "f04a0", + }, + ["md-sigma_lower"] = { + ["char"] = "󰘫", + ["code"] = "f062b", + }, + ["md-sign_caution"] = { + ["char"] = "󰒡", + ["code"] = "f04a1", + }, + ["md-sign_direction"] = { + ["char"] = "󰞁", + ["code"] = "f0781", + }, + ["md-sign_direction_minus"] = { + ["char"] = "󱀀", + ["code"] = "f1000", + }, + ["md-sign_direction_plus"] = { + ["char"] = "󰿜", + ["code"] = "f0fdc", + }, + ["md-sign_direction_remove"] = { + ["char"] = "󰿝", + ["code"] = "f0fdd", + }, + ["md-sign_pole"] = { + ["char"] = "󱓸", + ["code"] = "f14f8", + }, + ["md-sign_real_estate"] = { + ["char"] = "󱄘", + ["code"] = "f1118", + }, + ["md-sign_text"] = { + ["char"] = "󰞂", + ["code"] = "f0782", + }, + ["md-signal"] = { + ["char"] = "󰒢", + ["code"] = "f04a2", + }, + ["md-signal_2g"] = { + ["char"] = "󰜒", + ["code"] = "f0712", + }, + ["md-signal_3g"] = { + ["char"] = "󰜓", + ["code"] = "f0713", + }, + ["md-signal_4g"] = { + ["char"] = "󰜔", + ["code"] = "f0714", + }, + ["md-signal_5g"] = { + ["char"] = "󰩯", + ["code"] = "f0a6f", + }, + ["md-signal_cellular_1"] = { + ["char"] = "󰢼", + ["code"] = "f08bc", + }, + ["md-signal_cellular_2"] = { + ["char"] = "󰢽", + ["code"] = "f08bd", + }, + ["md-signal_cellular_3"] = { + ["char"] = "󰢾", + ["code"] = "f08be", + }, + ["md-signal_cellular_outline"] = { + ["char"] = "󰢿", + ["code"] = "f08bf", + }, + ["md-signal_distance_variant"] = { + ["char"] = "󰹤", + ["code"] = "f0e64", + }, + ["md-signal_hspa"] = { + ["char"] = "󰜕", + ["code"] = "f0715", + }, + ["md-signal_hspa_plus"] = { + ["char"] = "󰜖", + ["code"] = "f0716", + }, + ["md-signal_off"] = { + ["char"] = "󰞃", + ["code"] = "f0783", + }, + ["md-signal_variant"] = { + ["char"] = "󰘊", + ["code"] = "f060a", + }, + ["md-signature"] = { + ["char"] = "󰷻", + ["code"] = "f0dfb", + }, + ["md-signature_freehand"] = { + ["char"] = "󰷼", + ["code"] = "f0dfc", + }, + ["md-signature_image"] = { + ["char"] = "󰷽", + ["code"] = "f0dfd", + }, + ["md-signature_text"] = { + ["char"] = "󰷾", + ["code"] = "f0dfe", + }, + ["md-silo"] = { + ["char"] = "󰭉", + ["code"] = "f0b49", + }, + ["md-silverware"] = { + ["char"] = "󰒣", + ["code"] = "f04a3", + }, + ["md-silverware_clean"] = { + ["char"] = "󰿞", + ["code"] = "f0fde", + }, + ["md-silverware_fork"] = { + ["char"] = "󰒤", + ["code"] = "f04a4", + }, + ["md-silverware_fork_knife"] = { + ["char"] = "󰩰", + ["code"] = "f0a70", + }, + ["md-silverware_spoon"] = { + ["char"] = "󰒥", + ["code"] = "f04a5", + }, + ["md-silverware_variant"] = { + ["char"] = "󰒦", + ["code"] = "f04a6", + }, + ["md-sim"] = { + ["char"] = "󰒧", + ["code"] = "f04a7", + }, + ["md-sim_alert"] = { + ["char"] = "󰒨", + ["code"] = "f04a8", + }, + ["md-sim_alert_outline"] = { + ["char"] = "󱗓", + ["code"] = "f15d3", + }, + ["md-sim_off"] = { + ["char"] = "󰒩", + ["code"] = "f04a9", + }, + ["md-sim_off_outline"] = { + ["char"] = "󱗔", + ["code"] = "f15d4", + }, + ["md-sim_outline"] = { + ["char"] = "󱗕", + ["code"] = "f15d5", + }, + ["md-simple_icons"] = { + ["char"] = "󱌝", + ["code"] = "f131d", + }, + ["md-sina_weibo"] = { + ["char"] = "󰫟", + ["code"] = "f0adf", + }, + ["md-sine_wave"] = { + ["char"] = "󰥛", + ["code"] = "f095b", + }, + ["md-sitemap"] = { + ["char"] = "󰒪", + ["code"] = "f04aa", + }, + ["md-sitemap_outline"] = { + ["char"] = "󱦜", + ["code"] = "f199c", + }, + ["md-size_m"] = { + ["char"] = "󱎥", + ["code"] = "f13a5", + }, + ["md-size_s"] = { + ["char"] = "󱎤", + ["code"] = "f13a4", + }, + ["md-size_xl"] = { + ["char"] = "󱎧", + ["code"] = "f13a7", + }, + ["md-size_xs"] = { + ["char"] = "󱎣", + ["code"] = "f13a3", + }, + ["md-size_xxl"] = { + ["char"] = "󱎨", + ["code"] = "f13a8", + }, + ["md-size_xxs"] = { + ["char"] = "󱎢", + ["code"] = "f13a2", + }, + ["md-size_xxxl"] = { + ["char"] = "󱎩", + ["code"] = "f13a9", + }, + ["md-skate"] = { + ["char"] = "󰴵", + ["code"] = "f0d35", + }, + ["md-skate_off"] = { + ["char"] = "󰚙", + ["code"] = "f0699", + }, + ["md-skateboard"] = { + ["char"] = "󱓂", + ["code"] = "f14c2", + }, + ["md-skateboarding"] = { + ["char"] = "󰔁", + ["code"] = "f0501", + }, + ["md-skew_less"] = { + ["char"] = "󰴶", + ["code"] = "f0d36", + }, + ["md-skew_more"] = { + ["char"] = "󰴷", + ["code"] = "f0d37", + }, + ["md-ski"] = { + ["char"] = "󱌄", + ["code"] = "f1304", + }, + ["md-ski_cross_country"] = { + ["char"] = "󱌅", + ["code"] = "f1305", + }, + ["md-ski_water"] = { + ["char"] = "󱌆", + ["code"] = "f1306", + }, + ["md-skip_backward"] = { + ["char"] = "󰒫", + ["code"] = "f04ab", + }, + ["md-skip_backward_outline"] = { + ["char"] = "󰼥", + ["code"] = "f0f25", + }, + ["md-skip_forward"] = { + ["char"] = "󰒬", + ["code"] = "f04ac", + }, + ["md-skip_forward_outline"] = { + ["char"] = "󰼦", + ["code"] = "f0f26", + }, + ["md-skip_next"] = { + ["char"] = "󰒭", + ["code"] = "f04ad", + }, + ["md-skip_next_circle"] = { + ["char"] = "󰙡", + ["code"] = "f0661", + }, + ["md-skip_next_circle_outline"] = { + ["char"] = "󰙢", + ["code"] = "f0662", + }, + ["md-skip_next_outline"] = { + ["char"] = "󰼧", + ["code"] = "f0f27", + }, + ["md-skip_previous"] = { + ["char"] = "󰒮", + ["code"] = "f04ae", + }, + ["md-skip_previous_circle"] = { + ["char"] = "󰙣", + ["code"] = "f0663", + }, + ["md-skip_previous_circle_outline"] = { + ["char"] = "󰙤", + ["code"] = "f0664", + }, + ["md-skip_previous_outline"] = { + ["char"] = "󰼨", + ["code"] = "f0f28", + }, + ["md-skull"] = { + ["char"] = "󰚌", + ["code"] = "f068c", + }, + ["md-skull_crossbones"] = { + ["char"] = "󰯆", + ["code"] = "f0bc6", + }, + ["md-skull_crossbones_outline"] = { + ["char"] = "󰯇", + ["code"] = "f0bc7", + }, + ["md-skull_outline"] = { + ["char"] = "󰯈", + ["code"] = "f0bc8", + }, + ["md-skull_scan"] = { + ["char"] = "󱓇", + ["code"] = "f14c7", + }, + ["md-skull_scan_outline"] = { + ["char"] = "󱓈", + ["code"] = "f14c8", + }, + ["md-skype"] = { + ["char"] = "󰒯", + ["code"] = "f04af", + }, + ["md-skype_business"] = { + ["char"] = "󰒰", + ["code"] = "f04b0", + }, + ["md-slack"] = { + ["char"] = "󰒱", + ["code"] = "f04b1", + }, + ["md-slash_forward"] = { + ["char"] = "󰿟", + ["code"] = "f0fdf", + }, + ["md-slash_forward_box"] = { + ["char"] = "󰿠", + ["code"] = "f0fe0", + }, + ["md-sledding"] = { + ["char"] = "󰐛", + ["code"] = "f041b", + }, + ["md-sleep"] = { + ["char"] = "󰒲", + ["code"] = "f04b2", + }, + ["md-sleep_off"] = { + ["char"] = "󰒳", + ["code"] = "f04b3", + }, + ["md-slide"] = { + ["char"] = "󱖥", + ["code"] = "f15a5", + }, + ["md-slope_downhill"] = { + ["char"] = "󰷿", + ["code"] = "f0dff", + }, + ["md-slope_uphill"] = { + ["char"] = "󰸀", + ["code"] = "f0e00", + }, + ["md-slot_machine"] = { + ["char"] = "󱄔", + ["code"] = "f1114", + }, + ["md-slot_machine_outline"] = { + ["char"] = "󱄕", + ["code"] = "f1115", + }, + ["md-smart_card"] = { + ["char"] = "󱂽", + ["code"] = "f10bd", + }, + ["md-smart_card_off"] = { + ["char"] = "󱣷", + ["code"] = "f18f7", + }, + ["md-smart_card_off_outline"] = { + ["char"] = "󱣸", + ["code"] = "f18f8", + }, + ["md-smart_card_outline"] = { + ["char"] = "󱂾", + ["code"] = "f10be", + }, + ["md-smart_card_reader"] = { + ["char"] = "󱂿", + ["code"] = "f10bf", + }, + ["md-smart_card_reader_outline"] = { + ["char"] = "󱃀", + ["code"] = "f10c0", + }, + ["md-smog"] = { + ["char"] = "󰩱", + ["code"] = "f0a71", + }, + ["md-smoke"] = { + ["char"] = "󱞙", + ["code"] = "f1799", + }, + ["md-smoke_detector"] = { + ["char"] = "󰎒", + ["code"] = "f0392", + }, + ["md-smoke_detector_alert"] = { + ["char"] = "󱤮", + ["code"] = "f192e", + }, + ["md-smoke_detector_alert_outline"] = { + ["char"] = "󱤯", + ["code"] = "f192f", + }, + ["md-smoke_detector_off"] = { + ["char"] = "󱠉", + ["code"] = "f1809", + }, + ["md-smoke_detector_off_outline"] = { + ["char"] = "󱠊", + ["code"] = "f180a", + }, + ["md-smoke_detector_outline"] = { + ["char"] = "󱠈", + ["code"] = "f1808", + }, + ["md-smoke_detector_variant"] = { + ["char"] = "󱠋", + ["code"] = "f180b", + }, + ["md-smoke_detector_variant_alert"] = { + ["char"] = "󱤰", + ["code"] = "f1930", + }, + ["md-smoke_detector_variant_off"] = { + ["char"] = "󱠌", + ["code"] = "f180c", + }, + ["md-smoking"] = { + ["char"] = "󰒴", + ["code"] = "f04b4", + }, + ["md-smoking_off"] = { + ["char"] = "󰒵", + ["code"] = "f04b5", + }, + ["md-smoking_pipe"] = { + ["char"] = "󱐍", + ["code"] = "f140d", + }, + ["md-smoking_pipe_off"] = { + ["char"] = "󱐨", + ["code"] = "f1428", + }, + ["md-snail"] = { + ["char"] = "󱙷", + ["code"] = "f1677", + }, + ["md-snake"] = { + ["char"] = "󱔎", + ["code"] = "f150e", + }, + ["md-snapchat"] = { + ["char"] = "󰒶", + ["code"] = "f04b6", + }, + ["md-snowboard"] = { + ["char"] = "󱌇", + ["code"] = "f1307", + }, + ["md-snowflake"] = { + ["char"] = "󰜗", + ["code"] = "f0717", + }, + ["md-snowflake_alert"] = { + ["char"] = "󰼩", + ["code"] = "f0f29", + }, + ["md-snowflake_check"] = { + ["char"] = "󱩰", + ["code"] = "f1a70", + }, + ["md-snowflake_melt"] = { + ["char"] = "󱋋", + ["code"] = "f12cb", + }, + ["md-snowflake_off"] = { + ["char"] = "󱓣", + ["code"] = "f14e3", + }, + ["md-snowflake_thermometer"] = { + ["char"] = "󱩱", + ["code"] = "f1a71", + }, + ["md-snowflake_variant"] = { + ["char"] = "󰼪", + ["code"] = "f0f2a", + }, + ["md-snowman"] = { + ["char"] = "󰒷", + ["code"] = "f04b7", + }, + ["md-snowmobile"] = { + ["char"] = "󰛝", + ["code"] = "f06dd", + }, + ["md-snowshoeing"] = { + ["char"] = "󱩲", + ["code"] = "f1a72", + }, + ["md-soccer"] = { + ["char"] = "󰒸", + ["code"] = "f04b8", + }, + ["md-soccer_field"] = { + ["char"] = "󰠴", + ["code"] = "f0834", + }, + ["md-social_distance_2_meters"] = { + ["char"] = "󱕹", + ["code"] = "f1579", + }, + ["md-social_distance_6_feet"] = { + ["char"] = "󱕺", + ["code"] = "f157a", + }, + ["md-sofa"] = { + ["char"] = "󰒹", + ["code"] = "f04b9", + }, + ["md-sofa_outline"] = { + ["char"] = "󱕭", + ["code"] = "f156d", + }, + ["md-sofa_single"] = { + ["char"] = "󱕮", + ["code"] = "f156e", + }, + ["md-sofa_single_outline"] = { + ["char"] = "󱕯", + ["code"] = "f156f", + }, + ["md-solar_panel"] = { + ["char"] = "󰶛", + ["code"] = "f0d9b", + }, + ["md-solar_panel_large"] = { + ["char"] = "󰶜", + ["code"] = "f0d9c", + }, + ["md-solar_power"] = { + ["char"] = "󰩲", + ["code"] = "f0a72", + }, + ["md-solar_power_variant"] = { + ["char"] = "󱩳", + ["code"] = "f1a73", + }, + ["md-solar_power_variant_outline"] = { + ["char"] = "󱩴", + ["code"] = "f1a74", + }, + ["md-soldering_iron"] = { + ["char"] = "󱂒", + ["code"] = "f1092", + }, + ["md-solid"] = { + ["char"] = "󰚍", + ["code"] = "f068d", + }, + ["md-sony_playstation"] = { + ["char"] = "󰐔", + ["code"] = "f0414", + }, + ["md-sort"] = { + ["char"] = "󰒺", + ["code"] = "f04ba", + }, + ["md-sort_alphabetical_ascending"] = { + ["char"] = "󰖽", + ["code"] = "f05bd", + }, + ["md-sort_alphabetical_ascending_variant"] = { + ["char"] = "󱅈", + ["code"] = "f1148", + }, + ["md-sort_alphabetical_descending"] = { + ["char"] = "󰖿", + ["code"] = "f05bf", + }, + ["md-sort_alphabetical_descending_variant"] = { + ["char"] = "󱅉", + ["code"] = "f1149", + }, + ["md-sort_alphabetical_variant"] = { + ["char"] = "󰒻", + ["code"] = "f04bb", + }, + ["md-sort_ascending"] = { + ["char"] = "󰒼", + ["code"] = "f04bc", + }, + ["md-sort_bool_ascending"] = { + ["char"] = "󱎅", + ["code"] = "f1385", + }, + ["md-sort_bool_ascending_variant"] = { + ["char"] = "󱎆", + ["code"] = "f1386", + }, + ["md-sort_bool_descending"] = { + ["char"] = "󱎇", + ["code"] = "f1387", + }, + ["md-sort_bool_descending_variant"] = { + ["char"] = "󱎈", + ["code"] = "f1388", + }, + ["md-sort_calendar_ascending"] = { + ["char"] = "󱕇", + ["code"] = "f1547", + }, + ["md-sort_calendar_descending"] = { + ["char"] = "󱕈", + ["code"] = "f1548", + }, + ["md-sort_clock_ascending"] = { + ["char"] = "󱕉", + ["code"] = "f1549", + }, + ["md-sort_clock_ascending_outline"] = { + ["char"] = "󱕊", + ["code"] = "f154a", + }, + ["md-sort_clock_descending"] = { + ["char"] = "󱕋", + ["code"] = "f154b", + }, + ["md-sort_clock_descending_outline"] = { + ["char"] = "󱕌", + ["code"] = "f154c", + }, + ["md-sort_descending"] = { + ["char"] = "󰒽", + ["code"] = "f04bd", + }, + ["md-sort_numeric_ascending"] = { + ["char"] = "󱎉", + ["code"] = "f1389", + }, + ["md-sort_numeric_ascending_variant"] = { + ["char"] = "󰤍", + ["code"] = "f090d", + }, + ["md-sort_numeric_descending"] = { + ["char"] = "󱎊", + ["code"] = "f138a", + }, + ["md-sort_numeric_descending_variant"] = { + ["char"] = "󰫒", + ["code"] = "f0ad2", + }, + ["md-sort_numeric_variant"] = { + ["char"] = "󰒾", + ["code"] = "f04be", + }, + ["md-sort_reverse_variant"] = { + ["char"] = "󰌼", + ["code"] = "f033c", + }, + ["md-sort_variant"] = { + ["char"] = "󰒿", + ["code"] = "f04bf", + }, + ["md-sort_variant_lock"] = { + ["char"] = "󰳍", + ["code"] = "f0ccd", + }, + ["md-sort_variant_lock_open"] = { + ["char"] = "󰳎", + ["code"] = "f0cce", + }, + ["md-sort_variant_off"] = { + ["char"] = "󱪻", + ["code"] = "f1abb", + }, + ["md-sort_variant_remove"] = { + ["char"] = "󱅇", + ["code"] = "f1147", + }, + ["md-soundbar"] = { + ["char"] = "󱟛", + ["code"] = "f17db", + }, + ["md-soundcloud"] = { + ["char"] = "󰓀", + ["code"] = "f04c0", + }, + ["md-source_branch"] = { + ["char"] = "󰘬", + ["code"] = "f062c", + }, + ["md-source_branch_check"] = { + ["char"] = "󱓏", + ["code"] = "f14cf", + }, + ["md-source_branch_minus"] = { + ["char"] = "󱓋", + ["code"] = "f14cb", + }, + ["md-source_branch_plus"] = { + ["char"] = "󱓊", + ["code"] = "f14ca", + }, + ["md-source_branch_refresh"] = { + ["char"] = "󱓍", + ["code"] = "f14cd", + }, + ["md-source_branch_remove"] = { + ["char"] = "󱓌", + ["code"] = "f14cc", + }, + ["md-source_branch_sync"] = { + ["char"] = "󱓎", + ["code"] = "f14ce", + }, + ["md-source_commit"] = { + ["char"] = "󰜘", + ["code"] = "f0718", + }, + ["md-source_commit_end"] = { + ["char"] = "󰜙", + ["code"] = "f0719", + }, + ["md-source_commit_end_local"] = { + ["char"] = "󰜚", + ["code"] = "f071a", + }, + ["md-source_commit_local"] = { + ["char"] = "󰜛", + ["code"] = "f071b", + }, + ["md-source_commit_next_local"] = { + ["char"] = "󰜜", + ["code"] = "f071c", + }, + ["md-source_commit_start"] = { + ["char"] = "󰜝", + ["code"] = "f071d", + }, + ["md-source_commit_start_next_local"] = { + ["char"] = "󰜞", + ["code"] = "f071e", + }, + ["md-source_fork"] = { + ["char"] = "󰓁", + ["code"] = "f04c1", + }, + ["md-source_merge"] = { + ["char"] = "󰘭", + ["code"] = "f062d", + }, + ["md-source_pull"] = { + ["char"] = "󰓂", + ["code"] = "f04c2", + }, + ["md-source_repository"] = { + ["char"] = "󰳏", + ["code"] = "f0ccf", + }, + ["md-source_repository_multiple"] = { + ["char"] = "󰳐", + ["code"] = "f0cd0", + }, + ["md-soy_sauce"] = { + ["char"] = "󰟮", + ["code"] = "f07ee", + }, + ["md-soy_sauce_off"] = { + ["char"] = "󱏼", + ["code"] = "f13fc", + }, + ["md-spa"] = { + ["char"] = "󰳑", + ["code"] = "f0cd1", + }, + ["md-spa_outline"] = { + ["char"] = "󰳒", + ["code"] = "f0cd2", + }, + ["md-space_invaders"] = { + ["char"] = "󰯉", + ["code"] = "f0bc9", + }, + ["md-space_station"] = { + ["char"] = "󱎃", + ["code"] = "f1383", + }, + ["md-spade"] = { + ["char"] = "󰹥", + ["code"] = "f0e65", + }, + ["md-speaker"] = { + ["char"] = "󰓃", + ["code"] = "f04c3", + }, + ["md-speaker_bluetooth"] = { + ["char"] = "󰦢", + ["code"] = "f09a2", + }, + ["md-speaker_multiple"] = { + ["char"] = "󰴸", + ["code"] = "f0d38", + }, + ["md-speaker_off"] = { + ["char"] = "󰓄", + ["code"] = "f04c4", + }, + ["md-speaker_wireless"] = { + ["char"] = "󰜟", + ["code"] = "f071f", + }, + ["md-spear"] = { + ["char"] = "󱡅", + ["code"] = "f1845", + }, + ["md-speedometer"] = { + ["char"] = "󰓅", + ["code"] = "f04c5", + }, + ["md-speedometer_medium"] = { + ["char"] = "󰾅", + ["code"] = "f0f85", + }, + ["md-speedometer_slow"] = { + ["char"] = "󰾆", + ["code"] = "f0f86", + }, + ["md-spellcheck"] = { + ["char"] = "󰓆", + ["code"] = "f04c6", + }, + ["md-sphere"] = { + ["char"] = "󱥔", + ["code"] = "f1954", + }, + ["md-sphere_off"] = { + ["char"] = "󱥕", + ["code"] = "f1955", + }, + ["md-spider"] = { + ["char"] = "󱇪", + ["code"] = "f11ea", + }, + ["md-spider_thread"] = { + ["char"] = "󱇫", + ["code"] = "f11eb", + }, + ["md-spider_web"] = { + ["char"] = "󰯊", + ["code"] = "f0bca", + }, + ["md-spirit_level"] = { + ["char"] = "󱓱", + ["code"] = "f14f1", + }, + ["md-spoon_sugar"] = { + ["char"] = "󱐩", + ["code"] = "f1429", + }, + ["md-spotify"] = { + ["char"] = "󰓇", + ["code"] = "f04c7", + }, + ["md-spotlight"] = { + ["char"] = "󰓈", + ["code"] = "f04c8", + }, + ["md-spotlight_beam"] = { + ["char"] = "󰓉", + ["code"] = "f04c9", + }, + ["md-spray"] = { + ["char"] = "󰙥", + ["code"] = "f0665", + }, + ["md-spray_bottle"] = { + ["char"] = "󰫠", + ["code"] = "f0ae0", + }, + ["md-sprinkler"] = { + ["char"] = "󱁟", + ["code"] = "f105f", + }, + ["md-sprinkler_fire"] = { + ["char"] = "󱦝", + ["code"] = "f199d", + }, + ["md-sprinkler_variant"] = { + ["char"] = "󱁠", + ["code"] = "f1060", + }, + ["md-sprout"] = { + ["char"] = "󰹦", + ["code"] = "f0e66", + }, + ["md-sprout_outline"] = { + ["char"] = "󰹧", + ["code"] = "f0e67", + }, + ["md-square"] = { + ["char"] = "󰝤", + ["code"] = "f0764", + }, + ["md-square_circle"] = { + ["char"] = "󱔀", + ["code"] = "f1500", + }, + ["md-square_edit_outline"] = { + ["char"] = "󰤌", + ["code"] = "f090c", + }, + ["md-square_medium"] = { + ["char"] = "󰨓", + ["code"] = "f0a13", + }, + ["md-square_medium_outline"] = { + ["char"] = "󰨔", + ["code"] = "f0a14", + }, + ["md-square_off"] = { + ["char"] = "󱋮", + ["code"] = "f12ee", + }, + ["md-square_off_outline"] = { + ["char"] = "󱋯", + ["code"] = "f12ef", + }, + ["md-square_opacity"] = { + ["char"] = "󱡔", + ["code"] = "f1854", + }, + ["md-square_outline"] = { + ["char"] = "󰝣", + ["code"] = "f0763", + }, + ["md-square_root"] = { + ["char"] = "󰞄", + ["code"] = "f0784", + }, + ["md-square_root_box"] = { + ["char"] = "󰦣", + ["code"] = "f09a3", + }, + ["md-square_rounded"] = { + ["char"] = "󱓻", + ["code"] = "f14fb", + }, + ["md-square_rounded_badge"] = { + ["char"] = "󱨇", + ["code"] = "f1a07", + }, + ["md-square_rounded_badge_outline"] = { + ["char"] = "󱨈", + ["code"] = "f1a08", + }, + ["md-square_rounded_outline"] = { + ["char"] = "󱓼", + ["code"] = "f14fc", + }, + ["md-square_small"] = { + ["char"] = "󰨕", + ["code"] = "f0a15", + }, + ["md-square_wave"] = { + ["char"] = "󱑻", + ["code"] = "f147b", + }, + ["md-squeegee"] = { + ["char"] = "󰫡", + ["code"] = "f0ae1", + }, + ["md-ssh"] = { + ["char"] = "󰣀", + ["code"] = "f08c0", + }, + ["md-stack_exchange"] = { + ["char"] = "󰘋", + ["code"] = "f060b", + }, + ["md-stack_overflow"] = { + ["char"] = "󰓌", + ["code"] = "f04cc", + }, + ["md-stackpath"] = { + ["char"] = "󰍙", + ["code"] = "f0359", + }, + ["md-stadium"] = { + ["char"] = "󰿹", + ["code"] = "f0ff9", + }, + ["md-stadium_variant"] = { + ["char"] = "󰜠", + ["code"] = "f0720", + }, + ["md-stairs"] = { + ["char"] = "󰓍", + ["code"] = "f04cd", + }, + ["md-stairs_box"] = { + ["char"] = "󱎞", + ["code"] = "f139e", + }, + ["md-stairs_down"] = { + ["char"] = "󱊾", + ["code"] = "f12be", + }, + ["md-stairs_up"] = { + ["char"] = "󱊽", + ["code"] = "f12bd", + }, + ["md-stamper"] = { + ["char"] = "󰴹", + ["code"] = "f0d39", + }, + ["md-standard_definition"] = { + ["char"] = "󰟯", + ["code"] = "f07ef", + }, + ["md-star"] = { + ["char"] = "󰓎", + ["code"] = "f04ce", + }, + ["md-star_box"] = { + ["char"] = "󰩳", + ["code"] = "f0a73", + }, + ["md-star_box_multiple"] = { + ["char"] = "󱊆", + ["code"] = "f1286", + }, + ["md-star_box_multiple_outline"] = { + ["char"] = "󱊇", + ["code"] = "f1287", + }, + ["md-star_box_outline"] = { + ["char"] = "󰩴", + ["code"] = "f0a74", + }, + ["md-star_check"] = { + ["char"] = "󱕦", + ["code"] = "f1566", + }, + ["md-star_check_outline"] = { + ["char"] = "󱕪", + ["code"] = "f156a", + }, + ["md-star_circle"] = { + ["char"] = "󰓏", + ["code"] = "f04cf", + }, + ["md-star_circle_outline"] = { + ["char"] = "󰦤", + ["code"] = "f09a4", + }, + ["md-star_cog"] = { + ["char"] = "󱙨", + ["code"] = "f1668", + }, + ["md-star_cog_outline"] = { + ["char"] = "󱙩", + ["code"] = "f1669", + }, + ["md-star_crescent"] = { + ["char"] = "󰥹", + ["code"] = "f0979", + }, + ["md-star_david"] = { + ["char"] = "󰥺", + ["code"] = "f097a", + }, + ["md-star_face"] = { + ["char"] = "󰦥", + ["code"] = "f09a5", + }, + ["md-star_four_points"] = { + ["char"] = "󰫢", + ["code"] = "f0ae2", + }, + ["md-star_four_points_outline"] = { + ["char"] = "󰫣", + ["code"] = "f0ae3", + }, + ["md-star_half"] = { + ["char"] = "󰉆", + ["code"] = "f0246", + }, + ["md-star_half_full"] = { + ["char"] = "󰓐", + ["code"] = "f04d0", + }, + ["md-star_minus"] = { + ["char"] = "󱕤", + ["code"] = "f1564", + }, + ["md-star_minus_outline"] = { + ["char"] = "󱕨", + ["code"] = "f1568", + }, + ["md-star_off"] = { + ["char"] = "󰓑", + ["code"] = "f04d1", + }, + ["md-star_off_outline"] = { + ["char"] = "󱕛", + ["code"] = "f155b", + }, + ["md-star_outline"] = { + ["char"] = "󰓒", + ["code"] = "f04d2", + }, + ["md-star_plus"] = { + ["char"] = "󱕣", + ["code"] = "f1563", + }, + ["md-star_plus_outline"] = { + ["char"] = "󱕧", + ["code"] = "f1567", + }, + ["md-star_remove"] = { + ["char"] = "󱕥", + ["code"] = "f1565", + }, + ["md-star_remove_outline"] = { + ["char"] = "󱕩", + ["code"] = "f1569", + }, + ["md-star_settings"] = { + ["char"] = "󱙪", + ["code"] = "f166a", + }, + ["md-star_settings_outline"] = { + ["char"] = "󱙫", + ["code"] = "f166b", + }, + ["md-star_shooting"] = { + ["char"] = "󱝁", + ["code"] = "f1741", + }, + ["md-star_shooting_outline"] = { + ["char"] = "󱝂", + ["code"] = "f1742", + }, + ["md-star_three_points"] = { + ["char"] = "󰫤", + ["code"] = "f0ae4", + }, + ["md-star_three_points_outline"] = { + ["char"] = "󰫥", + ["code"] = "f0ae5", + }, + ["md-state_machine"] = { + ["char"] = "󱇯", + ["code"] = "f11ef", + }, + ["md-steam"] = { + ["char"] = "󰓓", + ["code"] = "f04d3", + }, + ["md-steering"] = { + ["char"] = "󰓔", + ["code"] = "f04d4", + }, + ["md-steering_off"] = { + ["char"] = "󰤎", + ["code"] = "f090e", + }, + ["md-step_backward"] = { + ["char"] = "󰓕", + ["code"] = "f04d5", + }, + ["md-step_backward_2"] = { + ["char"] = "󰓖", + ["code"] = "f04d6", + }, + ["md-step_forward"] = { + ["char"] = "󰓗", + ["code"] = "f04d7", + }, + ["md-step_forward_2"] = { + ["char"] = "󰓘", + ["code"] = "f04d8", + }, + ["md-stethoscope"] = { + ["char"] = "󰓙", + ["code"] = "f04d9", + }, + ["md-sticker"] = { + ["char"] = "󱍤", + ["code"] = "f1364", + }, + ["md-sticker_alert"] = { + ["char"] = "󱍥", + ["code"] = "f1365", + }, + ["md-sticker_alert_outline"] = { + ["char"] = "󱍦", + ["code"] = "f1366", + }, + ["md-sticker_check"] = { + ["char"] = "󱍧", + ["code"] = "f1367", + }, + ["md-sticker_check_outline"] = { + ["char"] = "󱍨", + ["code"] = "f1368", + }, + ["md-sticker_circle_outline"] = { + ["char"] = "󰗐", + ["code"] = "f05d0", + }, + ["md-sticker_emoji"] = { + ["char"] = "󰞅", + ["code"] = "f0785", + }, + ["md-sticker_minus"] = { + ["char"] = "󱍩", + ["code"] = "f1369", + }, + ["md-sticker_minus_outline"] = { + ["char"] = "󱍪", + ["code"] = "f136a", + }, + ["md-sticker_outline"] = { + ["char"] = "󱍫", + ["code"] = "f136b", + }, + ["md-sticker_plus"] = { + ["char"] = "󱍬", + ["code"] = "f136c", + }, + ["md-sticker_plus_outline"] = { + ["char"] = "󱍭", + ["code"] = "f136d", + }, + ["md-sticker_remove"] = { + ["char"] = "󱍮", + ["code"] = "f136e", + }, + ["md-sticker_remove_outline"] = { + ["char"] = "󱍯", + ["code"] = "f136f", + }, + ["md-sticker_text"] = { + ["char"] = "󱞎", + ["code"] = "f178e", + }, + ["md-sticker_text_outline"] = { + ["char"] = "󱞏", + ["code"] = "f178f", + }, + ["md-stocking"] = { + ["char"] = "󰓚", + ["code"] = "f04da", + }, + ["md-stomach"] = { + ["char"] = "󱂓", + ["code"] = "f1093", + }, + ["md-stool"] = { + ["char"] = "󱥝", + ["code"] = "f195d", + }, + ["md-stool_outline"] = { + ["char"] = "󱥞", + ["code"] = "f195e", + }, + ["md-stop"] = { + ["char"] = "󰓛", + ["code"] = "f04db", + }, + ["md-stop_circle"] = { + ["char"] = "󰙦", + ["code"] = "f0666", + }, + ["md-stop_circle_outline"] = { + ["char"] = "󰙧", + ["code"] = "f0667", + }, + ["md-storage_tank"] = { + ["char"] = "󱩵", + ["code"] = "f1a75", + }, + ["md-storage_tank_outline"] = { + ["char"] = "󱩶", + ["code"] = "f1a76", + }, + ["md-store"] = { + ["char"] = "󰓜", + ["code"] = "f04dc", + }, + ["md-store_24_hour"] = { + ["char"] = "󰓝", + ["code"] = "f04dd", + }, + ["md-store_alert"] = { + ["char"] = "󱣁", + ["code"] = "f18c1", + }, + ["md-store_alert_outline"] = { + ["char"] = "󱣂", + ["code"] = "f18c2", + }, + ["md-store_check"] = { + ["char"] = "󱣃", + ["code"] = "f18c3", + }, + ["md-store_check_outline"] = { + ["char"] = "󱣄", + ["code"] = "f18c4", + }, + ["md-store_clock"] = { + ["char"] = "󱣅", + ["code"] = "f18c5", + }, + ["md-store_clock_outline"] = { + ["char"] = "󱣆", + ["code"] = "f18c6", + }, + ["md-store_cog"] = { + ["char"] = "󱣇", + ["code"] = "f18c7", + }, + ["md-store_cog_outline"] = { + ["char"] = "󱣈", + ["code"] = "f18c8", + }, + ["md-store_edit"] = { + ["char"] = "󱣉", + ["code"] = "f18c9", + }, + ["md-store_edit_outline"] = { + ["char"] = "󱣊", + ["code"] = "f18ca", + }, + ["md-store_marker"] = { + ["char"] = "󱣋", + ["code"] = "f18cb", + }, + ["md-store_marker_outline"] = { + ["char"] = "󱣌", + ["code"] = "f18cc", + }, + ["md-store_minus"] = { + ["char"] = "󱙞", + ["code"] = "f165e", + }, + ["md-store_minus_outline"] = { + ["char"] = "󱣍", + ["code"] = "f18cd", + }, + ["md-store_off"] = { + ["char"] = "󱣎", + ["code"] = "f18ce", + }, + ["md-store_off_outline"] = { + ["char"] = "󱣏", + ["code"] = "f18cf", + }, + ["md-store_outline"] = { + ["char"] = "󱍡", + ["code"] = "f1361", + }, + ["md-store_plus"] = { + ["char"] = "󱙟", + ["code"] = "f165f", + }, + ["md-store_plus_outline"] = { + ["char"] = "󱣐", + ["code"] = "f18d0", + }, + ["md-store_remove"] = { + ["char"] = "󱙠", + ["code"] = "f1660", + }, + ["md-store_remove_outline"] = { + ["char"] = "󱣑", + ["code"] = "f18d1", + }, + ["md-store_search"] = { + ["char"] = "󱣒", + ["code"] = "f18d2", + }, + ["md-store_search_outline"] = { + ["char"] = "󱣓", + ["code"] = "f18d3", + }, + ["md-store_settings"] = { + ["char"] = "󱣔", + ["code"] = "f18d4", + }, + ["md-store_settings_outline"] = { + ["char"] = "󱣕", + ["code"] = "f18d5", + }, + ["md-storefront"] = { + ["char"] = "󰟇", + ["code"] = "f07c7", + }, + ["md-storefront_outline"] = { + ["char"] = "󱃁", + ["code"] = "f10c1", + }, + ["md-stove"] = { + ["char"] = "󰓞", + ["code"] = "f04de", + }, + ["md-strategy"] = { + ["char"] = "󱇖", + ["code"] = "f11d6", + }, + ["md-stretch_to_page"] = { + ["char"] = "󰼫", + ["code"] = "f0f2b", + }, + ["md-stretch_to_page_outline"] = { + ["char"] = "󰼬", + ["code"] = "f0f2c", + }, + ["md-string_lights"] = { + ["char"] = "󱊺", + ["code"] = "f12ba", + }, + ["md-string_lights_off"] = { + ["char"] = "󱊻", + ["code"] = "f12bb", + }, + ["md-subdirectory_arrow_left"] = { + ["char"] = "󰘌", + ["code"] = "f060c", + }, + ["md-subdirectory_arrow_right"] = { + ["char"] = "󰘍", + ["code"] = "f060d", + }, + ["md-submarine"] = { + ["char"] = "󱕬", + ["code"] = "f156c", + }, + ["md-subtitles"] = { + ["char"] = "󰨖", + ["code"] = "f0a16", + }, + ["md-subtitles_outline"] = { + ["char"] = "󰨗", + ["code"] = "f0a17", + }, + ["md-subway"] = { + ["char"] = "󰚬", + ["code"] = "f06ac", + }, + ["md-subway_alert_variant"] = { + ["char"] = "󰶝", + ["code"] = "f0d9d", + }, + ["md-subway_variant"] = { + ["char"] = "󰓟", + ["code"] = "f04df", + }, + ["md-summit"] = { + ["char"] = "󰞆", + ["code"] = "f0786", + }, + ["md-sun_clock"] = { + ["char"] = "󱩷", + ["code"] = "f1a77", + }, + ["md-sun_clock_outline"] = { + ["char"] = "󱩸", + ["code"] = "f1a78", + }, + ["md-sun_compass"] = { + ["char"] = "󱦥", + ["code"] = "f19a5", + }, + ["md-sun_snowflake"] = { + ["char"] = "󱞖", + ["code"] = "f1796", + }, + ["md-sun_snowflake_variant"] = { + ["char"] = "󱩹", + ["code"] = "f1a79", + }, + ["md-sun_thermometer"] = { + ["char"] = "󱣖", + ["code"] = "f18d6", + }, + ["md-sun_thermometer_outline"] = { + ["char"] = "󱣗", + ["code"] = "f18d7", + }, + ["md-sun_wireless"] = { + ["char"] = "󱟾", + ["code"] = "f17fe", + }, + ["md-sun_wireless_outline"] = { + ["char"] = "󱟿", + ["code"] = "f17ff", + }, + ["md-sunglasses"] = { + ["char"] = "󰓠", + ["code"] = "f04e0", + }, + ["md-surfing"] = { + ["char"] = "󱝆", + ["code"] = "f1746", + }, + ["md-surround_sound"] = { + ["char"] = "󰗅", + ["code"] = "f05c5", + }, + ["md-surround_sound_2_0"] = { + ["char"] = "󰟰", + ["code"] = "f07f0", + }, + ["md-surround_sound_2_1"] = { + ["char"] = "󱜩", + ["code"] = "f1729", + }, + ["md-surround_sound_3_1"] = { + ["char"] = "󰟱", + ["code"] = "f07f1", + }, + ["md-surround_sound_5_1"] = { + ["char"] = "󰟲", + ["code"] = "f07f2", + }, + ["md-surround_sound_5_1_2"] = { + ["char"] = "󱜪", + ["code"] = "f172a", + }, + ["md-surround_sound_7_1"] = { + ["char"] = "󰟳", + ["code"] = "f07f3", + }, + ["md-svg"] = { + ["char"] = "󰜡", + ["code"] = "f0721", + }, + ["md-swap_horizontal"] = { + ["char"] = "󰓡", + ["code"] = "f04e1", + }, + ["md-swap_horizontal_bold"] = { + ["char"] = "󰯍", + ["code"] = "f0bcd", + }, + ["md-swap_horizontal_circle"] = { + ["char"] = "󰿡", + ["code"] = "f0fe1", + }, + ["md-swap_horizontal_circle_outline"] = { + ["char"] = "󰿢", + ["code"] = "f0fe2", + }, + ["md-swap_horizontal_variant"] = { + ["char"] = "󰣁", + ["code"] = "f08c1", + }, + ["md-swap_vertical"] = { + ["char"] = "󰓢", + ["code"] = "f04e2", + }, + ["md-swap_vertical_bold"] = { + ["char"] = "󰯎", + ["code"] = "f0bce", + }, + ["md-swap_vertical_circle"] = { + ["char"] = "󰿣", + ["code"] = "f0fe3", + }, + ["md-swap_vertical_circle_outline"] = { + ["char"] = "󰿤", + ["code"] = "f0fe4", + }, + ["md-swap_vertical_variant"] = { + ["char"] = "󰣂", + ["code"] = "f08c2", + }, + ["md-swim"] = { + ["char"] = "󰓣", + ["code"] = "f04e3", + }, + ["md-switch"] = { + ["char"] = "󰓤", + ["code"] = "f04e4", + }, + ["md-sword"] = { + ["char"] = "󰓥", + ["code"] = "f04e5", + }, + ["md-sword_cross"] = { + ["char"] = "󰞇", + ["code"] = "f0787", + }, + ["md-syllabary_hangul"] = { + ["char"] = "󱌳", + ["code"] = "f1333", + }, + ["md-syllabary_hiragana"] = { + ["char"] = "󱌴", + ["code"] = "f1334", + }, + ["md-syllabary_katakana"] = { + ["char"] = "󱌵", + ["code"] = "f1335", + }, + ["md-syllabary_katakana_halfwidth"] = { + ["char"] = "󱌶", + ["code"] = "f1336", + }, + ["md-symbol"] = { + ["char"] = "󱔁", + ["code"] = "f1501", + }, + ["md-symfony"] = { + ["char"] = "󰫦", + ["code"] = "f0ae6", + }, + ["md-sync"] = { + ["char"] = "󰓦", + ["code"] = "f04e6", + }, + ["md-sync_alert"] = { + ["char"] = "󰓧", + ["code"] = "f04e7", + }, + ["md-sync_circle"] = { + ["char"] = "󱍸", + ["code"] = "f1378", + }, + ["md-sync_off"] = { + ["char"] = "󰓨", + ["code"] = "f04e8", + }, + ["md-tab"] = { + ["char"] = "󰓩", + ["code"] = "f04e9", + }, + ["md-tab_minus"] = { + ["char"] = "󰭋", + ["code"] = "f0b4b", + }, + ["md-tab_plus"] = { + ["char"] = "󰝜", + ["code"] = "f075c", + }, + ["md-tab_remove"] = { + ["char"] = "󰭌", + ["code"] = "f0b4c", + }, + ["md-tab_search"] = { + ["char"] = "󱦞", + ["code"] = "f199e", + }, + ["md-tab_unselected"] = { + ["char"] = "󰓪", + ["code"] = "f04ea", + }, + ["md-table"] = { + ["char"] = "󰓫", + ["code"] = "f04eb", + }, + ["md-table_account"] = { + ["char"] = "󱎹", + ["code"] = "f13b9", + }, + ["md-table_alert"] = { + ["char"] = "󱎺", + ["code"] = "f13ba", + }, + ["md-table_arrow_down"] = { + ["char"] = "󱎻", + ["code"] = "f13bb", + }, + ["md-table_arrow_left"] = { + ["char"] = "󱎼", + ["code"] = "f13bc", + }, + ["md-table_arrow_right"] = { + ["char"] = "󱎽", + ["code"] = "f13bd", + }, + ["md-table_arrow_up"] = { + ["char"] = "󱎾", + ["code"] = "f13be", + }, + ["md-table_border"] = { + ["char"] = "󰨘", + ["code"] = "f0a18", + }, + ["md-table_cancel"] = { + ["char"] = "󱎿", + ["code"] = "f13bf", + }, + ["md-table_chair"] = { + ["char"] = "󱁡", + ["code"] = "f1061", + }, + ["md-table_check"] = { + ["char"] = "󱏀", + ["code"] = "f13c0", + }, + ["md-table_clock"] = { + ["char"] = "󱏁", + ["code"] = "f13c1", + }, + ["md-table_cog"] = { + ["char"] = "󱏂", + ["code"] = "f13c2", + }, + ["md-table_column"] = { + ["char"] = "󰠵", + ["code"] = "f0835", + }, + ["md-table_column_plus_after"] = { + ["char"] = "󰓬", + ["code"] = "f04ec", + }, + ["md-table_column_plus_before"] = { + ["char"] = "󰓭", + ["code"] = "f04ed", + }, + ["md-table_column_remove"] = { + ["char"] = "󰓮", + ["code"] = "f04ee", + }, + ["md-table_column_width"] = { + ["char"] = "󰓯", + ["code"] = "f04ef", + }, + ["md-table_edit"] = { + ["char"] = "󰓰", + ["code"] = "f04f0", + }, + ["md-table_eye"] = { + ["char"] = "󱂔", + ["code"] = "f1094", + }, + ["md-table_eye_off"] = { + ["char"] = "󱏃", + ["code"] = "f13c3", + }, + ["md-table_furniture"] = { + ["char"] = "󰖼", + ["code"] = "f05bc", + }, + ["md-table_headers_eye"] = { + ["char"] = "󱈝", + ["code"] = "f121d", + }, + ["md-table_headers_eye_off"] = { + ["char"] = "󱈞", + ["code"] = "f121e", + }, + ["md-table_heart"] = { + ["char"] = "󱏄", + ["code"] = "f13c4", + }, + ["md-table_key"] = { + ["char"] = "󱏅", + ["code"] = "f13c5", + }, + ["md-table_large"] = { + ["char"] = "󰓱", + ["code"] = "f04f1", + }, + ["md-table_large_plus"] = { + ["char"] = "󰾇", + ["code"] = "f0f87", + }, + ["md-table_large_remove"] = { + ["char"] = "󰾈", + ["code"] = "f0f88", + }, + ["md-table_lock"] = { + ["char"] = "󱏆", + ["code"] = "f13c6", + }, + ["md-table_merge_cells"] = { + ["char"] = "󰦦", + ["code"] = "f09a6", + }, + ["md-table_minus"] = { + ["char"] = "󱏇", + ["code"] = "f13c7", + }, + ["md-table_multiple"] = { + ["char"] = "󱏈", + ["code"] = "f13c8", + }, + ["md-table_network"] = { + ["char"] = "󱏉", + ["code"] = "f13c9", + }, + ["md-table_of_contents"] = { + ["char"] = "󰠶", + ["code"] = "f0836", + }, + ["md-table_off"] = { + ["char"] = "󱏊", + ["code"] = "f13ca", + }, + ["md-table_picnic"] = { + ["char"] = "󱝃", + ["code"] = "f1743", + }, + ["md-table_pivot"] = { + ["char"] = "󱠼", + ["code"] = "f183c", + }, + ["md-table_plus"] = { + ["char"] = "󰩵", + ["code"] = "f0a75", + }, + ["md-table_refresh"] = { + ["char"] = "󱎠", + ["code"] = "f13a0", + }, + ["md-table_remove"] = { + ["char"] = "󰩶", + ["code"] = "f0a76", + }, + ["md-table_row"] = { + ["char"] = "󰠷", + ["code"] = "f0837", + }, + ["md-table_row_height"] = { + ["char"] = "󰓲", + ["code"] = "f04f2", + }, + ["md-table_row_plus_after"] = { + ["char"] = "󰓳", + ["code"] = "f04f3", + }, + ["md-table_row_plus_before"] = { + ["char"] = "󰓴", + ["code"] = "f04f4", + }, + ["md-table_row_remove"] = { + ["char"] = "󰓵", + ["code"] = "f04f5", + }, + ["md-table_search"] = { + ["char"] = "󰤏", + ["code"] = "f090f", + }, + ["md-table_settings"] = { + ["char"] = "󰠸", + ["code"] = "f0838", + }, + ["md-table_split_cell"] = { + ["char"] = "󱐪", + ["code"] = "f142a", + }, + ["md-table_star"] = { + ["char"] = "󱏋", + ["code"] = "f13cb", + }, + ["md-table_sync"] = { + ["char"] = "󱎡", + ["code"] = "f13a1", + }, + ["md-table_tennis"] = { + ["char"] = "󰹨", + ["code"] = "f0e68", + }, + ["md-tablet"] = { + ["char"] = "󰓶", + ["code"] = "f04f6", + }, + ["md-tablet_android"] = { + ["char"] = "󰓷", + ["code"] = "f04f7", + }, + ["md-tablet_cellphone"] = { + ["char"] = "󰦧", + ["code"] = "f09a7", + }, + ["md-tablet_dashboard"] = { + ["char"] = "󰻎", + ["code"] = "f0ece", + }, + ["md-taco"] = { + ["char"] = "󰝢", + ["code"] = "f0762", + }, + ["md-tag"] = { + ["char"] = "󰓹", + ["code"] = "f04f9", + }, + ["md-tag_arrow_down"] = { + ["char"] = "󱜫", + ["code"] = "f172b", + }, + ["md-tag_arrow_down_outline"] = { + ["char"] = "󱜬", + ["code"] = "f172c", + }, + ["md-tag_arrow_left"] = { + ["char"] = "󱜭", + ["code"] = "f172d", + }, + ["md-tag_arrow_left_outline"] = { + ["char"] = "󱜮", + ["code"] = "f172e", + }, + ["md-tag_arrow_right"] = { + ["char"] = "󱜯", + ["code"] = "f172f", + }, + ["md-tag_arrow_right_outline"] = { + ["char"] = "󱜰", + ["code"] = "f1730", + }, + ["md-tag_arrow_up"] = { + ["char"] = "󱜱", + ["code"] = "f1731", + }, + ["md-tag_arrow_up_outline"] = { + ["char"] = "󱜲", + ["code"] = "f1732", + }, + ["md-tag_check"] = { + ["char"] = "󱩺", + ["code"] = "f1a7a", + }, + ["md-tag_check_outline"] = { + ["char"] = "󱩻", + ["code"] = "f1a7b", + }, + ["md-tag_faces"] = { + ["char"] = "󰓺", + ["code"] = "f04fa", + }, + ["md-tag_heart"] = { + ["char"] = "󰚋", + ["code"] = "f068b", + }, + ["md-tag_heart_outline"] = { + ["char"] = "󰯏", + ["code"] = "f0bcf", + }, + ["md-tag_minus"] = { + ["char"] = "󰤐", + ["code"] = "f0910", + }, + ["md-tag_minus_outline"] = { + ["char"] = "󱈟", + ["code"] = "f121f", + }, + ["md-tag_multiple"] = { + ["char"] = "󰓻", + ["code"] = "f04fb", + }, + ["md-tag_multiple_outline"] = { + ["char"] = "󱋷", + ["code"] = "f12f7", + }, + ["md-tag_off"] = { + ["char"] = "󱈠", + ["code"] = "f1220", + }, + ["md-tag_off_outline"] = { + ["char"] = "󱈡", + ["code"] = "f1221", + }, + ["md-tag_outline"] = { + ["char"] = "󰓼", + ["code"] = "f04fc", + }, + ["md-tag_plus"] = { + ["char"] = "󰜢", + ["code"] = "f0722", + }, + ["md-tag_plus_outline"] = { + ["char"] = "󱈢", + ["code"] = "f1222", + }, + ["md-tag_remove"] = { + ["char"] = "󰜣", + ["code"] = "f0723", + }, + ["md-tag_remove_outline"] = { + ["char"] = "󱈣", + ["code"] = "f1223", + }, + ["md-tag_search"] = { + ["char"] = "󱤇", + ["code"] = "f1907", + }, + ["md-tag_search_outline"] = { + ["char"] = "󱤈", + ["code"] = "f1908", + }, + ["md-tag_text"] = { + ["char"] = "󱈤", + ["code"] = "f1224", + }, + ["md-tag_text_outline"] = { + ["char"] = "󰓽", + ["code"] = "f04fd", + }, + ["md-tailwind"] = { + ["char"] = "󱏿", + ["code"] = "f13ff", + }, + ["md-tally_mark_1"] = { + ["char"] = "󱪼", + ["code"] = "f1abc", + }, + ["md-tally_mark_2"] = { + ["char"] = "󱪽", + ["code"] = "f1abd", + }, + ["md-tally_mark_3"] = { + ["char"] = "󱪾", + ["code"] = "f1abe", + }, + ["md-tally_mark_4"] = { + ["char"] = "󱪿", + ["code"] = "f1abf", + }, + ["md-tally_mark_5"] = { + ["char"] = "󱫀", + ["code"] = "f1ac0", + }, + ["md-tangram"] = { + ["char"] = "󰓸", + ["code"] = "f04f8", + }, + ["md-tank"] = { + ["char"] = "󰴺", + ["code"] = "f0d3a", + }, + ["md-tanker_truck"] = { + ["char"] = "󰿥", + ["code"] = "f0fe5", + }, + ["md-tape_drive"] = { + ["char"] = "󱛟", + ["code"] = "f16df", + }, + ["md-tape_measure"] = { + ["char"] = "󰭍", + ["code"] = "f0b4d", + }, + ["md-target"] = { + ["char"] = "󰓾", + ["code"] = "f04fe", + }, + ["md-target_account"] = { + ["char"] = "󰯐", + ["code"] = "f0bd0", + }, + ["md-target_variant"] = { + ["char"] = "󰩷", + ["code"] = "f0a77", + }, + ["md-taxi"] = { + ["char"] = "󰓿", + ["code"] = "f04ff", + }, + ["md-tea"] = { + ["char"] = "󰶞", + ["code"] = "f0d9e", + }, + ["md-tea_outline"] = { + ["char"] = "󰶟", + ["code"] = "f0d9f", + }, + ["md-teamviewer"] = { + ["char"] = "󰔀", + ["code"] = "f0500", + }, + ["md-teddy_bear"] = { + ["char"] = "󱣻", + ["code"] = "f18fb", + }, + ["md-telescope"] = { + ["char"] = "󰭎", + ["code"] = "f0b4e", + }, + ["md-television"] = { + ["char"] = "󰔂", + ["code"] = "f0502", + }, + ["md-television_ambient_light"] = { + ["char"] = "󱍖", + ["code"] = "f1356", + }, + ["md-television_box"] = { + ["char"] = "󰠹", + ["code"] = "f0839", + }, + ["md-television_classic"] = { + ["char"] = "󰟴", + ["code"] = "f07f4", + }, + ["md-television_classic_off"] = { + ["char"] = "󰠺", + ["code"] = "f083a", + }, + ["md-television_guide"] = { + ["char"] = "󰔃", + ["code"] = "f0503", + }, + ["md-television_off"] = { + ["char"] = "󰠻", + ["code"] = "f083b", + }, + ["md-television_pause"] = { + ["char"] = "󰾉", + ["code"] = "f0f89", + }, + ["md-television_play"] = { + ["char"] = "󰻏", + ["code"] = "f0ecf", + }, + ["md-television_shimmer"] = { + ["char"] = "󱄐", + ["code"] = "f1110", + }, + ["md-television_stop"] = { + ["char"] = "󰾊", + ["code"] = "f0f8a", + }, + ["md-temperature_celsius"] = { + ["char"] = "󰔄", + ["code"] = "f0504", + }, + ["md-temperature_fahrenheit"] = { + ["char"] = "󰔅", + ["code"] = "f0505", + }, + ["md-temperature_kelvin"] = { + ["char"] = "󰔆", + ["code"] = "f0506", + }, + ["md-tennis"] = { + ["char"] = "󰶠", + ["code"] = "f0da0", + }, + ["md-tennis_ball"] = { + ["char"] = "󰔇", + ["code"] = "f0507", + }, + ["md-tent"] = { + ["char"] = "󰔈", + ["code"] = "f0508", + }, + ["md-terraform"] = { + ["char"] = "󱁢", + ["code"] = "f1062", + }, + ["md-test_tube"] = { + ["char"] = "󰙨", + ["code"] = "f0668", + }, + ["md-test_tube_empty"] = { + ["char"] = "󰤑", + ["code"] = "f0911", + }, + ["md-test_tube_off"] = { + ["char"] = "󰤒", + ["code"] = "f0912", + }, + ["md-text"] = { + ["char"] = "󰦨", + ["code"] = "f09a8", + }, + ["md-text_account"] = { + ["char"] = "󱕰", + ["code"] = "f1570", + }, + ["md-text_box"] = { + ["char"] = "󰈚", + ["code"] = "f021a", + }, + ["md-text_box_check"] = { + ["char"] = "󰺦", + ["code"] = "f0ea6", + }, + ["md-text_box_check_outline"] = { + ["char"] = "󰺧", + ["code"] = "f0ea7", + }, + ["md-text_box_edit"] = { + ["char"] = "󱩼", + ["code"] = "f1a7c", + }, + ["md-text_box_edit_outline"] = { + ["char"] = "󱩽", + ["code"] = "f1a7d", + }, + ["md-text_box_minus"] = { + ["char"] = "󰺨", + ["code"] = "f0ea8", + }, + ["md-text_box_minus_outline"] = { + ["char"] = "󰺩", + ["code"] = "f0ea9", + }, + ["md-text_box_multiple"] = { + ["char"] = "󰪷", + ["code"] = "f0ab7", + }, + ["md-text_box_multiple_outline"] = { + ["char"] = "󰪸", + ["code"] = "f0ab8", + }, + ["md-text_box_outline"] = { + ["char"] = "󰧭", + ["code"] = "f09ed", + }, + ["md-text_box_plus"] = { + ["char"] = "󰺪", + ["code"] = "f0eaa", + }, + ["md-text_box_plus_outline"] = { + ["char"] = "󰺫", + ["code"] = "f0eab", + }, + ["md-text_box_remove"] = { + ["char"] = "󰺬", + ["code"] = "f0eac", + }, + ["md-text_box_remove_outline"] = { + ["char"] = "󰺭", + ["code"] = "f0ead", + }, + ["md-text_box_search"] = { + ["char"] = "󰺮", + ["code"] = "f0eae", + }, + ["md-text_box_search_outline"] = { + ["char"] = "󰺯", + ["code"] = "f0eaf", + }, + ["md-text_long"] = { + ["char"] = "󰦪", + ["code"] = "f09aa", + }, + ["md-text_recognition"] = { + ["char"] = "󱄽", + ["code"] = "f113d", + }, + ["md-text_search"] = { + ["char"] = "󱎸", + ["code"] = "f13b8", + }, + ["md-text_search_variant"] = { + ["char"] = "󱩾", + ["code"] = "f1a7e", + }, + ["md-text_shadow"] = { + ["char"] = "󰙩", + ["code"] = "f0669", + }, + ["md-text_short"] = { + ["char"] = "󰦩", + ["code"] = "f09a9", + }, + ["md-text_to_speech"] = { + ["char"] = "󰔊", + ["code"] = "f050a", + }, + ["md-text_to_speech_off"] = { + ["char"] = "󰔋", + ["code"] = "f050b", + }, + ["md-texture"] = { + ["char"] = "󰔌", + ["code"] = "f050c", + }, + ["md-texture_box"] = { + ["char"] = "󰿦", + ["code"] = "f0fe6", + }, + ["md-theater"] = { + ["char"] = "󰔍", + ["code"] = "f050d", + }, + ["md-theme_light_dark"] = { + ["char"] = "󰔎", + ["code"] = "f050e", + }, + ["md-thermometer"] = { + ["char"] = "󰔏", + ["code"] = "f050f", + }, + ["md-thermometer_alert"] = { + ["char"] = "󰸁", + ["code"] = "f0e01", + }, + ["md-thermometer_bluetooth"] = { + ["char"] = "󱢕", + ["code"] = "f1895", + }, + ["md-thermometer_check"] = { + ["char"] = "󱩿", + ["code"] = "f1a7f", + }, + ["md-thermometer_chevron_down"] = { + ["char"] = "󰸂", + ["code"] = "f0e02", + }, + ["md-thermometer_chevron_up"] = { + ["char"] = "󰸃", + ["code"] = "f0e03", + }, + ["md-thermometer_high"] = { + ["char"] = "󱃂", + ["code"] = "f10c2", + }, + ["md-thermometer_lines"] = { + ["char"] = "󰔐", + ["code"] = "f0510", + }, + ["md-thermometer_low"] = { + ["char"] = "󱃃", + ["code"] = "f10c3", + }, + ["md-thermometer_minus"] = { + ["char"] = "󰸄", + ["code"] = "f0e04", + }, + ["md-thermometer_off"] = { + ["char"] = "󱔱", + ["code"] = "f1531", + }, + ["md-thermometer_plus"] = { + ["char"] = "󰸅", + ["code"] = "f0e05", + }, + ["md-thermometer_water"] = { + ["char"] = "󱪀", + ["code"] = "f1a80", + }, + ["md-thermostat"] = { + ["char"] = "󰎓", + ["code"] = "f0393", + }, + ["md-thermostat_box"] = { + ["char"] = "󰢑", + ["code"] = "f0891", + }, + ["md-thought_bubble"] = { + ["char"] = "󰟶", + ["code"] = "f07f6", + }, + ["md-thought_bubble_outline"] = { + ["char"] = "󰟷", + ["code"] = "f07f7", + }, + ["md-thumb_down"] = { + ["char"] = "󰔑", + ["code"] = "f0511", + }, + ["md-thumb_down_outline"] = { + ["char"] = "󰔒", + ["code"] = "f0512", + }, + ["md-thumb_up"] = { + ["char"] = "󰔓", + ["code"] = "f0513", + }, + ["md-thumb_up_outline"] = { + ["char"] = "󰔔", + ["code"] = "f0514", + }, + ["md-thumbs_up_down"] = { + ["char"] = "󰔕", + ["code"] = "f0515", + }, + ["md-thumbs_up_down_outline"] = { + ["char"] = "󱤔", + ["code"] = "f1914", + }, + ["md-ticket"] = { + ["char"] = "󰔖", + ["code"] = "f0516", + }, + ["md-ticket_account"] = { + ["char"] = "󰔗", + ["code"] = "f0517", + }, + ["md-ticket_confirmation"] = { + ["char"] = "󰔘", + ["code"] = "f0518", + }, + ["md-ticket_confirmation_outline"] = { + ["char"] = "󱎪", + ["code"] = "f13aa", + }, + ["md-ticket_outline"] = { + ["char"] = "󰤓", + ["code"] = "f0913", + }, + ["md-ticket_percent"] = { + ["char"] = "󰜤", + ["code"] = "f0724", + }, + ["md-ticket_percent_outline"] = { + ["char"] = "󱐫", + ["code"] = "f142b", + }, + ["md-tie"] = { + ["char"] = "󰔙", + ["code"] = "f0519", + }, + ["md-tilde"] = { + ["char"] = "󰜥", + ["code"] = "f0725", + }, + ["md-tilde_off"] = { + ["char"] = "󱣳", + ["code"] = "f18f3", + }, + ["md-timelapse"] = { + ["char"] = "󰔚", + ["code"] = "f051a", + }, + ["md-timeline"] = { + ["char"] = "󰯑", + ["code"] = "f0bd1", + }, + ["md-timeline_alert"] = { + ["char"] = "󰾕", + ["code"] = "f0f95", + }, + ["md-timeline_alert_outline"] = { + ["char"] = "󰾘", + ["code"] = "f0f98", + }, + ["md-timeline_check"] = { + ["char"] = "󱔲", + ["code"] = "f1532", + }, + ["md-timeline_check_outline"] = { + ["char"] = "󱔳", + ["code"] = "f1533", + }, + ["md-timeline_clock"] = { + ["char"] = "󱇻", + ["code"] = "f11fb", + }, + ["md-timeline_clock_outline"] = { + ["char"] = "󱇼", + ["code"] = "f11fc", + }, + ["md-timeline_help"] = { + ["char"] = "󰾙", + ["code"] = "f0f99", + }, + ["md-timeline_help_outline"] = { + ["char"] = "󰾚", + ["code"] = "f0f9a", + }, + ["md-timeline_minus"] = { + ["char"] = "󱔴", + ["code"] = "f1534", + }, + ["md-timeline_minus_outline"] = { + ["char"] = "󱔵", + ["code"] = "f1535", + }, + ["md-timeline_outline"] = { + ["char"] = "󰯒", + ["code"] = "f0bd2", + }, + ["md-timeline_plus"] = { + ["char"] = "󰾖", + ["code"] = "f0f96", + }, + ["md-timeline_plus_outline"] = { + ["char"] = "󰾗", + ["code"] = "f0f97", + }, + ["md-timeline_remove"] = { + ["char"] = "󱔶", + ["code"] = "f1536", + }, + ["md-timeline_remove_outline"] = { + ["char"] = "󱔷", + ["code"] = "f1537", + }, + ["md-timeline_text"] = { + ["char"] = "󰯓", + ["code"] = "f0bd3", + }, + ["md-timeline_text_outline"] = { + ["char"] = "󰯔", + ["code"] = "f0bd4", + }, + ["md-timer"] = { + ["char"] = "󱎫", + ["code"] = "f13ab", + }, + ["md-timer_10"] = { + ["char"] = "󰔜", + ["code"] = "f051c", + }, + ["md-timer_3"] = { + ["char"] = "󰔝", + ["code"] = "f051d", + }, + ["md-timer_alert"] = { + ["char"] = "󱫌", + ["code"] = "f1acc", + }, + ["md-timer_alert_outline"] = { + ["char"] = "󱫍", + ["code"] = "f1acd", + }, + ["md-timer_cancel"] = { + ["char"] = "󱫎", + ["code"] = "f1ace", + }, + ["md-timer_cancel_outline"] = { + ["char"] = "󱫏", + ["code"] = "f1acf", + }, + ["md-timer_check"] = { + ["char"] = "󱫐", + ["code"] = "f1ad0", + }, + ["md-timer_check_outline"] = { + ["char"] = "󱫑", + ["code"] = "f1ad1", + }, + ["md-timer_cog"] = { + ["char"] = "󱤥", + ["code"] = "f1925", + }, + ["md-timer_cog_outline"] = { + ["char"] = "󱤦", + ["code"] = "f1926", + }, + ["md-timer_edit"] = { + ["char"] = "󱫒", + ["code"] = "f1ad2", + }, + ["md-timer_edit_outline"] = { + ["char"] = "󱫓", + ["code"] = "f1ad3", + }, + ["md-timer_lock"] = { + ["char"] = "󱫔", + ["code"] = "f1ad4", + }, + ["md-timer_lock_open"] = { + ["char"] = "󱫕", + ["code"] = "f1ad5", + }, + ["md-timer_lock_open_outline"] = { + ["char"] = "󱫖", + ["code"] = "f1ad6", + }, + ["md-timer_lock_outline"] = { + ["char"] = "󱫗", + ["code"] = "f1ad7", + }, + ["md-timer_marker"] = { + ["char"] = "󱫘", + ["code"] = "f1ad8", + }, + ["md-timer_marker_outline"] = { + ["char"] = "󱫙", + ["code"] = "f1ad9", + }, + ["md-timer_minus"] = { + ["char"] = "󱫚", + ["code"] = "f1ada", + }, + ["md-timer_minus_outline"] = { + ["char"] = "󱫛", + ["code"] = "f1adb", + }, + ["md-timer_music"] = { + ["char"] = "󱫜", + ["code"] = "f1adc", + }, + ["md-timer_music_outline"] = { + ["char"] = "󱫝", + ["code"] = "f1add", + }, + ["md-timer_off"] = { + ["char"] = "󱎬", + ["code"] = "f13ac", + }, + ["md-timer_off_outline"] = { + ["char"] = "󰔞", + ["code"] = "f051e", + }, + ["md-timer_outline"] = { + ["char"] = "󰔛", + ["code"] = "f051b", + }, + ["md-timer_pause"] = { + ["char"] = "󱫞", + ["code"] = "f1ade", + }, + ["md-timer_pause_outline"] = { + ["char"] = "󱫟", + ["code"] = "f1adf", + }, + ["md-timer_play"] = { + ["char"] = "󱫠", + ["code"] = "f1ae0", + }, + ["md-timer_play_outline"] = { + ["char"] = "󱫡", + ["code"] = "f1ae1", + }, + ["md-timer_plus"] = { + ["char"] = "󱫢", + ["code"] = "f1ae2", + }, + ["md-timer_plus_outline"] = { + ["char"] = "󱫣", + ["code"] = "f1ae3", + }, + ["md-timer_refresh"] = { + ["char"] = "󱫤", + ["code"] = "f1ae4", + }, + ["md-timer_refresh_outline"] = { + ["char"] = "󱫥", + ["code"] = "f1ae5", + }, + ["md-timer_remove"] = { + ["char"] = "󱫦", + ["code"] = "f1ae6", + }, + ["md-timer_remove_outline"] = { + ["char"] = "󱫧", + ["code"] = "f1ae7", + }, + ["md-timer_sand"] = { + ["char"] = "󰔟", + ["code"] = "f051f", + }, + ["md-timer_sand_complete"] = { + ["char"] = "󱦟", + ["code"] = "f199f", + }, + ["md-timer_sand_empty"] = { + ["char"] = "󰚭", + ["code"] = "f06ad", + }, + ["md-timer_sand_full"] = { + ["char"] = "󰞌", + ["code"] = "f078c", + }, + ["md-timer_sand_paused"] = { + ["char"] = "󱦠", + ["code"] = "f19a0", + }, + ["md-timer_settings"] = { + ["char"] = "󱤣", + ["code"] = "f1923", + }, + ["md-timer_settings_outline"] = { + ["char"] = "󱤤", + ["code"] = "f1924", + }, + ["md-timer_star"] = { + ["char"] = "󱫨", + ["code"] = "f1ae8", + }, + ["md-timer_star_outline"] = { + ["char"] = "󱫩", + ["code"] = "f1ae9", + }, + ["md-timer_stop"] = { + ["char"] = "󱫪", + ["code"] = "f1aea", + }, + ["md-timer_stop_outline"] = { + ["char"] = "󱫫", + ["code"] = "f1aeb", + }, + ["md-timer_sync"] = { + ["char"] = "󱫬", + ["code"] = "f1aec", + }, + ["md-timer_sync_outline"] = { + ["char"] = "󱫭", + ["code"] = "f1aed", + }, + ["md-timetable"] = { + ["char"] = "󰔠", + ["code"] = "f0520", + }, + ["md-tire"] = { + ["char"] = "󱢖", + ["code"] = "f1896", + }, + ["md-toaster"] = { + ["char"] = "󱁣", + ["code"] = "f1063", + }, + ["md-toaster_off"] = { + ["char"] = "󱆷", + ["code"] = "f11b7", + }, + ["md-toaster_oven"] = { + ["char"] = "󰳓", + ["code"] = "f0cd3", + }, + ["md-toggle_switch"] = { + ["char"] = "󰔡", + ["code"] = "f0521", + }, + ["md-toggle_switch_off"] = { + ["char"] = "󰔢", + ["code"] = "f0522", + }, + ["md-toggle_switch_off_outline"] = { + ["char"] = "󰨙", + ["code"] = "f0a19", + }, + ["md-toggle_switch_outline"] = { + ["char"] = "󰨚", + ["code"] = "f0a1a", + }, + ["md-toggle_switch_variant"] = { + ["char"] = "󱨥", + ["code"] = "f1a25", + }, + ["md-toggle_switch_variant_off"] = { + ["char"] = "󱨦", + ["code"] = "f1a26", + }, + ["md-toilet"] = { + ["char"] = "󰦫", + ["code"] = "f09ab", + }, + ["md-toolbox"] = { + ["char"] = "󰦬", + ["code"] = "f09ac", + }, + ["md-toolbox_outline"] = { + ["char"] = "󰦭", + ["code"] = "f09ad", + }, + ["md-tools"] = { + ["char"] = "󱁤", + ["code"] = "f1064", + }, + ["md-tooltip"] = { + ["char"] = "󰔣", + ["code"] = "f0523", + }, + ["md-tooltip_account"] = { + ["char"] = "󰀌", + ["code"] = "f000c", + }, + ["md-tooltip_cellphone"] = { + ["char"] = "󱠻", + ["code"] = "f183b", + }, + ["md-tooltip_check"] = { + ["char"] = "󱕜", + ["code"] = "f155c", + }, + ["md-tooltip_check_outline"] = { + ["char"] = "󱕝", + ["code"] = "f155d", + }, + ["md-tooltip_edit"] = { + ["char"] = "󰔤", + ["code"] = "f0524", + }, + ["md-tooltip_edit_outline"] = { + ["char"] = "󱋅", + ["code"] = "f12c5", + }, + ["md-tooltip_image"] = { + ["char"] = "󰔥", + ["code"] = "f0525", + }, + ["md-tooltip_image_outline"] = { + ["char"] = "󰯕", + ["code"] = "f0bd5", + }, + ["md-tooltip_minus"] = { + ["char"] = "󱕞", + ["code"] = "f155e", + }, + ["md-tooltip_minus_outline"] = { + ["char"] = "󱕟", + ["code"] = "f155f", + }, + ["md-tooltip_outline"] = { + ["char"] = "󰔦", + ["code"] = "f0526", + }, + ["md-tooltip_plus"] = { + ["char"] = "󰯖", + ["code"] = "f0bd6", + }, + ["md-tooltip_plus_outline"] = { + ["char"] = "󰔧", + ["code"] = "f0527", + }, + ["md-tooltip_remove"] = { + ["char"] = "󱕠", + ["code"] = "f1560", + }, + ["md-tooltip_remove_outline"] = { + ["char"] = "󱕡", + ["code"] = "f1561", + }, + ["md-tooltip_text"] = { + ["char"] = "󰔨", + ["code"] = "f0528", + }, + ["md-tooltip_text_outline"] = { + ["char"] = "󰯗", + ["code"] = "f0bd7", + }, + ["md-tooth"] = { + ["char"] = "󰣃", + ["code"] = "f08c3", + }, + ["md-tooth_outline"] = { + ["char"] = "󰔩", + ["code"] = "f0529", + }, + ["md-toothbrush"] = { + ["char"] = "󱄩", + ["code"] = "f1129", + }, + ["md-toothbrush_electric"] = { + ["char"] = "󱄬", + ["code"] = "f112c", + }, + ["md-toothbrush_paste"] = { + ["char"] = "󱄪", + ["code"] = "f112a", + }, + ["md-torch"] = { + ["char"] = "󱘆", + ["code"] = "f1606", + }, + ["md-tortoise"] = { + ["char"] = "󰴻", + ["code"] = "f0d3b", + }, + ["md-toslink"] = { + ["char"] = "󱊸", + ["code"] = "f12b8", + }, + ["md-tournament"] = { + ["char"] = "󰦮", + ["code"] = "f09ae", + }, + ["md-tow_truck"] = { + ["char"] = "󰠼", + ["code"] = "f083c", + }, + ["md-tower_beach"] = { + ["char"] = "󰚁", + ["code"] = "f0681", + }, + ["md-tower_fire"] = { + ["char"] = "󰚂", + ["code"] = "f0682", + }, + ["md-town_hall"] = { + ["char"] = "󱡵", + ["code"] = "f1875", + }, + ["md-toy_brick"] = { + ["char"] = "󱊈", + ["code"] = "f1288", + }, + ["md-toy_brick_marker"] = { + ["char"] = "󱊉", + ["code"] = "f1289", + }, + ["md-toy_brick_marker_outline"] = { + ["char"] = "󱊊", + ["code"] = "f128a", + }, + ["md-toy_brick_minus"] = { + ["char"] = "󱊋", + ["code"] = "f128b", + }, + ["md-toy_brick_minus_outline"] = { + ["char"] = "󱊌", + ["code"] = "f128c", + }, + ["md-toy_brick_outline"] = { + ["char"] = "󱊍", + ["code"] = "f128d", + }, + ["md-toy_brick_plus"] = { + ["char"] = "󱊎", + ["code"] = "f128e", + }, + ["md-toy_brick_plus_outline"] = { + ["char"] = "󱊏", + ["code"] = "f128f", + }, + ["md-toy_brick_remove"] = { + ["char"] = "󱊐", + ["code"] = "f1290", + }, + ["md-toy_brick_remove_outline"] = { + ["char"] = "󱊑", + ["code"] = "f1291", + }, + ["md-toy_brick_search"] = { + ["char"] = "󱊒", + ["code"] = "f1292", + }, + ["md-toy_brick_search_outline"] = { + ["char"] = "󱊓", + ["code"] = "f1293", + }, + ["md-track_light"] = { + ["char"] = "󰤔", + ["code"] = "f0914", + }, + ["md-trackpad"] = { + ["char"] = "󰟸", + ["code"] = "f07f8", + }, + ["md-trackpad_lock"] = { + ["char"] = "󰤳", + ["code"] = "f0933", + }, + ["md-tractor"] = { + ["char"] = "󰢒", + ["code"] = "f0892", + }, + ["md-tractor_variant"] = { + ["char"] = "󱓄", + ["code"] = "f14c4", + }, + ["md-trademark"] = { + ["char"] = "󰩸", + ["code"] = "f0a78", + }, + ["md-traffic_cone"] = { + ["char"] = "󱍼", + ["code"] = "f137c", + }, + ["md-traffic_light"] = { + ["char"] = "󰔫", + ["code"] = "f052b", + }, + ["md-traffic_light_outline"] = { + ["char"] = "󱠪", + ["code"] = "f182a", + }, + ["md-train"] = { + ["char"] = "󰔬", + ["code"] = "f052c", + }, + ["md-train_car"] = { + ["char"] = "󰯘", + ["code"] = "f0bd8", + }, + ["md-train_car_passenger"] = { + ["char"] = "󱜳", + ["code"] = "f1733", + }, + ["md-train_car_passenger_door"] = { + ["char"] = "󱜴", + ["code"] = "f1734", + }, + ["md-train_car_passenger_door_open"] = { + ["char"] = "󱜵", + ["code"] = "f1735", + }, + ["md-train_car_passenger_variant"] = { + ["char"] = "󱜶", + ["code"] = "f1736", + }, + ["md-train_variant"] = { + ["char"] = "󰣄", + ["code"] = "f08c4", + }, + ["md-tram"] = { + ["char"] = "󰔭", + ["code"] = "f052d", + }, + ["md-tram_side"] = { + ["char"] = "󰿧", + ["code"] = "f0fe7", + }, + ["md-transcribe"] = { + ["char"] = "󰔮", + ["code"] = "f052e", + }, + ["md-transcribe_close"] = { + ["char"] = "󰔯", + ["code"] = "f052f", + }, + ["md-transfer"] = { + ["char"] = "󱁥", + ["code"] = "f1065", + }, + ["md-transfer_down"] = { + ["char"] = "󰶡", + ["code"] = "f0da1", + }, + ["md-transfer_left"] = { + ["char"] = "󰶢", + ["code"] = "f0da2", + }, + ["md-transfer_right"] = { + ["char"] = "󰔰", + ["code"] = "f0530", + }, + ["md-transfer_up"] = { + ["char"] = "󰶣", + ["code"] = "f0da3", + }, + ["md-transit_connection"] = { + ["char"] = "󰴼", + ["code"] = "f0d3c", + }, + ["md-transit_connection_horizontal"] = { + ["char"] = "󱕆", + ["code"] = "f1546", + }, + ["md-transit_connection_variant"] = { + ["char"] = "󰴽", + ["code"] = "f0d3d", + }, + ["md-transit_detour"] = { + ["char"] = "󰾋", + ["code"] = "f0f8b", + }, + ["md-transit_skip"] = { + ["char"] = "󱔕", + ["code"] = "f1515", + }, + ["md-transit_transfer"] = { + ["char"] = "󰚮", + ["code"] = "f06ae", + }, + ["md-transition"] = { + ["char"] = "󰤕", + ["code"] = "f0915", + }, + ["md-transition_masked"] = { + ["char"] = "󰤖", + ["code"] = "f0916", + }, + ["md-translate"] = { + ["char"] = "󰗊", + ["code"] = "f05ca", + }, + ["md-translate_off"] = { + ["char"] = "󰸆", + ["code"] = "f0e06", + }, + ["md-transmission_tower"] = { + ["char"] = "󰴾", + ["code"] = "f0d3e", + }, + ["md-transmission_tower_export"] = { + ["char"] = "󱤬", + ["code"] = "f192c", + }, + ["md-transmission_tower_import"] = { + ["char"] = "󱤭", + ["code"] = "f192d", + }, + ["md-transmission_tower_off"] = { + ["char"] = "󱧝", + ["code"] = "f19dd", + }, + ["md-trash_can"] = { + ["char"] = "󰩹", + ["code"] = "f0a79", + }, + ["md-trash_can_outline"] = { + ["char"] = "󰩺", + ["code"] = "f0a7a", + }, + ["md-tray"] = { + ["char"] = "󱊔", + ["code"] = "f1294", + }, + ["md-tray_alert"] = { + ["char"] = "󱊕", + ["code"] = "f1295", + }, + ["md-tray_arrow_down"] = { + ["char"] = "󰄠", + ["code"] = "f0120", + }, + ["md-tray_arrow_up"] = { + ["char"] = "󰄝", + ["code"] = "f011d", + }, + ["md-tray_full"] = { + ["char"] = "󱊖", + ["code"] = "f1296", + }, + ["md-tray_minus"] = { + ["char"] = "󱊗", + ["code"] = "f1297", + }, + ["md-tray_plus"] = { + ["char"] = "󱊘", + ["code"] = "f1298", + }, + ["md-tray_remove"] = { + ["char"] = "󱊙", + ["code"] = "f1299", + }, + ["md-treasure_chest"] = { + ["char"] = "󰜦", + ["code"] = "f0726", + }, + ["md-tree"] = { + ["char"] = "󰔱", + ["code"] = "f0531", + }, + ["md-tree_outline"] = { + ["char"] = "󰹩", + ["code"] = "f0e69", + }, + ["md-trello"] = { + ["char"] = "󰔲", + ["code"] = "f0532", + }, + ["md-trending_down"] = { + ["char"] = "󰔳", + ["code"] = "f0533", + }, + ["md-trending_neutral"] = { + ["char"] = "󰔴", + ["code"] = "f0534", + }, + ["md-trending_up"] = { + ["char"] = "󰔵", + ["code"] = "f0535", + }, + ["md-triangle"] = { + ["char"] = "󰔶", + ["code"] = "f0536", + }, + ["md-triangle_outline"] = { + ["char"] = "󰔷", + ["code"] = "f0537", + }, + ["md-triangle_small_down"] = { + ["char"] = "󱨉", + ["code"] = "f1a09", + }, + ["md-triangle_small_up"] = { + ["char"] = "󱨊", + ["code"] = "f1a0a", + }, + ["md-triangle_wave"] = { + ["char"] = "󱑼", + ["code"] = "f147c", + }, + ["md-triforce"] = { + ["char"] = "󰯙", + ["code"] = "f0bd9", + }, + ["md-trophy"] = { + ["char"] = "󰔸", + ["code"] = "f0538", + }, + ["md-trophy_award"] = { + ["char"] = "󰔹", + ["code"] = "f0539", + }, + ["md-trophy_broken"] = { + ["char"] = "󰶤", + ["code"] = "f0da4", + }, + ["md-trophy_outline"] = { + ["char"] = "󰔺", + ["code"] = "f053a", + }, + ["md-trophy_variant"] = { + ["char"] = "󰔻", + ["code"] = "f053b", + }, + ["md-trophy_variant_outline"] = { + ["char"] = "󰔼", + ["code"] = "f053c", + }, + ["md-truck"] = { + ["char"] = "󰔽", + ["code"] = "f053d", + }, + ["md-truck_alert"] = { + ["char"] = "󱧞", + ["code"] = "f19de", + }, + ["md-truck_alert_outline"] = { + ["char"] = "󱧟", + ["code"] = "f19df", + }, + ["md-truck_cargo_container"] = { + ["char"] = "󱣘", + ["code"] = "f18d8", + }, + ["md-truck_check"] = { + ["char"] = "󰳔", + ["code"] = "f0cd4", + }, + ["md-truck_check_outline"] = { + ["char"] = "󱊚", + ["code"] = "f129a", + }, + ["md-truck_delivery"] = { + ["char"] = "󰔾", + ["code"] = "f053e", + }, + ["md-truck_delivery_outline"] = { + ["char"] = "󱊛", + ["code"] = "f129b", + }, + ["md-truck_fast"] = { + ["char"] = "󰞈", + ["code"] = "f0788", + }, + ["md-truck_fast_outline"] = { + ["char"] = "󱊜", + ["code"] = "f129c", + }, + ["md-truck_flatbed"] = { + ["char"] = "󱢑", + ["code"] = "f1891", + }, + ["md-truck_minus"] = { + ["char"] = "󱦮", + ["code"] = "f19ae", + }, + ["md-truck_minus_outline"] = { + ["char"] = "󱦽", + ["code"] = "f19bd", + }, + ["md-truck_outline"] = { + ["char"] = "󱊝", + ["code"] = "f129d", + }, + ["md-truck_plus"] = { + ["char"] = "󱦭", + ["code"] = "f19ad", + }, + ["md-truck_plus_outline"] = { + ["char"] = "󱦼", + ["code"] = "f19bc", + }, + ["md-truck_remove"] = { + ["char"] = "󱦯", + ["code"] = "f19af", + }, + ["md-truck_remove_outline"] = { + ["char"] = "󱦾", + ["code"] = "f19be", + }, + ["md-truck_snowflake"] = { + ["char"] = "󱦦", + ["code"] = "f19a6", + }, + ["md-truck_trailer"] = { + ["char"] = "󰜧", + ["code"] = "f0727", + }, + ["md-trumpet"] = { + ["char"] = "󱂖", + ["code"] = "f1096", + }, + ["md-tshirt_crew"] = { + ["char"] = "󰩻", + ["code"] = "f0a7b", + }, + ["md-tshirt_crew_outline"] = { + ["char"] = "󰔿", + ["code"] = "f053f", + }, + ["md-tshirt_v"] = { + ["char"] = "󰩼", + ["code"] = "f0a7c", + }, + ["md-tshirt_v_outline"] = { + ["char"] = "󰕀", + ["code"] = "f0540", + }, + ["md-tsunami"] = { + ["char"] = "󱪁", + ["code"] = "f1a81", + }, + ["md-tumble_dryer"] = { + ["char"] = "󰤗", + ["code"] = "f0917", + }, + ["md-tumble_dryer_alert"] = { + ["char"] = "󱆺", + ["code"] = "f11ba", + }, + ["md-tumble_dryer_off"] = { + ["char"] = "󱆻", + ["code"] = "f11bb", + }, + ["md-tune"] = { + ["char"] = "󰘮", + ["code"] = "f062e", + }, + ["md-tune_variant"] = { + ["char"] = "󱕂", + ["code"] = "f1542", + }, + ["md-tune_vertical"] = { + ["char"] = "󰙪", + ["code"] = "f066a", + }, + ["md-tune_vertical_variant"] = { + ["char"] = "󱕃", + ["code"] = "f1543", + }, + ["md-tunnel"] = { + ["char"] = "󱠽", + ["code"] = "f183d", + }, + ["md-tunnel_outline"] = { + ["char"] = "󱠾", + ["code"] = "f183e", + }, + ["md-turbine"] = { + ["char"] = "󱪂", + ["code"] = "f1a82", + }, + ["md-turkey"] = { + ["char"] = "󱜛", + ["code"] = "f171b", + }, + ["md-turnstile"] = { + ["char"] = "󰳕", + ["code"] = "f0cd5", + }, + ["md-turnstile_outline"] = { + ["char"] = "󰳖", + ["code"] = "f0cd6", + }, + ["md-turtle"] = { + ["char"] = "󰳗", + ["code"] = "f0cd7", + }, + ["md-twitch"] = { + ["char"] = "󰕃", + ["code"] = "f0543", + }, + ["md-twitter"] = { + ["char"] = "󰕄", + ["code"] = "f0544", + }, + ["md-two_factor_authentication"] = { + ["char"] = "󰦯", + ["code"] = "f09af", + }, + ["md-typewriter"] = { + ["char"] = "󰼭", + ["code"] = "f0f2d", + }, + ["md-ubisoft"] = { + ["char"] = "󰯚", + ["code"] = "f0bda", + }, + ["md-ubuntu"] = { + ["char"] = "󰕈", + ["code"] = "f0548", + }, + ["md-ufo"] = { + ["char"] = "󱃄", + ["code"] = "f10c4", + }, + ["md-ufo_outline"] = { + ["char"] = "󱃅", + ["code"] = "f10c5", + }, + ["md-ultra_high_definition"] = { + ["char"] = "󰟹", + ["code"] = "f07f9", + }, + ["md-umbraco"] = { + ["char"] = "󰕉", + ["code"] = "f0549", + }, + ["md-umbrella"] = { + ["char"] = "󰕊", + ["code"] = "f054a", + }, + ["md-umbrella_beach"] = { + ["char"] = "󱢊", + ["code"] = "f188a", + }, + ["md-umbrella_beach_outline"] = { + ["char"] = "󱢋", + ["code"] = "f188b", + }, + ["md-umbrella_closed"] = { + ["char"] = "󰦰", + ["code"] = "f09b0", + }, + ["md-umbrella_closed_outline"] = { + ["char"] = "󱏢", + ["code"] = "f13e2", + }, + ["md-umbrella_closed_variant"] = { + ["char"] = "󱏡", + ["code"] = "f13e1", + }, + ["md-umbrella_outline"] = { + ["char"] = "󰕋", + ["code"] = "f054b", + }, + ["md-undo"] = { + ["char"] = "󰕌", + ["code"] = "f054c", + }, + ["md-undo_variant"] = { + ["char"] = "󰕍", + ["code"] = "f054d", + }, + ["md-unfold_less_horizontal"] = { + ["char"] = "󰕎", + ["code"] = "f054e", + }, + ["md-unfold_less_vertical"] = { + ["char"] = "󰝠", + ["code"] = "f0760", + }, + ["md-unfold_more_horizontal"] = { + ["char"] = "󰕏", + ["code"] = "f054f", + }, + ["md-unfold_more_vertical"] = { + ["char"] = "󰝡", + ["code"] = "f0761", + }, + ["md-ungroup"] = { + ["char"] = "󰕐", + ["code"] = "f0550", + }, + ["md-unicode"] = { + ["char"] = "󰻐", + ["code"] = "f0ed0", + }, + ["md-unicorn"] = { + ["char"] = "󱗂", + ["code"] = "f15c2", + }, + ["md-unicorn_variant"] = { + ["char"] = "󱗃", + ["code"] = "f15c3", + }, + ["md-unicycle"] = { + ["char"] = "󱗥", + ["code"] = "f15e5", + }, + ["md-unity"] = { + ["char"] = "󰚯", + ["code"] = "f06af", + }, + ["md-unreal"] = { + ["char"] = "󰦱", + ["code"] = "f09b1", + }, + ["md-update"] = { + ["char"] = "󰚰", + ["code"] = "f06b0", + }, + ["md-upload"] = { + ["char"] = "󰕒", + ["code"] = "f0552", + }, + ["md-upload_lock"] = { + ["char"] = "󱍳", + ["code"] = "f1373", + }, + ["md-upload_lock_outline"] = { + ["char"] = "󱍴", + ["code"] = "f1374", + }, + ["md-upload_multiple"] = { + ["char"] = "󰠽", + ["code"] = "f083d", + }, + ["md-upload_network"] = { + ["char"] = "󰛶", + ["code"] = "f06f6", + }, + ["md-upload_network_outline"] = { + ["char"] = "󰳘", + ["code"] = "f0cd8", + }, + ["md-upload_off"] = { + ["char"] = "󱃆", + ["code"] = "f10c6", + }, + ["md-upload_off_outline"] = { + ["char"] = "󱃇", + ["code"] = "f10c7", + }, + ["md-upload_outline"] = { + ["char"] = "󰸇", + ["code"] = "f0e07", + }, + ["md-usb"] = { + ["char"] = "󰕓", + ["code"] = "f0553", + }, + ["md-usb_flash_drive"] = { + ["char"] = "󱊞", + ["code"] = "f129e", + }, + ["md-usb_flash_drive_outline"] = { + ["char"] = "󱊟", + ["code"] = "f129f", + }, + ["md-usb_port"] = { + ["char"] = "󱇰", + ["code"] = "f11f0", + }, + ["md-vacuum"] = { + ["char"] = "󱦡", + ["code"] = "f19a1", + }, + ["md-vacuum_outline"] = { + ["char"] = "󱦢", + ["code"] = "f19a2", + }, + ["md-valve"] = { + ["char"] = "󱁦", + ["code"] = "f1066", + }, + ["md-valve_closed"] = { + ["char"] = "󱁧", + ["code"] = "f1067", + }, + ["md-valve_open"] = { + ["char"] = "󱁨", + ["code"] = "f1068", + }, + ["md-van_passenger"] = { + ["char"] = "󰟺", + ["code"] = "f07fa", + }, + ["md-van_utility"] = { + ["char"] = "󰟻", + ["code"] = "f07fb", + }, + ["md-vanish"] = { + ["char"] = "󰟼", + ["code"] = "f07fc", + }, + ["md-vanish_quarter"] = { + ["char"] = "󱕔", + ["code"] = "f1554", + }, + ["md-vanity_light"] = { + ["char"] = "󱇡", + ["code"] = "f11e1", + }, + ["md-variable"] = { + ["char"] = "󰫧", + ["code"] = "f0ae7", + }, + ["md-variable_box"] = { + ["char"] = "󱄑", + ["code"] = "f1111", + }, + ["md-vector_arrange_above"] = { + ["char"] = "󰕔", + ["code"] = "f0554", + }, + ["md-vector_arrange_below"] = { + ["char"] = "󰕕", + ["code"] = "f0555", + }, + ["md-vector_bezier"] = { + ["char"] = "󰫨", + ["code"] = "f0ae8", + }, + ["md-vector_circle"] = { + ["char"] = "󰕖", + ["code"] = "f0556", + }, + ["md-vector_circle_variant"] = { + ["char"] = "󰕗", + ["code"] = "f0557", + }, + ["md-vector_combine"] = { + ["char"] = "󰕘", + ["code"] = "f0558", + }, + ["md-vector_curve"] = { + ["char"] = "󰕙", + ["code"] = "f0559", + }, + ["md-vector_difference"] = { + ["char"] = "󰕚", + ["code"] = "f055a", + }, + ["md-vector_difference_ab"] = { + ["char"] = "󰕛", + ["code"] = "f055b", + }, + ["md-vector_difference_ba"] = { + ["char"] = "󰕜", + ["code"] = "f055c", + }, + ["md-vector_ellipse"] = { + ["char"] = "󰢓", + ["code"] = "f0893", + }, + ["md-vector_intersection"] = { + ["char"] = "󰕝", + ["code"] = "f055d", + }, + ["md-vector_line"] = { + ["char"] = "󰕞", + ["code"] = "f055e", + }, + ["md-vector_link"] = { + ["char"] = "󰿨", + ["code"] = "f0fe8", + }, + ["md-vector_point"] = { + ["char"] = "󰕟", + ["code"] = "f055f", + }, + ["md-vector_polygon"] = { + ["char"] = "󰕠", + ["code"] = "f0560", + }, + ["md-vector_polygon_variant"] = { + ["char"] = "󱡖", + ["code"] = "f1856", + }, + ["md-vector_polyline"] = { + ["char"] = "󰕡", + ["code"] = "f0561", + }, + ["md-vector_polyline_edit"] = { + ["char"] = "󱈥", + ["code"] = "f1225", + }, + ["md-vector_polyline_minus"] = { + ["char"] = "󱈦", + ["code"] = "f1226", + }, + ["md-vector_polyline_plus"] = { + ["char"] = "󱈧", + ["code"] = "f1227", + }, + ["md-vector_polyline_remove"] = { + ["char"] = "󱈨", + ["code"] = "f1228", + }, + ["md-vector_radius"] = { + ["char"] = "󰝊", + ["code"] = "f074a", + }, + ["md-vector_rectangle"] = { + ["char"] = "󰗆", + ["code"] = "f05c6", + }, + ["md-vector_selection"] = { + ["char"] = "󰕢", + ["code"] = "f0562", + }, + ["md-vector_square"] = { + ["char"] = "󰀁", + ["code"] = "f0001", + }, + ["md-vector_square_close"] = { + ["char"] = "󱡗", + ["code"] = "f1857", + }, + ["md-vector_square_edit"] = { + ["char"] = "󱣙", + ["code"] = "f18d9", + }, + ["md-vector_square_minus"] = { + ["char"] = "󱣚", + ["code"] = "f18da", + }, + ["md-vector_square_open"] = { + ["char"] = "󱡘", + ["code"] = "f1858", + }, + ["md-vector_square_plus"] = { + ["char"] = "󱣛", + ["code"] = "f18db", + }, + ["md-vector_square_remove"] = { + ["char"] = "󱣜", + ["code"] = "f18dc", + }, + ["md-vector_triangle"] = { + ["char"] = "󰕣", + ["code"] = "f0563", + }, + ["md-vector_union"] = { + ["char"] = "󰕤", + ["code"] = "f0564", + }, + ["md-vhs"] = { + ["char"] = "󰨛", + ["code"] = "f0a1b", + }, + ["md-vibrate"] = { + ["char"] = "󰕦", + ["code"] = "f0566", + }, + ["md-vibrate_off"] = { + ["char"] = "󰳙", + ["code"] = "f0cd9", + }, + ["md-video"] = { + ["char"] = "󰕧", + ["code"] = "f0567", + }, + ["md-video_2d"] = { + ["char"] = "󱨜", + ["code"] = "f1a1c", + }, + ["md-video_3d"] = { + ["char"] = "󰟽", + ["code"] = "f07fd", + }, + ["md-video_3d_off"] = { + ["char"] = "󱏙", + ["code"] = "f13d9", + }, + ["md-video_3d_variant"] = { + ["char"] = "󰻑", + ["code"] = "f0ed1", + }, + ["md-video_4k_box"] = { + ["char"] = "󰠾", + ["code"] = "f083e", + }, + ["md-video_account"] = { + ["char"] = "󰤙", + ["code"] = "f0919", + }, + ["md-video_box"] = { + ["char"] = "󰃽", + ["code"] = "f00fd", + }, + ["md-video_box_off"] = { + ["char"] = "󰃾", + ["code"] = "f00fe", + }, + ["md-video_check"] = { + ["char"] = "󱁩", + ["code"] = "f1069", + }, + ["md-video_check_outline"] = { + ["char"] = "󱁪", + ["code"] = "f106a", + }, + ["md-video_high_definition"] = { + ["char"] = "󱔮", + ["code"] = "f152e", + }, + ["md-video_image"] = { + ["char"] = "󰤚", + ["code"] = "f091a", + }, + ["md-video_input_antenna"] = { + ["char"] = "󰠿", + ["code"] = "f083f", + }, + ["md-video_input_component"] = { + ["char"] = "󰡀", + ["code"] = "f0840", + }, + ["md-video_input_hdmi"] = { + ["char"] = "󰡁", + ["code"] = "f0841", + }, + ["md-video_input_scart"] = { + ["char"] = "󰾌", + ["code"] = "f0f8c", + }, + ["md-video_input_svideo"] = { + ["char"] = "󰡂", + ["code"] = "f0842", + }, + ["md-video_marker"] = { + ["char"] = "󱦩", + ["code"] = "f19a9", + }, + ["md-video_marker_outline"] = { + ["char"] = "󱦪", + ["code"] = "f19aa", + }, + ["md-video_minus"] = { + ["char"] = "󰦲", + ["code"] = "f09b2", + }, + ["md-video_minus_outline"] = { + ["char"] = "󰊺", + ["code"] = "f02ba", + }, + ["md-video_off"] = { + ["char"] = "󰕨", + ["code"] = "f0568", + }, + ["md-video_off_outline"] = { + ["char"] = "󰯛", + ["code"] = "f0bdb", + }, + ["md-video_outline"] = { + ["char"] = "󰯜", + ["code"] = "f0bdc", + }, + ["md-video_plus"] = { + ["char"] = "󰦳", + ["code"] = "f09b3", + }, + ["md-video_plus_outline"] = { + ["char"] = "󰇓", + ["code"] = "f01d3", + }, + ["md-video_stabilization"] = { + ["char"] = "󰤛", + ["code"] = "f091b", + }, + ["md-video_switch"] = { + ["char"] = "󰕩", + ["code"] = "f0569", + }, + ["md-video_switch_outline"] = { + ["char"] = "󰞐", + ["code"] = "f0790", + }, + ["md-video_vintage"] = { + ["char"] = "󰨜", + ["code"] = "f0a1c", + }, + ["md-video_wireless"] = { + ["char"] = "󰻒", + ["code"] = "f0ed2", + }, + ["md-video_wireless_outline"] = { + ["char"] = "󰻓", + ["code"] = "f0ed3", + }, + ["md-view_agenda"] = { + ["char"] = "󰕪", + ["code"] = "f056a", + }, + ["md-view_agenda_outline"] = { + ["char"] = "󱇘", + ["code"] = "f11d8", + }, + ["md-view_array"] = { + ["char"] = "󰕫", + ["code"] = "f056b", + }, + ["md-view_array_outline"] = { + ["char"] = "󱒅", + ["code"] = "f1485", + }, + ["md-view_carousel"] = { + ["char"] = "󰕬", + ["code"] = "f056c", + }, + ["md-view_carousel_outline"] = { + ["char"] = "󱒆", + ["code"] = "f1486", + }, + ["md-view_column"] = { + ["char"] = "󰕭", + ["code"] = "f056d", + }, + ["md-view_column_outline"] = { + ["char"] = "󱒇", + ["code"] = "f1487", + }, + ["md-view_comfy"] = { + ["char"] = "󰹪", + ["code"] = "f0e6a", + }, + ["md-view_comfy_outline"] = { + ["char"] = "󱒈", + ["code"] = "f1488", + }, + ["md-view_compact"] = { + ["char"] = "󰹫", + ["code"] = "f0e6b", + }, + ["md-view_compact_outline"] = { + ["char"] = "󰹬", + ["code"] = "f0e6c", + }, + ["md-view_dashboard"] = { + ["char"] = "󰕮", + ["code"] = "f056e", + }, + ["md-view_dashboard_edit"] = { + ["char"] = "󱥇", + ["code"] = "f1947", + }, + ["md-view_dashboard_edit_outline"] = { + ["char"] = "󱥈", + ["code"] = "f1948", + }, + ["md-view_dashboard_outline"] = { + ["char"] = "󰨝", + ["code"] = "f0a1d", + }, + ["md-view_dashboard_variant"] = { + ["char"] = "󰡃", + ["code"] = "f0843", + }, + ["md-view_dashboard_variant_outline"] = { + ["char"] = "󱒉", + ["code"] = "f1489", + }, + ["md-view_day"] = { + ["char"] = "󰕯", + ["code"] = "f056f", + }, + ["md-view_day_outline"] = { + ["char"] = "󱒊", + ["code"] = "f148a", + }, + ["md-view_gallery"] = { + ["char"] = "󱢈", + ["code"] = "f1888", + }, + ["md-view_gallery_outline"] = { + ["char"] = "󱢉", + ["code"] = "f1889", + }, + ["md-view_grid"] = { + ["char"] = "󰕰", + ["code"] = "f0570", + }, + ["md-view_grid_outline"] = { + ["char"] = "󱇙", + ["code"] = "f11d9", + }, + ["md-view_grid_plus"] = { + ["char"] = "󰾍", + ["code"] = "f0f8d", + }, + ["md-view_grid_plus_outline"] = { + ["char"] = "󱇚", + ["code"] = "f11da", + }, + ["md-view_headline"] = { + ["char"] = "󰕱", + ["code"] = "f0571", + }, + ["md-view_list"] = { + ["char"] = "󰕲", + ["code"] = "f0572", + }, + ["md-view_list_outline"] = { + ["char"] = "󱒋", + ["code"] = "f148b", + }, + ["md-view_module"] = { + ["char"] = "󰕳", + ["code"] = "f0573", + }, + ["md-view_module_outline"] = { + ["char"] = "󱒌", + ["code"] = "f148c", + }, + ["md-view_parallel"] = { + ["char"] = "󰜨", + ["code"] = "f0728", + }, + ["md-view_parallel_outline"] = { + ["char"] = "󱒍", + ["code"] = "f148d", + }, + ["md-view_quilt"] = { + ["char"] = "󰕴", + ["code"] = "f0574", + }, + ["md-view_quilt_outline"] = { + ["char"] = "󱒎", + ["code"] = "f148e", + }, + ["md-view_sequential"] = { + ["char"] = "󰜩", + ["code"] = "f0729", + }, + ["md-view_sequential_outline"] = { + ["char"] = "󱒏", + ["code"] = "f148f", + }, + ["md-view_split_horizontal"] = { + ["char"] = "󰯋", + ["code"] = "f0bcb", + }, + ["md-view_split_vertical"] = { + ["char"] = "󰯌", + ["code"] = "f0bcc", + }, + ["md-view_stream"] = { + ["char"] = "󰕵", + ["code"] = "f0575", + }, + ["md-view_stream_outline"] = { + ["char"] = "󱒐", + ["code"] = "f1490", + }, + ["md-view_week"] = { + ["char"] = "󰕶", + ["code"] = "f0576", + }, + ["md-view_week_outline"] = { + ["char"] = "󱒑", + ["code"] = "f1491", + }, + ["md-vimeo"] = { + ["char"] = "󰕷", + ["code"] = "f0577", + }, + ["md-violin"] = { + ["char"] = "󰘏", + ["code"] = "f060f", + }, + ["md-virtual_reality"] = { + ["char"] = "󰢔", + ["code"] = "f0894", + }, + ["md-virus"] = { + ["char"] = "󱎶", + ["code"] = "f13b6", + }, + ["md-virus_off"] = { + ["char"] = "󱣡", + ["code"] = "f18e1", + }, + ["md-virus_off_outline"] = { + ["char"] = "󱣢", + ["code"] = "f18e2", + }, + ["md-virus_outline"] = { + ["char"] = "󱎷", + ["code"] = "f13b7", + }, + ["md-vlc"] = { + ["char"] = "󰕼", + ["code"] = "f057c", + }, + ["md-voicemail"] = { + ["char"] = "󰕽", + ["code"] = "f057d", + }, + ["md-volcano"] = { + ["char"] = "󱪃", + ["code"] = "f1a83", + }, + ["md-volcano_outline"] = { + ["char"] = "󱪄", + ["code"] = "f1a84", + }, + ["md-volleyball"] = { + ["char"] = "󰦴", + ["code"] = "f09b4", + }, + ["md-volume_high"] = { + ["char"] = "󰕾", + ["code"] = "f057e", + }, + ["md-volume_low"] = { + ["char"] = "󰕿", + ["code"] = "f057f", + }, + ["md-volume_medium"] = { + ["char"] = "󰖀", + ["code"] = "f0580", + }, + ["md-volume_minus"] = { + ["char"] = "󰝞", + ["code"] = "f075e", + }, + ["md-volume_mute"] = { + ["char"] = "󰝟", + ["code"] = "f075f", + }, + ["md-volume_off"] = { + ["char"] = "󰖁", + ["code"] = "f0581", + }, + ["md-volume_plus"] = { + ["char"] = "󰝝", + ["code"] = "f075d", + }, + ["md-volume_source"] = { + ["char"] = "󱄠", + ["code"] = "f1120", + }, + ["md-volume_variant_off"] = { + ["char"] = "󰸈", + ["code"] = "f0e08", + }, + ["md-volume_vibrate"] = { + ["char"] = "󱄡", + ["code"] = "f1121", + }, + ["md-vote"] = { + ["char"] = "󰨟", + ["code"] = "f0a1f", + }, + ["md-vote_outline"] = { + ["char"] = "󰨠", + ["code"] = "f0a20", + }, + ["md-vpn"] = { + ["char"] = "󰖂", + ["code"] = "f0582", + }, + ["md-vuejs"] = { + ["char"] = "󰡄", + ["code"] = "f0844", + }, + ["md-vuetify"] = { + ["char"] = "󰹭", + ["code"] = "f0e6d", + }, + ["md-walk"] = { + ["char"] = "󰖃", + ["code"] = "f0583", + }, + ["md-wall"] = { + ["char"] = "󰟾", + ["code"] = "f07fe", + }, + ["md-wall_fire"] = { + ["char"] = "󱨑", + ["code"] = "f1a11", + }, + ["md-wall_sconce"] = { + ["char"] = "󰤜", + ["code"] = "f091c", + }, + ["md-wall_sconce_flat"] = { + ["char"] = "󰤝", + ["code"] = "f091d", + }, + ["md-wall_sconce_flat_outline"] = { + ["char"] = "󱟉", + ["code"] = "f17c9", + }, + ["md-wall_sconce_flat_variant"] = { + ["char"] = "󰐜", + ["code"] = "f041c", + }, + ["md-wall_sconce_flat_variant_outline"] = { + ["char"] = "󱟊", + ["code"] = "f17ca", + }, + ["md-wall_sconce_outline"] = { + ["char"] = "󱟋", + ["code"] = "f17cb", + }, + ["md-wall_sconce_round"] = { + ["char"] = "󰝈", + ["code"] = "f0748", + }, + ["md-wall_sconce_round_outline"] = { + ["char"] = "󱟌", + ["code"] = "f17cc", + }, + ["md-wall_sconce_round_variant"] = { + ["char"] = "󰤞", + ["code"] = "f091e", + }, + ["md-wall_sconce_round_variant_outline"] = { + ["char"] = "󱟍", + ["code"] = "f17cd", + }, + ["md-wallet"] = { + ["char"] = "󰖄", + ["code"] = "f0584", + }, + ["md-wallet_giftcard"] = { + ["char"] = "󰖅", + ["code"] = "f0585", + }, + ["md-wallet_membership"] = { + ["char"] = "󰖆", + ["code"] = "f0586", + }, + ["md-wallet_outline"] = { + ["char"] = "󰯝", + ["code"] = "f0bdd", + }, + ["md-wallet_plus"] = { + ["char"] = "󰾎", + ["code"] = "f0f8e", + }, + ["md-wallet_plus_outline"] = { + ["char"] = "󰾏", + ["code"] = "f0f8f", + }, + ["md-wallet_travel"] = { + ["char"] = "󰖇", + ["code"] = "f0587", + }, + ["md-wallpaper"] = { + ["char"] = "󰸉", + ["code"] = "f0e09", + }, + ["md-wan"] = { + ["char"] = "󰖈", + ["code"] = "f0588", + }, + ["md-wardrobe"] = { + ["char"] = "󰾐", + ["code"] = "f0f90", + }, + ["md-wardrobe_outline"] = { + ["char"] = "󰾑", + ["code"] = "f0f91", + }, + ["md-warehouse"] = { + ["char"] = "󰾁", + ["code"] = "f0f81", + }, + ["md-washing_machine"] = { + ["char"] = "󰜪", + ["code"] = "f072a", + }, + ["md-washing_machine_alert"] = { + ["char"] = "󱆼", + ["code"] = "f11bc", + }, + ["md-washing_machine_off"] = { + ["char"] = "󱆽", + ["code"] = "f11bd", + }, + ["md-watch"] = { + ["char"] = "󰖉", + ["code"] = "f0589", + }, + ["md-watch_export"] = { + ["char"] = "󰖊", + ["code"] = "f058a", + }, + ["md-watch_export_variant"] = { + ["char"] = "󰢕", + ["code"] = "f0895", + }, + ["md-watch_import"] = { + ["char"] = "󰖋", + ["code"] = "f058b", + }, + ["md-watch_import_variant"] = { + ["char"] = "󰢖", + ["code"] = "f0896", + }, + ["md-watch_variant"] = { + ["char"] = "󰢗", + ["code"] = "f0897", + }, + ["md-watch_vibrate"] = { + ["char"] = "󰚱", + ["code"] = "f06b1", + }, + ["md-watch_vibrate_off"] = { + ["char"] = "󰳚", + ["code"] = "f0cda", + }, + ["md-water"] = { + ["char"] = "󰖌", + ["code"] = "f058c", + }, + ["md-water_alert"] = { + ["char"] = "󱔂", + ["code"] = "f1502", + }, + ["md-water_alert_outline"] = { + ["char"] = "󱔃", + ["code"] = "f1503", + }, + ["md-water_boiler"] = { + ["char"] = "󰾒", + ["code"] = "f0f92", + }, + ["md-water_boiler_alert"] = { + ["char"] = "󱆳", + ["code"] = "f11b3", + }, + ["md-water_boiler_off"] = { + ["char"] = "󱆴", + ["code"] = "f11b4", + }, + ["md-water_check"] = { + ["char"] = "󱔄", + ["code"] = "f1504", + }, + ["md-water_check_outline"] = { + ["char"] = "󱔅", + ["code"] = "f1505", + }, + ["md-water_circle"] = { + ["char"] = "󱠆", + ["code"] = "f1806", + }, + ["md-water_minus"] = { + ["char"] = "󱔆", + ["code"] = "f1506", + }, + ["md-water_minus_outline"] = { + ["char"] = "󱔇", + ["code"] = "f1507", + }, + ["md-water_off"] = { + ["char"] = "󰖍", + ["code"] = "f058d", + }, + ["md-water_off_outline"] = { + ["char"] = "󱔈", + ["code"] = "f1508", + }, + ["md-water_opacity"] = { + ["char"] = "󱡕", + ["code"] = "f1855", + }, + ["md-water_outline"] = { + ["char"] = "󰸊", + ["code"] = "f0e0a", + }, + ["md-water_percent"] = { + ["char"] = "󰖎", + ["code"] = "f058e", + }, + ["md-water_percent_alert"] = { + ["char"] = "󱔉", + ["code"] = "f1509", + }, + ["md-water_plus"] = { + ["char"] = "󱔊", + ["code"] = "f150a", + }, + ["md-water_plus_outline"] = { + ["char"] = "󱔋", + ["code"] = "f150b", + }, + ["md-water_polo"] = { + ["char"] = "󱊠", + ["code"] = "f12a0", + }, + ["md-water_pump"] = { + ["char"] = "󰖏", + ["code"] = "f058f", + }, + ["md-water_pump_off"] = { + ["char"] = "󰾓", + ["code"] = "f0f93", + }, + ["md-water_remove"] = { + ["char"] = "󱔌", + ["code"] = "f150c", + }, + ["md-water_remove_outline"] = { + ["char"] = "󱔍", + ["code"] = "f150d", + }, + ["md-water_sync"] = { + ["char"] = "󱟆", + ["code"] = "f17c6", + }, + ["md-water_thermometer"] = { + ["char"] = "󱪅", + ["code"] = "f1a85", + }, + ["md-water_thermometer_outline"] = { + ["char"] = "󱪆", + ["code"] = "f1a86", + }, + ["md-water_well"] = { + ["char"] = "󱁫", + ["code"] = "f106b", + }, + ["md-water_well_outline"] = { + ["char"] = "󱁬", + ["code"] = "f106c", + }, + ["md-waterfall"] = { + ["char"] = "󱡉", + ["code"] = "f1849", + }, + ["md-watering_can"] = { + ["char"] = "󱒁", + ["code"] = "f1481", + }, + ["md-watering_can_outline"] = { + ["char"] = "󱒂", + ["code"] = "f1482", + }, + ["md-watermark"] = { + ["char"] = "󰘒", + ["code"] = "f0612", + }, + ["md-wave"] = { + ["char"] = "󰼮", + ["code"] = "f0f2e", + }, + ["md-waveform"] = { + ["char"] = "󱑽", + ["code"] = "f147d", + }, + ["md-waves"] = { + ["char"] = "󰞍", + ["code"] = "f078d", + }, + ["md-waves_arrow_left"] = { + ["char"] = "󱡙", + ["code"] = "f1859", + }, + ["md-waves_arrow_right"] = { + ["char"] = "󱡚", + ["code"] = "f185a", + }, + ["md-waves_arrow_up"] = { + ["char"] = "󱡛", + ["code"] = "f185b", + }, + ["md-waze"] = { + ["char"] = "󰯞", + ["code"] = "f0bde", + }, + ["md-weather_cloudy"] = { + ["char"] = "󰖐", + ["code"] = "f0590", + }, + ["md-weather_cloudy_alert"] = { + ["char"] = "󰼯", + ["code"] = "f0f2f", + }, + ["md-weather_cloudy_arrow_right"] = { + ["char"] = "󰹮", + ["code"] = "f0e6e", + }, + ["md-weather_cloudy_clock"] = { + ["char"] = "󱣶", + ["code"] = "f18f6", + }, + ["md-weather_fog"] = { + ["char"] = "󰖑", + ["code"] = "f0591", + }, + ["md-weather_hail"] = { + ["char"] = "󰖒", + ["code"] = "f0592", + }, + ["md-weather_hazy"] = { + ["char"] = "󰼰", + ["code"] = "f0f30", + }, + ["md-weather_hurricane"] = { + ["char"] = "󰢘", + ["code"] = "f0898", + }, + ["md-weather_lightning"] = { + ["char"] = "󰖓", + ["code"] = "f0593", + }, + ["md-weather_lightning_rainy"] = { + ["char"] = "󰙾", + ["code"] = "f067e", + }, + ["md-weather_night"] = { + ["char"] = "󰖔", + ["code"] = "f0594", + }, + ["md-weather_night_partly_cloudy"] = { + ["char"] = "󰼱", + ["code"] = "f0f31", + }, + ["md-weather_partly_cloudy"] = { + ["char"] = "󰖕", + ["code"] = "f0595", + }, + ["md-weather_partly_lightning"] = { + ["char"] = "󰼲", + ["code"] = "f0f32", + }, + ["md-weather_partly_rainy"] = { + ["char"] = "󰼳", + ["code"] = "f0f33", + }, + ["md-weather_partly_snowy"] = { + ["char"] = "󰼴", + ["code"] = "f0f34", + }, + ["md-weather_partly_snowy_rainy"] = { + ["char"] = "󰼵", + ["code"] = "f0f35", + }, + ["md-weather_pouring"] = { + ["char"] = "󰖖", + ["code"] = "f0596", + }, + ["md-weather_rainy"] = { + ["char"] = "󰖗", + ["code"] = "f0597", + }, + ["md-weather_snowy"] = { + ["char"] = "󰖘", + ["code"] = "f0598", + }, + ["md-weather_snowy_heavy"] = { + ["char"] = "󰼶", + ["code"] = "f0f36", + }, + ["md-weather_snowy_rainy"] = { + ["char"] = "󰙿", + ["code"] = "f067f", + }, + ["md-weather_sunny"] = { + ["char"] = "󰖙", + ["code"] = "f0599", + }, + ["md-weather_sunny_alert"] = { + ["char"] = "󰼷", + ["code"] = "f0f37", + }, + ["md-weather_sunny_off"] = { + ["char"] = "󱓤", + ["code"] = "f14e4", + }, + ["md-weather_sunset"] = { + ["char"] = "󰖚", + ["code"] = "f059a", + }, + ["md-weather_sunset_down"] = { + ["char"] = "󰖛", + ["code"] = "f059b", + }, + ["md-weather_sunset_up"] = { + ["char"] = "󰖜", + ["code"] = "f059c", + }, + ["md-weather_tornado"] = { + ["char"] = "󰼸", + ["code"] = "f0f38", + }, + ["md-weather_windy"] = { + ["char"] = "󰖝", + ["code"] = "f059d", + }, + ["md-weather_windy_variant"] = { + ["char"] = "󰖞", + ["code"] = "f059e", + }, + ["md-web"] = { + ["char"] = "󰖟", + ["code"] = "f059f", + }, + ["md-web_box"] = { + ["char"] = "󰾔", + ["code"] = "f0f94", + }, + ["md-web_cancel"] = { + ["char"] = "󱞐", + ["code"] = "f1790", + }, + ["md-web_check"] = { + ["char"] = "󰞉", + ["code"] = "f0789", + }, + ["md-web_clock"] = { + ["char"] = "󱉊", + ["code"] = "f124a", + }, + ["md-web_minus"] = { + ["char"] = "󱂠", + ["code"] = "f10a0", + }, + ["md-web_off"] = { + ["char"] = "󰪎", + ["code"] = "f0a8e", + }, + ["md-web_plus"] = { + ["char"] = "󰀳", + ["code"] = "f0033", + }, + ["md-web_refresh"] = { + ["char"] = "󱞑", + ["code"] = "f1791", + }, + ["md-web_remove"] = { + ["char"] = "󰕑", + ["code"] = "f0551", + }, + ["md-web_sync"] = { + ["char"] = "󱞒", + ["code"] = "f1792", + }, + ["md-webcam"] = { + ["char"] = "󰖠", + ["code"] = "f05a0", + }, + ["md-webcam_off"] = { + ["char"] = "󱜷", + ["code"] = "f1737", + }, + ["md-webhook"] = { + ["char"] = "󰘯", + ["code"] = "f062f", + }, + ["md-webpack"] = { + ["char"] = "󰜫", + ["code"] = "f072b", + }, + ["md-webrtc"] = { + ["char"] = "󱉈", + ["code"] = "f1248", + }, + ["md-wechat"] = { + ["char"] = "󰘑", + ["code"] = "f0611", + }, + ["md-weight"] = { + ["char"] = "󰖡", + ["code"] = "f05a1", + }, + ["md-weight_gram"] = { + ["char"] = "󰴿", + ["code"] = "f0d3f", + }, + ["md-weight_kilogram"] = { + ["char"] = "󰖢", + ["code"] = "f05a2", + }, + ["md-weight_lifter"] = { + ["char"] = "󱅝", + ["code"] = "f115d", + }, + ["md-weight_pound"] = { + ["char"] = "󰦵", + ["code"] = "f09b5", + }, + ["md-whatsapp"] = { + ["char"] = "󰖣", + ["code"] = "f05a3", + }, + ["md-wheel_barrow"] = { + ["char"] = "󱓲", + ["code"] = "f14f2", + }, + ["md-wheelchair"] = { + ["char"] = "󱪇", + ["code"] = "f1a87", + }, + ["md-wheelchair_accessibility"] = { + ["char"] = "󰖤", + ["code"] = "f05a4", + }, + ["md-whistle"] = { + ["char"] = "󰦶", + ["code"] = "f09b6", + }, + ["md-whistle_outline"] = { + ["char"] = "󱊼", + ["code"] = "f12bc", + }, + ["md-white_balance_auto"] = { + ["char"] = "󰖥", + ["code"] = "f05a5", + }, + ["md-white_balance_incandescent"] = { + ["char"] = "󰖦", + ["code"] = "f05a6", + }, + ["md-white_balance_iridescent"] = { + ["char"] = "󰖧", + ["code"] = "f05a7", + }, + ["md-white_balance_sunny"] = { + ["char"] = "󰖨", + ["code"] = "f05a8", + }, + ["md-widgets"] = { + ["char"] = "󰜬", + ["code"] = "f072c", + }, + ["md-widgets_outline"] = { + ["char"] = "󱍕", + ["code"] = "f1355", + }, + ["md-wifi"] = { + ["char"] = "󰖩", + ["code"] = "f05a9", + }, + ["md-wifi_alert"] = { + ["char"] = "󱚵", + ["code"] = "f16b5", + }, + ["md-wifi_arrow_down"] = { + ["char"] = "󱚶", + ["code"] = "f16b6", + }, + ["md-wifi_arrow_left"] = { + ["char"] = "󱚷", + ["code"] = "f16b7", + }, + ["md-wifi_arrow_left_right"] = { + ["char"] = "󱚸", + ["code"] = "f16b8", + }, + ["md-wifi_arrow_right"] = { + ["char"] = "󱚹", + ["code"] = "f16b9", + }, + ["md-wifi_arrow_up"] = { + ["char"] = "󱚺", + ["code"] = "f16ba", + }, + ["md-wifi_arrow_up_down"] = { + ["char"] = "󱚻", + ["code"] = "f16bb", + }, + ["md-wifi_cancel"] = { + ["char"] = "󱚼", + ["code"] = "f16bc", + }, + ["md-wifi_check"] = { + ["char"] = "󱚽", + ["code"] = "f16bd", + }, + ["md-wifi_cog"] = { + ["char"] = "󱚾", + ["code"] = "f16be", + }, + ["md-wifi_lock"] = { + ["char"] = "󱚿", + ["code"] = "f16bf", + }, + ["md-wifi_lock_open"] = { + ["char"] = "󱛀", + ["code"] = "f16c0", + }, + ["md-wifi_marker"] = { + ["char"] = "󱛁", + ["code"] = "f16c1", + }, + ["md-wifi_minus"] = { + ["char"] = "󱛂", + ["code"] = "f16c2", + }, + ["md-wifi_off"] = { + ["char"] = "󰖪", + ["code"] = "f05aa", + }, + ["md-wifi_plus"] = { + ["char"] = "󱛃", + ["code"] = "f16c3", + }, + ["md-wifi_refresh"] = { + ["char"] = "󱛄", + ["code"] = "f16c4", + }, + ["md-wifi_remove"] = { + ["char"] = "󱛅", + ["code"] = "f16c5", + }, + ["md-wifi_settings"] = { + ["char"] = "󱛆", + ["code"] = "f16c6", + }, + ["md-wifi_star"] = { + ["char"] = "󰸋", + ["code"] = "f0e0b", + }, + ["md-wifi_strength_1"] = { + ["char"] = "󰤟", + ["code"] = "f091f", + }, + ["md-wifi_strength_1_alert"] = { + ["char"] = "󰤠", + ["code"] = "f0920", + }, + ["md-wifi_strength_1_lock"] = { + ["char"] = "󰤡", + ["code"] = "f0921", + }, + ["md-wifi_strength_1_lock_open"] = { + ["char"] = "󱛋", + ["code"] = "f16cb", + }, + ["md-wifi_strength_2"] = { + ["char"] = "󰤢", + ["code"] = "f0922", + }, + ["md-wifi_strength_2_alert"] = { + ["char"] = "󰤣", + ["code"] = "f0923", + }, + ["md-wifi_strength_2_lock"] = { + ["char"] = "󰤤", + ["code"] = "f0924", + }, + ["md-wifi_strength_2_lock_open"] = { + ["char"] = "󱛌", + ["code"] = "f16cc", + }, + ["md-wifi_strength_3"] = { + ["char"] = "󰤥", + ["code"] = "f0925", + }, + ["md-wifi_strength_3_alert"] = { + ["char"] = "󰤦", + ["code"] = "f0926", + }, + ["md-wifi_strength_3_lock"] = { + ["char"] = "󰤧", + ["code"] = "f0927", + }, + ["md-wifi_strength_3_lock_open"] = { + ["char"] = "󱛍", + ["code"] = "f16cd", + }, + ["md-wifi_strength_4"] = { + ["char"] = "󰤨", + ["code"] = "f0928", + }, + ["md-wifi_strength_4_alert"] = { + ["char"] = "󰤩", + ["code"] = "f0929", + }, + ["md-wifi_strength_4_lock"] = { + ["char"] = "󰤪", + ["code"] = "f092a", + }, + ["md-wifi_strength_4_lock_open"] = { + ["char"] = "󱛎", + ["code"] = "f16ce", + }, + ["md-wifi_strength_alert_outline"] = { + ["char"] = "󰤫", + ["code"] = "f092b", + }, + ["md-wifi_strength_lock_open_outline"] = { + ["char"] = "󱛏", + ["code"] = "f16cf", + }, + ["md-wifi_strength_lock_outline"] = { + ["char"] = "󰤬", + ["code"] = "f092c", + }, + ["md-wifi_strength_off"] = { + ["char"] = "󰤭", + ["code"] = "f092d", + }, + ["md-wifi_strength_off_outline"] = { + ["char"] = "󰤮", + ["code"] = "f092e", + }, + ["md-wifi_strength_outline"] = { + ["char"] = "󰤯", + ["code"] = "f092f", + }, + ["md-wifi_sync"] = { + ["char"] = "󱛇", + ["code"] = "f16c7", + }, + ["md-wikipedia"] = { + ["char"] = "󰖬", + ["code"] = "f05ac", + }, + ["md-wind_power"] = { + ["char"] = "󱪈", + ["code"] = "f1a88", + }, + ["md-wind_power_outline"] = { + ["char"] = "󱪉", + ["code"] = "f1a89", + }, + ["md-wind_turbine"] = { + ["char"] = "󰶥", + ["code"] = "f0da5", + }, + ["md-wind_turbine_alert"] = { + ["char"] = "󱦫", + ["code"] = "f19ab", + }, + ["md-wind_turbine_check"] = { + ["char"] = "󱦬", + ["code"] = "f19ac", + }, + ["md-window_close"] = { + ["char"] = "󰖭", + ["code"] = "f05ad", + }, + ["md-window_closed"] = { + ["char"] = "󰖮", + ["code"] = "f05ae", + }, + ["md-window_closed_variant"] = { + ["char"] = "󱇛", + ["code"] = "f11db", + }, + ["md-window_maximize"] = { + ["char"] = "󰖯", + ["code"] = "f05af", + }, + ["md-window_minimize"] = { + ["char"] = "󰖰", + ["code"] = "f05b0", + }, + ["md-window_open"] = { + ["char"] = "󰖱", + ["code"] = "f05b1", + }, + ["md-window_open_variant"] = { + ["char"] = "󱇜", + ["code"] = "f11dc", + }, + ["md-window_restore"] = { + ["char"] = "󰖲", + ["code"] = "f05b2", + }, + ["md-window_shutter"] = { + ["char"] = "󱄜", + ["code"] = "f111c", + }, + ["md-window_shutter_alert"] = { + ["char"] = "󱄝", + ["code"] = "f111d", + }, + ["md-window_shutter_cog"] = { + ["char"] = "󱪊", + ["code"] = "f1a8a", + }, + ["md-window_shutter_open"] = { + ["char"] = "󱄞", + ["code"] = "f111e", + }, + ["md-window_shutter_settings"] = { + ["char"] = "󱪋", + ["code"] = "f1a8b", + }, + ["md-windsock"] = { + ["char"] = "󱗺", + ["code"] = "f15fa", + }, + ["md-wiper"] = { + ["char"] = "󰫩", + ["code"] = "f0ae9", + }, + ["md-wiper_wash"] = { + ["char"] = "󰶦", + ["code"] = "f0da6", + }, + ["md-wiper_wash_alert"] = { + ["char"] = "󱣟", + ["code"] = "f18df", + }, + ["md-wizard_hat"] = { + ["char"] = "󱑷", + ["code"] = "f1477", + }, + ["md-wordpress"] = { + ["char"] = "󰖴", + ["code"] = "f05b4", + }, + ["md-wrap"] = { + ["char"] = "󰖶", + ["code"] = "f05b6", + }, + ["md-wrap_disabled"] = { + ["char"] = "󰯟", + ["code"] = "f0bdf", + }, + ["md-wrench"] = { + ["char"] = "󰖷", + ["code"] = "f05b7", + }, + ["md-wrench_clock"] = { + ["char"] = "󱦣", + ["code"] = "f19a3", + }, + ["md-wrench_outline"] = { + ["char"] = "󰯠", + ["code"] = "f0be0", + }, + ["md-xamarin"] = { + ["char"] = "󰡅", + ["code"] = "f0845", + }, + ["md-xml"] = { + ["char"] = "󰗀", + ["code"] = "f05c0", + }, + ["md-xmpp"] = { + ["char"] = "󰟿", + ["code"] = "f07ff", + }, + ["md-yahoo"] = { + ["char"] = "󰭏", + ["code"] = "f0b4f", + }, + ["md-yeast"] = { + ["char"] = "󰗁", + ["code"] = "f05c1", + }, + ["md-yin_yang"] = { + ["char"] = "󰚀", + ["code"] = "f0680", + }, + ["md-yoga"] = { + ["char"] = "󱅼", + ["code"] = "f117c", + }, + ["md-youtube"] = { + ["char"] = "󰗃", + ["code"] = "f05c3", + }, + ["md-youtube_gaming"] = { + ["char"] = "󰡈", + ["code"] = "f0848", + }, + ["md-youtube_studio"] = { + ["char"] = "󰡇", + ["code"] = "f0847", + }, + ["md-youtube_subscription"] = { + ["char"] = "󰵀", + ["code"] = "f0d40", + }, + ["md-youtube_tv"] = { + ["char"] = "󰑈", + ["code"] = "f0448", + }, + ["md-yurt"] = { + ["char"] = "󱔖", + ["code"] = "f1516", + }, + ["md-z_wave"] = { + ["char"] = "󰫪", + ["code"] = "f0aea", + }, + ["md-zend"] = { + ["char"] = "󰫫", + ["code"] = "f0aeb", + }, + ["md-zigbee"] = { + ["char"] = "󰵁", + ["code"] = "f0d41", + }, + ["md-zip_box"] = { + ["char"] = "󰗄", + ["code"] = "f05c4", + }, + ["md-zip_box_outline"] = { + ["char"] = "󰿺", + ["code"] = "f0ffa", + }, + ["md-zip_disk"] = { + ["char"] = "󰨣", + ["code"] = "f0a23", + }, + ["md-zodiac_aquarius"] = { + ["char"] = "󰩽", + ["code"] = "f0a7d", + }, + ["md-zodiac_aries"] = { + ["char"] = "󰩾", + ["code"] = "f0a7e", + }, + ["md-zodiac_cancer"] = { + ["char"] = "󰩿", + ["code"] = "f0a7f", + }, + ["md-zodiac_capricorn"] = { + ["char"] = "󰪀", + ["code"] = "f0a80", + }, + ["md-zodiac_gemini"] = { + ["char"] = "󰪁", + ["code"] = "f0a81", + }, + ["md-zodiac_leo"] = { + ["char"] = "󰪂", + ["code"] = "f0a82", + }, + ["md-zodiac_libra"] = { + ["char"] = "󰪃", + ["code"] = "f0a83", + }, + ["md-zodiac_pisces"] = { + ["char"] = "󰪄", + ["code"] = "f0a84", + }, + ["md-zodiac_sagittarius"] = { + ["char"] = "󰪅", + ["code"] = "f0a85", + }, + ["md-zodiac_scorpio"] = { + ["char"] = "󰪆", + ["code"] = "f0a86", + }, + ["md-zodiac_taurus"] = { + ["char"] = "󰪇", + ["code"] = "f0a87", + }, + ["md-zodiac_virgo"] = { + ["char"] = "󰪈", + ["code"] = "f0a88", + }, + ["oct-accessibility"] = { + ["char"] = "", + ["code"] = "f406", + }, + ["oct-accessibility_inset"] = { + ["char"] = "", + ["code"] = "f40b", + }, + ["oct-alert"] = { + ["char"] = "", + ["code"] = "f421", + }, + ["oct-alert_fill"] = { + ["char"] = "", + ["code"] = "f40c", + }, + ["oct-apps"] = { + ["char"] = "", + ["code"] = "f40e", + }, + ["oct-archive"] = { + ["char"] = "", + ["code"] = "f411", + }, + ["oct-arrow_both"] = { + ["char"] = "", + ["code"] = "f416", + }, + ["oct-arrow_down"] = { + ["char"] = "", + ["code"] = "f433", + }, + ["oct-arrow_down_left"] = { + ["char"] = "", + ["code"] = "f424", + }, + ["oct-arrow_down_right"] = { + ["char"] = "", + ["code"] = "f43e", + }, + ["oct-arrow_left"] = { + ["char"] = "", + ["code"] = "f434", + }, + ["oct-arrow_right"] = { + ["char"] = "", + ["code"] = "f432", + }, + ["oct-arrow_switch"] = { + ["char"] = "", + ["code"] = "f443", + }, + ["oct-arrow_up"] = { + ["char"] = "", + ["code"] = "f431", + }, + ["oct-arrow_up_left"] = { + ["char"] = "", + ["code"] = "f45c", + }, + ["oct-arrow_up_right"] = { + ["char"] = "", + ["code"] = "f46c", + }, + ["oct-beaker"] = { + ["char"] = "", + ["code"] = "f499", + }, + ["oct-bell"] = { + ["char"] = "", + ["code"] = "f49a", + }, + ["oct-bell_fill"] = { + ["char"] = "", + ["code"] = "f476", + }, + ["oct-bell_slash"] = { + ["char"] = "", + ["code"] = "f478", + }, + ["oct-blocked"] = { + ["char"] = "", + ["code"] = "f479", + }, + ["oct-bold"] = { + ["char"] = "", + ["code"] = "f49d", + }, + ["oct-book"] = { + ["char"] = "", + ["code"] = "f405", + }, + ["oct-bookmark"] = { + ["char"] = "", + ["code"] = "f461", + }, + ["oct-bookmark_fill"] = { + ["char"] = "", + ["code"] = "f47a", + }, + ["oct-bookmark_slash"] = { + ["char"] = "", + ["code"] = "f533", + }, + ["oct-bookmark_slash_fill"] = { + ["char"] = "", + ["code"] = "f493", + }, + ["oct-briefcase"] = { + ["char"] = "", + ["code"] = "f491", + }, + ["oct-broadcast"] = { + ["char"] = "", + ["code"] = "f43c", + }, + ["oct-browser"] = { + ["char"] = "", + ["code"] = "f488", + }, + ["oct-bug"] = { + ["char"] = "", + ["code"] = "f46f", + }, + ["oct-cache"] = { + ["char"] = "", + ["code"] = "f49b", + }, + ["oct-calendar"] = { + ["char"] = "", + ["code"] = "f455", + }, + ["oct-check"] = { + ["char"] = "", + ["code"] = "f42e", + }, + ["oct-check_circle"] = { + ["char"] = "", + ["code"] = "f49e", + }, + ["oct-check_circle_fill"] = { + ["char"] = "", + ["code"] = "f4a4", + }, + ["oct-checkbox"] = { + ["char"] = "", + ["code"] = "f4a7", + }, + ["oct-checklist"] = { + ["char"] = "", + ["code"] = "f45e", + }, + ["oct-chevron_down"] = { + ["char"] = "", + ["code"] = "f47c", + }, + ["oct-chevron_left"] = { + ["char"] = "", + ["code"] = "f47d", + }, + ["oct-chevron_right"] = { + ["char"] = "", + ["code"] = "f460", + }, + ["oct-chevron_up"] = { + ["char"] = "", + ["code"] = "f47b", + }, + ["oct-circle"] = { + ["char"] = "", + ["code"] = "f4aa", + }, + ["oct-circle_slash"] = { + ["char"] = "", + ["code"] = "f468", + }, + ["oct-clock"] = { + ["char"] = "", + ["code"] = "f43a", + }, + ["oct-clock_fill"] = { + ["char"] = "", + ["code"] = "f4ab", + }, + ["oct-cloud"] = { + ["char"] = "", + ["code"] = "f4ac", + }, + ["oct-cloud_offline"] = { + ["char"] = "", + ["code"] = "f4ad", + }, + ["oct-code"] = { + ["char"] = "", + ["code"] = "f44f", + }, + ["oct-code_of_conduct"] = { + ["char"] = "", + ["code"] = "f4ae", + }, + ["oct-code_review"] = { + ["char"] = "", + ["code"] = "f4af", + }, + ["oct-code_square"] = { + ["char"] = "", + ["code"] = "f4b0", + }, + ["oct-codescan"] = { + ["char"] = "", + ["code"] = "f4b1", + }, + ["oct-codescan_checkmark"] = { + ["char"] = "", + ["code"] = "f4b2", + }, + ["oct-codespaces"] = { + ["char"] = "", + ["code"] = "f4b3", + }, + ["oct-columns"] = { + ["char"] = "", + ["code"] = "f4b4", + }, + ["oct-command_palette"] = { + ["char"] = "", + ["code"] = "f4b5", + }, + ["oct-comment"] = { + ["char"] = "", + ["code"] = "f41f", + }, + ["oct-comment_discussion"] = { + ["char"] = "", + ["code"] = "f442", + }, + ["oct-commit"] = { + ["char"] = "", + ["code"] = "f4b6", + }, + ["oct-container"] = { + ["char"] = "", + ["code"] = "f4b7", + }, + ["oct-copilot"] = { + ["char"] = "", + ["code"] = "f4b8", + }, + ["oct-copilot_error"] = { + ["char"] = "", + ["code"] = "f4b9", + }, + ["oct-copilot_warning"] = { + ["char"] = "", + ["code"] = "f4ba", + }, + ["oct-copy"] = { + ["char"] = "", + ["code"] = "f4bb", + }, + ["oct-cpu"] = { + ["char"] = "", + ["code"] = "f4bc", + }, + ["oct-credit_card"] = { + ["char"] = "", + ["code"] = "f439", + }, + ["oct-cross_reference"] = { + ["char"] = "", + ["code"] = "f4bd", + }, + ["oct-dash"] = { + ["char"] = "", + ["code"] = "f48b", + }, + ["oct-database"] = { + ["char"] = "", + ["code"] = "f472", + }, + ["oct-dependabot"] = { + ["char"] = "", + ["code"] = "f4be", + }, + ["oct-desktop_download"] = { + ["char"] = "", + ["code"] = "f498", + }, + ["oct-device_camera"] = { + ["char"] = "", + ["code"] = "f446", + }, + ["oct-device_camera_video"] = { + ["char"] = "", + ["code"] = "f447", + }, + ["oct-device_desktop"] = { + ["char"] = "", + ["code"] = "f4a9", + }, + ["oct-device_mobile"] = { + ["char"] = "", + ["code"] = "f42c", + }, + ["oct-diamond"] = { + ["char"] = "", + ["code"] = "f4bf", + }, + ["oct-diff"] = { + ["char"] = "", + ["code"] = "f440", + }, + ["oct-diff_added"] = { + ["char"] = "", + ["code"] = "f457", + }, + ["oct-diff_ignored"] = { + ["char"] = "", + ["code"] = "f474", + }, + ["oct-diff_modified"] = { + ["char"] = "", + ["code"] = "f459", + }, + ["oct-diff_removed"] = { + ["char"] = "", + ["code"] = "f458", + }, + ["oct-diff_renamed"] = { + ["char"] = "", + ["code"] = "f45a", + }, + ["oct-discussion_closed"] = { + ["char"] = "", + ["code"] = "f4c0", + }, + ["oct-discussion_duplicate"] = { + ["char"] = "", + ["code"] = "f4c1", + }, + ["oct-discussion_outdated"] = { + ["char"] = "", + ["code"] = "f4c2", + }, + ["oct-dot"] = { + ["char"] = "", + ["code"] = "f4c3", + }, + ["oct-dot_fill"] = { + ["char"] = "", + ["code"] = "f444", + }, + ["oct-download"] = { + ["char"] = "", + ["code"] = "f409", + }, + ["oct-duplicate"] = { + ["char"] = "", + ["code"] = "f4c4", + }, + ["oct-ellipsis"] = { + ["char"] = "", + ["code"] = "f475", + }, + ["oct-eye"] = { + ["char"] = "", + ["code"] = "f441", + }, + ["oct-eye_closed"] = { + ["char"] = "", + ["code"] = "f4c5", + }, + ["oct-feed_discussion"] = { + ["char"] = "", + ["code"] = "f4c6", + }, + ["oct-feed_forked"] = { + ["char"] = "", + ["code"] = "f4c7", + }, + ["oct-feed_heart"] = { + ["char"] = "", + ["code"] = "f4c8", + }, + ["oct-feed_merged"] = { + ["char"] = "", + ["code"] = "f4c9", + }, + ["oct-feed_person"] = { + ["char"] = "", + ["code"] = "f4ca", + }, + ["oct-feed_repo"] = { + ["char"] = "", + ["code"] = "f4cb", + }, + ["oct-feed_rocket"] = { + ["char"] = "", + ["code"] = "f4cc", + }, + ["oct-feed_star"] = { + ["char"] = "", + ["code"] = "f4cd", + }, + ["oct-feed_tag"] = { + ["char"] = "", + ["code"] = "f4ce", + }, + ["oct-feed_trophy"] = { + ["char"] = "", + ["code"] = "f4cf", + }, + ["oct-file"] = { + ["char"] = "", + ["code"] = "f4a5", + }, + ["oct-file_added"] = { + ["char"] = "", + ["code"] = "f4d0", + }, + ["oct-file_badge"] = { + ["char"] = "", + ["code"] = "f4d1", + }, + ["oct-file_binary"] = { + ["char"] = "", + ["code"] = "f471", + }, + ["oct-file_code"] = { + ["char"] = "", + ["code"] = "f40d", + }, + ["oct-file_diff"] = { + ["char"] = "", + ["code"] = "f4d2", + }, + ["oct-file_directory"] = { + ["char"] = "", + ["code"] = "f413", + }, + ["oct-file_directory_fill"] = { + ["char"] = "", + ["code"] = "f4d3", + }, + ["oct-file_directory_open_fill"] = { + ["char"] = "", + ["code"] = "f4d4", + }, + ["oct-file_media"] = { + ["char"] = "", + ["code"] = "f40f", + }, + ["oct-file_moved"] = { + ["char"] = "", + ["code"] = "f4d5", + }, + ["oct-file_removed"] = { + ["char"] = "", + ["code"] = "f4d6", + }, + ["oct-file_submodule"] = { + ["char"] = "", + ["code"] = "f414", + }, + ["oct-file_symlink_directory"] = { + ["char"] = "", + ["code"] = "f482", + }, + ["oct-file_symlink_file"] = { + ["char"] = "", + ["code"] = "f481", + }, + ["oct-file_zip"] = { + ["char"] = "", + ["code"] = "f410", + }, + ["oct-filter"] = { + ["char"] = "", + ["code"] = "f4d7", + }, + ["oct-fiscal_host"] = { + ["char"] = "", + ["code"] = "f4d8", + }, + ["oct-flame"] = { + ["char"] = "", + ["code"] = "f490", + }, + ["oct-fold"] = { + ["char"] = "", + ["code"] = "f48c", + }, + ["oct-fold_down"] = { + ["char"] = "", + ["code"] = "f4d9", + }, + ["oct-fold_up"] = { + ["char"] = "", + ["code"] = "f4da", + }, + ["oct-gear"] = { + ["char"] = "", + ["code"] = "f423", + }, + ["oct-gift"] = { + ["char"] = "", + ["code"] = "f436", + }, + ["oct-git_branch"] = { + ["char"] = "", + ["code"] = "f418", + }, + ["oct-git_commit"] = { + ["char"] = "", + ["code"] = "f417", + }, + ["oct-git_compare"] = { + ["char"] = "", + ["code"] = "f47f", + }, + ["oct-git_merge"] = { + ["char"] = "", + ["code"] = "f419", + }, + ["oct-git_merge_queue"] = { + ["char"] = "", + ["code"] = "f4db", + }, + ["oct-git_pull_request"] = { + ["char"] = "", + ["code"] = "f407", + }, + ["oct-git_pull_request_closed"] = { + ["char"] = "", + ["code"] = "f4dc", + }, + ["oct-git_pull_request_draft"] = { + ["char"] = "", + ["code"] = "f4dd", + }, + ["oct-globe"] = { + ["char"] = "", + ["code"] = "f484", + }, + ["oct-goal"] = { + ["char"] = "", + ["code"] = "f4de", + }, + ["oct-grabber"] = { + ["char"] = "", + ["code"] = "f4a6", + }, + ["oct-graph"] = { + ["char"] = "", + ["code"] = "f437", + }, + ["oct-hash"] = { + ["char"] = "", + ["code"] = "f4df", + }, + ["oct-heading"] = { + ["char"] = "", + ["code"] = "f4e0", + }, + ["oct-heart"] = { + ["char"] = "♥", + ["code"] = "2665", + }, + ["oct-heart_fill"] = { + ["char"] = "", + ["code"] = "f4e1", + }, + ["oct-history"] = { + ["char"] = "", + ["code"] = "f464", + }, + ["oct-home"] = { + ["char"] = "", + ["code"] = "f46d", + }, + ["oct-home_fill"] = { + ["char"] = "", + ["code"] = "f4e2", + }, + ["oct-horizontal_rule"] = { + ["char"] = "", + ["code"] = "f45b", + }, + ["oct-hourglass"] = { + ["char"] = "", + ["code"] = "f4e3", + }, + ["oct-hubot"] = { + ["char"] = "", + ["code"] = "f477", + }, + ["oct-id_badge"] = { + ["char"] = "", + ["code"] = "f4e4", + }, + ["oct-image"] = { + ["char"] = "", + ["code"] = "f4e5", + }, + ["oct-inbox"] = { + ["char"] = "", + ["code"] = "f48d", + }, + ["oct-infinity"] = { + ["char"] = "", + ["code"] = "f4e6", + }, + ["oct-info"] = { + ["char"] = "", + ["code"] = "f449", + }, + ["oct-issue_closed"] = { + ["char"] = "", + ["code"] = "f41d", + }, + ["oct-issue_draft"] = { + ["char"] = "", + ["code"] = "f4e7", + }, + ["oct-issue_opened"] = { + ["char"] = "", + ["code"] = "f41b", + }, + ["oct-issue_reopened"] = { + ["char"] = "", + ["code"] = "f41c", + }, + ["oct-issue_tracked_by"] = { + ["char"] = "", + ["code"] = "f4e8", + }, + ["oct-issue_tracks"] = { + ["char"] = "", + ["code"] = "f4e9", + }, + ["oct-italic"] = { + ["char"] = "", + ["code"] = "f49f", + }, + ["oct-iterations"] = { + ["char"] = "", + ["code"] = "f4ea", + }, + ["oct-kebab_horizontal"] = { + ["char"] = "", + ["code"] = "f4eb", + }, + ["oct-key"] = { + ["char"] = "", + ["code"] = "f43d", + }, + ["oct-key_asterisk"] = { + ["char"] = "", + ["code"] = "f4ec", + }, + ["oct-law"] = { + ["char"] = "", + ["code"] = "f495", + }, + ["oct-light_bulb"] = { + ["char"] = "", + ["code"] = "f400", + }, + ["oct-link"] = { + ["char"] = "", + ["code"] = "f44c", + }, + ["oct-link_external"] = { + ["char"] = "", + ["code"] = "f465", + }, + ["oct-list_ordered"] = { + ["char"] = "", + ["code"] = "f452", + }, + ["oct-list_unordered"] = { + ["char"] = "", + ["code"] = "f451", + }, + ["oct-location"] = { + ["char"] = "", + ["code"] = "f450", + }, + ["oct-lock"] = { + ["char"] = "", + ["code"] = "f456", + }, + ["oct-log"] = { + ["char"] = "", + ["code"] = "f4ed", + }, + ["oct-logo_gist"] = { + ["char"] = "", + ["code"] = "f480", + }, + ["oct-logo_github"] = { + ["char"] = "", + ["code"] = "f470", + }, + ["oct-mail"] = { + ["char"] = "", + ["code"] = "f42f", + }, + ["oct-mark_github"] = { + ["char"] = "", + ["code"] = "f408", + }, + ["oct-markdown"] = { + ["char"] = "", + ["code"] = "f48a", + }, + ["oct-megaphone"] = { + ["char"] = "", + ["code"] = "f45f", + }, + ["oct-mention"] = { + ["char"] = "", + ["code"] = "f486", + }, + ["oct-meter"] = { + ["char"] = "", + ["code"] = "f463", + }, + ["oct-milestone"] = { + ["char"] = "", + ["code"] = "f45d", + }, + ["oct-mirror"] = { + ["char"] = "", + ["code"] = "f41a", + }, + ["oct-moon"] = { + ["char"] = "", + ["code"] = "f4ee", + }, + ["oct-mortar_board"] = { + ["char"] = "", + ["code"] = "f494", + }, + ["oct-move_to_bottom"] = { + ["char"] = "", + ["code"] = "f4ef", + }, + ["oct-move_to_end"] = { + ["char"] = "", + ["code"] = "f4f0", + }, + ["oct-move_to_start"] = { + ["char"] = "", + ["code"] = "f4f1", + }, + ["oct-move_to_top"] = { + ["char"] = "", + ["code"] = "f4f2", + }, + ["oct-multi_select"] = { + ["char"] = "", + ["code"] = "f4f3", + }, + ["oct-mute"] = { + ["char"] = "", + ["code"] = "f466", + }, + ["oct-no_entry"] = { + ["char"] = "", + ["code"] = "f4f4", + }, + ["oct-north_star"] = { + ["char"] = "", + ["code"] = "f4f5", + }, + ["oct-note"] = { + ["char"] = "", + ["code"] = "f4f6", + }, + ["oct-number"] = { + ["char"] = "", + ["code"] = "f4f7", + }, + ["oct-organization"] = { + ["char"] = "", + ["code"] = "f42b", + }, + ["oct-package"] = { + ["char"] = "", + ["code"] = "f487", + }, + ["oct-package_dependencies"] = { + ["char"] = "", + ["code"] = "f4f8", + }, + ["oct-package_dependents"] = { + ["char"] = "", + ["code"] = "f4f9", + }, + ["oct-paintbrush"] = { + ["char"] = "", + ["code"] = "f48f", + }, + ["oct-paper_airplane"] = { + ["char"] = "", + ["code"] = "f4fa", + }, + ["oct-paperclip"] = { + ["char"] = "", + ["code"] = "f4fb", + }, + ["oct-passkey_fill"] = { + ["char"] = "", + ["code"] = "f4fc", + }, + ["oct-paste"] = { + ["char"] = "", + ["code"] = "f429", + }, + ["oct-pencil"] = { + ["char"] = "", + ["code"] = "f448", + }, + ["oct-people"] = { + ["char"] = "", + ["code"] = "f4fd", + }, + ["oct-person"] = { + ["char"] = "", + ["code"] = "f415", + }, + ["oct-person_add"] = { + ["char"] = "", + ["code"] = "f4fe", + }, + ["oct-person_fill"] = { + ["char"] = "", + ["code"] = "f4ff", + }, + ["oct-pin"] = { + ["char"] = "", + ["code"] = "f435", + }, + ["oct-play"] = { + ["char"] = "", + ["code"] = "f500", + }, + ["oct-plug"] = { + ["char"] = "", + ["code"] = "f492", + }, + ["oct-plus"] = { + ["char"] = "", + ["code"] = "f44d", + }, + ["oct-plus_circle"] = { + ["char"] = "", + ["code"] = "f501", + }, + ["oct-project"] = { + ["char"] = "", + ["code"] = "f502", + }, + ["oct-project_roadmap"] = { + ["char"] = "", + ["code"] = "f503", + }, + ["oct-project_symlink"] = { + ["char"] = "", + ["code"] = "f504", + }, + ["oct-project_template"] = { + ["char"] = "", + ["code"] = "f505", + }, + ["oct-pulse"] = { + ["char"] = "", + ["code"] = "f469", + }, + ["oct-question"] = { + ["char"] = "", + ["code"] = "f420", + }, + ["oct-quote"] = { + ["char"] = "", + ["code"] = "f453", + }, + ["oct-read"] = { + ["char"] = "", + ["code"] = "f430", + }, + ["oct-rel_file_path"] = { + ["char"] = "", + ["code"] = "f506", + }, + ["oct-reply"] = { + ["char"] = "", + ["code"] = "f4a8", + }, + ["oct-repo"] = { + ["char"] = "", + ["code"] = "f401", + }, + ["oct-repo_clone"] = { + ["char"] = "", + ["code"] = "f43f", + }, + ["oct-repo_deleted"] = { + ["char"] = "", + ["code"] = "f507", + }, + ["oct-repo_forked"] = { + ["char"] = "", + ["code"] = "f402", + }, + ["oct-repo_locked"] = { + ["char"] = "", + ["code"] = "f508", + }, + ["oct-repo_pull"] = { + ["char"] = "", + ["code"] = "f404", + }, + ["oct-repo_push"] = { + ["char"] = "", + ["code"] = "f403", + }, + ["oct-repo_template"] = { + ["char"] = "", + ["code"] = "f509", + }, + ["oct-report"] = { + ["char"] = "", + ["code"] = "f50a", + }, + ["oct-rocket"] = { + ["char"] = "", + ["code"] = "f427", + }, + ["oct-rows"] = { + ["char"] = "", + ["code"] = "f50b", + }, + ["oct-rss"] = { + ["char"] = "", + ["code"] = "f428", + }, + ["oct-ruby"] = { + ["char"] = "", + ["code"] = "f43b", + }, + ["oct-screen_full"] = { + ["char"] = "", + ["code"] = "f50c", + }, + ["oct-screen_normal"] = { + ["char"] = "", + ["code"] = "f50d", + }, + ["oct-search"] = { + ["char"] = "", + ["code"] = "f422", + }, + ["oct-server"] = { + ["char"] = "", + ["code"] = "f473", + }, + ["oct-share"] = { + ["char"] = "", + ["code"] = "f50e", + }, + ["oct-share_android"] = { + ["char"] = "", + ["code"] = "f50f", + }, + ["oct-shield"] = { + ["char"] = "", + ["code"] = "f49c", + }, + ["oct-shield_check"] = { + ["char"] = "", + ["code"] = "f510", + }, + ["oct-shield_lock"] = { + ["char"] = "", + ["code"] = "f511", + }, + ["oct-shield_slash"] = { + ["char"] = "", + ["code"] = "f512", + }, + ["oct-shield_x"] = { + ["char"] = "", + ["code"] = "f513", + }, + ["oct-sidebar_collapse"] = { + ["char"] = "", + ["code"] = "f514", + }, + ["oct-sidebar_expand"] = { + ["char"] = "", + ["code"] = "f515", + }, + ["oct-sign_in"] = { + ["char"] = "", + ["code"] = "f42a", + }, + ["oct-sign_out"] = { + ["char"] = "", + ["code"] = "f426", + }, + ["oct-single_select"] = { + ["char"] = "", + ["code"] = "f516", + }, + ["oct-skip"] = { + ["char"] = "", + ["code"] = "f517", + }, + ["oct-skip_fill"] = { + ["char"] = "", + ["code"] = "f518", + }, + ["oct-sliders"] = { + ["char"] = "", + ["code"] = "f462", + }, + ["oct-smiley"] = { + ["char"] = "", + ["code"] = "f4a2", + }, + ["oct-sort_asc"] = { + ["char"] = "", + ["code"] = "f519", + }, + ["oct-sort_desc"] = { + ["char"] = "", + ["code"] = "f51a", + }, + ["oct-sparkle_fill"] = { + ["char"] = "", + ["code"] = "f51b", + }, + ["oct-sponsor_tiers"] = { + ["char"] = "", + ["code"] = "f51c", + }, + ["oct-square"] = { + ["char"] = "", + ["code"] = "f51d", + }, + ["oct-square_fill"] = { + ["char"] = "", + ["code"] = "f445", + }, + ["oct-squirrel"] = { + ["char"] = "", + ["code"] = "f483", + }, + ["oct-stack"] = { + ["char"] = "", + ["code"] = "f51e", + }, + ["oct-star"] = { + ["char"] = "", + ["code"] = "f41e", + }, + ["oct-star_fill"] = { + ["char"] = "", + ["code"] = "f51f", + }, + ["oct-stop"] = { + ["char"] = "", + ["code"] = "f46e", + }, + ["oct-stopwatch"] = { + ["char"] = "", + ["code"] = "f520", + }, + ["oct-strikethrough"] = { + ["char"] = "", + ["code"] = "f521", + }, + ["oct-sun"] = { + ["char"] = "", + ["code"] = "f522", + }, + ["oct-sync"] = { + ["char"] = "", + ["code"] = "f46a", + }, + ["oct-tab"] = { + ["char"] = "", + ["code"] = "f523", + }, + ["oct-tab_external"] = { + ["char"] = "", + ["code"] = "f524", + }, + ["oct-table"] = { + ["char"] = "", + ["code"] = "f525", + }, + ["oct-tag"] = { + ["char"] = "", + ["code"] = "f412", + }, + ["oct-tasklist"] = { + ["char"] = "", + ["code"] = "f4a0", + }, + ["oct-telescope"] = { + ["char"] = "", + ["code"] = "f46b", + }, + ["oct-telescope_fill"] = { + ["char"] = "", + ["code"] = "f526", + }, + ["oct-terminal"] = { + ["char"] = "", + ["code"] = "f489", + }, + ["oct-three_bars"] = { + ["char"] = "", + ["code"] = "f44e", + }, + ["oct-thumbsdown"] = { + ["char"] = "", + ["code"] = "f497", + }, + ["oct-thumbsup"] = { + ["char"] = "", + ["code"] = "f496", + }, + ["oct-tools"] = { + ["char"] = "", + ["code"] = "f425", + }, + ["oct-trash"] = { + ["char"] = "", + ["code"] = "f48e", + }, + ["oct-triangle_down"] = { + ["char"] = "", + ["code"] = "f44b", + }, + ["oct-triangle_left"] = { + ["char"] = "", + ["code"] = "f438", + }, + ["oct-triangle_right"] = { + ["char"] = "", + ["code"] = "f44a", + }, + ["oct-triangle_up"] = { + ["char"] = "", + ["code"] = "f47e", + }, + ["oct-trophy"] = { + ["char"] = "", + ["code"] = "f527", + }, + ["oct-typography"] = { + ["char"] = "", + ["code"] = "f528", + }, + ["oct-unfold"] = { + ["char"] = "", + ["code"] = "f42d", + }, + ["oct-unlink"] = { + ["char"] = "", + ["code"] = "f529", + }, + ["oct-unlock"] = { + ["char"] = "", + ["code"] = "f52a", + }, + ["oct-unmute"] = { + ["char"] = "", + ["code"] = "f485", + }, + ["oct-unread"] = { + ["char"] = "", + ["code"] = "f52b", + }, + ["oct-unverified"] = { + ["char"] = "", + ["code"] = "f4a3", + }, + ["oct-upload"] = { + ["char"] = "", + ["code"] = "f40a", + }, + ["oct-verified"] = { + ["char"] = "", + ["code"] = "f4a1", + }, + ["oct-versions"] = { + ["char"] = "", + ["code"] = "f454", + }, + ["oct-video"] = { + ["char"] = "", + ["code"] = "f52c", + }, + ["oct-webhook"] = { + ["char"] = "", + ["code"] = "f52d", + }, + ["oct-workflow"] = { + ["char"] = "", + ["code"] = "f52e", + }, + ["oct-x"] = { + ["char"] = "", + ["code"] = "f467", + }, + ["oct-x_circle"] = { + ["char"] = "", + ["code"] = "f52f", + }, + ["oct-x_circle_fill"] = { + ["char"] = "", + ["code"] = "f530", + }, + ["oct-zap"] = { + ["char"] = "⚡", + ["code"] = "26a1", + }, + ["oct-zoom_in"] = { + ["char"] = "", + ["code"] = "f531", + }, + ["oct-zoom_out"] = { + ["char"] = "", + ["code"] = "f532", + }, + ["pl-branch"] = { + ["char"] = "", + ["code"] = "e0a0", + }, + ["pl-current_line"] = { + ["char"] = "", + ["code"] = "e0a1", + }, + ["pl-hostname"] = { + ["char"] = "", + ["code"] = "e0a2", + }, + ["pl-left_hard_divider"] = { + ["char"] = "", + ["code"] = "e0b0", + }, + ["pl-left_soft_divider"] = { + ["char"] = "", + ["code"] = "e0b1", + }, + ["pl-line_number"] = { + ["char"] = "", + ["code"] = "e0a1", + }, + ["pl-readonly"] = { + ["char"] = "", + ["code"] = "e0a2", + }, + ["pl-right_hard_divider"] = { + ["char"] = "", + ["code"] = "e0b2", + }, + ["pl-right_soft_divider"] = { + ["char"] = "", + ["code"] = "e0b3", + }, + ["ple-backslash_separator"] = { + ["char"] = "", + ["code"] = "e0b9", + }, + ["ple-backslash_separator_redundant"] = { + ["char"] = "", + ["code"] = "e0bf", + }, + ["ple-column_number"] = { + ["char"] = "", + ["code"] = "e0a3", + }, + ["ple-current_column"] = { + ["char"] = "", + ["code"] = "e0a3", + }, + ["ple-flame_thick"] = { + ["char"] = "", + ["code"] = "e0c0", + }, + ["ple-flame_thick_mirrored"] = { + ["char"] = "", + ["code"] = "e0c2", + }, + ["ple-flame_thin"] = { + ["char"] = "", + ["code"] = "e0c1", + }, + ["ple-flame_thin_mirrored"] = { + ["char"] = "", + ["code"] = "e0c3", + }, + ["ple-forwardslash_separator"] = { + ["char"] = "", + ["code"] = "e0bb", + }, + ["ple-forwardslash_separator_redundant"] = { + ["char"] = "", + ["code"] = "e0bd", + }, + ["ple-honeycomb"] = { + ["char"] = "", + ["code"] = "e0cc", + }, + ["ple-honeycomb_outline"] = { + ["char"] = "", + ["code"] = "e0cd", + }, + ["ple-ice_waveform"] = { + ["char"] = "", + ["code"] = "e0c8", + }, + ["ple-ice_waveform_mirrored"] = { + ["char"] = "", + ["code"] = "e0ca", + }, + ["ple-left_half_circle_thick"] = { + ["char"] = "", + ["code"] = "e0b6", + }, + ["ple-left_half_circle_thin"] = { + ["char"] = "", + ["code"] = "e0b7", + }, + ["ple-lego_block_facing"] = { + ["char"] = "", + ["code"] = "e0d0", + }, + ["ple-lego_block_sideways"] = { + ["char"] = "", + ["code"] = "e0d1", + }, + ["ple-lego_separator"] = { + ["char"] = "", + ["code"] = "e0ce", + }, + ["ple-lego_separator_thin"] = { + ["char"] = "", + ["code"] = "e0cf", + }, + ["ple-lower_left_triangle"] = { + ["char"] = "", + ["code"] = "e0b8", + }, + ["ple-lower_right_triangle"] = { + ["char"] = "", + ["code"] = "e0ba", + }, + ["ple-pixelated_squares_big"] = { + ["char"] = "", + ["code"] = "e0c6", + }, + ["ple-pixelated_squares_big_mirrored"] = { + ["char"] = "", + ["code"] = "e0c7", + }, + ["ple-pixelated_squares_small"] = { + ["char"] = "", + ["code"] = "e0c4", + }, + ["ple-pixelated_squares_small_mirrored"] = { + ["char"] = "", + ["code"] = "e0c5", + }, + ["ple-right_half_circle_thick"] = { + ["char"] = "", + ["code"] = "e0b4", + }, + ["ple-right_half_circle_thin"] = { + ["char"] = "", + ["code"] = "e0b5", + }, + ["ple-trapezoid_top_bottom"] = { + ["char"] = "", + ["code"] = "e0d2", + }, + ["ple-trapezoid_top_bottom_mirrored"] = { + ["char"] = "", + ["code"] = "e0d4", + }, + ["ple-upper_left_triangle"] = { + ["char"] = "", + ["code"] = "e0bc", + }, + ["ple-upper_right_triangle"] = { + ["char"] = "", + ["code"] = "e0be", + }, + ["pom-away"] = { + ["char"] = "", + ["code"] = "e007", + }, + ["pom-clean_code"] = { + ["char"] = "", + ["code"] = "e000", + }, + ["pom-external_interruption"] = { + ["char"] = "", + ["code"] = "e00a", + }, + ["pom-internal_interruption"] = { + ["char"] = "", + ["code"] = "e009", + }, + ["pom-long_pause"] = { + ["char"] = "", + ["code"] = "e006", + }, + ["pom-pair_programming"] = { + ["char"] = "", + ["code"] = "e008", + }, + ["pom-pomodoro_done"] = { + ["char"] = "", + ["code"] = "e001", + }, + ["pom-pomodoro_estimated"] = { + ["char"] = "", + ["code"] = "e002", + }, + ["pom-pomodoro_squashed"] = { + ["char"] = "", + ["code"] = "e004", + }, + ["pom-pomodoro_ticking"] = { + ["char"] = "", + ["code"] = "e003", + }, + ["pom-short_pause"] = { + ["char"] = "", + ["code"] = "e005", + }, + ["seti-apple"] = { + ["char"] = "", + ["code"] = "e635", + }, + ["seti-argdown"] = { + ["char"] = "", + ["code"] = "e636", + }, + ["seti-asm"] = { + ["char"] = "", + ["code"] = "e637", + }, + ["seti-audio"] = { + ["char"] = "", + ["code"] = "e638", + }, + ["seti-babel"] = { + ["char"] = "", + ["code"] = "e639", + }, + ["seti-bazel"] = { + ["char"] = "", + ["code"] = "e63a", + }, + ["seti-bicep"] = { + ["char"] = "", + ["code"] = "e63b", + }, + ["seti-bower"] = { + ["char"] = "", + ["code"] = "e61a", + }, + ["seti-bsl"] = { + ["char"] = "", + ["code"] = "e63c", + }, + ["seti-c"] = { + ["char"] = "", + ["code"] = "e649", + }, + ["seti-c_sharp"] = { + ["char"] = "", + ["code"] = "e648", + }, + ["seti-cake"] = { + ["char"] = "", + ["code"] = "e63e", + }, + ["seti-cake_php"] = { + ["char"] = "", + ["code"] = "e63d", + }, + ["seti-checkbox"] = { + ["char"] = "", + ["code"] = "e63f", + }, + ["seti-checkbox_unchecked"] = { + ["char"] = "", + ["code"] = "e640", + }, + ["seti-cjsx"] = { + ["char"] = "", + ["code"] = "e61b", + }, + ["seti-clock"] = { + ["char"] = "", + ["code"] = "e641", + }, + ["seti-clojure"] = { + ["char"] = "", + ["code"] = "e642", + }, + ["seti-code_climate"] = { + ["char"] = "", + ["code"] = "e643", + }, + ["seti-code_search"] = { + ["char"] = "", + ["code"] = "e644", + }, + ["seti-coffee"] = { + ["char"] = "", + ["code"] = "e61b", + }, + ["seti-coldfusion"] = { + ["char"] = "", + ["code"] = "e645", + }, + ["seti-config"] = { + ["char"] = "", + ["code"] = "e615", + }, + ["seti-cpp"] = { + ["char"] = "", + ["code"] = "e646", + }, + ["seti-crystal"] = { + ["char"] = "", + ["code"] = "e62f", + }, + ["seti-crystal_embedded"] = { + ["char"] = "", + ["code"] = "e647", + }, + ["seti-css"] = { + ["char"] = "", + ["code"] = "e614", + }, + ["seti-csv"] = { + ["char"] = "", + ["code"] = "e64a", + }, + ["seti-cu"] = { + ["char"] = "", + ["code"] = "e64b", + }, + ["seti-d"] = { + ["char"] = "", + ["code"] = "e651", + }, + ["seti-dart"] = { + ["char"] = "", + ["code"] = "e64c", + }, + ["seti-db"] = { + ["char"] = "", + ["code"] = "e64d", + }, + ["seti-default"] = { + ["char"] = "", + ["code"] = "e64e", + }, + ["seti-deprecation_cop"] = { + ["char"] = "", + ["code"] = "e64f", + }, + ["seti-docker"] = { + ["char"] = "", + ["code"] = "e650", + }, + ["seti-editorconfig"] = { + ["char"] = "", + ["code"] = "e652", + }, + ["seti-ejs"] = { + ["char"] = "", + ["code"] = "e618", + }, + ["seti-elixir"] = { + ["char"] = "", + ["code"] = "e62d", + }, + ["seti-elixir_script"] = { + ["char"] = "", + ["code"] = "e653", + }, + ["seti-elm"] = { + ["char"] = "", + ["code"] = "e62c", + }, + ["seti-error"] = { + ["char"] = "", + ["code"] = "e654", + }, + ["seti-eslint"] = { + ["char"] = "", + ["code"] = "e655", + }, + ["seti-ethereum"] = { + ["char"] = "", + ["code"] = "e656", + }, + ["seti-f_sharp"] = { + ["char"] = "", + ["code"] = "e65a", + }, + ["seti-favicon"] = { + ["char"] = "", + ["code"] = "e623", + }, + ["seti-firebase"] = { + ["char"] = "", + ["code"] = "e657", + }, + ["seti-firefox"] = { + ["char"] = "", + ["code"] = "e658", + }, + ["seti-folder"] = { + ["char"] = "", + ["code"] = "e613", + }, + ["seti-font"] = { + ["char"] = "", + ["code"] = "e659", + }, + ["seti-git"] = { + ["char"] = "", + ["code"] = "e65d", + }, + ["seti-git_folder"] = { + ["char"] = "", + ["code"] = "e65d", + }, + ["seti-git_ignore"] = { + ["char"] = "", + ["code"] = "e65d", + }, + ["seti-github"] = { + ["char"] = "", + ["code"] = "e65b", + }, + ["seti-gitlab"] = { + ["char"] = "", + ["code"] = "e65c", + }, + ["seti-go"] = { + ["char"] = "", + ["code"] = "e627", + }, + ["seti-go2"] = { + ["char"] = "", + ["code"] = "e65e", + }, + ["seti-godot"] = { + ["char"] = "", + ["code"] = "e65f", + }, + ["seti-gradle"] = { + ["char"] = "", + ["code"] = "e660", + }, + ["seti-grails"] = { + ["char"] = "", + ["code"] = "e661", + }, + ["seti-graphql"] = { + ["char"] = "", + ["code"] = "e662", + }, + ["seti-grunt"] = { + ["char"] = "", + ["code"] = "e611", + }, + ["seti-gulp"] = { + ["char"] = "", + ["code"] = "e610", + }, + ["seti-hacklang"] = { + ["char"] = "", + ["code"] = "e663", + }, + ["seti-haml"] = { + ["char"] = "", + ["code"] = "e664", + }, + ["seti-happenings"] = { + ["char"] = "", + ["code"] = "e665", + }, + ["seti-haskell"] = { + ["char"] = "", + ["code"] = "e61f", + }, + ["seti-haxe"] = { + ["char"] = "", + ["code"] = "e666", + }, + ["seti-heroku"] = { + ["char"] = "", + ["code"] = "e607", + }, + ["seti-hex"] = { + ["char"] = "", + ["code"] = "e667", + }, + ["seti-home"] = { + ["char"] = "", + ["code"] = "e617", + }, + ["seti-html"] = { + ["char"] = "", + ["code"] = "e60e", + }, + ["seti-ignored"] = { + ["char"] = "", + ["code"] = "e668", + }, + ["seti-illustrator"] = { + ["char"] = "", + ["code"] = "e669", + }, + ["seti-image"] = { + ["char"] = "", + ["code"] = "e60d", + }, + ["seti-info"] = { + ["char"] = "", + ["code"] = "e66a", + }, + ["seti-ionic"] = { + ["char"] = "", + ["code"] = "e66b", + }, + ["seti-jade"] = { + ["char"] = "", + ["code"] = "e66c", + }, + ["seti-java"] = { + ["char"] = "", + ["code"] = "e66d", + }, + ["seti-javascript"] = { + ["char"] = "", + ["code"] = "e60c", + }, + ["seti-jenkins"] = { + ["char"] = "", + ["code"] = "e66e", + }, + ["seti-jinja"] = { + ["char"] = "", + ["code"] = "e66f", + }, + ["seti-json"] = { + ["char"] = "", + ["code"] = "e60b", + }, + ["seti-julia"] = { + ["char"] = "", + ["code"] = "e624", + }, + ["seti-karma"] = { + ["char"] = "", + ["code"] = "e622", + }, + ["seti-kotlin"] = { + ["char"] = "", + ["code"] = "e634", + }, + ["seti-less"] = { + ["char"] = "", + ["code"] = "e60b", + }, + ["seti-license"] = { + ["char"] = "", + ["code"] = "e60a", + }, + ["seti-liquid"] = { + ["char"] = "", + ["code"] = "e670", + }, + ["seti-livescript"] = { + ["char"] = "", + ["code"] = "e671", + }, + ["seti-lock"] = { + ["char"] = "", + ["code"] = "e672", + }, + ["seti-lua"] = { + ["char"] = "", + ["code"] = "e620", + }, + ["seti-makefile"] = { + ["char"] = "", + ["code"] = "e673", + }, + ["seti-markdown"] = { + ["char"] = "", + ["code"] = "e609", + }, + ["seti-maven"] = { + ["char"] = "", + ["code"] = "e674", + }, + ["seti-mdo"] = { + ["char"] = "", + ["code"] = "e675", + }, + ["seti-mustache"] = { + ["char"] = "", + ["code"] = "e60f", + }, + ["seti-new_file"] = { + ["char"] = "", + ["code"] = "e676", + }, + ["seti-nim"] = { + ["char"] = "", + ["code"] = "e677", + }, + ["seti-notebook"] = { + ["char"] = "", + ["code"] = "e678", + }, + ["seti-npm"] = { + ["char"] = "", + ["code"] = "e616", + }, + ["seti-npm_ignored"] = { + ["char"] = "", + ["code"] = "e616", + }, + ["seti-nunjucks"] = { + ["char"] = "", + ["code"] = "e679", + }, + ["seti-ocaml"] = { + ["char"] = "", + ["code"] = "e67a", + }, + ["seti-odata"] = { + ["char"] = "", + ["code"] = "e67b", + }, + ["seti-pddl"] = { + ["char"] = "", + ["code"] = "e67c", + }, + ["seti-pdf"] = { + ["char"] = "", + ["code"] = "e67d", + }, + ["seti-perl"] = { + ["char"] = "", + ["code"] = "e67e", + }, + ["seti-photoshop"] = { + ["char"] = "", + ["code"] = "e67f", + }, + ["seti-php"] = { + ["char"] = "", + ["code"] = "e608", + }, + ["seti-pipeline"] = { + ["char"] = "", + ["code"] = "e680", + }, + ["seti-plan"] = { + ["char"] = "", + ["code"] = "e681", + }, + ["seti-platformio"] = { + ["char"] = "", + ["code"] = "e682", + }, + ["seti-play_arrow"] = { + ["char"] = "", + ["code"] = "e602", + }, + ["seti-powershell"] = { + ["char"] = "", + ["code"] = "e683", + }, + ["seti-prisma"] = { + ["char"] = "", + ["code"] = "e684", + }, + ["seti-project"] = { + ["char"] = "", + ["code"] = "e601", + }, + ["seti-prolog"] = { + ["char"] = "", + ["code"] = "e685", + }, + ["seti-pug"] = { + ["char"] = "", + ["code"] = "e686", + }, + ["seti-puppet"] = { + ["char"] = "", + ["code"] = "e631", + }, + ["seti-purescript"] = { + ["char"] = "", + ["code"] = "e630", + }, + ["seti-python"] = { + ["char"] = "", + ["code"] = "e606", + }, + ["seti-r"] = { + ["char"] = "", + ["code"] = "e68a", + }, + ["seti-rails"] = { + ["char"] = "", + ["code"] = "e604", + }, + ["seti-react"] = { + ["char"] = "", + ["code"] = "e625", + }, + ["seti-reasonml"] = { + ["char"] = "", + ["code"] = "e687", + }, + ["seti-rescript"] = { + ["char"] = "", + ["code"] = "e688", + }, + ["seti-rollup"] = { + ["char"] = "", + ["code"] = "e689", + }, + ["seti-ruby"] = { + ["char"] = "", + ["code"] = "e605", + }, + ["seti-rust"] = { + ["char"] = "", + ["code"] = "e68b", + }, + ["seti-salesforce"] = { + ["char"] = "", + ["code"] = "e68c", + }, + ["seti-sass"] = { + ["char"] = "", + ["code"] = "e603", + }, + ["seti-sbt"] = { + ["char"] = "", + ["code"] = "e68d", + }, + ["seti-scala"] = { + ["char"] = "", + ["code"] = "e68e", + }, + ["seti-search"] = { + ["char"] = "", + ["code"] = "e68f", + }, + ["seti-settings"] = { + ["char"] = "", + ["code"] = "e690", + }, + ["seti-shell"] = { + ["char"] = "", + ["code"] = "e691", + }, + ["seti-slim"] = { + ["char"] = "", + ["code"] = "e692", + }, + ["seti-smarty"] = { + ["char"] = "", + ["code"] = "e693", + }, + ["seti-spring"] = { + ["char"] = "", + ["code"] = "e694", + }, + ["seti-stylelint"] = { + ["char"] = "", + ["code"] = "e695", + }, + ["seti-stylus"] = { + ["char"] = "", + ["code"] = "e600", + }, + ["seti-sublime"] = { + ["char"] = "", + ["code"] = "e696", + }, + ["seti-svelte"] = { + ["char"] = "", + ["code"] = "e697", + }, + ["seti-svg"] = { + ["char"] = "", + ["code"] = "e698", + }, + ["seti-swift"] = { + ["char"] = "", + ["code"] = "e699", + }, + ["seti-terraform"] = { + ["char"] = "", + ["code"] = "e69a", + }, + ["seti-tex"] = { + ["char"] = "", + ["code"] = "e69b", + }, + ["seti-text"] = { + ["char"] = "", + ["code"] = "e612", + }, + ["seti-time_cop"] = { + ["char"] = "", + ["code"] = "e641", + }, + ["seti-todo"] = { + ["char"] = "", + ["code"] = "e69c", + }, + ["seti-tsconfig"] = { + ["char"] = "", + ["code"] = "e69d", + }, + ["seti-twig"] = { + ["char"] = "", + ["code"] = "e61c", + }, + ["seti-typescript"] = { + ["char"] = "", + ["code"] = "e628", + }, + ["seti-vala"] = { + ["char"] = "", + ["code"] = "e69e", + }, + ["seti-video"] = { + ["char"] = "", + ["code"] = "e69f", + }, + ["seti-vue"] = { + ["char"] = "", + ["code"] = "e6a0", + }, + ["seti-wasm"] = { + ["char"] = "", + ["code"] = "e6a1", + }, + ["seti-wat"] = { + ["char"] = "", + ["code"] = "e6a2", + }, + ["seti-webpack"] = { + ["char"] = "", + ["code"] = "e6a3", + }, + ["seti-wgt"] = { + ["char"] = "", + ["code"] = "e6a4", + }, + ["seti-word"] = { + ["char"] = "", + ["code"] = "e6a5", + }, + ["seti-xls"] = { + ["char"] = "", + ["code"] = "e6a6", + }, + ["seti-xml"] = { + ["char"] = "", + ["code"] = "e619", + }, + ["seti-yarn"] = { + ["char"] = "", + ["code"] = "e6a7", + }, + ["seti-yml"] = { + ["char"] = "", + ["code"] = "e6a8", + }, + ["seti-zig"] = { + ["char"] = "", + ["code"] = "e6a9", + }, + ["seti-zip"] = { + ["char"] = "", + ["code"] = "e6aa", + }, + ["weather-alien"] = { + ["char"] = "", + ["code"] = "e36e", + }, + ["weather-aliens"] = { + ["char"] = "", + ["code"] = "e345", + }, + ["weather-barometer"] = { + ["char"] = "", + ["code"] = "e372", + }, + ["weather-celsius"] = { + ["char"] = "", + ["code"] = "e339", + }, + ["weather-cloud"] = { + ["char"] = "", + ["code"] = "e33d", + }, + ["weather-cloud_down"] = { + ["char"] = "", + ["code"] = "e33a", + }, + ["weather-cloud_refresh"] = { + ["char"] = "", + ["code"] = "e33b", + }, + ["weather-cloud_up"] = { + ["char"] = "", + ["code"] = "e33c", + }, + ["weather-cloudy"] = { + ["char"] = "", + ["code"] = "e312", + }, + ["weather-cloudy_gusts"] = { + ["char"] = "", + ["code"] = "e310", + }, + ["weather-cloudy_windy"] = { + ["char"] = "", + ["code"] = "e311", + }, + ["weather-day_cloudy"] = { + ["char"] = "", + ["code"] = "e302", + }, + ["weather-day_cloudy_gusts"] = { + ["char"] = "", + ["code"] = "e300", + }, + ["weather-day_cloudy_high"] = { + ["char"] = "", + ["code"] = "e376", + }, + ["weather-day_cloudy_windy"] = { + ["char"] = "", + ["code"] = "e301", + }, + ["weather-day_fog"] = { + ["char"] = "", + ["code"] = "e303", + }, + ["weather-day_hail"] = { + ["char"] = "", + ["code"] = "e304", + }, + ["weather-day_haze"] = { + ["char"] = "", + ["code"] = "e3ae", + }, + ["weather-day_light_wind"] = { + ["char"] = "", + ["code"] = "e3bc", + }, + ["weather-day_lightning"] = { + ["char"] = "", + ["code"] = "e305", + }, + ["weather-day_rain"] = { + ["char"] = "", + ["code"] = "e308", + }, + ["weather-day_rain_mix"] = { + ["char"] = "", + ["code"] = "e306", + }, + ["weather-day_rain_wind"] = { + ["char"] = "", + ["code"] = "e307", + }, + ["weather-day_showers"] = { + ["char"] = "", + ["code"] = "e309", + }, + ["weather-day_sleet"] = { + ["char"] = "", + ["code"] = "e3aa", + }, + ["weather-day_sleet_storm"] = { + ["char"] = "", + ["code"] = "e362", + }, + ["weather-day_snow"] = { + ["char"] = "", + ["code"] = "e30a", + }, + ["weather-day_snow_thunderstorm"] = { + ["char"] = "", + ["code"] = "e365", + }, + ["weather-day_snow_wind"] = { + ["char"] = "", + ["code"] = "e35f", + }, + ["weather-day_sprinkle"] = { + ["char"] = "", + ["code"] = "e30b", + }, + ["weather-day_storm_showers"] = { + ["char"] = "", + ["code"] = "e30e", + }, + ["weather-day_sunny"] = { + ["char"] = "", + ["code"] = "e30d", + }, + ["weather-day_sunny_overcast"] = { + ["char"] = "", + ["code"] = "e30c", + }, + ["weather-day_thunderstorm"] = { + ["char"] = "", + ["code"] = "e30f", + }, + ["weather-day_windy"] = { + ["char"] = "", + ["code"] = "e37d", + }, + ["weather-degrees"] = { + ["char"] = "", + ["code"] = "e33e", + }, + ["weather-direction_down"] = { + ["char"] = "", + ["code"] = "e340", + }, + ["weather-direction_down_left"] = { + ["char"] = "", + ["code"] = "e33f", + }, + ["weather-direction_down_right"] = { + ["char"] = "", + ["code"] = "e380", + }, + ["weather-direction_left"] = { + ["char"] = "", + ["code"] = "e344", + }, + ["weather-direction_right"] = { + ["char"] = "", + ["code"] = "e349", + }, + ["weather-direction_up"] = { + ["char"] = "", + ["code"] = "e353", + }, + ["weather-direction_up_left"] = { + ["char"] = "", + ["code"] = "e37f", + }, + ["weather-direction_up_right"] = { + ["char"] = "", + ["code"] = "e352", + }, + ["weather-dust"] = { + ["char"] = "", + ["code"] = "e35d", + }, + ["weather-earthquake"] = { + ["char"] = "", + ["code"] = "e3be", + }, + ["weather-fahrenheit"] = { + ["char"] = "", + ["code"] = "e341", + }, + ["weather-fire"] = { + ["char"] = "", + ["code"] = "e3bf", + }, + ["weather-flood"] = { + ["char"] = "", + ["code"] = "e375", + }, + ["weather-fog"] = { + ["char"] = "", + ["code"] = "e313", + }, + ["weather-gale_warning"] = { + ["char"] = "", + ["code"] = "e3c5", + }, + ["weather-hail"] = { + ["char"] = "", + ["code"] = "e314", + }, + ["weather-horizon"] = { + ["char"] = "", + ["code"] = "e343", + }, + ["weather-horizon_alt"] = { + ["char"] = "", + ["code"] = "e342", + }, + ["weather-hot"] = { + ["char"] = "", + ["code"] = "e36b", + }, + ["weather-humidity"] = { + ["char"] = "", + ["code"] = "e373", + }, + ["weather-hurricane"] = { + ["char"] = "", + ["code"] = "e36c", + }, + ["weather-hurricane_warning"] = { + ["char"] = "", + ["code"] = "e3c7", + }, + ["weather-lightning"] = { + ["char"] = "", + ["code"] = "e315", + }, + ["weather-lunar_eclipse"] = { + ["char"] = "", + ["code"] = "e369", + }, + ["weather-meteor"] = { + ["char"] = "", + ["code"] = "e36a", + }, + ["weather-moon_alt_first_quarter"] = { + ["char"] = "", + ["code"] = "e3ce", + }, + ["weather-moon_alt_full"] = { + ["char"] = "", + ["code"] = "e3d5", + }, + ["weather-moon_alt_new"] = { + ["char"] = "", + ["code"] = "e3e3", + }, + ["weather-moon_alt_third_quarter"] = { + ["char"] = "", + ["code"] = "e3dc", + }, + ["weather-moon_alt_waning_crescent_1"] = { + ["char"] = "", + ["code"] = "e3dd", + }, + ["weather-moon_alt_waning_crescent_2"] = { + ["char"] = "", + ["code"] = "e3de", + }, + ["weather-moon_alt_waning_crescent_3"] = { + ["char"] = "", + ["code"] = "e3df", + }, + ["weather-moon_alt_waning_crescent_4"] = { + ["char"] = "", + ["code"] = "e3e0", + }, + ["weather-moon_alt_waning_crescent_5"] = { + ["char"] = "", + ["code"] = "e3e1", + }, + ["weather-moon_alt_waning_crescent_6"] = { + ["char"] = "", + ["code"] = "e3e2", + }, + ["weather-moon_alt_waning_gibbous_1"] = { + ["char"] = "", + ["code"] = "e3d6", + }, + ["weather-moon_alt_waning_gibbous_2"] = { + ["char"] = "", + ["code"] = "e3d7", + }, + ["weather-moon_alt_waning_gibbous_3"] = { + ["char"] = "", + ["code"] = "e3d8", + }, + ["weather-moon_alt_waning_gibbous_4"] = { + ["char"] = "", + ["code"] = "e3d9", + }, + ["weather-moon_alt_waning_gibbous_5"] = { + ["char"] = "", + ["code"] = "e3da", + }, + ["weather-moon_alt_waning_gibbous_6"] = { + ["char"] = "", + ["code"] = "e3db", + }, + ["weather-moon_alt_waxing_crescent_1"] = { + ["char"] = "", + ["code"] = "e3c8", + }, + ["weather-moon_alt_waxing_crescent_2"] = { + ["char"] = "", + ["code"] = "e3c9", + }, + ["weather-moon_alt_waxing_crescent_3"] = { + ["char"] = "", + ["code"] = "e3ca", + }, + ["weather-moon_alt_waxing_crescent_4"] = { + ["char"] = "", + ["code"] = "e3cb", + }, + ["weather-moon_alt_waxing_crescent_5"] = { + ["char"] = "", + ["code"] = "e3cc", + }, + ["weather-moon_alt_waxing_crescent_6"] = { + ["char"] = "", + ["code"] = "e3cd", + }, + ["weather-moon_alt_waxing_gibbous_1"] = { + ["char"] = "", + ["code"] = "e3cf", + }, + ["weather-moon_alt_waxing_gibbous_2"] = { + ["char"] = "", + ["code"] = "e3d0", + }, + ["weather-moon_alt_waxing_gibbous_3"] = { + ["char"] = "", + ["code"] = "e3d1", + }, + ["weather-moon_alt_waxing_gibbous_4"] = { + ["char"] = "", + ["code"] = "e3d2", + }, + ["weather-moon_alt_waxing_gibbous_5"] = { + ["char"] = "", + ["code"] = "e3d3", + }, + ["weather-moon_alt_waxing_gibbous_6"] = { + ["char"] = "", + ["code"] = "e3d4", + }, + ["weather-moon_first_quarter"] = { + ["char"] = "", + ["code"] = "e394", + }, + ["weather-moon_full"] = { + ["char"] = "", + ["code"] = "e39b", + }, + ["weather-moon_new"] = { + ["char"] = "", + ["code"] = "e38d", + }, + ["weather-moon_third_quarter"] = { + ["char"] = "", + ["code"] = "e3a2", + }, + ["weather-moon_waning_crescent_1"] = { + ["char"] = "", + ["code"] = "e3a3", + }, + ["weather-moon_waning_crescent_2"] = { + ["char"] = "", + ["code"] = "e3a4", + }, + ["weather-moon_waning_crescent_3"] = { + ["char"] = "", + ["code"] = "e3a5", + }, + ["weather-moon_waning_crescent_4"] = { + ["char"] = "", + ["code"] = "e3a6", + }, + ["weather-moon_waning_crescent_5"] = { + ["char"] = "", + ["code"] = "e3a7", + }, + ["weather-moon_waning_crescent_6"] = { + ["char"] = "", + ["code"] = "e3a8", + }, + ["weather-moon_waning_gibbous_1"] = { + ["char"] = "", + ["code"] = "e39c", + }, + ["weather-moon_waning_gibbous_2"] = { + ["char"] = "", + ["code"] = "e39d", + }, + ["weather-moon_waning_gibbous_3"] = { + ["char"] = "", + ["code"] = "e39e", + }, + ["weather-moon_waning_gibbous_4"] = { + ["char"] = "", + ["code"] = "e39f", + }, + ["weather-moon_waning_gibbous_5"] = { + ["char"] = "", + ["code"] = "e3a0", + }, + ["weather-moon_waning_gibbous_6"] = { + ["char"] = "", + ["code"] = "e3a1", + }, + ["weather-moon_waxing_crescent_1"] = { + ["char"] = "", + ["code"] = "e38e", + }, + ["weather-moon_waxing_crescent_2"] = { + ["char"] = "", + ["code"] = "e38f", + }, + ["weather-moon_waxing_crescent_3"] = { + ["char"] = "", + ["code"] = "e390", + }, + ["weather-moon_waxing_crescent_4"] = { + ["char"] = "", + ["code"] = "e391", + }, + ["weather-moon_waxing_crescent_5"] = { + ["char"] = "", + ["code"] = "e392", + }, + ["weather-moon_waxing_crescent_6"] = { + ["char"] = "", + ["code"] = "e393", + }, + ["weather-moon_waxing_gibbous_1"] = { + ["char"] = "", + ["code"] = "e395", + }, + ["weather-moon_waxing_gibbous_2"] = { + ["char"] = "", + ["code"] = "e396", + }, + ["weather-moon_waxing_gibbous_3"] = { + ["char"] = "", + ["code"] = "e397", + }, + ["weather-moon_waxing_gibbous_4"] = { + ["char"] = "", + ["code"] = "e398", + }, + ["weather-moon_waxing_gibbous_5"] = { + ["char"] = "", + ["code"] = "e399", + }, + ["weather-moon_waxing_gibbous_6"] = { + ["char"] = "", + ["code"] = "e39a", + }, + ["weather-moonrise"] = { + ["char"] = "", + ["code"] = "e3c1", + }, + ["weather-moonset"] = { + ["char"] = "", + ["code"] = "e3c2", + }, + ["weather-na"] = { + ["char"] = "", + ["code"] = "e374", + }, + ["weather-night_alt_cloudy"] = { + ["char"] = "", + ["code"] = "e37e", + }, + ["weather-night_alt_cloudy_gusts"] = { + ["char"] = "", + ["code"] = "e31f", + }, + ["weather-night_alt_cloudy_high"] = { + ["char"] = "", + ["code"] = "e377", + }, + ["weather-night_alt_cloudy_windy"] = { + ["char"] = "", + ["code"] = "e320", + }, + ["weather-night_alt_hail"] = { + ["char"] = "", + ["code"] = "e321", + }, + ["weather-night_alt_lightning"] = { + ["char"] = "", + ["code"] = "e322", + }, + ["weather-night_alt_partly_cloudy"] = { + ["char"] = "", + ["code"] = "e379", + }, + ["weather-night_alt_rain"] = { + ["char"] = "", + ["code"] = "e325", + }, + ["weather-night_alt_rain_mix"] = { + ["char"] = "", + ["code"] = "e323", + }, + ["weather-night_alt_rain_wind"] = { + ["char"] = "", + ["code"] = "e324", + }, + ["weather-night_alt_showers"] = { + ["char"] = "", + ["code"] = "e326", + }, + ["weather-night_alt_sleet"] = { + ["char"] = "", + ["code"] = "e3ac", + }, + ["weather-night_alt_sleet_storm"] = { + ["char"] = "", + ["code"] = "e364", + }, + ["weather-night_alt_snow"] = { + ["char"] = "", + ["code"] = "e327", + }, + ["weather-night_alt_snow_thunderstorm"] = { + ["char"] = "", + ["code"] = "e367", + }, + ["weather-night_alt_snow_wind"] = { + ["char"] = "", + ["code"] = "e361", + }, + ["weather-night_alt_sprinkle"] = { + ["char"] = "", + ["code"] = "e328", + }, + ["weather-night_alt_storm_showers"] = { + ["char"] = "", + ["code"] = "e329", + }, + ["weather-night_alt_thunderstorm"] = { + ["char"] = "", + ["code"] = "e32a", + }, + ["weather-night_clear"] = { + ["char"] = "", + ["code"] = "e32b", + }, + ["weather-night_cloudy"] = { + ["char"] = "", + ["code"] = "e32e", + }, + ["weather-night_cloudy_gusts"] = { + ["char"] = "", + ["code"] = "e32c", + }, + ["weather-night_cloudy_high"] = { + ["char"] = "", + ["code"] = "e378", + }, + ["weather-night_cloudy_windy"] = { + ["char"] = "", + ["code"] = "e32d", + }, + ["weather-night_fog"] = { + ["char"] = "", + ["code"] = "e346", + }, + ["weather-night_hail"] = { + ["char"] = "", + ["code"] = "e32f", + }, + ["weather-night_lightning"] = { + ["char"] = "", + ["code"] = "e330", + }, + ["weather-night_partly_cloudy"] = { + ["char"] = "", + ["code"] = "e37b", + }, + ["weather-night_rain"] = { + ["char"] = "", + ["code"] = "e333", + }, + ["weather-night_rain_mix"] = { + ["char"] = "", + ["code"] = "e331", + }, + ["weather-night_rain_wind"] = { + ["char"] = "", + ["code"] = "e332", + }, + ["weather-night_showers"] = { + ["char"] = "", + ["code"] = "e334", + }, + ["weather-night_sleet"] = { + ["char"] = "", + ["code"] = "e3ab", + }, + ["weather-night_sleet_storm"] = { + ["char"] = "", + ["code"] = "e363", + }, + ["weather-night_snow"] = { + ["char"] = "", + ["code"] = "e335", + }, + ["weather-night_snow_thunderstorm"] = { + ["char"] = "", + ["code"] = "e366", + }, + ["weather-night_snow_wind"] = { + ["char"] = "", + ["code"] = "e360", + }, + ["weather-night_sprinkle"] = { + ["char"] = "", + ["code"] = "e336", + }, + ["weather-night_storm_showers"] = { + ["char"] = "", + ["code"] = "e337", + }, + ["weather-night_thunderstorm"] = { + ["char"] = "", + ["code"] = "e338", + }, + ["weather-rain"] = { + ["char"] = "", + ["code"] = "e318", + }, + ["weather-rain_mix"] = { + ["char"] = "", + ["code"] = "e316", + }, + ["weather-rain_wind"] = { + ["char"] = "", + ["code"] = "e317", + }, + ["weather-raindrop"] = { + ["char"] = "", + ["code"] = "e371", + }, + ["weather-raindrops"] = { + ["char"] = "", + ["code"] = "e34a", + }, + ["weather-refresh"] = { + ["char"] = "", + ["code"] = "e348", + }, + ["weather-refresh_alt"] = { + ["char"] = "", + ["code"] = "e347", + }, + ["weather-sandstorm"] = { + ["char"] = "", + ["code"] = "e37a", + }, + ["weather-showers"] = { + ["char"] = "", + ["code"] = "e319", + }, + ["weather-sleet"] = { + ["char"] = "", + ["code"] = "e3ad", + }, + ["weather-small_craft_advisory"] = { + ["char"] = "", + ["code"] = "e3c4", + }, + ["weather-smog"] = { + ["char"] = "", + ["code"] = "e36d", + }, + ["weather-smoke"] = { + ["char"] = "", + ["code"] = "e35c", + }, + ["weather-snow"] = { + ["char"] = "", + ["code"] = "e31a", + }, + ["weather-snow_wind"] = { + ["char"] = "", + ["code"] = "e35e", + }, + ["weather-snowflake_cold"] = { + ["char"] = "", + ["code"] = "e36f", + }, + ["weather-solar_eclipse"] = { + ["char"] = "", + ["code"] = "e368", + }, + ["weather-sprinkle"] = { + ["char"] = "", + ["code"] = "e31b", + }, + ["weather-stars"] = { + ["char"] = "", + ["code"] = "e370", + }, + ["weather-storm_showers"] = { + ["char"] = "", + ["code"] = "e31c", + }, + ["weather-storm_warning"] = { + ["char"] = "", + ["code"] = "e3c6", + }, + ["weather-strong_wind"] = { + ["char"] = "", + ["code"] = "e34b", + }, + ["weather-sunrise"] = { + ["char"] = "", + ["code"] = "e34c", + }, + ["weather-sunset"] = { + ["char"] = "", + ["code"] = "e34d", + }, + ["weather-thermometer"] = { + ["char"] = "", + ["code"] = "e350", + }, + ["weather-thermometer_exterior"] = { + ["char"] = "", + ["code"] = "e34e", + }, + ["weather-thermometer_internal"] = { + ["char"] = "", + ["code"] = "e34f", + }, + ["weather-thunderstorm"] = { + ["char"] = "", + ["code"] = "e31d", + }, + ["weather-time_1"] = { + ["char"] = "", + ["code"] = "e382", + }, + ["weather-time_10"] = { + ["char"] = "", + ["code"] = "e38b", + }, + ["weather-time_11"] = { + ["char"] = "", + ["code"] = "e38c", + }, + ["weather-time_12"] = { + ["char"] = "", + ["code"] = "e381", + }, + ["weather-time_2"] = { + ["char"] = "", + ["code"] = "e383", + }, + ["weather-time_3"] = { + ["char"] = "", + ["code"] = "e384", + }, + ["weather-time_4"] = { + ["char"] = "", + ["code"] = "e385", + }, + ["weather-time_5"] = { + ["char"] = "", + ["code"] = "e386", + }, + ["weather-time_6"] = { + ["char"] = "", + ["code"] = "e387", + }, + ["weather-time_7"] = { + ["char"] = "", + ["code"] = "e388", + }, + ["weather-time_8"] = { + ["char"] = "", + ["code"] = "e389", + }, + ["weather-time_9"] = { + ["char"] = "", + ["code"] = "e38a", + }, + ["weather-tornado"] = { + ["char"] = "", + ["code"] = "e351", + }, + ["weather-train"] = { + ["char"] = "", + ["code"] = "e3c3", + }, + ["weather-tsunami"] = { + ["char"] = "", + ["code"] = "e3bd", + }, + ["weather-umbrella"] = { + ["char"] = "", + ["code"] = "e37c", + }, + ["weather-volcano"] = { + ["char"] = "", + ["code"] = "e3c0", + }, + ["weather-wind_beaufort_0"] = { + ["char"] = "", + ["code"] = "e3af", + }, + ["weather-wind_beaufort_1"] = { + ["char"] = "", + ["code"] = "e3b0", + }, + ["weather-wind_beaufort_10"] = { + ["char"] = "", + ["code"] = "e3b9", + }, + ["weather-wind_beaufort_11"] = { + ["char"] = "", + ["code"] = "e3ba", + }, + ["weather-wind_beaufort_12"] = { + ["char"] = "", + ["code"] = "e3bb", + }, + ["weather-wind_beaufort_2"] = { + ["char"] = "", + ["code"] = "e3b1", + }, + ["weather-wind_beaufort_3"] = { + ["char"] = "", + ["code"] = "e3b2", + }, + ["weather-wind_beaufort_4"] = { + ["char"] = "", + ["code"] = "e3b3", + }, + ["weather-wind_beaufort_5"] = { + ["char"] = "", + ["code"] = "e3b4", + }, + ["weather-wind_beaufort_6"] = { + ["char"] = "", + ["code"] = "e3b5", + }, + ["weather-wind_beaufort_7"] = { + ["char"] = "", + ["code"] = "e3b6", + }, + ["weather-wind_beaufort_8"] = { + ["char"] = "", + ["code"] = "e3b7", + }, + ["weather-wind_beaufort_9"] = { + ["char"] = "", + ["code"] = "e3b8", + }, + ["weather-wind_direction"] = { + ["char"] = "", + ["code"] = "e3a9", + }, + ["weather-wind_east"] = { + ["char"] = "", + ["code"] = "e35b", + }, + ["weather-wind_north"] = { + ["char"] = "", + ["code"] = "e35a", + }, + ["weather-wind_north_east"] = { + ["char"] = "", + ["code"] = "e359", + }, + ["weather-wind_north_west"] = { + ["char"] = "", + ["code"] = "e358", + }, + ["weather-wind_south"] = { + ["char"] = "", + ["code"] = "e357", + }, + ["weather-wind_south_east"] = { + ["char"] = "", + ["code"] = "e356", + }, + ["weather-wind_south_west"] = { + ["char"] = "", + ["code"] = "e355", + }, + ["weather-wind_west"] = { + ["char"] = "", + ["code"] = "e354", + }, + ["weather-windy"] = { + ["char"] = "", + ["code"] = "e31e", + }, +} From 2b69c14f5bf2e50930e7ac1c8d8b9ebf904d3467 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 16:29:19 +1100 Subject: [PATCH 4/9] tidy --- .gitignore | 3 --- Makefile | 3 ++- lua/nvim-web-devicons/icons-default-cb0c967.lua | 2 +- lua/nvim-web-devicons/icons-light-cb0c967.lua | 2 +- scripts/gen-check.lua | 3 ++- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index e2f180ac7..df266259a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,3 @@ .lua .luarocks /vim-colortemplate/ -/css-class-migration/glyphs-by-*.lua -/css-class-migration/icons-by-*.lua -/css-class-migration/glyphnames.lua diff --git a/Makefile b/Makefile index f82dc9cce..71c7fd3b6 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,12 @@ VIM_COLORTEMPLATE_VERSION = 2.2.3 all: colors style-check lint +# generate and format lua/nvim-web-devicons/icons-*.lua from src/by-*.lua icons: src/glyphnames.lua lua scripts/gen-icons.lua stylua lua/nvim-web-devicons/icons-*.lua -# TODO remove following migration to css classes +# TODO #192 remove before merge gen-check: colors lua scripts/gen-check.lua diff --git a/lua/nvim-web-devicons/icons-default-cb0c967.lua b/lua/nvim-web-devicons/icons-default-cb0c967.lua index 5bd5e6293..cc73dd36a 100644 --- a/lua/nvim-web-devicons/icons-default-cb0c967.lua +++ b/lua/nvim-web-devicons/icons-default-cb0c967.lua @@ -1,4 +1,4 @@ --- TODO remove following migration to css classes +-- TODO #192 remove before merge local icons_by_filename = { [".babelrc"] = { icon = "", diff --git a/lua/nvim-web-devicons/icons-light-cb0c967.lua b/lua/nvim-web-devicons/icons-light-cb0c967.lua index e16e3e343..4993f119d 100644 --- a/lua/nvim-web-devicons/icons-light-cb0c967.lua +++ b/lua/nvim-web-devicons/icons-light-cb0c967.lua @@ -1,4 +1,4 @@ --- TODO remove following migration to css classes +-- TODO #192 remove before merge local icons_by_filename = { [".babelrc"] = { icon = "", diff --git a/scripts/gen-check.lua b/scripts/gen-check.lua index d82201a54..18261de51 100644 --- a/scripts/gen-check.lua +++ b/scripts/gen-check.lua @@ -1,4 +1,5 @@ ---- one off task to check generated against original +-- TODO #192 remove before merge +-- one off task to check generated against original local inspect = require "inspect" From 4273ed5466ff0b49ab114d38f8f714bd36689cbf Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 16:33:45 +1100 Subject: [PATCH 5/9] add lua to colors job --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9299e9ee..791230449 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,10 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: leafo/gh-actions-lua@v10 + with: + luaVersion: "5.1" + - uses: rhysd/action-setup-vim@v1 with: neovim: true From 9a9629dba05f7e75d9d37929546bcea5db5f5c68 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 16:44:49 +1100 Subject: [PATCH 6/9] add luarocks inspect to colors job --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 791230449..84d8a0ab3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,12 +47,16 @@ jobs: - uses: leafo/gh-actions-lua@v10 with: - luaVersion: "5.1" + luaVersion: "5.4" + + - uses: leafo/gh-actions-luarocks@v4 - uses: rhysd/action-setup-vim@v1 with: neovim: true - name: make colors-check - run: make colors-check + run: | + luarocks install inspect 3.1.3 + make colors-check From c5f57b515663050863af10d7fb5b545d91d82ba2 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 16:52:18 +1100 Subject: [PATCH 7/9] unformat icons lua --- CONTRIBUTING.md | 2 + Makefile | 3 +- lua/nvim-web-devicons/icons-default.lua | 756 ++++++++++++------------ lua/nvim-web-devicons/icons-light.lua | 756 ++++++++++++------------ 4 files changed, 759 insertions(+), 758 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0cfc71092..e34443be8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,5 @@ +# TODO #192 update following CI configuration + # Contributing to `nvim-web-devicons` Thank you for your contribution! diff --git a/Makefile b/Makefile index 71c7fd3b6..0c9cef867 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,9 @@ VIM_COLORTEMPLATE_VERSION = 2.2.3 all: colors style-check lint -# generate and format lua/nvim-web-devicons/icons-*.lua from src/by-*.lua +# generate lua/nvim-web-devicons/icons-*.lua from src/by-*.lua icons: src/glyphnames.lua lua scripts/gen-icons.lua - stylua lua/nvim-web-devicons/icons-*.lua # TODO #192 remove before merge gen-check: colors diff --git a/lua/nvim-web-devicons/icons-default.lua b/lua/nvim-web-devicons/icons-default.lua index 51ed0c9e4..aebe5c9a8 100644 --- a/lua/nvim-web-devicons/icons-default.lua +++ b/lua/nvim-web-devicons/icons-default.lua @@ -6,477 +6,477 @@ M.icons_by_filename = { color = "#cbcb41", cterm_color = "185", icon = "", - name = "Babelrc", + name = "Babelrc" }, [".bash_profile"] = { class = "seti-config", color = "#89e051", cterm_color = "113", icon = "", - name = "BashProfile", + name = "BashProfile" }, [".bashrc"] = { class = "seti-config", color = "#89e051", cterm_color = "113", icon = "", - name = "Bashrc", + name = "Bashrc" }, [".dockerignore"] = { class = "md-docker", color = "#458ee6", cterm_color = "68", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, [".ds_store"] = { class = "seti-config", color = "#41535b", cterm_color = "239", icon = "", - name = "DsStore", + name = "DsStore" }, [".editorconfig"] = { class = "seti-editorconfig", color = "#fff2f2", cterm_color = "255", icon = "", - name = "EditorConfig", + name = "EditorConfig" }, [".env"] = { class = "oct-sliders", color = "#faf743", cterm_color = "227", icon = "", - name = "Env", + name = "Env" }, [".eslintignore"] = { class = "seti-eslint", color = "#4b32c3", cterm_color = "56", icon = "", - name = "EslintIgnore", + name = "EslintIgnore" }, [".eslintrc"] = { class = "seti-eslint", color = "#4b32c3", cterm_color = "56", icon = "", - name = "Eslintrc", + name = "Eslintrc" }, [".gitattributes"] = { class = "dev-git", color = "#41535b", cterm_color = "239", icon = "", - name = "GitAttributes", + name = "GitAttributes" }, [".gitconfig"] = { class = "seti-config", color = "#41535b", cterm_color = "239", icon = "", - name = "GitConfig", + name = "GitConfig" }, [".gitignore"] = { class = "dev-git", color = "#41535b", cterm_color = "239", icon = "", - name = "GitIgnore", + name = "GitIgnore" }, [".gitlab-ci.yml"] = { class = "fa-gitlab", color = "#e24329", cterm_color = "196", icon = "", - name = "GitlabCI", + name = "GitlabCI" }, [".gitmodules"] = { class = "dev-git", color = "#41535b", cterm_color = "239", icon = "", - name = "GitModules", + name = "GitModules" }, [".gvimrc"] = { class = "custom-vim", color = "#019833", cterm_color = "28", icon = "", - name = "Gvimrc", + name = "Gvimrc" }, [".luaurc"] = { class = "seti-config", color = "#00a2ff", cterm_color = "75", icon = "", - name = "Luaurc", + name = "Luaurc" }, [".npmignore"] = { class = "dev-npm", color = "#E8274B", cterm_color = "197", icon = "", - name = "NPMIgnore", + name = "NPMIgnore" }, [".npmrc"] = { class = "dev-npm", color = "#E8274B", cterm_color = "197", icon = "", - name = "NPMrc", + name = "NPMrc" }, [".prettierrc"] = { class = "custom-prettier", color = "#4285F4", cterm_color = "33", icon = "", - name = "PrettierConfig", + name = "PrettierConfig" }, [".settings.json"] = { class = "dev-visualstudio", color = "#854CC7", cterm_color = "98", icon = "", - name = "SettingsJson", + name = "SettingsJson" }, [".vimrc"] = { class = "custom-vim", color = "#019833", cterm_color = "28", icon = "", - name = "Vimrc", + name = "Vimrc" }, [".zprofile"] = { class = "seti-config", color = "#89e051", cterm_color = "113", icon = "", - name = "Zshprofile", + name = "Zshprofile" }, [".zshenv"] = { class = "seti-config", color = "#89e051", cterm_color = "113", icon = "", - name = "Zshenv", + name = "Zshenv" }, [".zshrc"] = { class = "seti-config", color = "#89e051", cterm_color = "113", icon = "", - name = "Zshrc", + name = "Zshrc" }, R = { class = "md-language_r", color = "#2266ba", cterm_color = "25", icon = "󰟔", - name = "R", + name = "R" }, _gvimrc = { class = "custom-vim", color = "#019833", cterm_color = "28", icon = "", - name = "Gvimrc", + name = "Gvimrc" }, _vimrc = { class = "custom-vim", color = "#019833", cterm_color = "28", icon = "", - name = "Vimrc", + name = "Vimrc" }, avif = { class = "seti-image", color = "#a074c4", cterm_color = "140", icon = "", - name = "Avif", + name = "Avif" }, brewfile = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Brewfile", + name = "Brewfile" }, build = { class = "seti-bazel", color = "#89e051", cterm_color = "113", icon = "", - name = "BazelBuild", + name = "BazelBuild" }, ["build.zig.zon"] = { class = "seti-zig", color = "#f69a1b", cterm_color = "172", icon = "", - name = "ZigObjectNotation", + name = "ZigObjectNotation" }, checkhealth = { class = "md-stethoscope", color = "#75B4FB", cterm_color = "75", icon = "󰓙", - name = "Checkhealth", + name = "Checkhealth" }, ["cmakelists.txt"] = { class = "seti-config", color = "#6d8086", cterm_color = "66", icon = "", - name = "CMakeLists", + name = "CMakeLists" }, commit_editmsg = { class = "dev-git", color = "#41535b", cterm_color = "239", icon = "", - name = "GitCommit", + name = "GitCommit" }, ["compose.yaml"] = { class = "md-docker", color = "#458ee6", cterm_color = "68", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, ["compose.yml"] = { class = "md-docker", color = "#458ee6", cterm_color = "68", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, containerfile = { class = "md-docker", color = "#458ee6", cterm_color = "68", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, copying = { class = "seti-license", color = "#cbcb41", cterm_color = "185", icon = "", - name = "License", + name = "License" }, ["copying.lesser"] = { class = "seti-license", color = "#cbcb41", cterm_color = "185", icon = "", - name = "License", + name = "License" }, ["docker-compose.yaml"] = { class = "md-docker", color = "#458ee6", cterm_color = "68", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, ["docker-compose.yml"] = { class = "md-docker", color = "#458ee6", cterm_color = "68", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, dockerfile = { class = "md-docker", color = "#458ee6", cterm_color = "68", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, ["favicon.ico"] = { class = "seti-favicon", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Favicon", + name = "Favicon" }, ["gemfile$"] = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Gemfile", + name = "Gemfile" }, gnumakefile = { class = "dev-gnu", color = "#6d8086", cterm_color = "66", icon = "", - name = "Makefile", + name = "Makefile" }, groovy = { class = "dev-groovy", color = "#4a687c", cterm_color = "24", icon = "", - name = "Groovy", + name = "Groovy" }, gruntfile = { class = "seti-grunt", color = "#e37933", cterm_color = "166", icon = "", - name = "Gruntfile", + name = "Gruntfile" }, gulpfile = { class = "seti-gulp", color = "#cc3e44", cterm_color = "167", icon = "", - name = "Gulpfile", + name = "Gulpfile" }, license = { class = "seti-license", color = "#d0bf41", cterm_color = "185", icon = "", - name = "License", + name = "License" }, makefile = { class = "dev-gnu", color = "#6d8086", cterm_color = "66", icon = "", - name = "Makefile", + name = "Makefile" }, ["mix.lock"] = { class = "seti-elixir", color = "#a074c4", cterm_color = "140", icon = "", - name = "MixLock", + name = "MixLock" }, node_modules = { class = "dev-nodejs_small", color = "#E8274B", cterm_color = "197", icon = "", - name = "NodeModules", + name = "NodeModules" }, ["package-lock.json"] = { class = "dev-npm", color = "#7a0d21", cterm_color = "52", icon = "", - name = "PackageLockJson", + name = "PackageLockJson" }, ["package.json"] = { class = "dev-npm", color = "#e8274b", cterm_color = "197", icon = "", - name = "PackageJson", + name = "PackageJson" }, procfile = { class = "seti-heroku", color = "#a074c4", cterm_color = "140", icon = "", - name = "Procfile", + name = "Procfile" }, ["py.typed"] = { class = "seti-python", color = "#ffbc03", cterm_color = "214", icon = "", - name = "Py.typed", + name = "Py.typed" }, r = { class = "md-language_r", color = "#2266ba", cterm_color = "25", icon = "󰟔", - name = "R", + name = "R" }, rakefile = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Rakefile", + name = "Rakefile" }, rmd = { class = "seti-markdown", color = "#519aba", cterm_color = "74", icon = "", - name = "Rmd", + name = "Rmd" }, ["svelte.config.js"] = { class = "seti-svelte", color = "#ff3e00", cterm_color = "196", icon = "", - name = "SvelteConfig", + name = "SvelteConfig" }, ["tailwind.config.js"] = { class = "md-tailwind", color = "#20c2e3", cterm_color = "45", icon = "󱏿", - name = "TailwindConfig", + name = "TailwindConfig" }, ["tailwind.config.mjs"] = { class = "md-tailwind", color = "#20c2e3", cterm_color = "45", icon = "󱏿", - name = "TailwindConfig", + name = "TailwindConfig" }, ["tailwind.config.ts"] = { class = "md-tailwind", color = "#20c2e3", cterm_color = "45", icon = "󱏿", - name = "TailwindConfig", + name = "TailwindConfig" }, ["tsconfig.json"] = { class = "seti-tsconfig", color = "#519aba", cterm_color = "74", icon = "", - name = "TSConfig", + name = "TSConfig" }, unlicense = { class = "seti-license", color = "#d0bf41", cterm_color = "185", icon = "", - name = "License", + name = "License" }, ["vagrantfile$"] = { class = "fa-linode", color = "#1563FF", cterm_color = "27", icon = "", - name = "Vagrantfile", + name = "Vagrantfile" }, webpack = { class = "md-webpack", color = "#519aba", cterm_color = "74", icon = "󰜫", - name = "Webpack", + name = "Webpack" }, workspace = { class = "seti-bazel", color = "#89e051", cterm_color = "113", icon = "", - name = "BazelWorkspace", - }, + name = "BazelWorkspace" + } } M.icons_by_file_extension = { @@ -485,1884 +485,1884 @@ M.icons_by_file_extension = { color = "#458ee6", cterm_color = "68", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, R = { class = "md-language_r", color = "#2266ba", cterm_color = "25", icon = "󰟔", - name = "R", + name = "R" }, aac = { class = "fa-music", color = "#66D8EF", cterm_color = "45", icon = "", - name = "Aac", + name = "Aac" }, ai = { class = "dev-illustrator", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Ai", + name = "Ai" }, app = { class = "cod-file_binary", color = "#9F0500", cterm_color = "124", icon = "", - name = "App", + name = "App" }, applescript = { class = "fa-apple", color = "#6d8085", cterm_color = "66", icon = "", - name = "AppleScript", + name = "AppleScript" }, awk = { class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", icon = "", - name = "Awk", + name = "Awk" }, azcli = { class = "cod-azure_devops", color = "#0078d4", cterm_color = "32", icon = "", - name = "AzureCli", + name = "AzureCli" }, bak = { class = "md-backup_restore", color = "#6d8086", cterm_color = "66", icon = "󰁯", - name = "Backup", + name = "Backup" }, bash = { class = "dev-terminal", color = "#89e051", cterm_color = "113", icon = "", - name = "Bash", + name = "Bash" }, bat = { class = "seti-config", color = "#C1F12E", cterm_color = "191", icon = "", - name = "Bat", + name = "Bat" }, bazel = { class = "seti-bazel", color = "#89e051", cterm_color = "113", icon = "", - name = "Bazel", + name = "Bazel" }, bib = { class = "md-bookshelf", color = "#cbcb41", cterm_color = "185", icon = "󱉟", - name = "BibTeX", + name = "BibTeX" }, bmp = { class = "seti-image", color = "#a074c4", cterm_color = "140", icon = "", - name = "Bmp", + name = "Bmp" }, bzl = { class = "seti-bazel", color = "#89e051", cterm_color = "113", icon = "", - name = "Bzl", + name = "Bzl" }, c = { class = "custom-c", color = "#599eff", cterm_color = "111", icon = "", - name = "C", + name = "C" }, ["c++"] = { class = "custom-cpp", color = "#f34b7d", cterm_color = "204", icon = "", - name = "CPlusPlus", + name = "CPlusPlus" }, cbl = { class = "seti-config", color = "#005ca5", cterm_color = "25", icon = "", - name = "Cobol", + name = "Cobol" }, cc = { class = "custom-cpp", color = "#f34b7d", cterm_color = "204", icon = "", - name = "CPlusPlus", + name = "CPlusPlus" }, ccm = { class = "custom-cpp", color = "#f34b7d", cterm_color = "204", icon = "", - name = "CPlusPlusModule", + name = "CPlusPlusModule" }, cfg = { class = "dev-code_badge", color = "#ECECEC", cterm_color = "255", icon = "", - name = "Configuration", + name = "Configuration" }, cjs = { class = "md-language_javascript", color = "#F1F134", cterm_color = "227", icon = "󰌞", - name = "Cjs", + name = "Cjs" }, clj = { class = "dev-clojure", color = "#8dc149", cterm_color = "113", icon = "", - name = "Clojure", + name = "Clojure" }, cljc = { class = "dev-clojure", color = "#8dc149", cterm_color = "113", icon = "", - name = "ClojureC", + name = "ClojureC" }, cljd = { class = "dev-clojure_alt", color = "#519aba", cterm_color = "74", icon = "", - name = "ClojureDart", + name = "ClojureDart" }, cljs = { class = "dev-clojure_alt", color = "#519aba", cterm_color = "74", icon = "", - name = "ClojureJS", + name = "ClojureJS" }, cmake = { class = "seti-config", color = "#6d8086", cterm_color = "66", icon = "", - name = "CMake", + name = "CMake" }, cob = { class = "seti-config", color = "#005ca5", cterm_color = "25", icon = "", - name = "Cobol", + name = "Cobol" }, cobol = { class = "seti-config", color = "#005ca5", cterm_color = "25", icon = "", - name = "Cobol", + name = "Cobol" }, coffee = { class = "seti-coffee", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Coffee", + name = "Coffee" }, conf = { class = "seti-config", color = "#6d8086", cterm_color = "66", icon = "", - name = "Conf", + name = "Conf" }, ["config.ru"] = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "ConfigRu", + name = "ConfigRu" }, cp = { class = "custom-cpp", color = "#519aba", cterm_color = "74", icon = "", - name = "Cp", + name = "Cp" }, cpp = { class = "custom-cpp", color = "#519aba", cterm_color = "74", icon = "", - name = "Cpp", + name = "Cpp" }, cppm = { class = "custom-cpp", color = "#519aba", cterm_color = "74", icon = "", - name = "Cppm", + name = "Cppm" }, cpy = { class = "seti-config", color = "#005ca5", cterm_color = "25", icon = "", - name = "Cobol", + name = "Cobol" }, cr = { class = "seti-crystal", color = "#c8c8c8", cterm_color = "251", icon = "", - name = "Crystal", + name = "Crystal" }, cs = { class = "md-language_csharp", color = "#596706", cterm_color = "58", icon = "󰌛", - name = "Cs", + name = "Cs" }, csh = { class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", icon = "", - name = "Csh", + name = "Csh" }, cshtml = { class = "md-razor_double_edge", color = "#512bd4", cterm_color = "56", icon = "󱦗", - name = "RazorPage", + name = "RazorPage" }, cson = { class = "seti-json", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Cson", + name = "Cson" }, csproj = { class = "md-dot_net", color = "#512bd4", cterm_color = "56", icon = "󰪮", - name = "CSharpProject", + name = "CSharpProject" }, css = { class = "dev-css3", color = "#42a5f5", cterm_color = "75", icon = "", - name = "Css", + name = "Css" }, csv = { class = "seti-csv", color = "#89e051", cterm_color = "113", icon = "", - name = "Csv", + name = "Csv" }, cts = { class = "seti-typescript", color = "#519aba", cterm_color = "74", icon = "", - name = "Cts", + name = "Cts" }, cu = { class = "seti-cu", color = "#89e051", cterm_color = "113", icon = "", - name = "cuda", + name = "cuda" }, cuh = { class = "seti-cu", color = "#a074c4", cterm_color = "140", icon = "", - name = "cudah", + name = "cudah" }, cxx = { class = "custom-cpp", color = "#519aba", cterm_color = "74", icon = "", - name = "Cxx", + name = "Cxx" }, cxxm = { class = "custom-cpp", color = "#519aba", cterm_color = "74", icon = "", - name = "Cxxm", + name = "Cxxm" }, d = { class = "dev-dlang", color = "#427819", cterm_color = "28", icon = "", - name = "D", + name = "D" }, dart = { class = "dev-dart", color = "#03589C", cterm_color = "25", icon = "", - name = "Dart", + name = "Dart" }, db = { class = "dev-database", color = "#dad8d8", cterm_color = "188", icon = "", - name = "Db", + name = "Db" }, desktop = { class = "fa-desktop", color = "#563d7c", cterm_color = "54", icon = "", - name = "DesktopEntry", + name = "DesktopEntry" }, diff = { class = "dev-git_compare", color = "#41535b", cterm_color = "239", icon = "", - name = "Diff", + name = "Diff" }, doc = { class = "md-file_word", color = "#185abd", cterm_color = "26", icon = "󰈬", - name = "Doc", + name = "Doc" }, docx = { class = "md-file_word", color = "#185abd", cterm_color = "26", icon = "󰈬", - name = "Docx", + name = "Docx" }, drl = { class = "fae-brain", color = "#ffafaf", cterm_color = "217", icon = "", - name = "Drools", + name = "Drools" }, dropbox = { class = "dev-dropbox", color = "#0061FE", cterm_color = "27", icon = "", - name = "Dropbox", + name = "Dropbox" }, dump = { class = "dev-database", color = "#dad8d8", cterm_color = "188", icon = "", - name = "Dump", + name = "Dump" }, edn = { class = "dev-clojure_alt", color = "#519aba", cterm_color = "74", icon = "", - name = "Edn", + name = "Edn" }, eex = { class = "seti-elixir", color = "#a074c4", cterm_color = "140", icon = "", - name = "Eex", + name = "Eex" }, ejs = { class = "seti-html", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Ejs", + name = "Ejs" }, elf = { class = "cod-file_binary", color = "#9F0500", cterm_color = "124", icon = "", - name = "Elf", + name = "Elf" }, elm = { class = "seti-elm", color = "#519aba", cterm_color = "74", icon = "", - name = "Elm", + name = "Elm" }, eot = { class = "fa-font", color = "#ECECEC", cterm_color = "255", icon = "", - name = "EmbeddedOpenTypeFont", + name = "EmbeddedOpenTypeFont" }, epp = { class = "seti-puppet", color = "#FFA61A", cterm_color = "214", icon = "", - name = "Epp", + name = "Epp" }, erb = { class = "seti-html", color = "#701516", cterm_color = "52", icon = "", - name = "Erb", + name = "Erb" }, erl = { class = "dev-erlang", color = "#B83998", cterm_color = "163", icon = "", - name = "Erl", + name = "Erl" }, ex = { class = "seti-elixir", color = "#a074c4", cterm_color = "140", icon = "", - name = "Ex", + name = "Ex" }, exe = { class = "cod-file_binary", color = "#9F0500", cterm_color = "124", icon = "", - name = "Exe", + name = "Exe" }, exs = { class = "seti-elixir", color = "#a074c4", cterm_color = "140", icon = "", - name = "Exs", + name = "Exs" }, ["f#"] = { class = "dev-fsharp", color = "#519aba", cterm_color = "74", icon = "", - name = "Fsharp", + name = "Fsharp" }, f90 = { class = "md-language_fortran", color = "#734f96", cterm_color = "97", icon = "󱈚", - name = "Fortran", + name = "Fortran" }, fish = { class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", icon = "", - name = "Fish", + name = "Fish" }, flac = { class = "fa-music", color = "#66D8EF", cterm_color = "45", icon = "", - name = "Flac", + name = "Flac" }, fnl = { class = "custom-fennel", color = "#fff3d7", cterm_color = "230", icon = "", - name = "Fennel", + name = "Fennel" }, fs = { class = "dev-fsharp", color = "#519aba", cterm_color = "74", icon = "", - name = "Fs", + name = "Fs" }, fsi = { class = "dev-fsharp", color = "#519aba", cterm_color = "74", icon = "", - name = "Fsi", + name = "Fsi" }, fsscript = { class = "dev-fsharp", color = "#519aba", cterm_color = "74", icon = "", - name = "Fsscript", + name = "Fsscript" }, fsx = { class = "dev-fsharp", color = "#519aba", cterm_color = "74", icon = "", - name = "Fsx", + name = "Fsx" }, gd = { class = "seti-config", color = "#6d8086", cterm_color = "66", icon = "", - name = "GDScript", + name = "GDScript" }, gemspec = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Gemspec", + name = "Gemspec" }, gif = { class = "seti-image", color = "#a074c4", cterm_color = "140", icon = "", - name = "Gif", + name = "Gif" }, git = { class = "dev-git", color = "#F14C28", cterm_color = "196", icon = "", - name = "GitLogo", + name = "GitLogo" }, glb = { class = "fa-cube", color = "#FFB13B", cterm_color = "214", icon = "", - name = "BinaryGLTF", + name = "BinaryGLTF" }, gnumakefile = { class = "dev-gnu", color = "#6d8086", cterm_color = "66", icon = "", - name = "Makefile", + name = "Makefile" }, go = { class = "seti-go", color = "#519aba", cterm_color = "74", icon = "", - name = "Go", + name = "Go" }, godot = { class = "dev-code_badge", color = "#6d8086", cterm_color = "66", icon = "", - name = "GodotProject", + name = "GodotProject" }, gql = { class = "fa-connectdevelop", color = "#e535ab", cterm_color = "199", icon = "", - name = "GraphQL", + name = "GraphQL" }, graphql = { class = "fa-connectdevelop", color = "#e535ab", cterm_color = "199", icon = "", - name = "GraphQL", + name = "GraphQL" }, h = { class = "fa-h_square", color = "#a074c4", cterm_color = "140", icon = "", - name = "H", + name = "H" }, haml = { class = "seti-html", color = "#eaeae1", cterm_color = "255", icon = "", - name = "Haml", + name = "Haml" }, hbs = { class = "seti-mustache", color = "#f0772b", cterm_color = "202", icon = "", - name = "Hbs", + name = "Hbs" }, heex = { class = "seti-elixir", color = "#a074c4", cterm_color = "140", icon = "", - name = "Heex", + name = "Heex" }, hh = { class = "fa-h_square", color = "#a074c4", cterm_color = "140", icon = "", - name = "Hh", + name = "Hh" }, hpp = { class = "fa-h_square", color = "#a074c4", cterm_color = "140", icon = "", - name = "Hpp", + name = "Hpp" }, hrl = { class = "dev-erlang", color = "#B83998", cterm_color = "163", icon = "", - name = "Hrl", + name = "Hrl" }, hs = { class = "seti-haskell", color = "#a074c4", cterm_color = "140", icon = "", - name = "Hs", + name = "Hs" }, htm = { class = "seti-html", color = "#e34c26", cterm_color = "196", icon = "", - name = "Htm", + name = "Htm" }, html = { class = "dev-html5", color = "#e44d26", cterm_color = "196", icon = "", - name = "Html", + name = "Html" }, huff = { class = "md-chess_knight", color = "#4242c7", cterm_color = "56", icon = "󰡘", - name = "Huff", + name = "Huff" }, hurl = { class = "fa-exchange", color = "#ff0288", cterm_color = "198", icon = "", - name = "Hurl", + name = "Hurl" }, hx = { class = "seti-haxe", color = "#ea8220", cterm_color = "208", icon = "", - name = "Haxe", + name = "Haxe" }, hxx = { class = "fa-h_square", color = "#a074c4", cterm_color = "140", icon = "", - name = "Hxx", + name = "Hxx" }, ico = { class = "seti-image", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Ico", + name = "Ico" }, import = { class = "fa-paperclip", color = "#ECECEC", cterm_color = "255", icon = "", - name = "ImportConfiguration", + name = "ImportConfiguration" }, ini = { class = "seti-config", color = "#6d8086", cterm_color = "66", icon = "", - name = "Ini", + name = "Ini" }, ino = { class = "linux-arduino", color = "#56b6c2", cterm_color = "73", icon = "", - name = "arduino", + name = "arduino" }, ipynb = { class = "seti-python", color = "#51a0cf", cterm_color = "74", icon = "", - name = "Notebook", + name = "Notebook" }, ixx = { class = "custom-cpp", color = "#519aba", cterm_color = "74", icon = "", - name = "Ixx", + name = "Ixx" }, java = { class = "dev-java", color = "#cc3e44", cterm_color = "167", icon = "", - name = "Java", + name = "Java" }, jl = { class = "seti-julia", color = "#a270ba", cterm_color = "133", icon = "", - name = "Jl", + name = "Jl" }, jpeg = { class = "seti-image", color = "#a074c4", cterm_color = "140", icon = "", - name = "Jpeg", + name = "Jpeg" }, jpg = { class = "seti-image", color = "#a074c4", cterm_color = "140", icon = "", - name = "Jpg", + name = "Jpg" }, js = { class = "md-language_javascript", color = "#F1F134", cterm_color = "227", icon = "󰌞", - name = "Js", + name = "Js" }, json = { class = "seti-json", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Json", + name = "Json" }, json5 = { class = "seti-json", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Json5", + name = "Json5" }, jsonc = { class = "seti-json", color = "#cbcb41", cterm_color = "185", icon = "", - name = "Jsonc", + name = "Jsonc" }, jsx = { class = "seti-react", color = "#20c2e3", cterm_color = "45", icon = "", - name = "Jsx", + name = "Jsx" }, jxl = { class = "seti-image", color = "#a074c4", cterm_color = "140", icon = "", - name = "JpegXl", + name = "JpegXl" }, ksh = { class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", icon = "", - name = "Ksh", + name = "Ksh" }, kt = { class = "seti-kotlin", color = "#7F52FF", cterm_color = "99", icon = "", - name = "Kotlin", + name = "Kotlin" }, kts = { class = "seti-kotlin", color = "#7F52FF", cterm_color = "99", icon = "", - name = "KotlinScript", + name = "KotlinScript" }, leex = { class = "seti-elixir", color = "#a074c4", cterm_color = "140", icon = "", - name = "Leex", + name = "Leex" }, less = { class = "seti-css", color = "#563d7c", cterm_color = "54", icon = "", - name = "Less", + name = "Less" }, lhs = { class = "seti-haskell", color = "#a074c4", cterm_color = "140", icon = "", - name = "Lhs", + name = "Lhs" }, license = { class = "seti-license", color = "#cbcb41", cterm_color = "185", icon = "", - name = "License", + name = "License" }, liquid = { class = "seti-liquid", color = "#95BF47", cterm_color = "106", icon = "", - name = "Liquid", + name = "Liquid" }, lock = { class = "fa-unlock_alt", color = "#bbbbbb", cterm_color = "250", icon = "", - name = "Lock", + name = "Lock" }, log = { class = "md-library", color = "#dddddd", cterm_color = "253", icon = "󰌱", - name = "Log", + name = "Log" }, lua = { class = "seti-lua", color = "#51a0cf", cterm_color = "74", icon = "", - name = "Lua", + name = "Lua" }, luau = { class = "seti-lua", color = "#00a2ff", cterm_color = "75", icon = "", - name = "Luau", + name = "Luau" }, m4a = { class = "fa-music", color = "#66D8EF", cterm_color = "45", icon = "", - name = "M4A", + name = "M4A" }, m4v = { class = "fa-video_camera", color = "#FD971F", cterm_color = "208", icon = "", - name = "M4V", + name = "M4V" }, makefile = { class = "dev-gnu", color = "#6d8086", cterm_color = "66", icon = "", - name = "Makefile", + name = "Makefile" }, markdown = { class = "seti-markdown", color = "#dddddd", cterm_color = "253", icon = "", - name = "Markdown", + name = "Markdown" }, material = { class = "md-image_filter_hdr", color = "#B83998", cterm_color = "163", icon = "󰔉", - name = "Material", + name = "Material" }, md = { class = "oct-markdown", color = "#dddddd", cterm_color = "253", icon = "", - name = "Md", + name = "Md" }, mdx = { class = "oct-markdown", color = "#519aba", cterm_color = "74", icon = "", - name = "Mdx", + name = "Mdx" }, mint = { class = "md-leaf", color = "#87c095", cterm_color = "108", icon = "󰌪", - name = "Mint", + name = "Mint" }, mjs = { class = "md-language_javascript", color = "#F1F134", cterm_color = "227", icon = "󰌞", - name = "Mjs", + name = "Mjs" }, mk = { class = "dev-gnu", color = "#6d8086", cterm_color = "66", icon = "", - name = "Makefile", + name = "Makefile" }, mkv = { class = "fa-video_camera", color = "#FD971F", cterm_color = "208", icon = "", - name = "Mkv", + name = "Mkv" }, ml = { class = "seti-ocaml", color = "#e37933", cterm_color = "166", icon = "", - name = "Ml", + name = "Ml" }, mli = { class = "seti-ocaml", color = "#e37933", cterm_color = "166", icon = "", - name = "Mli", + name = "Mli" }, mo = { class = "md-infinity", color = "#9772FB", cterm_color = "135", icon = "󰛤", - name = "Motoko", + name = "Motoko" }, mov = { class = "fa-video_camera", color = "#FD971F", cterm_color = "208", icon = "", - name = "MOV", + name = "MOV" }, mp3 = { class = "fa-music", color = "#66D8EF", cterm_color = "45", icon = "", - name = "Mp3", + name = "Mp3" }, mp4 = { class = "fa-video_camera", color = "#FD971F", cterm_color = "208", icon = "", - name = "Mp4", + name = "Mp4" }, mpp = { class = "custom-cpp", color = "#519aba", cterm_color = "74", icon = "", - name = "Mpp", + name = "Mpp" }, mts = { class = "seti-typescript", color = "#519aba", cterm_color = "74", icon = "", - name = "Mts", + name = "Mts" }, mustache = { class = "seti-mustache", color = "#e37933", cterm_color = "166", icon = "", - name = "Mustache", + name = "Mustache" }, nim = { class = "seti-nim", color = "#f3d400", cterm_color = "220", icon = "", - name = "Nim", + name = "Nim" }, nix = { class = "linux-nixos", color = "#7ebae4", cterm_color = "110", icon = "", - name = "Nix", + name = "Nix" }, nswag = { class = "seti-json", color = "#85ea2d", cterm_color = "112", icon = "", - name = "Nswag", + name = "Nswag" }, nu = { class = "fa-chevron_right", color = "#3aa675", cterm_color = "36", icon = "", - name = "Nushell", + name = "Nushell" }, ogg = { class = "fa-music", color = "#66D8EF", cterm_color = "45", icon = "", - name = "Ogg", + name = "Ogg" }, opus = { class = "md-file_music", color = "#F88A02", cterm_color = "208", icon = "󰈣", - name = "OPUS", + name = "OPUS" }, org = { class = "custom-orgmode", color = "#77AA99", cterm_color = "73", icon = "", - name = "OrgMode", + name = "OrgMode" }, otf = { class = "fa-font", color = "#ECECEC", cterm_color = "255", icon = "", - name = "OpenTypeFont", + name = "OpenTypeFont" }, out = { class = "cod-file_binary", color = "#9F0500", cterm_color = "124", icon = "", - name = "Out", + name = "Out" }, pck = { class = "oct-package", color = "#6d8086", cterm_color = "66", icon = "", - name = "PackedResource", + name = "PackedResource" }, pdf = { class = "cod-file_pdf", color = "#b30b00", cterm_color = "124", icon = "", - name = "Pdf", + name = "Pdf" }, php = { class = "seti-php", color = "#a074c4", cterm_color = "140", icon = "", - name = "Php", + name = "Php" }, pl = { class = "dev-perl", color = "#519aba", cterm_color = "74", icon = "", - name = "Pl", + name = "Pl" }, pm = { class = "dev-perl", color = "#519aba", cterm_color = "74", icon = "", - name = "Pm", + name = "Pm" }, png = { class = "seti-image", color = "#a074c4", cterm_color = "140", icon = "", - name = "Png", + name = "Png" }, pp = { class = "seti-puppet", color = "#FFA61A", cterm_color = "214", icon = "", - name = "Pp", + name = "Pp" }, ppt = { class = "md-file_powerpoint", color = "#cb4a32", cterm_color = "160", icon = "󰈧", - name = "Ppt", + name = "Ppt" }, prisma = { class = "seti-prisma", color = "#5a67d8", cterm_color = "62", icon = "", - name = "Prisma", + name = "Prisma" }, pro = { class = "dev-prolog", color = "#e4b854", cterm_color = "179", icon = "", - name = "Prolog", + name = "Prolog" }, ps1 = { class = "md-powershell", color = "#4273ca", cterm_color = "68", icon = "󰨊", - name = "PsScriptfile", + name = "PsScriptfile" }, psb = { class = "dev-photoshop", color = "#519aba", cterm_color = "74", icon = "", - name = "Psb", + name = "Psb" }, psd = { class = "dev-photoshop", color = "#519aba", cterm_color = "74", icon = "", - name = "Psd", + name = "Psd" }, psd1 = { class = "md-powershell", color = "#6975c4", cterm_color = "68", icon = "󰨊", - name = "PsManifestfile", + name = "PsManifestfile" }, psm1 = { class = "md-powershell", color = "#6975c4", cterm_color = "68", icon = "󰨊", - name = "PsScriptModulefile", + name = "PsScriptModulefile" }, pxd = { class = "seti-python", color = "#5aa7e4", cterm_color = "39", icon = "", - name = "Pxd", + name = "Pxd" }, pxi = { class = "seti-python", color = "#5aa7e4", cterm_color = "39", icon = "", - name = "Pxi", + name = "Pxi" }, py = { class = "seti-python", color = "#ffbc03", cterm_color = "214", icon = "", - name = "Py", + name = "Py" }, pyc = { class = "seti-python", color = "#ffe291", cterm_color = "222", icon = "", - name = "Pyc", + name = "Pyc" }, pyd = { class = "seti-python", color = "#ffe291", cterm_color = "222", icon = "", - name = "Pyd", + name = "Pyd" }, pyi = { class = "seti-python", color = "#ffbc03", cterm_color = "214", icon = "", - name = "Pyi", + name = "Pyi" }, pyo = { class = "seti-python", color = "#ffe291", cterm_color = "222", icon = "", - name = "Pyo", + name = "Pyo" }, pyx = { class = "seti-python", color = "#5aa7e4", cterm_color = "39", icon = "", - name = "Pyx", + name = "Pyx" }, query = { class = "fae-tree", color = "#90a850", cterm_color = "107", icon = "", - name = "Query", + name = "Query" }, r = { class = "md-language_r", color = "#2266ba", cterm_color = "25", icon = "󰟔", - name = "R", + name = "R" }, rake = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Rake", + name = "Rake" }, razor = { class = "md-razor_single_edge", color = "#512bd4", cterm_color = "56", icon = "󱦘", - name = "RazorPage", + name = "RazorPage" }, rb = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Rb", + name = "Rb" }, res = { class = "seti-rescript", color = "#cc3e44", cterm_color = "167", icon = "", - name = "ReScript", + name = "ReScript" }, resi = { class = "seti-rescript", color = "#f55385", cterm_color = "204", icon = "", - name = "ReScriptInterface", + name = "ReScriptInterface" }, rlib = { class = "dev-rust", color = "#dea584", cterm_color = "216", icon = "", - name = "Rlib", + name = "Rlib" }, rmd = { class = "seti-markdown", color = "#519aba", cterm_color = "74", icon = "", - name = "Rmd", + name = "Rmd" }, rproj = { class = "md-vector_rectangle", color = "#358a5b", cterm_color = "29", icon = "󰗆", - name = "Rproj", + name = "Rproj" }, rs = { class = "seti-rust", color = "#dea584", cterm_color = "216", icon = "", - name = "Rs", + name = "Rs" }, rss = { class = "seti-xml", color = "#FB9D3B", cterm_color = "215", icon = "", - name = "Rss", + name = "Rss" }, sass = { class = "seti-sass", color = "#f55385", cterm_color = "204", icon = "", - name = "Sass", + name = "Sass" }, sbt = { class = "dev-scala", color = "#cc3e44", cterm_color = "167", icon = "", - name = "sbt", + name = "sbt" }, scad = { class = "linux-openscad", color = "#f9d72c", cterm_color = "220", icon = "", - name = "OpenSCAD", + name = "OpenSCAD" }, scala = { class = "dev-scala", color = "#cc3e44", cterm_color = "167", icon = "", - name = "Scala", + name = "Scala" }, scm = { class = "md-lambda", color = "#eeeeee", cterm_color = "255", icon = "󰘧", - name = "Scheme", + name = "Scheme" }, scss = { class = "seti-sass", color = "#f55385", cterm_color = "204", icon = "", - name = "Scss", + name = "Scss" }, sh = { class = "dev-terminal", color = "#4d5a5e", cterm_color = "240", icon = "", - name = "Sh", + name = "Sh" }, sig = { class = "md-lambda", color = "#e37933", cterm_color = "166", icon = "󰘧", - name = "Sig", + name = "Sig" }, slim = { class = "seti-html", color = "#e34c26", cterm_color = "196", icon = "", - name = "Slim", + name = "Slim" }, sln = { class = "dev-visualstudio", color = "#854CC7", cterm_color = "98", icon = "", - name = "Sln", + name = "Sln" }, sml = { class = "md-lambda", color = "#e37933", cterm_color = "166", icon = "󰘧", - name = "Sml", + name = "Sml" }, sol = { class = "seti-ethereum", color = "#519aba", cterm_color = "74", icon = "", - name = "Solidity", + name = "Solidity" }, ["spec.js"] = { class = "oct-beaker", color = "#cbcb41", cterm_color = "185", icon = "", - name = "SpecJs", + name = "SpecJs" }, ["spec.jsx"] = { class = "oct-beaker", color = "#20c2e3", cterm_color = "45", icon = "", - name = "JavaScriptReactSpec", + name = "JavaScriptReactSpec" }, ["spec.ts"] = { class = "oct-beaker", color = "#519aba", cterm_color = "74", icon = "", - name = "SpecTs", + name = "SpecTs" }, ["spec.tsx"] = { class = "oct-beaker", color = "#1354bf", cterm_color = "26", icon = "", - name = "TypeScriptReactSpec", + name = "TypeScriptReactSpec" }, sql = { class = "dev-database", color = "#dad8d8", cterm_color = "188", icon = "", - name = "Sql", + name = "Sql" }, sqlite = { class = "dev-database", color = "#dad8d8", cterm_color = "188", icon = "", - name = "Sql", + name = "Sql" }, sqlite3 = { class = "dev-database", color = "#dad8d8", cterm_color = "188", icon = "", - name = "Sql", + name = "Sql" }, styl = { class = "seti-stylus", color = "#8dc149", cterm_color = "113", icon = "", - name = "Styl", + name = "Styl" }, sublime = { class = "dev-sublime", color = "#e37933", cterm_color = "166", icon = "", - name = "Suo", + name = "Suo" }, suo = { class = "dev-visualstudio", color = "#854CC7", cterm_color = "98", icon = "", - name = "Suo", + name = "Suo" }, sv = { class = "md-memory", color = "#019833", cterm_color = "28", icon = "󰍛", - name = "SystemVerilog", + name = "SystemVerilog" }, svelte = { class = "seti-svelte", color = "#ff3e00", cterm_color = "196", icon = "", - name = "Svelte", + name = "Svelte" }, svg = { class = "md-svg", color = "#FFB13B", cterm_color = "214", icon = "󰜡", - name = "Svg", + name = "Svg" }, svh = { class = "md-memory", color = "#019833", cterm_color = "28", icon = "󰍛", - name = "SystemVerilog", + name = "SystemVerilog" }, swift = { class = "dev-swift", color = "#e37933", cterm_color = "166", icon = "", - name = "Swift", + name = "Swift" }, t = { class = "dev-perl", color = "#519aba", cterm_color = "74", icon = "", - name = "Tor", + name = "Tor" }, tbc = { class = "md-feather", color = "#1e5cb3", cterm_color = "25", icon = "󰛓", - name = "Tcl", + name = "Tcl" }, tcl = { class = "md-feather", color = "#1e5cb3", cterm_color = "25", icon = "󰛓", - name = "Tcl", + name = "Tcl" }, templ = { class = "cod-code", color = "#dbbd30", cterm_color = "178", icon = "", - name = "Templ", + name = "Templ" }, terminal = { class = "oct-terminal", color = "#31B53E", cterm_color = "34", icon = "", - name = "Terminal", + name = "Terminal" }, ["test.js"] = { class = "oct-beaker", color = "#cbcb41", cterm_color = "185", icon = "", - name = "TestJs", + name = "TestJs" }, ["test.jsx"] = { class = "oct-beaker", color = "#20c2e3", cterm_color = "45", icon = "", - name = "JavaScriptReactTest", + name = "JavaScriptReactTest" }, ["test.ts"] = { class = "oct-beaker", color = "#519aba", cterm_color = "74", icon = "", - name = "TestTs", + name = "TestTs" }, ["test.tsx"] = { class = "oct-beaker", color = "#1354bf", cterm_color = "26", icon = "", - name = "TypeScriptReactTest", + name = "TypeScriptReactTest" }, tex = { class = "md-text_shadow", color = "#3D6117", cterm_color = "22", icon = "󰙩", - name = "Tex", + name = "Tex" }, tf = { class = "seti-terraform", color = "#5F43E9", cterm_color = "93", icon = "", - name = "Terraform", + name = "Terraform" }, tfvars = { class = "fa-file", color = "#5F43E9", cterm_color = "93", icon = "", - name = "TFVars", + name = "TFVars" }, toml = { class = "custom-toml", color = "#9c4221", cterm_color = "124", icon = "", - name = "Toml", + name = "Toml" }, tres = { class = "dev-database", color = "#cbcb41", cterm_color = "185", icon = "", - name = "TextResource", + name = "TextResource" }, ts = { class = "seti-typescript", color = "#519aba", cterm_color = "74", icon = "", - name = "Ts", + name = "Ts" }, tscn = { class = "md-movie", color = "#a074c4", cterm_color = "140", icon = "󰎁", - name = "TextScene", + name = "TextScene" }, tsx = { class = "dev-react", color = "#1354bf", cterm_color = "26", icon = "", - name = "Tsx", + name = "Tsx" }, ttf = { class = "fa-font", color = "#ECECEC", cterm_color = "255", icon = "", - name = "TrueTypeFont", + name = "TrueTypeFont" }, twig = { class = "seti-twig", color = "#8dc149", cterm_color = "113", icon = "", - name = "Twig", + name = "Twig" }, txt = { class = "md-file_document", color = "#89e051", cterm_color = "113", icon = "󰈙", - name = "Txt", + name = "Txt" }, v = { class = "md-memory", color = "#019833", cterm_color = "28", icon = "󰍛", - name = "Verilog", + name = "Verilog" }, vala = { class = "seti-vala", color = "#7239b3", cterm_color = "91", icon = "", - name = "Vala", + name = "Vala" }, vh = { class = "md-memory", color = "#019833", cterm_color = "28", icon = "󰍛", - name = "Verilog", + name = "Verilog" }, vhd = { class = "md-memory", color = "#019833", cterm_color = "28", icon = "󰍛", - name = "VHDL", + name = "VHDL" }, vhdl = { class = "md-memory", color = "#019833", cterm_color = "28", icon = "󰍛", - name = "VHDL", + name = "VHDL" }, vim = { class = "custom-vim", color = "#019833", cterm_color = "28", icon = "", - name = "Vim", + name = "Vim" }, vsh = { class = "custom-v_lang", color = "#5d87bf", cterm_color = "67", icon = "", - name = "Vlang", + name = "Vlang" }, vue = { class = "seti-vue", color = "#8dc149", cterm_color = "113", icon = "", - name = "Vue", + name = "Vue" }, wasm = { class = "seti-wasm", color = "#5c4cdb", cterm_color = "62", icon = "", - name = "Wasm", + name = "Wasm" }, wav = { class = "fa-music", color = "#66D8EF", cterm_color = "45", icon = "", - name = "Wav", + name = "Wav" }, webm = { class = "fa-video_camera", color = "#FD971F", cterm_color = "208", icon = "", - name = "Webm", + name = "Webm" }, webmanifest = { class = "seti-json", color = "#f1e05a", cterm_color = "185", icon = "", - name = "Webmanifest", + name = "Webmanifest" }, webp = { class = "seti-image", color = "#a074c4", cterm_color = "140", icon = "", - name = "Webp", + name = "Webp" }, webpack = { class = "md-webpack", color = "#519aba", cterm_color = "74", icon = "󰜫", - name = "Webpack", + name = "Webpack" }, woff = { class = "fa-font", color = "#ECECEC", cterm_color = "255", icon = "", - name = "WebOpenFontFormat", + name = "WebOpenFontFormat" }, woff2 = { class = "fa-font", color = "#ECECEC", cterm_color = "255", icon = "", - name = "WebOpenFontFormat", + name = "WebOpenFontFormat" }, xaml = { class = "md-language_xaml", color = "#512bd4", cterm_color = "56", icon = "󰙳", - name = "Xaml", + name = "Xaml" }, xcplayground = { class = "dev-swift", color = "#e37933", cterm_color = "166", icon = "", - name = "XcPlayground", + name = "XcPlayground" }, xls = { class = "md-file_excel", color = "#207245", cterm_color = "29", icon = "󰈛", - name = "Xls", + name = "Xls" }, xlsx = { class = "md-file_excel", color = "#207245", cterm_color = "29", icon = "󰈛", - name = "Xlsx", + name = "Xlsx" }, xml = { class = "md-xml", color = "#e37933", cterm_color = "166", icon = "󰗀", - name = "Xml", + name = "Xml" }, xul = { class = "dev-firefox", color = "#e37933", cterm_color = "166", icon = "", - name = "Xul", + name = "Xul" }, yaml = { class = "seti-config", color = "#6d8086", cterm_color = "66", icon = "", - name = "Yaml", + name = "Yaml" }, yml = { class = "seti-config", color = "#6d8086", cterm_color = "66", icon = "", - name = "Yml", + name = "Yml" }, zig = { class = "seti-zig", color = "#f69a1b", cterm_color = "172", icon = "", - name = "Zig", + name = "Zig" }, zsh = { class = "dev-terminal", color = "#89e051", cterm_color = "113", icon = "", - name = "Zsh", - }, + name = "Zsh" + } } M.icons_by_operating_system = { @@ -2371,267 +2371,267 @@ M.icons_by_operating_system = { color = "#ff4649", cterm_color = "203", icon = "", - name = "Almalinux", + name = "Almalinux" }, alpine = { class = "linux-alpine", color = "#0d597f", cterm_color = "24", icon = "", - name = "Alpine", + name = "Alpine" }, aosc = { class = "linux-aosc", color = "#c00000", cterm_color = "124", icon = "", - name = "AOSC", + name = "AOSC" }, apple = { class = "seti-apple", color = "#A2AAAD", cterm_color = "248", icon = "", - name = "Apple", + name = "Apple" }, arch = { class = "md-arch", color = "#0f94d2", cterm_color = "67", icon = "󰣇", - name = "Arch", + name = "Arch" }, artix = { class = "linux-artix", color = "#41b4d7", cterm_color = "38", icon = "", - name = "Artix", + name = "Artix" }, budgie = { class = "linux-budgie", color = "#5195e3", cterm_color = "68", icon = "", - name = "Budgie", + name = "Budgie" }, centos = { class = "linux-centos", color = "#a2518d", cterm_color = "132", icon = "", - name = "Centos", + name = "Centos" }, debian = { class = "linux-debian", color = "#a80030", cterm_color = "88", icon = "", - name = "Debian", + name = "Debian" }, deepin = { class = "linux-deepin", color = "#2ca7f8", cterm_color = "39", icon = "", - name = "Deepin", + name = "Deepin" }, devuan = { class = "linux-devuan", color = "#404a52", cterm_color = "238", icon = "", - name = "Devuan", + name = "Devuan" }, elementary = { class = "linux-elementary", color = "#5890c2", cterm_color = "67", icon = "", - name = "Elementary", + name = "Elementary" }, endeavour = { class = "linux-endeavour", color = "#7b3db9", cterm_color = "91", icon = "", - name = "Endeavour", + name = "Endeavour" }, fedora = { class = "linux-fedora", color = "#072a5e", cterm_color = "17", icon = "", - name = "Fedora", + name = "Fedora" }, freebsd = { class = "linux-freebsd", color = "#c90f02", cterm_color = "160", icon = "", - name = "FreeBSD", + name = "FreeBSD" }, gentoo = { class = "md-gentoo", color = "#b1abce", cterm_color = "146", icon = "󰣨", - name = "Gentoo", + name = "Gentoo" }, guix = { class = "linux-gnu_guix", color = "#ffcc00", cterm_color = "220", icon = "", - name = "Guix", + name = "Guix" }, illumos = { class = "linux-illumos", color = "#ff430f", cterm_color = "196", icon = "", - name = "Illumos", + name = "Illumos" }, kali = { class = "linux-kali_linux", color = "#2777ff", cterm_color = "69", icon = "", - name = "Kali", + name = "Kali" }, linux = { class = "cod-terminal_linux", color = "#fdfdfb", cterm_color = "231", icon = "", - name = "Linux", + name = "Linux" }, mageia = { class = "linux-mageia", color = "#2397d4", cterm_color = "67", icon = "", - name = "Mageia", + name = "Mageia" }, manjaro = { class = "linux-manjaro", color = "#33b959", cterm_color = "35", icon = "", - name = "Manjaro", + name = "Manjaro" }, mint = { class = "md-linux_mint", color = "#66af3d", cterm_color = "70", icon = "󰣭", - name = "Mint", + name = "Mint" }, nixos = { class = "linux-nixos", color = "#7ab1db", cterm_color = "110", icon = "", - name = "NixOS", + name = "NixOS" }, openbsd = { class = "linux-openbsd", color = "#f2ca30", cterm_color = "220", icon = "", - name = "OpenBSD", + name = "OpenBSD" }, opensuse = { class = "linux-opensuse", color = "#6fb424", cterm_color = "70", icon = "", - name = "openSUSE", + name = "openSUSE" }, parrot = { class = "linux-parrot", color = "#54deff", cterm_color = "45", icon = "", - name = "Parrot", + name = "Parrot" }, pop_os = { class = "linux-pop_os", color = "#48b9c7", cterm_color = "73", icon = "", - name = "Pop_OS", + name = "Pop_OS" }, raspberry_pi = { class = "linux-raspberry_pi", color = "#be1848", cterm_color = "161", icon = "", - name = "RaspberryPiOS", + name = "RaspberryPiOS" }, redhat = { class = "md-redhat", color = "#EE0000", cterm_color = "196", icon = "󱄛", - name = "Redhat", + name = "Redhat" }, rocky = { class = "linux-rocky_linux", color = "#0fb37d", cterm_color = "36", icon = "", - name = "RockyLinux", + name = "RockyLinux" }, sabayon = { class = "linux-sabayon", color = "#c6c6c6", cterm_color = "251", icon = "", - name = "Sabayon", + name = "Sabayon" }, slackware = { class = "linux-slackware", color = "#475fa9", cterm_color = "61", icon = "", - name = "Slackware", + name = "Slackware" }, solus = { class = "linux-solus", color = "#4b5163", cterm_color = "239", icon = "", - name = "Solus", + name = "Solus" }, ubuntu = { class = "dev-ubuntu", color = "#dd4814", cterm_color = "196", icon = "", - name = "Ubuntu", + name = "Ubuntu" }, void = { class = "linux-void", color = "#295340", cterm_color = "23", icon = "", - name = "Void", + name = "Void" }, windows = { class = "fa-windows", color = "#00A4EF", cterm_color = "39", icon = "", - name = "Windows", + name = "Windows" }, zorin = { class = "linux-zorin", color = "#14a1e8", cterm_color = "39", icon = "", - name = "Zorin", - }, + name = "Zorin" + } } return M diff --git a/lua/nvim-web-devicons/icons-light.lua b/lua/nvim-web-devicons/icons-light.lua index 4d656f925..9f158c9f8 100644 --- a/lua/nvim-web-devicons/icons-light.lua +++ b/lua/nvim-web-devicons/icons-light.lua @@ -6,477 +6,477 @@ M.icons_by_filename = { color = "#666620", cterm_color = "58", icon = "", - name = "Babelrc", + name = "Babelrc" }, [".bash_profile"] = { class = "seti-config", color = "#447028", cterm_color = "22", icon = "", - name = "BashProfile", + name = "BashProfile" }, [".bashrc"] = { class = "seti-config", color = "#447028", cterm_color = "22", icon = "", - name = "Bashrc", + name = "Bashrc" }, [".dockerignore"] = { class = "md-docker", color = "#2e5f99", cterm_color = "25", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, [".ds_store"] = { class = "seti-config", color = "#41535b", cterm_color = "239", icon = "", - name = "DsStore", + name = "DsStore" }, [".editorconfig"] = { class = "seti-editorconfig", color = "#333030", cterm_color = "236", icon = "", - name = "EditorConfig", + name = "EditorConfig" }, [".env"] = { class = "oct-sliders", color = "#32310d", cterm_color = "236", icon = "", - name = "Env", + name = "Env" }, [".eslintignore"] = { class = "seti-eslint", color = "#4b32c3", cterm_color = "56", icon = "", - name = "EslintIgnore", + name = "EslintIgnore" }, [".eslintrc"] = { class = "seti-eslint", color = "#4b32c3", cterm_color = "56", icon = "", - name = "Eslintrc", + name = "Eslintrc" }, [".gitattributes"] = { class = "dev-git", color = "#41535b", cterm_color = "239", icon = "", - name = "GitAttributes", + name = "GitAttributes" }, [".gitconfig"] = { class = "seti-config", color = "#41535b", cterm_color = "239", icon = "", - name = "GitConfig", + name = "GitConfig" }, [".gitignore"] = { class = "dev-git", color = "#41535b", cterm_color = "239", icon = "", - name = "GitIgnore", + name = "GitIgnore" }, [".gitlab-ci.yml"] = { class = "fa-gitlab", color = "#aa321f", cterm_color = "124", icon = "", - name = "GitlabCI", + name = "GitlabCI" }, [".gitmodules"] = { class = "dev-git", color = "#41535b", cterm_color = "239", icon = "", - name = "GitModules", + name = "GitModules" }, [".gvimrc"] = { class = "custom-vim", color = "#017226", cterm_color = "22", icon = "", - name = "Gvimrc", + name = "Gvimrc" }, [".luaurc"] = { class = "seti-config", color = "#007abf", cterm_color = "32", icon = "", - name = "Luaurc", + name = "Luaurc" }, [".npmignore"] = { class = "dev-npm", color = "#ae1d38", cterm_color = "161", icon = "", - name = "NPMIgnore", + name = "NPMIgnore" }, [".npmrc"] = { class = "dev-npm", color = "#ae1d38", cterm_color = "161", icon = "", - name = "NPMrc", + name = "NPMrc" }, [".prettierrc"] = { class = "custom-prettier", color = "#3264b7", cterm_color = "25", icon = "", - name = "PrettierConfig", + name = "PrettierConfig" }, [".settings.json"] = { class = "dev-visualstudio", color = "#643995", cterm_color = "91", icon = "", - name = "SettingsJson", + name = "SettingsJson" }, [".vimrc"] = { class = "custom-vim", color = "#017226", cterm_color = "22", icon = "", - name = "Vimrc", + name = "Vimrc" }, [".zprofile"] = { class = "seti-config", color = "#447028", cterm_color = "22", icon = "", - name = "Zshprofile", + name = "Zshprofile" }, [".zshenv"] = { class = "seti-config", color = "#447028", cterm_color = "22", icon = "", - name = "Zshenv", + name = "Zshenv" }, [".zshrc"] = { class = "seti-config", color = "#447028", cterm_color = "22", icon = "", - name = "Zshrc", + name = "Zshrc" }, R = { class = "md-language_r", color = "#1a4c8c", cterm_color = "25", icon = "󰟔", - name = "R", + name = "R" }, _gvimrc = { class = "custom-vim", color = "#017226", cterm_color = "22", icon = "", - name = "Gvimrc", + name = "Gvimrc" }, _vimrc = { class = "custom-vim", color = "#017226", cterm_color = "22", icon = "", - name = "Vimrc", + name = "Vimrc" }, avif = { class = "seti-image", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Avif", + name = "Avif" }, brewfile = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Brewfile", + name = "Brewfile" }, build = { class = "seti-bazel", color = "#447028", cterm_color = "22", icon = "", - name = "BazelBuild", + name = "BazelBuild" }, ["build.zig.zon"] = { class = "seti-zig", color = "#7b4d0e", cterm_color = "94", icon = "", - name = "ZigObjectNotation", + name = "ZigObjectNotation" }, checkhealth = { class = "md-stethoscope", color = "#3a5a7e", cterm_color = "24", icon = "󰓙", - name = "Checkhealth", + name = "Checkhealth" }, ["cmakelists.txt"] = { class = "seti-config", color = "#526064", cterm_color = "59", icon = "", - name = "CMakeLists", + name = "CMakeLists" }, commit_editmsg = { class = "dev-git", color = "#41535b", cterm_color = "239", icon = "", - name = "GitCommit", + name = "GitCommit" }, ["compose.yaml"] = { class = "md-docker", color = "#2e5f99", cterm_color = "25", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, ["compose.yml"] = { class = "md-docker", color = "#2e5f99", cterm_color = "25", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, containerfile = { class = "md-docker", color = "#2e5f99", cterm_color = "25", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, copying = { class = "seti-license", color = "#666620", cterm_color = "58", icon = "", - name = "License", + name = "License" }, ["copying.lesser"] = { class = "seti-license", color = "#666620", cterm_color = "58", icon = "", - name = "License", + name = "License" }, ["docker-compose.yaml"] = { class = "md-docker", color = "#2e5f99", cterm_color = "25", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, ["docker-compose.yml"] = { class = "md-docker", color = "#2e5f99", cterm_color = "25", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, dockerfile = { class = "md-docker", color = "#2e5f99", cterm_color = "25", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, ["favicon.ico"] = { class = "seti-favicon", color = "#666620", cterm_color = "58", icon = "", - name = "Favicon", + name = "Favicon" }, ["gemfile$"] = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Gemfile", + name = "Gemfile" }, gnumakefile = { class = "dev-gnu", color = "#526064", cterm_color = "59", icon = "", - name = "Makefile", + name = "Makefile" }, groovy = { class = "dev-groovy", color = "#384e5d", cterm_color = "239", icon = "", - name = "Groovy", + name = "Groovy" }, gruntfile = { class = "seti-grunt", color = "#975122", cterm_color = "130", icon = "", - name = "Gruntfile", + name = "Gruntfile" }, gulpfile = { class = "seti-gulp", color = "#992e33", cterm_color = "88", icon = "", - name = "Gulpfile", + name = "Gulpfile" }, license = { class = "seti-license", color = "#686020", cterm_color = "58", icon = "", - name = "License", + name = "License" }, makefile = { class = "dev-gnu", color = "#526064", cterm_color = "59", icon = "", - name = "Makefile", + name = "Makefile" }, ["mix.lock"] = { class = "seti-elixir", color = "#6b4d83", cterm_color = "96", icon = "", - name = "MixLock", + name = "MixLock" }, node_modules = { class = "dev-nodejs_small", color = "#ae1d38", cterm_color = "161", icon = "", - name = "NodeModules", + name = "NodeModules" }, ["package-lock.json"] = { class = "dev-npm", color = "#7a0d21", cterm_color = "52", icon = "", - name = "PackageLockJson", + name = "PackageLockJson" }, ["package.json"] = { class = "dev-npm", color = "#ae1d38", cterm_color = "161", icon = "", - name = "PackageJson", + name = "PackageJson" }, procfile = { class = "seti-heroku", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Procfile", + name = "Procfile" }, ["py.typed"] = { class = "seti-python", color = "#805e02", cterm_color = "94", icon = "", - name = "Py.typed", + name = "Py.typed" }, r = { class = "md-language_r", color = "#1a4c8c", cterm_color = "25", icon = "󰟔", - name = "R", + name = "R" }, rakefile = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Rakefile", + name = "Rakefile" }, rmd = { class = "seti-markdown", color = "#36677c", cterm_color = "24", icon = "", - name = "Rmd", + name = "Rmd" }, ["svelte.config.js"] = { class = "seti-svelte", color = "#bf2e00", cterm_color = "160", icon = "", - name = "SvelteConfig", + name = "SvelteConfig" }, ["tailwind.config.js"] = { class = "md-tailwind", color = "#158197", cterm_color = "31", icon = "󱏿", - name = "TailwindConfig", + name = "TailwindConfig" }, ["tailwind.config.mjs"] = { class = "md-tailwind", color = "#158197", cterm_color = "31", icon = "󱏿", - name = "TailwindConfig", + name = "TailwindConfig" }, ["tailwind.config.ts"] = { class = "md-tailwind", color = "#158197", cterm_color = "31", icon = "󱏿", - name = "TailwindConfig", + name = "TailwindConfig" }, ["tsconfig.json"] = { class = "seti-tsconfig", color = "#36677c", cterm_color = "24", icon = "", - name = "TSConfig", + name = "TSConfig" }, unlicense = { class = "seti-license", color = "#686020", cterm_color = "58", icon = "", - name = "License", + name = "License" }, ["vagrantfile$"] = { class = "fa-linode", color = "#104abf", cterm_color = "26", icon = "", - name = "Vagrantfile", + name = "Vagrantfile" }, webpack = { class = "md-webpack", color = "#36677c", cterm_color = "24", icon = "󰜫", - name = "Webpack", + name = "Webpack" }, workspace = { class = "seti-bazel", color = "#447028", cterm_color = "22", icon = "", - name = "BazelWorkspace", - }, + name = "BazelWorkspace" + } } M.icons_by_file_extension = { @@ -485,1884 +485,1884 @@ M.icons_by_file_extension = { color = "#2e5f99", cterm_color = "25", icon = "󰡨", - name = "Dockerfile", + name = "Dockerfile" }, R = { class = "md-language_r", color = "#1a4c8c", cterm_color = "25", icon = "󰟔", - name = "R", + name = "R" }, aac = { class = "fa-music", color = "#336c78", cterm_color = "23", icon = "", - name = "Aac", + name = "Aac" }, ai = { class = "dev-illustrator", color = "#666620", cterm_color = "58", icon = "", - name = "Ai", + name = "Ai" }, app = { class = "cod-file_binary", color = "#9F0500", cterm_color = "124", icon = "", - name = "App", + name = "App" }, applescript = { class = "fa-apple", color = "#526064", cterm_color = "59", icon = "", - name = "AppleScript", + name = "AppleScript" }, awk = { class = "dev-terminal", color = "#3a4446", cterm_color = "238", icon = "", - name = "Awk", + name = "Awk" }, azcli = { class = "cod-azure_devops", color = "#005a9f", cterm_color = "25", icon = "", - name = "AzureCli", + name = "AzureCli" }, bak = { class = "md-backup_restore", color = "#526064", cterm_color = "59", icon = "󰁯", - name = "Backup", + name = "Backup" }, bash = { class = "dev-terminal", color = "#447028", cterm_color = "22", icon = "", - name = "Bash", + name = "Bash" }, bat = { class = "seti-config", color = "#40500f", cterm_color = "58", icon = "", - name = "Bat", + name = "Bat" }, bazel = { class = "seti-bazel", color = "#447028", cterm_color = "22", icon = "", - name = "Bazel", + name = "Bazel" }, bib = { class = "md-bookshelf", color = "#666620", cterm_color = "58", icon = "󱉟", - name = "BibTeX", + name = "BibTeX" }, bmp = { class = "seti-image", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Bmp", + name = "Bmp" }, bzl = { class = "seti-bazel", color = "#447028", cterm_color = "22", icon = "", - name = "Bzl", + name = "Bzl" }, c = { class = "custom-c", color = "#3b69aa", cterm_color = "25", icon = "", - name = "C", + name = "C" }, ["c++"] = { class = "custom-cpp", color = "#a23253", cterm_color = "125", icon = "", - name = "CPlusPlus", + name = "CPlusPlus" }, cbl = { class = "seti-config", color = "#005ca5", cterm_color = "25", icon = "", - name = "Cobol", + name = "Cobol" }, cc = { class = "custom-cpp", color = "#a23253", cterm_color = "125", icon = "", - name = "CPlusPlus", + name = "CPlusPlus" }, ccm = { class = "custom-cpp", color = "#a23253", cterm_color = "125", icon = "", - name = "CPlusPlusModule", + name = "CPlusPlusModule" }, cfg = { class = "dev-code_badge", color = "#2f2f2f", cterm_color = "236", icon = "", - name = "Configuration", + name = "Configuration" }, cjs = { class = "md-language_javascript", color = "#505011", cterm_color = "58", icon = "󰌞", - name = "Cjs", + name = "Cjs" }, clj = { class = "dev-clojure", color = "#466024", cterm_color = "22", icon = "", - name = "Clojure", + name = "Clojure" }, cljc = { class = "dev-clojure", color = "#466024", cterm_color = "22", icon = "", - name = "ClojureC", + name = "ClojureC" }, cljd = { class = "dev-clojure_alt", color = "#36677c", cterm_color = "24", icon = "", - name = "ClojureDart", + name = "ClojureDart" }, cljs = { class = "dev-clojure_alt", color = "#36677c", cterm_color = "24", icon = "", - name = "ClojureJS", + name = "ClojureJS" }, cmake = { class = "seti-config", color = "#526064", cterm_color = "59", icon = "", - name = "CMake", + name = "CMake" }, cob = { class = "seti-config", color = "#005ca5", cterm_color = "25", icon = "", - name = "Cobol", + name = "Cobol" }, cobol = { class = "seti-config", color = "#005ca5", cterm_color = "25", icon = "", - name = "Cobol", + name = "Cobol" }, coffee = { class = "seti-coffee", color = "#666620", cterm_color = "58", icon = "", - name = "Coffee", + name = "Coffee" }, conf = { class = "seti-config", color = "#526064", cterm_color = "59", icon = "", - name = "Conf", + name = "Conf" }, ["config.ru"] = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "ConfigRu", + name = "ConfigRu" }, cp = { class = "custom-cpp", color = "#36677c", cterm_color = "24", icon = "", - name = "Cp", + name = "Cp" }, cpp = { class = "custom-cpp", color = "#36677c", cterm_color = "24", icon = "", - name = "Cpp", + name = "Cpp" }, cppm = { class = "custom-cpp", color = "#36677c", cterm_color = "24", icon = "", - name = "Cppm", + name = "Cppm" }, cpy = { class = "seti-config", color = "#005ca5", cterm_color = "25", icon = "", - name = "Cobol", + name = "Cobol" }, cr = { class = "seti-crystal", color = "#434343", cterm_color = "238", icon = "", - name = "Crystal", + name = "Crystal" }, cs = { class = "md-language_csharp", color = "#434d04", cterm_color = "58", icon = "󰌛", - name = "Cs", + name = "Cs" }, csh = { class = "dev-terminal", color = "#3a4446", cterm_color = "238", icon = "", - name = "Csh", + name = "Csh" }, cshtml = { class = "md-razor_double_edge", color = "#512bd4", cterm_color = "56", icon = "󱦗", - name = "RazorPage", + name = "RazorPage" }, cson = { class = "seti-json", color = "#666620", cterm_color = "58", icon = "", - name = "Cson", + name = "Cson" }, csproj = { class = "md-dot_net", color = "#512bd4", cterm_color = "56", icon = "󰪮", - name = "CSharpProject", + name = "CSharpProject" }, css = { class = "dev-css3", color = "#2c6ea3", cterm_color = "24", icon = "", - name = "Css", + name = "Css" }, csv = { class = "seti-csv", color = "#447028", cterm_color = "22", icon = "", - name = "Csv", + name = "Csv" }, cts = { class = "seti-typescript", color = "#36677c", cterm_color = "24", icon = "", - name = "Cts", + name = "Cts" }, cu = { class = "seti-cu", color = "#447028", cterm_color = "22", icon = "", - name = "cuda", + name = "cuda" }, cuh = { class = "seti-cu", color = "#6b4d83", cterm_color = "96", icon = "", - name = "cudah", + name = "cudah" }, cxx = { class = "custom-cpp", color = "#36677c", cterm_color = "24", icon = "", - name = "Cxx", + name = "Cxx" }, cxxm = { class = "custom-cpp", color = "#36677c", cterm_color = "24", icon = "", - name = "Cxxm", + name = "Cxxm" }, d = { class = "dev-dlang", color = "#325a13", cterm_color = "22", icon = "", - name = "D", + name = "D" }, dart = { class = "dev-dart", color = "#03589C", cterm_color = "25", icon = "", - name = "Dart", + name = "Dart" }, db = { class = "dev-database", color = "#494848", cterm_color = "238", icon = "", - name = "Db", + name = "Db" }, desktop = { class = "fa-desktop", color = "#563d7c", cterm_color = "54", icon = "", - name = "DesktopEntry", + name = "DesktopEntry" }, diff = { class = "dev-git_compare", color = "#41535b", cterm_color = "239", icon = "", - name = "Diff", + name = "Diff" }, doc = { class = "md-file_word", color = "#185abd", cterm_color = "26", icon = "󰈬", - name = "Doc", + name = "Doc" }, docx = { class = "md-file_word", color = "#185abd", cterm_color = "26", icon = "󰈬", - name = "Docx", + name = "Docx" }, drl = { class = "fae-brain", color = "#553a3a", cterm_color = "238", icon = "", - name = "Drools", + name = "Drools" }, dropbox = { class = "dev-dropbox", color = "#0049be", cterm_color = "26", icon = "", - name = "Dropbox", + name = "Dropbox" }, dump = { class = "dev-database", color = "#494848", cterm_color = "238", icon = "", - name = "Dump", + name = "Dump" }, edn = { class = "dev-clojure_alt", color = "#36677c", cterm_color = "24", icon = "", - name = "Edn", + name = "Edn" }, eex = { class = "seti-elixir", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Eex", + name = "Eex" }, ejs = { class = "seti-html", color = "#666620", cterm_color = "58", icon = "", - name = "Ejs", + name = "Ejs" }, elf = { class = "cod-file_binary", color = "#9F0500", cterm_color = "124", icon = "", - name = "Elf", + name = "Elf" }, elm = { class = "seti-elm", color = "#36677c", cterm_color = "24", icon = "", - name = "Elm", + name = "Elm" }, eot = { class = "fa-font", color = "#2f2f2f", cterm_color = "236", icon = "", - name = "EmbeddedOpenTypeFont", + name = "EmbeddedOpenTypeFont" }, epp = { class = "seti-puppet", color = "#80530d", cterm_color = "94", icon = "", - name = "Epp", + name = "Epp" }, erb = { class = "seti-html", color = "#701516", cterm_color = "52", icon = "", - name = "Erb", + name = "Erb" }, erl = { class = "dev-erlang", color = "#8a2b72", cterm_color = "89", icon = "", - name = "Erl", + name = "Erl" }, ex = { class = "seti-elixir", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Ex", + name = "Ex" }, exe = { class = "cod-file_binary", color = "#9F0500", cterm_color = "124", icon = "", - name = "Exe", + name = "Exe" }, exs = { class = "seti-elixir", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Exs", + name = "Exs" }, ["f#"] = { class = "dev-fsharp", color = "#36677c", cterm_color = "24", icon = "", - name = "Fsharp", + name = "Fsharp" }, f90 = { class = "md-language_fortran", color = "#563b70", cterm_color = "53", icon = "󱈚", - name = "Fortran", + name = "Fortran" }, fish = { class = "dev-terminal", color = "#3a4446", cterm_color = "238", icon = "", - name = "Fish", + name = "Fish" }, flac = { class = "fa-music", color = "#336c78", cterm_color = "23", icon = "", - name = "Flac", + name = "Flac" }, fnl = { class = "custom-fennel", color = "#33312b", cterm_color = "236", icon = "", - name = "Fennel", + name = "Fennel" }, fs = { class = "dev-fsharp", color = "#36677c", cterm_color = "24", icon = "", - name = "Fs", + name = "Fs" }, fsi = { class = "dev-fsharp", color = "#36677c", cterm_color = "24", icon = "", - name = "Fsi", + name = "Fsi" }, fsscript = { class = "dev-fsharp", color = "#36677c", cterm_color = "24", icon = "", - name = "Fsscript", + name = "Fsscript" }, fsx = { class = "dev-fsharp", color = "#36677c", cterm_color = "24", icon = "", - name = "Fsx", + name = "Fsx" }, gd = { class = "seti-config", color = "#526064", cterm_color = "59", icon = "", - name = "GDScript", + name = "GDScript" }, gemspec = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Gemspec", + name = "Gemspec" }, gif = { class = "seti-image", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Gif", + name = "Gif" }, git = { class = "dev-git", color = "#b5391e", cterm_color = "160", icon = "", - name = "GitLogo", + name = "GitLogo" }, glb = { class = "fa-cube", color = "#80581e", cterm_color = "94", icon = "", - name = "BinaryGLTF", + name = "BinaryGLTF" }, gnumakefile = { class = "dev-gnu", color = "#526064", cterm_color = "59", icon = "", - name = "Makefile", + name = "Makefile" }, go = { class = "seti-go", color = "#36677c", cterm_color = "24", icon = "", - name = "Go", + name = "Go" }, godot = { class = "dev-code_badge", color = "#526064", cterm_color = "59", icon = "", - name = "GodotProject", + name = "GodotProject" }, gql = { class = "fa-connectdevelop", color = "#ac2880", cterm_color = "126", icon = "", - name = "GraphQL", + name = "GraphQL" }, graphql = { class = "fa-connectdevelop", color = "#ac2880", cterm_color = "126", icon = "", - name = "GraphQL", + name = "GraphQL" }, h = { class = "fa-h_square", color = "#6b4d83", cterm_color = "96", icon = "", - name = "H", + name = "H" }, haml = { class = "seti-html", color = "#2f2f2d", cterm_color = "236", icon = "", - name = "Haml", + name = "Haml" }, hbs = { class = "seti-mustache", color = "#a04f1d", cterm_color = "130", icon = "", - name = "Hbs", + name = "Hbs" }, heex = { class = "seti-elixir", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Heex", + name = "Heex" }, hh = { class = "fa-h_square", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Hh", + name = "Hh" }, hpp = { class = "fa-h_square", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Hpp", + name = "Hpp" }, hrl = { class = "dev-erlang", color = "#8a2b72", cterm_color = "89", icon = "", - name = "Hrl", + name = "Hrl" }, hs = { class = "seti-haskell", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Hs", + name = "Hs" }, htm = { class = "seti-html", color = "#aa391c", cterm_color = "124", icon = "", - name = "Htm", + name = "Htm" }, html = { class = "dev-html5", color = "#ab3a1c", cterm_color = "124", icon = "", - name = "Html", + name = "Html" }, huff = { class = "md-chess_knight", color = "#4242c7", cterm_color = "56", icon = "󰡘", - name = "Huff", + name = "Huff" }, hurl = { class = "fa-exchange", color = "#bf0266", cterm_color = "125", icon = "", - name = "Hurl", + name = "Hurl" }, hx = { class = "seti-haxe", color = "#9c5715", cterm_color = "130", icon = "", - name = "Haxe", + name = "Haxe" }, hxx = { class = "fa-h_square", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Hxx", + name = "Hxx" }, ico = { class = "seti-image", color = "#666620", cterm_color = "58", icon = "", - name = "Ico", + name = "Ico" }, import = { class = "fa-paperclip", color = "#2f2f2f", cterm_color = "236", icon = "", - name = "ImportConfiguration", + name = "ImportConfiguration" }, ini = { class = "seti-config", color = "#526064", cterm_color = "59", icon = "", - name = "Ini", + name = "Ini" }, ino = { class = "linux-arduino", color = "#397981", cterm_color = "30", icon = "", - name = "arduino", + name = "arduino" }, ipynb = { class = "seti-python", color = "#366b8a", cterm_color = "24", icon = "", - name = "Notebook", + name = "Notebook" }, ixx = { class = "custom-cpp", color = "#36677c", cterm_color = "24", icon = "", - name = "Ixx", + name = "Ixx" }, java = { class = "dev-java", color = "#992e33", cterm_color = "88", icon = "", - name = "Java", + name = "Java" }, jl = { class = "seti-julia", color = "#6c4b7c", cterm_color = "96", icon = "", - name = "Jl", + name = "Jl" }, jpeg = { class = "seti-image", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Jpeg", + name = "Jpeg" }, jpg = { class = "seti-image", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Jpg", + name = "Jpg" }, js = { class = "md-language_javascript", color = "#505011", cterm_color = "58", icon = "󰌞", - name = "Js", + name = "Js" }, json = { class = "seti-json", color = "#666620", cterm_color = "58", icon = "", - name = "Json", + name = "Json" }, json5 = { class = "seti-json", color = "#666620", cterm_color = "58", icon = "", - name = "Json5", + name = "Json5" }, jsonc = { class = "seti-json", color = "#666620", cterm_color = "58", icon = "", - name = "Jsonc", + name = "Jsonc" }, jsx = { class = "seti-react", color = "#158197", cterm_color = "31", icon = "", - name = "Jsx", + name = "Jsx" }, jxl = { class = "seti-image", color = "#6b4d83", cterm_color = "96", icon = "", - name = "JpegXl", + name = "JpegXl" }, ksh = { class = "dev-terminal", color = "#3a4446", cterm_color = "238", icon = "", - name = "Ksh", + name = "Ksh" }, kt = { class = "seti-kotlin", color = "#5f3ebf", cterm_color = "92", icon = "", - name = "Kotlin", + name = "Kotlin" }, kts = { class = "seti-kotlin", color = "#5f3ebf", cterm_color = "92", icon = "", - name = "KotlinScript", + name = "KotlinScript" }, leex = { class = "seti-elixir", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Leex", + name = "Leex" }, less = { class = "seti-css", color = "#563d7c", cterm_color = "54", icon = "", - name = "Less", + name = "Less" }, lhs = { class = "seti-haskell", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Lhs", + name = "Lhs" }, license = { class = "seti-license", color = "#666620", cterm_color = "58", icon = "", - name = "License", + name = "License" }, liquid = { class = "seti-liquid", color = "#4a6024", cterm_color = "58", icon = "", - name = "Liquid", + name = "Liquid" }, lock = { class = "fa-unlock_alt", color = "#5e5e5e", cterm_color = "59", icon = "", - name = "Lock", + name = "Lock" }, log = { class = "md-library", color = "#4a4a4a", cterm_color = "239", icon = "󰌱", - name = "Log", + name = "Log" }, lua = { class = "seti-lua", color = "#366b8a", cterm_color = "24", icon = "", - name = "Lua", + name = "Lua" }, luau = { class = "seti-lua", color = "#007abf", cterm_color = "32", icon = "", - name = "Luau", + name = "Luau" }, m4a = { class = "fa-music", color = "#336c78", cterm_color = "23", icon = "", - name = "M4A", + name = "M4A" }, m4v = { class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", icon = "", - name = "M4V", + name = "M4V" }, makefile = { class = "dev-gnu", color = "#526064", cterm_color = "59", icon = "", - name = "Makefile", + name = "Makefile" }, markdown = { class = "seti-markdown", color = "#4a4a4a", cterm_color = "239", icon = "", - name = "Markdown", + name = "Markdown" }, material = { class = "md-image_filter_hdr", color = "#8a2b72", cterm_color = "89", icon = "󰔉", - name = "Material", + name = "Material" }, md = { class = "oct-markdown", color = "#4a4a4a", cterm_color = "239", icon = "", - name = "Md", + name = "Md" }, mdx = { class = "oct-markdown", color = "#36677c", cterm_color = "24", icon = "", - name = "Mdx", + name = "Mdx" }, mint = { class = "md-leaf", color = "#44604a", cterm_color = "23", icon = "󰌪", - name = "Mint", + name = "Mint" }, mjs = { class = "md-language_javascript", color = "#505011", cterm_color = "58", icon = "󰌞", - name = "Mjs", + name = "Mjs" }, mk = { class = "dev-gnu", color = "#526064", cterm_color = "59", icon = "", - name = "Makefile", + name = "Makefile" }, mkv = { class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", icon = "", - name = "Mkv", + name = "Mkv" }, ml = { class = "seti-ocaml", color = "#975122", cterm_color = "130", icon = "", - name = "Ml", + name = "Ml" }, mli = { class = "seti-ocaml", color = "#975122", cterm_color = "130", icon = "", - name = "Mli", + name = "Mli" }, mo = { class = "md-infinity", color = "#654ca7", cterm_color = "61", icon = "󰛤", - name = "Motoko", + name = "Motoko" }, mov = { class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", icon = "", - name = "MOV", + name = "MOV" }, mp3 = { class = "fa-music", color = "#336c78", cterm_color = "23", icon = "", - name = "Mp3", + name = "Mp3" }, mp4 = { class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", icon = "", - name = "Mp4", + name = "Mp4" }, mpp = { class = "custom-cpp", color = "#36677c", cterm_color = "24", icon = "", - name = "Mpp", + name = "Mpp" }, mts = { class = "seti-typescript", color = "#36677c", cterm_color = "24", icon = "", - name = "Mts", + name = "Mts" }, mustache = { class = "seti-mustache", color = "#975122", cterm_color = "130", icon = "", - name = "Mustache", + name = "Mustache" }, nim = { class = "seti-nim", color = "#514700", cterm_color = "58", icon = "", - name = "Nim", + name = "Nim" }, nix = { class = "linux-nixos", color = "#3f5d72", cterm_color = "24", icon = "", - name = "Nix", + name = "Nix" }, nswag = { class = "seti-json", color = "#427516", cterm_color = "28", icon = "", - name = "Nswag", + name = "Nswag" }, nu = { class = "fa-chevron_right", color = "#276f4e", cterm_color = "29", icon = "", - name = "Nushell", + name = "Nushell" }, ogg = { class = "fa-music", color = "#336c78", cterm_color = "23", icon = "", - name = "Ogg", + name = "Ogg" }, opus = { class = "md-file_music", color = "#a55c01", cterm_color = "130", icon = "󰈣", - name = "OPUS", + name = "OPUS" }, org = { class = "custom-orgmode", color = "#4f7166", cterm_color = "66", icon = "", - name = "OrgMode", + name = "OrgMode" }, otf = { class = "fa-font", color = "#2f2f2f", cterm_color = "236", icon = "", - name = "OpenTypeFont", + name = "OpenTypeFont" }, out = { class = "cod-file_binary", color = "#9F0500", cterm_color = "124", icon = "", - name = "Out", + name = "Out" }, pck = { class = "oct-package", color = "#526064", cterm_color = "59", icon = "", - name = "PackedResource", + name = "PackedResource" }, pdf = { class = "cod-file_pdf", color = "#b30b00", cterm_color = "124", icon = "", - name = "Pdf", + name = "Pdf" }, php = { class = "seti-php", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Php", + name = "Php" }, pl = { class = "dev-perl", color = "#36677c", cterm_color = "24", icon = "", - name = "Pl", + name = "Pl" }, pm = { class = "dev-perl", color = "#36677c", cterm_color = "24", icon = "", - name = "Pm", + name = "Pm" }, png = { class = "seti-image", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Png", + name = "Png" }, pp = { class = "seti-puppet", color = "#80530d", cterm_color = "94", icon = "", - name = "Pp", + name = "Pp" }, ppt = { class = "md-file_powerpoint", color = "#983826", cterm_color = "124", icon = "󰈧", - name = "Ppt", + name = "Ppt" }, prisma = { class = "seti-prisma", color = "#444da2", cterm_color = "61", icon = "", - name = "Prisma", + name = "Prisma" }, pro = { class = "dev-prolog", color = "#725c2a", cterm_color = "94", icon = "", - name = "Prolog", + name = "Prolog" }, ps1 = { class = "md-powershell", color = "#325698", cterm_color = "25", icon = "󰨊", - name = "PsScriptfile", + name = "PsScriptfile" }, psb = { class = "dev-photoshop", color = "#36677c", cterm_color = "24", icon = "", - name = "Psb", + name = "Psb" }, psd = { class = "dev-photoshop", color = "#36677c", cterm_color = "24", icon = "", - name = "Psd", + name = "Psd" }, psd1 = { class = "md-powershell", color = "#4f5893", cterm_color = "60", icon = "󰨊", - name = "PsManifestfile", + name = "PsManifestfile" }, psm1 = { class = "md-powershell", color = "#4f5893", cterm_color = "60", icon = "󰨊", - name = "PsScriptModulefile", + name = "PsScriptModulefile" }, pxd = { class = "seti-python", color = "#3c6f98", cterm_color = "24", icon = "", - name = "Pxd", + name = "Pxd" }, pxi = { class = "seti-python", color = "#3c6f98", cterm_color = "24", icon = "", - name = "Pxi", + name = "Pxi" }, py = { class = "seti-python", color = "#805e02", cterm_color = "94", icon = "", - name = "Py", + name = "Py" }, pyc = { class = "seti-python", color = "#332d1d", cterm_color = "236", icon = "", - name = "Pyc", + name = "Pyc" }, pyd = { class = "seti-python", color = "#332d1d", cterm_color = "236", icon = "", - name = "Pyd", + name = "Pyd" }, pyi = { class = "seti-python", color = "#805e02", cterm_color = "94", icon = "", - name = "Pyi", + name = "Pyi" }, pyo = { class = "seti-python", color = "#332d1d", cterm_color = "236", icon = "", - name = "Pyo", + name = "Pyo" }, pyx = { class = "seti-python", color = "#3c6f98", cterm_color = "24", icon = "", - name = "Pyx", + name = "Pyx" }, query = { class = "fae-tree", color = "#607035", cterm_color = "58", icon = "", - name = "Query", + name = "Query" }, r = { class = "md-language_r", color = "#1a4c8c", cterm_color = "25", icon = "󰟔", - name = "R", + name = "R" }, rake = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Rake", + name = "Rake" }, razor = { class = "md-razor_single_edge", color = "#512bd4", cterm_color = "56", icon = "󱦘", - name = "RazorPage", + name = "RazorPage" }, rb = { class = "dev-ruby_rough", color = "#701516", cterm_color = "52", icon = "", - name = "Rb", + name = "Rb" }, res = { class = "seti-rescript", color = "#992e33", cterm_color = "88", icon = "", - name = "ReScript", + name = "ReScript" }, resi = { class = "seti-rescript", color = "#a33759", cterm_color = "125", icon = "", - name = "ReScriptInterface", + name = "ReScriptInterface" }, rlib = { class = "dev-rust", color = "#6f5242", cterm_color = "95", icon = "", - name = "Rlib", + name = "Rlib" }, rmd = { class = "seti-markdown", color = "#36677c", cterm_color = "24", icon = "", - name = "Rmd", + name = "Rmd" }, rproj = { class = "md-vector_rectangle", color = "#286844", cterm_color = "29", icon = "󰗆", - name = "Rproj", + name = "Rproj" }, rs = { class = "seti-rust", color = "#6f5242", cterm_color = "95", icon = "", - name = "Rs", + name = "Rs" }, rss = { class = "seti-xml", color = "#7e4e1e", cterm_color = "94", icon = "", - name = "Rss", + name = "Rss" }, sass = { class = "seti-sass", color = "#a33759", cterm_color = "125", icon = "", - name = "Sass", + name = "Sass" }, sbt = { class = "dev-scala", color = "#992e33", cterm_color = "88", icon = "", - name = "sbt", + name = "sbt" }, scad = { class = "linux-openscad", color = "#53480f", cterm_color = "58", icon = "", - name = "OpenSCAD", + name = "OpenSCAD" }, scala = { class = "dev-scala", color = "#992e33", cterm_color = "88", icon = "", - name = "Scala", + name = "Scala" }, scm = { class = "md-lambda", color = "#303030", cterm_color = "236", icon = "󰘧", - name = "Scheme", + name = "Scheme" }, scss = { class = "seti-sass", color = "#a33759", cterm_color = "125", icon = "", - name = "Scss", + name = "Scss" }, sh = { class = "dev-terminal", color = "#3a4446", cterm_color = "238", icon = "", - name = "Sh", + name = "Sh" }, sig = { class = "md-lambda", color = "#975122", cterm_color = "130", icon = "󰘧", - name = "Sig", + name = "Sig" }, slim = { class = "seti-html", color = "#aa391c", cterm_color = "124", icon = "", - name = "Slim", + name = "Slim" }, sln = { class = "dev-visualstudio", color = "#643995", cterm_color = "91", icon = "", - name = "Sln", + name = "Sln" }, sml = { class = "md-lambda", color = "#975122", cterm_color = "130", icon = "󰘧", - name = "Sml", + name = "Sml" }, sol = { class = "seti-ethereum", color = "#36677c", cterm_color = "24", icon = "", - name = "Solidity", + name = "Solidity" }, ["spec.js"] = { class = "oct-beaker", color = "#666620", cterm_color = "58", icon = "", - name = "SpecJs", + name = "SpecJs" }, ["spec.jsx"] = { class = "oct-beaker", color = "#158197", cterm_color = "31", icon = "", - name = "JavaScriptReactSpec", + name = "JavaScriptReactSpec" }, ["spec.ts"] = { class = "oct-beaker", color = "#36677c", cterm_color = "24", icon = "", - name = "SpecTs", + name = "SpecTs" }, ["spec.tsx"] = { class = "oct-beaker", color = "#1354bf", cterm_color = "26", icon = "", - name = "TypeScriptReactSpec", + name = "TypeScriptReactSpec" }, sql = { class = "dev-database", color = "#494848", cterm_color = "238", icon = "", - name = "Sql", + name = "Sql" }, sqlite = { class = "dev-database", color = "#494848", cterm_color = "238", icon = "", - name = "Sql", + name = "Sql" }, sqlite3 = { class = "dev-database", color = "#494848", cterm_color = "238", icon = "", - name = "Sql", + name = "Sql" }, styl = { class = "seti-stylus", color = "#466024", cterm_color = "22", icon = "", - name = "Styl", + name = "Styl" }, sublime = { class = "dev-sublime", color = "#975122", cterm_color = "130", icon = "", - name = "Suo", + name = "Suo" }, suo = { class = "dev-visualstudio", color = "#643995", cterm_color = "91", icon = "", - name = "Suo", + name = "Suo" }, sv = { class = "md-memory", color = "#017226", cterm_color = "22", icon = "󰍛", - name = "SystemVerilog", + name = "SystemVerilog" }, svelte = { class = "seti-svelte", color = "#bf2e00", cterm_color = "160", icon = "", - name = "Svelte", + name = "Svelte" }, svg = { class = "md-svg", color = "#80581e", cterm_color = "94", icon = "󰜡", - name = "Svg", + name = "Svg" }, svh = { class = "md-memory", color = "#017226", cterm_color = "22", icon = "󰍛", - name = "SystemVerilog", + name = "SystemVerilog" }, swift = { class = "dev-swift", color = "#975122", cterm_color = "130", icon = "", - name = "Swift", + name = "Swift" }, t = { class = "dev-perl", color = "#36677c", cterm_color = "24", icon = "", - name = "Tor", + name = "Tor" }, tbc = { class = "md-feather", color = "#1e5cb3", cterm_color = "25", icon = "󰛓", - name = "Tcl", + name = "Tcl" }, tcl = { class = "md-feather", color = "#1e5cb3", cterm_color = "25", icon = "󰛓", - name = "Tcl", + name = "Tcl" }, templ = { class = "cod-code", color = "#6e5e18", cterm_color = "58", icon = "", - name = "Templ", + name = "Templ" }, terminal = { class = "oct-terminal", color = "#217929", cterm_color = "28", icon = "", - name = "Terminal", + name = "Terminal" }, ["test.js"] = { class = "oct-beaker", color = "#666620", cterm_color = "58", icon = "", - name = "TestJs", + name = "TestJs" }, ["test.jsx"] = { class = "oct-beaker", color = "#158197", cterm_color = "31", icon = "", - name = "JavaScriptReactTest", + name = "JavaScriptReactTest" }, ["test.ts"] = { class = "oct-beaker", color = "#36677c", cterm_color = "24", icon = "", - name = "TestTs", + name = "TestTs" }, ["test.tsx"] = { class = "oct-beaker", color = "#1354bf", cterm_color = "26", icon = "", - name = "TypeScriptReactTest", + name = "TypeScriptReactTest" }, tex = { class = "md-text_shadow", color = "#3D6117", cterm_color = "22", icon = "󰙩", - name = "Tex", + name = "Tex" }, tf = { class = "seti-terraform", color = "#4732af", cterm_color = "55", icon = "", - name = "Terraform", + name = "Terraform" }, tfvars = { class = "fa-file", color = "#4732af", cterm_color = "55", icon = "", - name = "TFVars", + name = "TFVars" }, toml = { class = "custom-toml", color = "#753219", cterm_color = "88", icon = "", - name = "Toml", + name = "Toml" }, tres = { class = "dev-database", color = "#666620", cterm_color = "58", icon = "", - name = "TextResource", + name = "TextResource" }, ts = { class = "seti-typescript", color = "#36677c", cterm_color = "24", icon = "", - name = "Ts", + name = "Ts" }, tscn = { class = "md-movie", color = "#6b4d83", cterm_color = "96", icon = "󰎁", - name = "TextScene", + name = "TextScene" }, tsx = { class = "dev-react", color = "#1354bf", cterm_color = "26", icon = "", - name = "Tsx", + name = "Tsx" }, ttf = { class = "fa-font", color = "#2f2f2f", cterm_color = "236", icon = "", - name = "TrueTypeFont", + name = "TrueTypeFont" }, twig = { class = "seti-twig", color = "#466024", cterm_color = "22", icon = "", - name = "Twig", + name = "Twig" }, txt = { class = "md-file_document", color = "#447028", cterm_color = "22", icon = "󰈙", - name = "Txt", + name = "Txt" }, v = { class = "md-memory", color = "#017226", cterm_color = "22", icon = "󰍛", - name = "Verilog", + name = "Verilog" }, vala = { class = "seti-vala", color = "#562b86", cterm_color = "54", icon = "", - name = "Vala", + name = "Vala" }, vh = { class = "md-memory", color = "#017226", cterm_color = "22", icon = "󰍛", - name = "Verilog", + name = "Verilog" }, vhd = { class = "md-memory", color = "#017226", cterm_color = "22", icon = "󰍛", - name = "VHDL", + name = "VHDL" }, vhdl = { class = "md-memory", color = "#017226", cterm_color = "22", icon = "󰍛", - name = "VHDL", + name = "VHDL" }, vim = { class = "custom-vim", color = "#017226", cterm_color = "22", icon = "", - name = "Vim", + name = "Vim" }, vsh = { class = "custom-v_lang", color = "#3e5a7f", cterm_color = "24", icon = "", - name = "Vlang", + name = "Vlang" }, vue = { class = "seti-vue", color = "#466024", cterm_color = "22", icon = "", - name = "Vue", + name = "Vue" }, wasm = { class = "seti-wasm", color = "#4539a4", cterm_color = "55", icon = "", - name = "Wasm", + name = "Wasm" }, wav = { class = "fa-music", color = "#336c78", cterm_color = "23", icon = "", - name = "Wav", + name = "Wav" }, webm = { class = "fa-video_camera", color = "#7e4c10", cterm_color = "94", icon = "", - name = "Webm", + name = "Webm" }, webmanifest = { class = "seti-json", color = "#504b1e", cterm_color = "58", icon = "", - name = "Webmanifest", + name = "Webmanifest" }, webp = { class = "seti-image", color = "#6b4d83", cterm_color = "96", icon = "", - name = "Webp", + name = "Webp" }, webpack = { class = "md-webpack", color = "#36677c", cterm_color = "24", icon = "󰜫", - name = "Webpack", + name = "Webpack" }, woff = { class = "fa-font", color = "#2f2f2f", cterm_color = "236", icon = "", - name = "WebOpenFontFormat", + name = "WebOpenFontFormat" }, woff2 = { class = "fa-font", color = "#2f2f2f", cterm_color = "236", icon = "", - name = "WebOpenFontFormat", + name = "WebOpenFontFormat" }, xaml = { class = "md-language_xaml", color = "#512bd4", cterm_color = "56", icon = "󰙳", - name = "Xaml", + name = "Xaml" }, xcplayground = { class = "dev-swift", color = "#975122", cterm_color = "130", icon = "", - name = "XcPlayground", + name = "XcPlayground" }, xls = { class = "md-file_excel", color = "#207245", cterm_color = "29", icon = "󰈛", - name = "Xls", + name = "Xls" }, xlsx = { class = "md-file_excel", color = "#207245", cterm_color = "29", icon = "󰈛", - name = "Xlsx", + name = "Xlsx" }, xml = { class = "md-xml", color = "#975122", cterm_color = "130", icon = "󰗀", - name = "Xml", + name = "Xml" }, xul = { class = "dev-firefox", color = "#975122", cterm_color = "130", icon = "", - name = "Xul", + name = "Xul" }, yaml = { class = "seti-config", color = "#526064", cterm_color = "59", icon = "", - name = "Yaml", + name = "Yaml" }, yml = { class = "seti-config", color = "#526064", cterm_color = "59", icon = "", - name = "Yml", + name = "Yml" }, zig = { class = "seti-zig", color = "#7b4d0e", cterm_color = "94", icon = "", - name = "Zig", + name = "Zig" }, zsh = { class = "dev-terminal", color = "#447028", cterm_color = "22", icon = "", - name = "Zsh", - }, + name = "Zsh" + } } M.icons_by_operating_system = { @@ -2371,267 +2371,267 @@ M.icons_by_operating_system = { color = "#bf3437", cterm_color = "160", icon = "", - name = "Almalinux", + name = "Almalinux" }, alpine = { class = "linux-alpine", color = "#0d597f", cterm_color = "24", icon = "", - name = "Alpine", + name = "Alpine" }, aosc = { class = "linux-aosc", color = "#c00000", cterm_color = "124", icon = "", - name = "AOSC", + name = "AOSC" }, apple = { class = "seti-apple", color = "#515556", cterm_color = "240", icon = "", - name = "Apple", + name = "Apple" }, arch = { class = "md-arch", color = "#0b6f9e", cterm_color = "24", icon = "󰣇", - name = "Arch", + name = "Arch" }, artix = { class = "linux-artix", color = "#2b788f", cterm_color = "31", icon = "", - name = "Artix", + name = "Artix" }, budgie = { class = "linux-budgie", color = "#366397", cterm_color = "25", icon = "", - name = "Budgie", + name = "Budgie" }, centos = { class = "linux-centos", color = "#7a3d6a", cterm_color = "89", icon = "", - name = "Centos", + name = "Centos" }, debian = { class = "linux-debian", color = "#a80030", cterm_color = "88", icon = "", - name = "Debian", + name = "Debian" }, deepin = { class = "linux-deepin", color = "#1d6fa5", cterm_color = "24", icon = "", - name = "Deepin", + name = "Deepin" }, devuan = { class = "linux-devuan", color = "#404a52", cterm_color = "238", icon = "", - name = "Devuan", + name = "Devuan" }, elementary = { class = "linux-elementary", color = "#3b6081", cterm_color = "24", icon = "", - name = "Elementary", + name = "Elementary" }, endeavour = { class = "linux-endeavour", color = "#5c2e8b", cterm_color = "54", icon = "", - name = "Endeavour", + name = "Endeavour" }, fedora = { class = "linux-fedora", color = "#072a5e", cterm_color = "17", icon = "", - name = "Fedora", + name = "Fedora" }, freebsd = { class = "linux-freebsd", color = "#c90f02", cterm_color = "160", icon = "", - name = "FreeBSD", + name = "FreeBSD" }, gentoo = { class = "md-gentoo", color = "#585667", cterm_color = "60", icon = "󰣨", - name = "Gentoo", + name = "Gentoo" }, guix = { class = "linux-gnu_guix", color = "#554400", cterm_color = "58", icon = "", - name = "Guix", + name = "Guix" }, illumos = { class = "linux-illumos", color = "#bf320b", cterm_color = "160", icon = "", - name = "Illumos", + name = "Illumos" }, kali = { class = "linux-kali_linux", color = "#1d59bf", cterm_color = "26", icon = "", - name = "Kali", + name = "Kali" }, linux = { class = "cod-terminal_linux", color = "#333332", cterm_color = "236", icon = "", - name = "Linux", + name = "Linux" }, mageia = { class = "linux-mageia", color = "#1a719f", cterm_color = "24", icon = "", - name = "Mageia", + name = "Mageia" }, manjaro = { class = "linux-manjaro", color = "#227b3b", cterm_color = "29", icon = "", - name = "Manjaro", + name = "Manjaro" }, mint = { class = "md-linux_mint", color = "#447529", cterm_color = "28", icon = "󰣭", - name = "Mint", + name = "Mint" }, nixos = { class = "linux-nixos", color = "#3d586e", cterm_color = "24", icon = "", - name = "NixOS", + name = "NixOS" }, openbsd = { class = "linux-openbsd", color = "#514310", cterm_color = "58", icon = "", - name = "OpenBSD", + name = "OpenBSD" }, opensuse = { class = "linux-opensuse", color = "#4a7818", cterm_color = "64", icon = "", - name = "openSUSE", + name = "openSUSE" }, parrot = { class = "linux-parrot", color = "#2a6f80", cterm_color = "23", icon = "", - name = "Parrot", + name = "Parrot" }, pop_os = { class = "linux-pop_os", color = "#307b85", cterm_color = "30", icon = "", - name = "Pop_OS", + name = "Pop_OS" }, raspberry_pi = { class = "linux-raspberry_pi", color = "#be1848", cterm_color = "161", icon = "", - name = "RaspberryPiOS", + name = "RaspberryPiOS" }, redhat = { class = "md-redhat", color = "#EE0000", cterm_color = "196", icon = "󱄛", - name = "Redhat", + name = "Redhat" }, rocky = { class = "linux-rocky_linux", color = "#0b865e", cterm_color = "29", icon = "", - name = "RockyLinux", + name = "RockyLinux" }, sabayon = { class = "linux-sabayon", color = "#424242", cterm_color = "238", icon = "", - name = "Sabayon", + name = "Sabayon" }, slackware = { class = "linux-slackware", color = "#35477f", cterm_color = "25", icon = "", - name = "Slackware", + name = "Slackware" }, solus = { class = "linux-solus", color = "#4b5163", cterm_color = "239", icon = "", - name = "Solus", + name = "Solus" }, ubuntu = { class = "dev-ubuntu", color = "#a6360f", cterm_color = "124", icon = "", - name = "Ubuntu", + name = "Ubuntu" }, void = { class = "linux-void", color = "#295340", cterm_color = "23", icon = "", - name = "Void", + name = "Void" }, windows = { class = "fa-windows", color = "#007bb3", cterm_color = "67", icon = "", - name = "Windows", + name = "Windows" }, zorin = { class = "linux-zorin", color = "#0f79ae", cterm_color = "67", icon = "", - name = "Zorin", - }, + name = "Zorin" + } } return M From 1ba5bb9593e760b302141a78d1f947644773c3a6 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 16:58:48 +1100 Subject: [PATCH 8/9] no stylua for generated icons --- .github/workflows/ci.yml | 6 +++--- lua/nvim-web-devicons/icons-default.lua | 2 ++ lua/nvim-web-devicons/icons-light.lua | 2 ++ scripts/gen-icons.lua | 1 + scripts/generate_colors.lua | 7 ++++++- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84d8a0ab3..99047ef84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,8 +55,8 @@ jobs: with: neovim: true + - run: luarocks install inspect 3.1.3 + - name: make colors-check - run: | - luarocks install inspect 3.1.3 - make colors-check + run: make colors-check diff --git a/lua/nvim-web-devicons/icons-default.lua b/lua/nvim-web-devicons/icons-default.lua index aebe5c9a8..7634e99ac 100644 --- a/lua/nvim-web-devicons/icons-default.lua +++ b/lua/nvim-web-devicons/icons-default.lua @@ -1,3 +1,5 @@ +-- stylua: ignore start + local M = {} M.icons_by_filename = { diff --git a/lua/nvim-web-devicons/icons-light.lua b/lua/nvim-web-devicons/icons-light.lua index 9f158c9f8..6fa9311bb 100644 --- a/lua/nvim-web-devicons/icons-light.lua +++ b/lua/nvim-web-devicons/icons-light.lua @@ -1,3 +1,5 @@ +-- stylua: ignore start + local M = {} M.icons_by_filename = { diff --git a/scripts/gen-icons.lua b/scripts/gen-icons.lua index d654f9f24..0ec2fdfa7 100644 --- a/scripts/gen-icons.lua +++ b/scripts/gen-icons.lua @@ -26,6 +26,7 @@ if not file then os.exit(1) end io.output(file) +io.write "-- stylua: ignore start\n\n" io.write "local M = {}\n\n" -- generate all bys diff --git a/scripts/generate_colors.lua b/scripts/generate_colors.lua index 42195f2f3..5c246c6df 100644 --- a/scripts/generate_colors.lua +++ b/scripts/generate_colors.lua @@ -129,7 +129,12 @@ print "Generating file with icons for light backgrounds..." -- move to first line vim.cmd ":1" -local lines0 = { "local M = {}", "" } +local lines0 = { + "-- stylua: ignore start", + "", + "local M = {}", + "", +} -- first table if fn.search("^M.icons_by_filename", "c") == 0 then From 67cd3c17507adc84fd821eb77a27988b63a85815 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 17 Mar 2024 17:20:25 +1100 Subject: [PATCH 9/9] update contrib --- CONTRIBUTING.md | 84 ++++++++++++++++++++++++++++++------------------- 1 file changed, 51 insertions(+), 33 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e34443be8..6ce08db8c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,3 @@ -# TODO #192 update following CI configuration - # Contributing to `nvim-web-devicons` Thank you for your contribution! @@ -8,30 +6,43 @@ Thank you for your contribution! Please name your commits and the PR simply e.g. - add .tex - update makefile icon - update .kt colors - -## Order - -Please ensure `icons_by_filename`, `icons_by_file_extension` and `filetypes` are ordered alphabetically, to prevent merge conflicts. + feat: add tex + fix: makefile icon + fix: update kt colors ## Prerequisites -Code is formatted using stylua and linted using luacheck. +### Style And Lint -You can install these with: ```sh cargo install stylua -luarocks install luacheck +luarocks --local install luacheck ``` - -or via your OS package manager e.g. Arch linux: +or ```sh pacman -S stylua pacman -S luacheck ``` +### Building + +Generating icon lua code: +```sh +luarocks --local install inspect +``` +or +```sh +yay -S lua-inspect +``` + +### Optional + +[yq](https://github.com/mikefarah/yq) for updating nerd-fonts `glyphnames.lua` + +```sh +pacman -S go-yq +``` + ## Building Following your changes, please run: @@ -41,11 +52,12 @@ make ``` This will: +1. Generate `lua/nvim-web-devicons/icons-*.lua` 1. `git clone --depth 1 https://github.com/lifepillar/vim-colortemplate.git vim-colortemplate` if necessary 1. Generate cterm colors -2. Generate light color variants -3. Check style -4. Lint +1. Generate light color variants +1. Check style +1. Lint You can automatically fix any style issues via: ```sh @@ -54,37 +66,43 @@ make style-fix ## Generate Colors -Add or update icons in `lua/nvim-web-devicons/icons-default.lua` - -There are two tables where icons can be added: -1. icons_by_filename -2. icons_by_file_extension +Add or update icons in `src/by-*.lua` -Add the icon in table 1. if the icon is for a file that is always named that -way, for example `.gitconfig`. Add to table 2. if the icon is for all files -with an extension. +There are three tables in which icons can be added: +1. name: the icon is for a file that is always named that way, for example `.gitconfig` +1. ext: the icon is for all files with that extension +1. os: icon for an os or variant Each icon must have the following (this is an example): + ```lua [".gitconfig"] = { - icon = "", + class = "seti-config", color = "#41535b", - cterm_color = "0", name = "GitConfig", }, ``` -___Key/value pairs must appear in the same exact order!___ +- `class` must be a vailid nerd-font class, see [cheat sheet](https://www.nerdfonts.com/cheat-sheet) - `color` must contain a color in the html notation -- `cterm_color` must be below `color`, and it must contain a number (any number) -- the correct value for `cterm_color` will be generated by the script Ensure your current working directory is the repo root. Run `make`. This will: -- Update `cterm_color` based on `color` -- Generate `lua/nvim-web-devicons/icons-light.lua` +- Generate `lua/nvim-web-devicons/icons-*.lua` with an `icon` and `cterm_color` +- Generate `lua/nvim-web-devicons/icons-light.lua` from the above, with light `color` and `cterm_color` + +Example generated icon: +```lua +[".gitconfig"] = { + class = "seti-config", + color = "#41535b", + cterm_color = "239", + icon = "", + name = "GitConfig" +}, +``` -Please commit both `lua/nvim-web-devicons/icons-default.lua` and `lua/nvim-web-devicons/icons-light.lua` +Please commit `src/by-*.lua`, `lua/nvim-web-devicons/icons-default.lua` and `lua/nvim-web-devicons/icons-light.lua` ## Test