diff --git a/conf.lua b/conf.lua index 144968e..502a785 100644 --- a/conf.lua +++ b/conf.lua @@ -1,43 +1,20 @@ function love.conf(t) - t.title = "Material-Love" - t.author = "Positive07 - Pablo Mayobre" - t.url = "https://www.github.com/Positive07/material-love" - t.license = "MIT License - Copyright (c) 2015 Pablo Mayobre" + t.title = "Material-Love" + t.author = "Pablo A. Mayobre - Positive07" + t.url = "https://www.github.com/Positive07/material-love" + t.license = "MIT License - Copyright (c) 2015-2016 Pablo A. Mayobre (Positive07)" - t.identity = "Material-Love" -- The name of the save directory (string) - t.version = "0.9.0" -- The LÖVE version this game was made for (string) - t.console = false -- Attach a console (boolean, Windows only) - t.window.title = "Material-Love" -- The window title (string) - t.window.icon = "material-love/images/icon32.png" -- Filepath to an image to use as the window's icon (string) - t.window.width = 400 -- The window width (number) - t.window.height = 400 -- The window height (number) - t.window.borderless = false -- Remove all border visuals from the window (boolean) - t.window.resizable = false -- Let the window be user-resizable (boolean) - t.window.minwidth = 1 -- Minimum window width if the window is resizable (number) - t.window.minheight = 1 -- Minimum window height if the window is resizable (number) - t.window.fullscreen = false -- Enable fullscreen (boolean) - t.window.fullscreentype = "desktop" -- Standard fullscreen or desktop fullscreen mode (string) - t.window.vsync = true -- Enable vertical sync (boolean) - t.window.fsaa = 1 -- The number of samples to use with multi-sampled antialiasing (number) - t.window.msaa = 1 -- The number of samples to use with multi-sampled antialiasing (number) - t.window.display = 1 -- Index of the monitor to show the window in (number) - t.window.highdpi = true -- Enable high-dpi mode for the window on a Retina display (boolean) - t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean) - t.window.x = nil -- The x-coordinate of the window's position in the specified display (number) - t.window.y = nil -- The y-coordinate of the window's position in the specified display (number) + t.identity = "Material-Love" -- The name of the save directory (string) + t.window.title = "Material-Love" -- The window title (string) + t.window.icon = "material-love/images/icon32.png" -- Filepath to an image to use as the window's icon (string) + t.window.width = 400 -- The window width (number) + t.window.height = 400 -- The window height (number) + t.window.highdpi = true -- Enable high-dpi mode for the window on a Retina display (boolean) - t.modules.audio = false -- Enable the audio module (boolean) - t.modules.event = true -- Enable the event module (boolean) - t.modules.graphics = true -- Enable the graphics module (boolean) - t.modules.image = true -- Enable the image module (boolean) - t.modules.joystick = false -- Enable the joystick module (boolean) - t.modules.keyboard = true -- Enable the keyboard module (boolean) - t.modules.math = false -- Enable the math module (boolean) - t.modules.mouse = true -- Enable the mouse module (boolean) - t.modules.physics = false -- Enable the physics module (boolean) - t.modules.sound = false -- Enable the sound module (boolean) - t.modules.system = true -- Enable the system module (boolean) - t.modules.timer = true -- Enable the timer module (boolean) - t.modules.window = true -- Enable the window module (boolean) - t.modules.thread = false -- Enable the thread module (boolean) -end \ No newline at end of file + t.modules.video = false -- Enable the video module (boolean) + t.modules.audio = false -- Enable the audio module (boolean) + t.modules.joystick = false -- Enable the joystick module (boolean) + t.modules.physics = false -- Enable the physics module (boolean) + t.modules.sound = false -- Enable the sound module (boolean) + t.modules.thread = false -- Enable the thread module (boolean) +end diff --git a/main.lua b/main.lua index 2a7880c..8a50c94 100644 --- a/main.lua +++ b/main.lua @@ -2,17 +2,17 @@ io.stdout:setvbuf("no") local m local lw,lg = love.window,love.graphics -local li = love.image.newImageData +--local li = love.image.newImageData local w, h, ps local AppBar, Card, Circle, Back, Accept, Cancel, Toast -local click, i, cursor, hover, hf +local click--, i, cursor, hover, hf local Collisions = { circle = function (x,y,c,f,e) - local f = f or function () end - local e = e or function () end + f = f or function () end + e = e or function () end if (x - c.x)^2 + (y - c.y)^2 < c.r ^ 2 then f(x,y,c) @@ -22,10 +22,10 @@ local Collisions = { end, box = function (x,y,b,t,f,e) - local f = f or function () end - local e = e or function () end + f = f or function () end + e = e or function () end - local t = t or {} + t = t or {} if x > b.x - (t[1] or 0) and y > b.y - (t[2] or 0) and x < (b.x + b.w) + (t[3] or 0) and @@ -39,11 +39,7 @@ local Collisions = { } love.load = function () - local a = love.timer.getTime() m = require "material-love" - local b = love.timer.getTime() - - print (b - a) -- i = lg.newImage("material-love/images/nine-patch.png") -- m.nine.convert(i, "shadow",true) @@ -102,13 +98,13 @@ love.load = function () t = 0, inside = false, out = true, - nupdate = function (Toast,dt) - Toast.t = Toast.t + dt - local p = Toast.t/0.5 - Toast.h = Toast.fh * (-p * (p - 2)) + nupdate = function (self, dt) + self.t = self.t + dt + local p = self.t/0.5 + self.h = self.fh * (-p * (p - 2)) - if Toast.t > 0.5 then - Toast.update = function () end + if self.t > 0.5 then + self.update = function () end end end } @@ -154,9 +150,9 @@ love.draw = function () lg.line(Card.x + 16 * ps, Card.y + 40 * ps, Card.x + Card.w - 16 * ps, Card.y + 40 * ps) lg.setColor(m.colors.mono("black", "body")) lg.setFont(m.roboto "body1") - lg.printf([[Material-love provides functions to easily recreate the material-design functionalities in Love, such as ripples and shadows. + lg.printf([[Material-Love provides functions to easily recreate the material-design functionalities in Love, such as ripples and shadows. Go to the repo by clicking the heart or close this form with the back arrow in the AppBar. You can also open the toasts by clicking any of the two buttons in the bottom of the card. - + PS: Enjoy the ripples!]], Card.x + 16 * ps, Card.y + 48 * ps, Card.w - 32 * ps) lg.setColor(m.colors("grey", "400")) @@ -201,13 +197,13 @@ love.mousepressed = function (x,y,b) if Toast.inside then Toast.inside = false Toast.t = 0 - Toast.update = function (Toast, dt) - Toast.t = Toast.t + dt - local p = Toast.t/0.5 - Toast.h = Toast.fh - Toast.fh * (-p * (p - 2)) + Toast.update = function (self, dt) + self.t = self.t + dt + local p = self.t/0.5 + self.h = self.fh - self.fh * (-p * (p - 2)) - if Toast.t > 0.5 then - Toast.out = true + if self.t > 0.5 then + self.out = true end end end @@ -247,11 +243,11 @@ love.mousepressed = function (x,y,b) end) end -love.mousereleased = function (x,y,b) +love.mousereleased = function () Accept.ripple:fade() Cancel.ripple:fade() Back:fade() Circle:fade() if click then love.event.quit() end -end \ No newline at end of file +end diff --git a/material-love/assets/icons.ttf b/material-love/assets/icons.ttf index 7fab06c..fb79695 100644 Binary files a/material-love/assets/icons.ttf and b/material-love/assets/icons.ttf differ diff --git a/material-love/libs/colors.lua b/material-love/libs/colors.lua index 93866a2..7ebff87 100644 --- a/material-love/libs/colors.lua +++ b/material-love/libs/colors.lua @@ -361,7 +361,7 @@ local isSRGB = love.graphics.isGammaCorrect and love.graphics.isGammaCorrect() o end local convert = function (color) - if isSRGB then + if isSRGB() then return love.math.linearToGamma(color) else return unpack(color) @@ -439,12 +439,12 @@ function colors.background (l) if l ~= "light" then if l == "dark" then - return convert(colors["blue-grey"]["800"]) + return convert(_c["blue-grey"]["800"]) else error ("Argument #1 to background, is not light nor black", 2) end else - return convert(colors["grey"]["50"]) + return convert(_c["grey"]["50"]) end end diff --git a/material-love/libs/icons.lua b/material-love/libs/icons.lua index 2f13514..282acba 100644 --- a/material-love/libs/icons.lua +++ b/material-love/libs/icons.lua @@ -1,1656 +1,1728 @@ local unpack = table.unpack or unpack local icons = { --1650 icons - ["access-point"] = "\2", - ["access-point-network"] = "\3", - ["account"] = "\4", - ["account-alert"] = "\5", - ["account-box"] = "\6", - ["account-box-outline"] = "\7", - ["account-card-details"] = "\215\146", - ["account-check"] = "\8", - ["account-circle"] = "\9", - ["account-convert"] = "\n", - ["account-key"] = "\11", - ["account-location"] = "\12", - ["account-minus"] = "\13", - ["account-multiple"] = "\14", - ["account-multiple-minus"] = "\215\147", - ["account-multiple-outline"] = "\15", - ["account-multiple-plus"] = "\16", - ["account-network"] = "\17", - ["account-off"] = "\18", - ["account-outline"] = "\19", - ["account-plus"] = "\20", - ["account-remove"] = "\21", - ["account-search"] = "\22", - ["account-settings"] = "\216\176", - ["account-settings-variant"] = "\216\177", - ["account-star"] = "\23", - ["account-star-variant"] = "\24", - ["account-switch"] = "\25", - ["adjust"] = "\26", - ["air-conditioner"] = "\27", - ["airballoon"] = "\28", - ["airplane"] = "\29", - ["airplane-landing"] = "\215\148", - ["airplane-off"] = "\30", - ["airplane-takeoff"] = "\215\149", - ["airplay"] = "\31", - ["alarm"] = " ", - ["alarm-check"] = "!", - ["alarm-multiple"] = "\"", - ["alarm-off"] = "#", - ["alarm-plus"] = "$", - ["album"] = "%", - ["alert"] = "&", - ["alert-box"] = "'", - ["alert-circle"] = "(", - ["alert-circle-outline"] = "\215\150", - ["alert-octagon"] = ")", - ["alert-outline"] = "*", - ["alpha"] = "+", - ["alphabetical"] = ",", - ["altimeter"] = "\215\151", - ["amazon"] = "-", - ["amazon-clouddrive"] = ".", - ["ambulance"] = "/", - ["amplifier"] = "0", - ["anchor"] = "1", - ["android"] = "2", - ["android-debug-bridge"] = "3", - ["android-studio"] = "4", - ["animation"] = "\215\152", - ["apple"] = "5", - ["apple-finder"] = "6", - ["apple-ios"] = "7", - ["apple-keyboard-caps"] = "\216\178", - ["apple-keyboard-command"] = "\216\179", - ["apple-keyboard-control"] = "\216\180", - ["apple-keyboard-option"] = "\216\181", - ["apple-keyboard-shift"] = "\216\182", - ["apple-mobileme"] = "8", - ["apple-safari"] = "9", - ["application"] = "\216\148", - ["appnet"] = ":", - ["apps"] = ";", - ["archive"] = "<", - ["arrange-bring-forward"] = "=", - ["arrange-bring-to-front"] = ">", - ["arrange-send-backward"] = "?", - ["arrange-send-to-back"] = "@", - ["arrow-all"] = "A", - ["arrow-bottom-left"] = "B", - ["arrow-bottom-right"] = "C", - ["arrow-compress"] = "\216\149", - ["arrow-compress-all"] = "D", - ["arrow-down"] = "E", - ["arrow-down-bold"] = "F", - ["arrow-down-bold-circle"] = "G", - ["arrow-down-bold-circle-outline"] = "H", - ["arrow-down-bold-hexagon-outline"] = "I", - ["arrow-down-drop-circle"] = "J", - ["arrow-down-drop-circle-outline"] = "K", - ["arrow-expand"] = "\216\150", - ["arrow-expand-all"] = "L", - ["arrow-left"] = "M", - ["arrow-left-bold"] = "N", - ["arrow-left-bold-circle"] = "O", - ["arrow-left-bold-circle-outline"] = "P", - ["arrow-left-bold-hexagon-outline"] = "Q", - ["arrow-left-drop-circle"] = "R", - ["arrow-left-drop-circle-outline"] = "S", - ["arrow-right"] = "T", - ["arrow-right-bold"] = "U", - ["arrow-right-bold-circle"] = "V", - ["arrow-right-bold-circle-outline"] = "W", - ["arrow-right-bold-hexagon-outline"] = "X", - ["arrow-right-drop-circle"] = "Y", - ["arrow-right-drop-circle-outline"] = "Z", - ["arrow-top-left"] = "[", - ["arrow-top-right"] = "\\", - ["arrow-up"] = "]", - ["arrow-up-bold"] = "^", - ["arrow-up-bold-circle"] = "_", - ["arrow-up-bold-circle-outline"] = "`", - ["arrow-up-bold-hexagon-outline"] = "a", - ["arrow-up-drop-circle"] = "b", - ["arrow-up-drop-circle-outline"] = "c", - ["assistant"] = "d", - ["at"] = "e", - ["attachment"] = "f", - ["audiobook"] = "g", - ["auto-fix"] = "h", - ["auto-upload"] = "i", - ["autorenew"] = "j", - ["av-timer"] = "k", - ["baby"] = "l", - ["backburger"] = "m", - ["backspace"] = "n", - ["backup-restore"] = "o", - ["bank"] = "p", - ["barcode"] = "q", - ["barcode-scan"] = "r", - ["barley"] = "s", - ["barrel"] = "t", - ["basecamp"] = "u", - ["basket"] = "v", - ["basket-fill"] = "w", - ["basket-unfill"] = "x", - ["battery"] = "y", - ["battery-10"] = "z", - ["battery-20"] = "{", - ["battery-30"] = "|", - ["battery-40"] = "}", - ["battery-50"] = "~", - ["battery-60"] = "\127", - ["battery-70"] = "\194\128", - ["battery-80"] = "\194\129", - ["battery-90"] = "\194\130", - ["battery-alert"] = "\194\131", - ["battery-charging"] = "\194\132", - ["battery-charging-100"] = "\194\133", - ["battery-charging-20"] = "\194\134", - ["battery-charging-30"] = "\194\135", - ["battery-charging-40"] = "\194\136", - ["battery-charging-60"] = "\194\137", - ["battery-charging-80"] = "\194\138", - ["battery-charging-90"] = "\194\139", - ["battery-minus"] = "\194\140", - ["battery-negative"] = "\194\141", - ["battery-outline"] = "\194\142", - ["battery-plus"] = "\194\143", - ["battery-positive"] = "\194\144", - ["battery-unknown"] = "\194\145", - ["beach"] = "\194\146", - ["beats"] = "\194\151", - ["beer"] = "\194\152", - ["behance"] = "\194\153", - ["bell"] = "\194\154", - ["bell-off"] = "\194\155", - ["bell-outline"] = "\194\156", - ["bell-plus"] = "\194\157", - ["bell-ring"] = "\194\158", - ["bell-ring-outline"] = "\194\159", - ["bell-sleep"] = "\194\160", - ["beta"] = "\194\161", - ["bible"] = "\194\162", - ["bike"] = "\194\163", - ["bing"] = "\194\164", - ["binoculars"] = "\194\165", - ["bio"] = "\194\166", - ["biohazard"] = "\194\167", - ["bitbucket"] = "\194\168", - ["black-mesa"] = "\194\169", - ["blackberry"] = "\194\170", - ["blender"] = "\194\171", - ["blinds"] = "\194\172", - ["block-helper"] = "\194\173", - ["blogger"] = "\194\174", - ["bluetooth"] = "\194\175", - ["bluetooth-audio"] = "\194\176", - ["bluetooth-connect"] = "\194\177", - ["bluetooth-off"] = "\194\178", - ["bluetooth-settings"] = "\194\179", - ["bluetooth-transfer"] = "\194\180", - ["blur"] = "\194\181", - ["blur-linear"] = "\194\182", - ["blur-off"] = "\194\183", - ["blur-radial"] = "\194\184", - ["bone"] = "\194\185", - ["book"] = "\194\186", - ["book-minus"] = "\215\153", - ["book-multiple"] = "\194\187", - ["book-multiple-variant"] = "\194\188", - ["book-open"] = "\194\189", - ["book-open-page-variant"] = "\215\154", - ["book-open-variant"] = "\194\190", - ["book-plus"] = "\215\155", - ["book-variant"] = "\194\191", - ["bookmark"] = "\195\128", - ["bookmark-check"] = "\195\129", - ["bookmark-music"] = "\195\130", - ["bookmark-outline"] = "\195\131", - ["bookmark-plus"] = "\195\133", - ["bookmark-plus-outline"] = "\195\132", - ["bookmark-remove"] = "\195\134", - ["boombox"] = "\215\156", - ["border-all"] = "\195\135", - ["border-bottom"] = "\195\136", - ["border-color"] = "\195\137", - ["border-horizontal"] = "\195\138", - ["border-inside"] = "\195\139", - ["border-left"] = "\195\140", - ["border-none"] = "\195\141", - ["border-outside"] = "\195\142", - ["border-right"] = "\195\143", - ["border-style"] = "\195\144", - ["border-top"] = "\195\145", - ["border-vertical"] = "\195\146", - ["bowl"] = "\216\151", - ["bowling"] = "\195\147", - ["box"] = "\195\148", - ["box-cutter"] = "\195\149", - ["box-shadow"] = "\216\183", - ["bridge"] = "\216\152", - ["briefcase"] = "\195\150", - ["briefcase-check"] = "\195\151", - ["briefcase-download"] = "\195\152", - ["briefcase-upload"] = "\195\153", - ["brightness-1"] = "\195\154", - ["brightness-2"] = "\195\155", - ["brightness-3"] = "\195\156", - ["brightness-4"] = "\195\157", - ["brightness-5"] = "\195\158", - ["brightness-6"] = "\195\159", - ["brightness-7"] = "\195\160", - ["brightness-auto"] = "\195\161", - ["broom"] = "\195\162", - ["brush"] = "\195\163", - ["buffer"] = "\216\153", - ["bug"] = "\195\164", - ["bulletin-board"] = "\195\165", - ["bullhorn"] = "\195\166", - ["bullseye"] = "\215\157", - ["burst-mode"] = "\215\158", - ["bus"] = "\195\167", - ["cached"] = "\195\168", - ["cake"] = "\195\169", - ["cake-layered"] = "\195\170", - ["cake-variant"] = "\195\171", - ["calculator"] = "\195\172", - ["calendar"] = "\195\173", - ["calendar-blank"] = "\195\174", - ["calendar-check"] = "\195\175", - ["calendar-clock"] = "\195\176", - ["calendar-multiple"] = "\195\177", - ["calendar-multiple-check"] = "\195\178", - ["calendar-plus"] = "\195\179", - ["calendar-remove"] = "\195\180", - ["calendar-text"] = "\195\181", - ["calendar-today"] = "\195\182", - ["call-made"] = "\195\183", - ["call-merge"] = "\195\184", - ["call-missed"] = "\195\185", - ["call-received"] = "\195\186", - ["call-split"] = "\195\187", - ["camcorder"] = "\195\188", - ["camcorder-box"] = "\195\189", - ["camcorder-box-off"] = "\195\190", - ["camcorder-off"] = "\195\191", - ["camera"] = "\196\128", - ["camera-enhance"] = "\196\129", - ["camera-front"] = "\196\130", - ["camera-front-variant"] = "\196\131", - ["camera-iris"] = "\196\132", - ["camera-off"] = "\215\159", - ["camera-party-mode"] = "\196\133", - ["camera-rear"] = "\196\134", - ["camera-rear-variant"] = "\196\135", - ["camera-switch"] = "\196\136", - ["camera-timer"] = "\196\137", - ["candle"] = "\215\162", - ["candycane"] = "\196\138", - ["car"] = "\196\139", - ["car-battery"] = "\196\140", - ["car-connected"] = "\196\141", - ["car-wash"] = "\196\142", - ["cards"] = "\216\184", - ["cards-outline"] = "\216\185", - ["cards-playing-outline"] = "\216\186", - ["carrot"] = "\196\143", - ["cart"] = "\196\144", - ["cart-off"] = "\217\171", - ["cart-outline"] = "\196\145", - ["cart-plus"] = "\196\146", - ["case-sensitive-alt"] = "\196\147", - ["cash"] = "\196\148", - ["cash-100"] = "\196\149", - ["cash-multiple"] = "\196\150", - ["cash-usd"] = "\196\151", - ["cast"] = "\196\152", - ["cast-connected"] = "\196\153", - ["castle"] = "\196\154", - ["cat"] = "\196\155", - ["cellphone"] = "\196\156", - ["cellphone-android"] = "\196\157", - ["cellphone-basic"] = "\196\158", - ["cellphone-dock"] = "\196\159", - ["cellphone-iphone"] = "\196\160", - ["cellphone-link"] = "\196\161", - ["cellphone-link-off"] = "\196\162", - ["cellphone-settings"] = "\196\163", - ["certificate"] = "\196\164", - ["chair-school"] = "\196\165", - ["chart-arc"] = "\196\166", - ["chart-areaspline"] = "\196\167", - ["chart-bar"] = "\196\168", - ["chart-bubble"] = "\215\163", - ["chart-gantt"] = "\217\172", - ["chart-histogram"] = "\196\169", - ["chart-line"] = "\196\170", - ["chart-pie"] = "\196\171", - ["chart-scatterplot-hexbin"] = "\217\173", - ["chart-timeline"] = "\217\174", - ["check"] = "\196\172", - ["check-all"] = "\196\173", - ["check-circle"] = "\215\160", - ["check-circle-outline"] = "\215\161", - ["checkbox-blank"] = "\196\174", - ["checkbox-blank-circle"] = "\196\175", - ["checkbox-blank-circle-outline"] = "\196\176", - ["checkbox-blank-outline"] = "\196\177", - ["checkbox-marked"] = "\196\178", - ["checkbox-marked-circle"] = "\196\179", - ["checkbox-marked-circle-outline"] = "\196\180", - ["checkbox-marked-outline"] = "\196\181", - ["checkbox-multiple-blank"] = "\196\182", - ["checkbox-multiple-blank-circle"] = "\216\187", - ["checkbox-multiple-blank-circle-outline"] = "\216\188", - ["checkbox-multiple-blank-outline"] = "\196\183", - ["checkbox-multiple-marked"] = "\196\184", - ["checkbox-multiple-marked-circle"] = "\216\189", - ["checkbox-multiple-marked-circle-outline"] = "\216\190", - ["checkbox-multiple-marked-outline"] = "\196\185", - ["checkerboard"] = "\196\186", - ["chemical-weapon"] = "\196\187", - ["chevron-double-down"] = "\196\188", - ["chevron-double-left"] = "\196\189", - ["chevron-double-right"] = "\196\190", - ["chevron-double-up"] = "\196\191", - ["chevron-down"] = "\197\128", - ["chevron-left"] = "\197\129", - ["chevron-right"] = "\197\130", - ["chevron-up"] = "\197\131", - ["chip"] = "\216\154", - ["church"] = "\197\132", - ["cisco-webex"] = "\197\133", - ["city"] = "\197\134", - ["clipboard"] = "\197\135", - ["clipboard-account"] = "\197\136", - ["clipboard-alert"] = "\197\137", - ["clipboard-arrow-down"] = "\197\138", - ["clipboard-arrow-left"] = "\197\139", - ["clipboard-check"] = "\197\140", - ["clipboard-outline"] = "\197\141", - ["clipboard-text"] = "\197\142", - ["clippy"] = "\197\143", - ["clock"] = "\197\144", - ["clock-alert"] = "\215\142", - ["clock-end"] = "\197\145", - ["clock-fast"] = "\197\146", - ["clock-in"] = "\197\147", - ["clock-out"] = "\197\148", - ["clock-start"] = "\197\149", - ["close"] = "\197\150", - ["close-box"] = "\197\151", - ["close-box-outline"] = "\197\152", - ["close-circle"] = "\197\153", - ["close-circle-outline"] = "\197\154", - ["close-network"] = "\197\155", - ["close-octagon"] = "\197\156", - ["close-octagon-outline"] = "\197\157", - ["closed-caption"] = "\197\158", - ["cloud"] = "\197\159", - ["cloud-check"] = "\197\160", - ["cloud-circle"] = "\197\161", - ["cloud-download"] = "\197\162", - ["cloud-outline"] = "\197\163", - ["cloud-outline-off"] = "\197\164", - ["cloud-print"] = "\197\165", - ["cloud-print-outline"] = "\197\166", - ["cloud-sync"] = "\216\191", - ["cloud-upload"] = "\197\167", - ["code-array"] = "\197\168", - ["code-braces"] = "\197\169", - ["code-brackets"] = "\197\170", - ["code-equal"] = "\197\171", - ["code-greater-than"] = "\197\172", - ["code-greater-than-or-equal"] = "\197\173", - ["code-less-than"] = "\197\174", - ["code-less-than-or-equal"] = "\197\175", - ["code-not-equal"] = "\197\176", - ["code-not-equal-variant"] = "\197\177", - ["code-parentheses"] = "\197\178", - ["code-string"] = "\197\179", - ["code-tags"] = "\197\180", - ["codepen"] = "\197\181", - ["coffee"] = "\197\182", - ["coffee-to-go"] = "\197\183", - ["coin"] = "\197\184", - ["collage"] = "\217\128", - ["color-helper"] = "\197\185", - ["comment"] = "\197\186", - ["comment-account"] = "\197\187", - ["comment-account-outline"] = "\197\188", - ["comment-alert"] = "\197\189", - ["comment-alert-outline"] = "\197\190", - ["comment-check"] = "\197\191", - ["comment-check-outline"] = "\198\128", - ["comment-multiple-outline"] = "\198\129", - ["comment-outline"] = "\198\130", - ["comment-plus-outline"] = "\198\131", - ["comment-processing"] = "\198\132", - ["comment-processing-outline"] = "\198\133", - ["comment-question-outline"] = "\198\134", - ["comment-remove-outline"] = "\198\135", - ["comment-text"] = "\198\136", - ["comment-text-outline"] = "\198\137", - ["compare"] = "\198\138", - ["compass"] = "\198\139", - ["compass-outline"] = "\198\140", - ["console"] = "\198\141", - ["contact-mail"] = "\198\142", - ["content-copy"] = "\198\143", - ["content-cut"] = "\198\144", - ["content-duplicate"] = "\198\145", - ["content-paste"] = "\198\146", - ["content-save"] = "\198\147", - ["content-save-all"] = "\198\148", - ["content-save-settings"] = "\216\155", - ["contrast"] = "\198\149", - ["contrast-box"] = "\198\150", - ["contrast-circle"] = "\198\151", - ["cookie"] = "\198\152", - ["copyright"] = "\215\166", - ["counter"] = "\198\153", - ["cow"] = "\198\154", - ["credit-card"] = "\198\155", - ["credit-card-multiple"] = "\198\156", - ["credit-card-off"] = "\215\164", - ["credit-card-scan"] = "\198\157", - ["crop"] = "\198\158", - ["crop-free"] = "\198\159", - ["crop-landscape"] = "\198\160", - ["crop-portrait"] = "\198\161", - ["crop-square"] = "\198\162", - ["crosshairs"] = "\198\163", - ["crosshairs-gps"] = "\198\164", - ["crown"] = "\198\165", - ["cube"] = "\198\166", - ["cube-outline"] = "\198\167", - ["cube-send"] = "\198\168", - ["cube-unfolded"] = "\198\169", - ["cup"] = "\198\170", - ["cup-off"] = "\215\165", - ["cup-water"] = "\198\171", - ["currency-btc"] = "\198\172", - ["currency-eur"] = "\198\173", - ["currency-gbp"] = "\198\174", - ["currency-inr"] = "\198\175", - ["currency-ngn"] = "\198\176", - ["currency-rub"] = "\198\177", - ["currency-try"] = "\198\178", - ["currency-usd"] = "\198\179", - ["cursor-default"] = "\198\180", - ["cursor-default-outline"] = "\198\181", - ["cursor-move"] = "\198\182", - ["cursor-pointer"] = "\198\183", - ["cursor-text"] = "\215\167", - ["database"] = "\198\184", - ["database-minus"] = "\198\185", - ["database-plus"] = "\198\186", - ["debug-step-into"] = "\198\187", - ["debug-step-out"] = "\198\188", - ["debug-step-over"] = "\198\189", - ["decimal-decrease"] = "\198\190", - ["decimal-increase"] = "\198\191", - ["delete"] = "\199\128", - ["delete-forever"] = "\215\168", - ["delete-sweep"] = "\215\169", - ["delete-variant"] = "\199\129", - ["delta"] = "\199\130", - ["deskphone"] = "\199\131", - ["desktop-mac"] = "\199\132", - ["desktop-tower"] = "\199\133", - ["details"] = "\199\134", - ["deviantart"] = "\199\135", - ["dialpad"] = "\216\156", - ["diamond"] = "\199\136", - ["dice-1"] = "\199\138", - ["dice-2"] = "\199\139", - ["dice-3"] = "\199\140", - ["dice-4"] = "\199\141", - ["dice-5"] = "\199\142", - ["dice-6"] = "\199\143", - ["dice-d20"] = "\215\170", - ["dice-d4"] = "\215\171", - ["dice-d6"] = "\215\172", - ["dice-d8"] = "\215\173", - ["dictionary"] = "\216\157", - ["directions"] = "\199\144", - ["directions-fork"] = "\217\129", - ["discord"] = "\217\175", - ["disk"] = "\215\174", - ["disk-alert"] = "\199\145", - ["disqus"] = "\199\146", - ["disqus-outline"] = "\199\147", - ["division"] = "\199\148", - ["division-box"] = "\199\149", - ["dns"] = "\199\150", - ["domain"] = "\199\151", - ["dots-horizontal"] = "\199\152", - ["dots-vertical"] = "\199\153", - ["download"] = "\199\154", - ["drag"] = "\199\155", - ["drag-horizontal"] = "\199\156", - ["drag-vertical"] = "\199\157", - ["drawing"] = "\199\158", - ["drawing-box"] = "\199\159", - ["dribbble"] = "\199\160", - ["dribbble-box"] = "\199\161", - ["drone"] = "\199\162", - ["dropbox"] = "\199\163", - ["drupal"] = "\199\164", - ["duck"] = "\199\165", - ["dumbbell"] = "\199\166", - ["earth"] = "\199\167", - ["earth-off"] = "\199\168", - ["edge"] = "\199\169", - ["eject"] = "\199\170", - ["elevation-decline"] = "\199\171", - ["elevation-rise"] = "\199\172", - ["elevator"] = "\199\173", - ["email"] = "\199\174", - ["email-open"] = "\199\175", - ["email-open-outline"] = "\215\175", - ["email-outline"] = "\199\176", - ["email-secure"] = "\199\177", - ["email-variant"] = "\215\176", - ["emoticon"] = "\199\178", - ["emoticon-cool"] = "\199\179", - ["emoticon-devil"] = "\199\180", - ["emoticon-happy"] = "\199\181", - ["emoticon-neutral"] = "\199\182", - ["emoticon-poop"] = "\199\183", - ["emoticon-sad"] = "\199\184", - ["emoticon-tongue"] = "\199\185", - ["engine"] = "\199\186", - ["engine-outline"] = "\199\187", - ["equal"] = "\199\188", - ["equal-box"] = "\199\189", - ["eraser"] = "\199\190", - ["eraser-variant"] = "\217\130", - ["escalator"] = "\199\191", - ["ethernet"] = "\200\128", - ["ethernet-cable"] = "\200\129", - ["ethernet-cable-off"] = "\200\130", - ["etsy"] = "\200\131", - ["ev-station"] = "\215\177", - ["evernote"] = "\200\132", - ["exclamation"] = "\200\133", - ["exit-to-app"] = "\200\134", - ["export"] = "\200\135", - ["eye"] = "\200\136", - ["eye-off"] = "\200\137", - ["eyedropper"] = "\200\138", - ["eyedropper-variant"] = "\200\139", - ["face"] = "\217\131", - ["face-profile"] = "\217\132", - ["facebook"] = "\200\140", - ["facebook-box"] = "\200\141", - ["facebook-messenger"] = "\200\142", - ["factory"] = "\200\143", - ["fan"] = "\200\144", - ["fast-forward"] = "\200\145", - ["fax"] = "\200\146", - ["ferry"] = "\200\147", - ["file"] = "\200\148", - ["file-chart"] = "\200\149", - ["file-check"] = "\200\150", - ["file-cloud"] = "\200\151", - ["file-delimited"] = "\200\152", - ["file-document"] = "\200\153", - ["file-document-box"] = "\200\154", - ["file-excel"] = "\200\155", - ["file-excel-box"] = "\200\156", - ["file-export"] = "\200\157", - ["file-find"] = "\200\158", - ["file-hidden"] = "\216\147", - ["file-image"] = "\200\159", - ["file-import"] = "\200\160", - ["file-lock"] = "\200\161", - ["file-multiple"] = "\200\162", - ["file-music"] = "\200\163", - ["file-outline"] = "\200\164", - ["file-pdf"] = "\200\165", - ["file-pdf-box"] = "\200\166", - ["file-powerpoint"] = "\200\167", - ["file-powerpoint-box"] = "\200\168", - ["file-presentation-box"] = "\200\169", - ["file-restore"] = "\217\176", - ["file-send"] = "\200\170", - ["file-tree"] = "\217\133", - ["file-video"] = "\200\171", - ["file-word"] = "\200\172", - ["file-word-box"] = "\200\173", - ["file-xml"] = "\200\174", - ["film"] = "\200\175", - ["filmstrip"] = "\200\176", - ["filmstrip-off"] = "\200\177", - ["filter"] = "\200\178", - ["filter-outline"] = "\200\179", - ["filter-remove"] = "\200\180", - ["filter-remove-outline"] = "\200\181", - ["filter-variant"] = "\200\182", - ["fingerprint"] = "\200\183", - ["fire"] = "\200\184", - ["firefox"] = "\200\185", - ["fish"] = "\200\186", - ["flag"] = "\200\187", - ["flag-checkered"] = "\200\188", - ["flag-outline"] = "\200\189", - ["flag-outline-variant"] = "\200\190", - ["flag-triangle"] = "\200\191", - ["flag-variant"] = "\201\128", - ["flash"] = "\201\129", - ["flash-auto"] = "\201\130", - ["flash-off"] = "\201\131", - ["flashlight"] = "\201\132", - ["flashlight-off"] = "\201\133", - ["flask"] = "\194\147", - ["flask-empty"] = "\194\148", - ["flask-empty-outline"] = "\194\149", - ["flask-outline"] = "\194\150", - ["flattr"] = "\201\134", - ["flip-to-back"] = "\201\135", - ["flip-to-front"] = "\201\136", - ["floppy"] = "\201\137", - ["flower"] = "\201\138", - ["folder"] = "\201\139", - ["folder-account"] = "\201\140", - ["folder-download"] = "\201\141", - ["folder-google-drive"] = "\201\142", - ["folder-image"] = "\201\143", - ["folder-lock"] = "\201\144", - ["folder-lock-open"] = "\201\145", - ["folder-move"] = "\201\146", - ["folder-multiple"] = "\201\147", - ["folder-multiple-image"] = "\201\148", - ["folder-multiple-outline"] = "\201\149", - ["folder-outline"] = "\201\150", - ["folder-plus"] = "\201\151", - ["folder-remove"] = "\201\152", - ["folder-upload"] = "\201\153", - ["food"] = "\201\154", - ["food-apple"] = "\201\155", - ["food-fork-drink"] = "\215\178", - ["food-off"] = "\215\179", - ["food-variant"] = "\201\156", - ["football"] = "\201\157", - ["football-australian"] = "\201\158", - ["football-helmet"] = "\201\159", - ["format-align-center"] = "\201\160", - ["format-align-justify"] = "\201\161", - ["format-align-left"] = "\201\162", - ["format-align-right"] = "\201\163", - ["format-annotation-plus"] = "\217\134", - ["format-bold"] = "\201\164", - ["format-clear"] = "\201\165", - ["format-color-fill"] = "\201\166", - ["format-float-center"] = "\201\167", - ["format-float-left"] = "\201\168", - ["format-float-none"] = "\201\169", - ["format-float-right"] = "\201\170", - ["format-header-1"] = "\201\171", - ["format-header-2"] = "\201\172", - ["format-header-3"] = "\201\173", - ["format-header-4"] = "\201\174", - ["format-header-5"] = "\201\175", - ["format-header-6"] = "\201\176", - ["format-header-decrease"] = "\201\177", - ["format-header-equal"] = "\201\178", - ["format-header-increase"] = "\201\179", - ["format-header-pound"] = "\201\180", - ["format-horizontal-align-center"] = "\216\158", - ["format-horizontal-align-left"] = "\216\159", - ["format-horizontal-align-right"] = "\216\160", - ["format-indent-decrease"] = "\201\181", - ["format-indent-increase"] = "\201\182", - ["format-italic"] = "\201\183", - ["format-line-spacing"] = "\201\184", - ["format-line-style"] = "\215\136", - ["format-line-weight"] = "\215\137", - ["format-list-bulleted"] = "\201\185", - ["format-list-bulleted-type"] = "\201\186", - ["format-list-numbers"] = "\201\187", - ["format-paint"] = "\201\188", - ["format-paragraph"] = "\201\189", - ["format-quote"] = "\201\190", - ["format-size"] = "\201\191", - ["format-strikethrough"] = "\202\128", - ["format-strikethrough-variant"] = "\202\129", - ["format-subscript"] = "\202\130", - ["format-superscript"] = "\202\131", - ["format-text"] = "\202\132", - ["format-textdirection-l-to-r"] = "\202\133", - ["format-textdirection-r-to-l"] = "\202\134", - ["format-title"] = "\215\180", - ["format-underline"] = "\202\135", - ["format-vertical-align-bottom"] = "\216\161", - ["format-vertical-align-center"] = "\216\162", - ["format-vertical-align-top"] = "\216\163", - ["format-wrap-inline"] = "\202\136", - ["format-wrap-square"] = "\202\137", - ["format-wrap-tight"] = "\202\138", - ["format-wrap-top-bottom"] = "\202\139", - ["forum"] = "\202\140", - ["forward"] = "\202\141", - ["foursquare"] = "\202\142", - ["fridge"] = "\202\143", - ["fridge-filled"] = "\202\144", - ["fridge-filled-bottom"] = "\202\145", - ["fridge-filled-top"] = "\202\146", - ["fullscreen"] = "\202\147", - ["fullscreen-exit"] = "\202\148", - ["function"] = "\202\149", - ["gamepad"] = "\202\150", - ["gamepad-variant"] = "\202\151", - ["gas-cylinder"] = "\217\135", - ["gas-station"] = "\202\152", - ["gate"] = "\202\153", - ["gauge"] = "\202\154", - ["gavel"] = "\202\155", - ["gender-female"] = "\202\156", - ["gender-male"] = "\202\157", - ["gender-male-female"] = "\202\158", - ["gender-transgender"] = "\202\159", - ["ghost"] = "\202\160", - ["gift"] = "\202\161", - ["git"] = "\202\162", - ["github-box"] = "\202\163", - ["github-circle"] = "\202\164", - ["glass-flute"] = "\202\165", - ["glass-mug"] = "\202\166", - ["glass-stange"] = "\202\167", - ["glass-tulip"] = "\202\168", - ["glassdoor"] = "\202\169", - ["glasses"] = "\202\170", - ["gmail"] = "\202\171", - ["gnome"] = "\202\172", - ["google"] = "\202\173", - ["google-cardboard"] = "\202\174", - ["google-chrome"] = "\202\175", - ["google-circles"] = "\202\176", - ["google-circles-communities"] = "\202\177", - ["google-circles-extended"] = "\202\178", - ["google-circles-group"] = "\202\179", - ["google-controller"] = "\202\180", - ["google-controller-off"] = "\202\181", - ["google-drive"] = "\202\182", - ["google-earth"] = "\202\183", - ["google-glass"] = "\202\184", - ["google-maps"] = "\215\181", - ["google-nearby"] = "\202\185", - ["google-pages"] = "\202\186", - ["google-physical-web"] = "\202\187", - ["google-play"] = "\202\188", - ["google-plus"] = "\202\189", - ["google-plus-box"] = "\202\190", - ["google-translate"] = "\202\191", - ["google-wallet"] = "\203\128", - ["grease-pencil"] = "\217\136", - ["grid"] = "\203\129", - ["grid-off"] = "\203\130", - ["group"] = "\203\131", - ["guitar-electric"] = "\203\132", - ["guitar-pick"] = "\203\133", - ["guitar-pick-outline"] = "\203\134", - ["hackernews"] = "\216\164", - ["hand-pointing-right"] = "\203\135", - ["hanger"] = "\203\136", - ["hangouts"] = "\203\137", - ["harddisk"] = "\203\138", - ["headphones"] = "\203\139", - ["headphones-box"] = "\203\140", - ["headphones-settings"] = "\203\141", - ["headset"] = "\203\142", - ["headset-dock"] = "\203\143", - ["headset-off"] = "\203\144", - ["heart"] = "\203\145", - ["heart-box"] = "\203\146", - ["heart-box-outline"] = "\203\147", - ["heart-broken"] = "\203\148", - ["heart-outline"] = "\203\149", - ["heart-pulse"] = "\215\182", - ["help"] = "\203\150", - ["help-circle"] = "\203\151", - ["help-circle-outline"] = "\216\165", - ["hexagon"] = "\203\152", - ["hexagon-outline"] = "\203\153", - ["highway"] = "\215\183", - ["history"] = "\203\154", - ["hololens"] = "\203\155", - ["home"] = "\203\156", - ["home-map-marker"] = "\215\184", - ["home-modern"] = "\203\157", - ["home-variant"] = "\203\158", - ["hops"] = "\203\159", - ["hospital"] = "\203\160", - ["hospital-building"] = "\203\161", - ["hospital-marker"] = "\203\162", - ["hotel"] = "\203\163", - ["houzz"] = "\203\164", - ["houzz-box"] = "\203\165", - ["human"] = "\203\166", - ["human-child"] = "\203\167", - ["human-female"] = "\217\137", - ["human-greeting"] = "\217\138", - ["human-handsdown"] = "\217\139", - ["human-handsup"] = "\217\140", - ["human-male"] = "\217\141", - ["human-male-female"] = "\203\168", - ["human-pregnant"] = "\215\143", - ["image"] = "\203\169", - ["image-album"] = "\203\170", - ["image-area"] = "\203\171", - ["image-area-close"] = "\203\172", - ["image-broken"] = "\203\173", - ["image-broken-variant"] = "\203\174", - ["image-filter"] = "\203\175", - ["image-filter-black-white"] = "\203\176", - ["image-filter-center-focus"] = "\203\177", - ["image-filter-center-focus-weak"] = "\203\178", - ["image-filter-drama"] = "\203\179", - ["image-filter-frames"] = "\203\180", - ["image-filter-hdr"] = "\203\181", - ["image-filter-none"] = "\203\182", - ["image-filter-tilt-shift"] = "\203\183", - ["image-filter-vintage"] = "\203\184", - ["image-multiple"] = "\203\185", - ["import"] = "\203\186", - ["inbox"] = "\203\187", - ["incognito"] = "\215\185", - ["information"] = "\203\188", - ["information-outline"] = "\203\189", - ["information-variant"] = "\217\142", - ["instagram"] = "\203\190", - ["instapaper"] = "\203\191", - ["internet-explorer"] = "\204\128", - ["invert-colors"] = "\204\129", - ["jeepney"] = "\204\130", - ["jira"] = "\204\131", - ["jsfiddle"] = "\204\132", - ["json"] = "\216\166", - ["keg"] = "\204\133", - ["kettle"] = "\215\186", - ["key"] = "\204\134", - ["key-change"] = "\204\135", - ["key-minus"] = "\204\136", - ["key-plus"] = "\204\137", - ["key-remove"] = "\204\138", - ["key-variant"] = "\204\139", - ["keyboard"] = "\204\140", - ["keyboard-backspace"] = "\204\141", - ["keyboard-caps"] = "\204\142", - ["keyboard-close"] = "\204\143", - ["keyboard-off"] = "\204\144", - ["keyboard-return"] = "\204\145", - ["keyboard-tab"] = "\204\146", - ["keyboard-variant"] = "\204\147", - ["kodi"] = "\204\148", - ["label"] = "\204\149", - ["label-outline"] = "\204\150", - ["lambda"] = "\216\167", - ["lan"] = "\204\151", - ["lan-connect"] = "\204\152", - ["lan-disconnect"] = "\204\153", - ["lan-pending"] = "\204\154", - ["language-c"] = "\217\177", - ["language-cpp"] = "\217\178", - ["language-csharp"] = "\204\155", - ["language-css3"] = "\204\156", - ["language-html5"] = "\204\157", - ["language-javascript"] = "\204\158", - ["language-php"] = "\204\159", - ["language-python"] = "\204\160", - ["language-python-text"] = "\204\161", - ["laptop"] = "\204\162", - ["laptop-chromebook"] = "\204\163", - ["laptop-mac"] = "\204\164", - ["laptop-windows"] = "\204\165", - ["lastfm"] = "\204\166", - ["launch"] = "\204\167", - ["layers"] = "\204\168", - ["layers-off"] = "\204\169", - ["lead-pencil"] = "\217\143", - ["leaf"] = "\204\170", - ["led-off"] = "\204\171", - ["led-on"] = "\204\172", - ["led-outline"] = "\204\173", - ["led-variant-off"] = "\204\174", - ["led-variant-on"] = "\204\175", - ["led-variant-outline"] = "\204\176", - ["library"] = "\204\177", - ["library-books"] = "\204\178", - ["library-music"] = "\204\179", - ["library-plus"] = "\204\180", - ["lightbulb"] = "\204\181", - ["lightbulb-outline"] = "\204\182", - ["link"] = "\204\183", - ["link-off"] = "\204\184", - ["link-variant"] = "\204\185", - ["link-variant-off"] = "\204\186", - ["linkedin"] = "\204\187", - ["linkedin-box"] = "\204\188", - ["linux"] = "\204\189", - ["lock"] = "\204\190", - ["lock-open"] = "\204\191", - ["lock-open-outline"] = "\205\128", - ["lock-outline"] = "\205\129", - ["lock-plus"] = "\215\187", - ["login"] = "\205\130", - ["login-variant"] = "\215\188", - ["logout"] = "\205\131", - ["logout-variant"] = "\215\189", - ["looks"] = "\205\132", - ["loupe"] = "\205\133", - ["lumx"] = "\205\134", - ["magnet"] = "\205\135", - ["magnet-on"] = "\205\136", - ["magnify"] = "\205\137", - ["magnify-minus"] = "\205\138", - ["magnify-plus"] = "\205\139", - ["mail-ru"] = "\205\140", - ["map"] = "\205\141", - ["map-marker"] = "\205\142", - ["map-marker-circle"] = "\205\143", - ["map-marker-minus"] = "\217\144", - ["map-marker-multiple"] = "\205\144", - ["map-marker-off"] = "\205\145", - ["map-marker-plus"] = "\217\145", - ["map-marker-radius"] = "\205\146", - ["margin"] = "\205\147", - ["markdown"] = "\205\148", - ["marker"] = "\217\146", - ["marker-check"] = "\205\149", - ["martini"] = "\205\150", - ["material-ui"] = "\205\151", - ["math-compass"] = "\205\152", - ["matrix"] = "\216\168", - ["maxcdn"] = "\205\153", - ["medium"] = "\205\154", - ["memory"] = "\205\155", - ["menu"] = "\205\156", - ["menu-down"] = "\205\157", - ["menu-left"] = "\205\158", - ["menu-right"] = "\205\159", - ["menu-up"] = "\205\160", - ["message"] = "\205\161", - ["message-alert"] = "\205\162", - ["message-draw"] = "\205\163", - ["message-image"] = "\205\164", - ["message-outline"] = "\205\165", - ["message-plus"] = "\217\147", - ["message-processing"] = "\205\166", - ["message-reply"] = "\205\167", - ["message-reply-text"] = "\205\168", - ["message-text"] = "\205\169", - ["message-text-outline"] = "\205\170", - ["message-video"] = "\205\171", - ["meteor"] = "\216\169", - ["microphone"] = "\205\172", - ["microphone-off"] = "\205\173", - ["microphone-outline"] = "\205\174", - ["microphone-settings"] = "\205\175", - ["microphone-variant"] = "\205\176", - ["microphone-variant-off"] = "\205\177", - ["microscope"] = "\217\148", - ["microsoft"] = "\205\178", - ["minecraft"] = "\205\179", - ["minus"] = "\205\180", - ["minus-box"] = "\205\181", - ["minus-circle"] = "\205\182", - ["minus-circle-outline"] = "\205\183", - ["minus-network"] = "\205\184", - ["mixcloud"] = "\216\170", - ["monitor"] = "\205\185", - ["monitor-multiple"] = "\205\186", - ["more"] = "\205\187", - ["motorbike"] = "\205\188", - ["mouse"] = "\205\189", - ["mouse-off"] = "\205\190", - ["mouse-variant"] = "\205\191", - ["mouse-variant-off"] = "\206\128", - ["move-resize"] = "\217\149", - ["move-resize-variant"] = "\217\150", - ["movie"] = "\206\129", - ["multiplication"] = "\206\130", - ["multiplication-box"] = "\206\131", - ["music-box"] = "\206\132", - ["music-box-outline"] = "\206\133", - ["music-circle"] = "\206\134", - ["music-note"] = "\206\135", - ["music-note-bluetooth"] = "\215\190", - ["music-note-bluetooth-off"] = "\215\191", - ["music-note-eighth"] = "\206\136", - ["music-note-half"] = "\206\137", - ["music-note-off"] = "\206\138", - ["music-note-quarter"] = "\206\139", - ["music-note-sixteenth"] = "\206\140", - ["music-note-whole"] = "\206\141", - ["nature"] = "\206\142", - ["nature-people"] = "\206\143", - ["navigation"] = "\206\144", - ["near-me"] = "\215\141", - ["needle"] = "\206\145", - ["nest-protect"] = "\206\146", - ["nest-thermostat"] = "\206\147", - ["new-box"] = "\206\148", - ["newspaper"] = "\206\149", - ["nfc"] = "\206\150", - ["nfc-tap"] = "\206\151", - ["nfc-variant"] = "\206\152", - ["nodejs"] = "\206\153", - ["note"] = "\206\154", - ["note-outline"] = "\206\155", - ["note-plus"] = "\206\156", - ["note-plus-outline"] = "\206\157", - ["note-text"] = "\206\158", - ["notification-clear-all"] = "\206\159", - ["numeric"] = "\206\160", - ["numeric-0-box"] = "\206\161", - ["numeric-0-box-multiple-outline"] = "\206\162", - ["numeric-0-box-outline"] = "\206\163", - ["numeric-1-box"] = "\206\164", - ["numeric-1-box-multiple-outline"] = "\206\165", - ["numeric-1-box-outline"] = "\206\166", - ["numeric-2-box"] = "\206\167", - ["numeric-2-box-multiple-outline"] = "\206\168", - ["numeric-2-box-outline"] = "\206\169", - ["numeric-3-box"] = "\206\170", - ["numeric-3-box-multiple-outline"] = "\206\171", - ["numeric-3-box-outline"] = "\206\172", - ["numeric-4-box"] = "\206\173", - ["numeric-4-box-multiple-outline"] = "\206\174", - ["numeric-4-box-outline"] = "\206\175", - ["numeric-5-box"] = "\206\176", - ["numeric-5-box-multiple-outline"] = "\206\177", - ["numeric-5-box-outline"] = "\206\178", - ["numeric-6-box"] = "\206\179", - ["numeric-6-box-multiple-outline"] = "\206\180", - ["numeric-6-box-outline"] = "\206\181", - ["numeric-7-box"] = "\206\182", - ["numeric-7-box-multiple-outline"] = "\206\183", - ["numeric-7-box-outline"] = "\206\184", - ["numeric-8-box"] = "\206\185", - ["numeric-8-box-multiple-outline"] = "\206\186", - ["numeric-8-box-outline"] = "\206\187", - ["numeric-9-box"] = "\206\188", - ["numeric-9-box-multiple-outline"] = "\206\189", - ["numeric-9-box-outline"] = "\206\190", - ["numeric-9-plus-box"] = "\206\191", - ["numeric-9-plus-box-multiple-outline"] = "\207\128", - ["numeric-9-plus-box-outline"] = "\207\129", - ["nutrition"] = "\207\130", - ["octagon"] = "\207\131", - ["octagon-outline"] = "\207\132", - ["odnoklassniki"] = "\207\133", - ["office"] = "\207\134", - ["oil"] = "\207\135", - ["oil-temperature"] = "\207\136", - ["omega"] = "\207\137", - ["onedrive"] = "\207\138", - ["opacity"] = "\215\140", - ["open-in-app"] = "\207\139", - ["open-in-new"] = "\207\140", - ["openid"] = "\207\141", - ["opera"] = "\207\142", - ["ornament"] = "\207\143", - ["ornament-variant"] = "\207\144", - ["outbox"] = "\207\145", - ["owl"] = "\207\146", - ["package"] = "\207\147", - ["package-down"] = "\207\148", - ["package-up"] = "\207\149", - ["package-variant"] = "\207\150", - ["package-variant-closed"] = "\207\151", - ["page-first"] = "\216\128", - ["page-last"] = "\216\129", - ["palette"] = "\207\152", - ["palette-advanced"] = "\207\153", - ["panda"] = "\207\154", - ["pandora"] = "\207\155", - ["panorama"] = "\207\156", - ["panorama-fisheye"] = "\207\157", - ["panorama-horizontal"] = "\207\158", - ["panorama-vertical"] = "\207\159", - ["panorama-wide-angle"] = "\207\160", - ["paper-cut-vertical"] = "\207\161", - ["paperclip"] = "\207\162", - ["parking"] = "\207\163", - ["pause"] = "\207\164", - ["pause-circle"] = "\207\165", - ["pause-circle-outline"] = "\207\166", - ["pause-octagon"] = "\207\167", - ["pause-octagon-outline"] = "\207\168", - ["paw"] = "\207\169", - ["paw-off"] = "\217\151", - ["pen"] = "\207\170", - ["pencil"] = "\207\171", - ["pencil-box"] = "\207\172", - ["pencil-box-outline"] = "\207\173", - ["pencil-lock"] = "\207\174", - ["pencil-off"] = "\207\175", - ["percent"] = "\207\176", - ["pharmacy"] = "\207\177", - ["phone"] = "\207\178", - ["phone-bluetooth"] = "\207\179", - ["phone-classic"] = "\216\130", - ["phone-forward"] = "\207\180", - ["phone-hangup"] = "\207\181", - ["phone-in-talk"] = "\207\182", - ["phone-incoming"] = "\207\183", - ["phone-locked"] = "\207\184", - ["phone-log"] = "\207\185", - ["phone-minus"] = "\217\152", - ["phone-missed"] = "\207\186", - ["phone-outgoing"] = "\207\187", - ["phone-paused"] = "\207\188", - ["phone-plus"] = "\217\153", - ["phone-settings"] = "\207\189", - ["phone-voip"] = "\207\190", - ["pi"] = "\207\191", - ["pi-box"] = "\208\128", - ["pig"] = "\208\129", - ["pill"] = "\208\130", - ["pin"] = "\208\131", - ["pin-off"] = "\208\132", - ["pine-tree"] = "\208\133", - ["pine-tree-box"] = "\208\134", - ["pinterest"] = "\208\135", - ["pinterest-box"] = "\208\136", - ["pizza"] = "\208\137", - ["play"] = "\208\138", - ["play-box-outline"] = "\208\139", - ["play-circle"] = "\208\140", - ["play-circle-outline"] = "\208\141", - ["play-pause"] = "\208\142", - ["play-protected-content"] = "\208\143", - ["playlist-check"] = "\215\135", - ["playlist-minus"] = "\208\144", - ["playlist-play"] = "\208\145", - ["playlist-plus"] = "\208\146", - ["playlist-remove"] = "\208\147", - ["playstation"] = "\208\148", - ["plus"] = "\208\149", - ["plus-box"] = "\208\150", - ["plus-circle"] = "\208\151", - ["plus-circle-multiple-outline"] = "\208\152", - ["plus-circle-outline"] = "\208\153", - ["plus-network"] = "\208\154", - ["plus-one"] = "\208\155", - ["pocket"] = "\208\156", - ["pokeball"] = "\208\157", - ["polaroid"] = "\208\158", - ["poll"] = "\208\159", - ["poll-box"] = "\208\160", - ["polymer"] = "\208\161", - ["pool"] = "\216\134", - ["popcorn"] = "\208\162", - ["pot"] = "\217\154", - ["pot-mix"] = "\217\155", - ["pound"] = "\208\163", - ["pound-box"] = "\208\164", - ["power"] = "\208\165", - ["power-settings"] = "\208\166", - ["power-socket"] = "\208\167", - ["presentation"] = "\208\168", - ["presentation-play"] = "\208\169", - ["printer"] = "\208\170", - ["printer-3d"] = "\208\171", - ["printer-alert"] = "\208\172", - ["priority-high"] = "\216\131", - ["priority-low"] = "\216\132", - ["professional-hexagon"] = "\208\173", - ["projector"] = "\208\174", - ["projector-screen"] = "\208\175", - ["pulse"] = "\208\176", - ["puzzle"] = "\208\177", - ["qqchat"] = "\216\133", - ["qrcode"] = "\208\178", - ["qrcode-scan"] = "\208\179", - ["quadcopter"] = "\208\180", - ["quality-high"] = "\208\181", - ["quicktime"] = "\208\182", - ["radar"] = "\208\183", - ["radiator"] = "\208\184", - ["radio"] = "\208\185", - ["radio-handheld"] = "\208\186", - ["radio-tower"] = "\208\187", - ["radioactive"] = "\208\188", - ["radiobox-blank"] = "\208\189", - ["radiobox-marked"] = "\208\190", - ["raspberrypi"] = "\208\191", - ["ray-end"] = "\209\128", - ["ray-end-arrow"] = "\209\129", - ["ray-start"] = "\209\130", - ["ray-start-arrow"] = "\209\131", - ["ray-start-end"] = "\209\132", - ["ray-vertex"] = "\209\133", - ["rdio"] = "\209\134", - ["read"] = "\209\135", - ["readability"] = "\209\136", - ["receipt"] = "\209\137", - ["record"] = "\209\138", - ["record-rec"] = "\209\139", - ["recycle"] = "\209\140", - ["reddit"] = "\209\141", - ["redo"] = "\209\142", - ["redo-variant"] = "\209\143", - ["refresh"] = "\209\144", - ["regex"] = "\209\145", - ["relative-scale"] = "\209\146", - ["reload"] = "\209\147", - ["remote"] = "\209\148", - ["rename-box"] = "\209\149", - ["repeat"] = "\209\150", - ["repeat-off"] = "\209\151", - ["repeat-once"] = "\209\152", - ["replay"] = "\209\153", - ["reply"] = "\209\154", - ["reply-all"] = "\209\155", - ["reproduction"] = "\209\156", - ["resize-bottom-right"] = "\209\157", - ["responsive"] = "\209\158", - ["rewind"] = "\209\159", - ["ribbon"] = "\209\160", - ["road"] = "\209\161", - ["road-variant"] = "\209\162", - ["rocket"] = "\209\163", - ["rotate-3d"] = "\209\164", - ["rotate-left"] = "\209\165", - ["rotate-left-variant"] = "\209\166", - ["rotate-right"] = "\209\167", - ["rotate-right-variant"] = "\209\168", - ["rounded-corner"] = "\216\135", - ["router-wireless"] = "\209\169", - ["routes"] = "\209\170", - ["rowing"] = "\216\136", - ["rss"] = "\209\171", - ["rss-box"] = "\209\172", - ["ruler"] = "\209\173", - ["run"] = "\209\174", - ["sale"] = "\209\175", - ["satellite"] = "\209\176", - ["satellite-variant"] = "\209\177", - ["saxophone"] = "\216\137", - ["scale"] = "\209\178", - ["scale-balance"] = "\215\145", - ["scale-bathroom"] = "\209\179", - ["school"] = "\209\180", - ["screen-rotation"] = "\209\181", - ["screen-rotation-lock"] = "\209\182", - ["screwdriver"] = "\209\183", - ["script"] = "\209\184", - ["sd"] = "\209\185", - ["seal"] = "\209\186", - ["seat-flat"] = "\209\187", - ["seat-flat-angled"] = "\209\188", - ["seat-individual-suite"] = "\209\189", - ["seat-legroom-extra"] = "\209\190", - ["seat-legroom-normal"] = "\209\191", - ["seat-legroom-reduced"] = "\210\128", - ["seat-recline-extra"] = "\210\129", - ["seat-recline-normal"] = "\210\130", - ["security"] = "\210\131", - ["security-network"] = "\210\132", - ["select"] = "\210\133", - ["select-all"] = "\210\134", - ["select-inverse"] = "\210\135", - ["select-off"] = "\210\136", - ["selection"] = "\210\137", - ["send"] = "\210\138", - ["serial-port"] = "\217\156", - ["server"] = "\210\139", - ["server-minus"] = "\210\140", - ["server-network"] = "\210\141", - ["server-network-off"] = "\210\142", - ["server-off"] = "\210\143", - ["server-plus"] = "\210\144", - ["server-remove"] = "\210\145", - ["server-security"] = "\210\146", - ["settings"] = "\210\147", - ["settings-box"] = "\210\148", - ["shape-circle-plus"] = "\217\157", - ["shape-plus"] = "\210\149", - ["shape-polygon-plus"] = "\217\158", - ["shape-rectangle-plus"] = "\217\159", - ["shape-square-plus"] = "\217\160", - ["share"] = "\210\150", - ["share-variant"] = "\210\151", - ["shield"] = "\210\152", - ["shield-outline"] = "\210\153", - ["shopping"] = "\210\154", - ["shopping-music"] = "\210\155", - ["shredder"] = "\210\156", - ["shuffle"] = "\210\157", - ["shuffle-disabled"] = "\210\158", - ["shuffle-variant"] = "\210\159", - ["sigma"] = "\210\160", - ["sigma-lower"] = "\216\171", - ["sign-caution"] = "\210\161", - ["signal"] = "\210\162", - ["signal-variant"] = "\216\138", - ["silverware"] = "\210\163", - ["silverware-fork"] = "\210\164", - ["silverware-spoon"] = "\210\165", - ["silverware-variant"] = "\210\166", - ["sim"] = "\210\167", - ["sim-alert"] = "\210\168", - ["sim-off"] = "\210\169", - ["sitemap"] = "\210\170", - ["skip-backward"] = "\210\171", - ["skip-forward"] = "\210\172", - ["skip-next"] = "\210\173", - ["skip-next-circle"] = "\217\161", - ["skip-next-circle-outline"] = "\217\162", - ["skip-previous"] = "\210\174", - ["skip-previous-circle"] = "\217\163", - ["skip-previous-circle-outline"] = "\217\164", - ["skype"] = "\210\175", - ["skype-business"] = "\210\176", - ["slack"] = "\210\177", - ["sleep"] = "\210\178", - ["sleep-off"] = "\210\179", - ["smoking"] = "\210\180", - ["smoking-off"] = "\210\181", - ["snapchat"] = "\210\182", - ["snowman"] = "\210\183", - ["soccer"] = "\210\184", - ["sofa"] = "\210\185", - ["sort"] = "\210\186", - ["sort-alphabetical"] = "\210\187", - ["sort-ascending"] = "\210\188", - ["sort-descending"] = "\210\189", - ["sort-numeric"] = "\210\190", - ["sort-variant"] = "\210\191", - ["soundcloud"] = "\211\128", - ["source-branch"] = "\216\172", - ["source-fork"] = "\211\129", - ["source-merge"] = "\216\173", - ["source-pull"] = "\211\130", - ["speaker"] = "\211\131", - ["speaker-off"] = "\211\132", - ["speedometer"] = "\211\133", - ["spellcheck"] = "\211\134", - ["spotify"] = "\211\135", - ["spotlight"] = "\211\136", - ["spotlight-beam"] = "\211\137", - ["spray"] = "\217\165", - ["square-inc"] = "\211\138", - ["square-inc-cash"] = "\211\139", - ["stackexchange"] = "\216\139", - ["stackoverflow"] = "\211\140", - ["stairs"] = "\211\141", - ["star"] = "\211\142", - ["star-circle"] = "\211\143", - ["star-half"] = "\211\144", - ["star-off"] = "\211\145", - ["star-outline"] = "\211\146", - ["steam"] = "\211\147", - ["steering"] = "\211\148", - ["step-backward"] = "\211\149", - ["step-backward-2"] = "\211\150", - ["step-forward"] = "\211\151", - ["step-forward-2"] = "\211\152", - ["stethoscope"] = "\211\153", - ["sticker"] = "\215\144", - ["stocking"] = "\211\154", - ["stop"] = "\211\155", - ["stop-circle"] = "\217\166", - ["stop-circle-outline"] = "\217\167", - ["store"] = "\211\156", - ["store-24-hour"] = "\211\157", - ["stove"] = "\211\158", - ["subdirectory-arrow-left"] = "\216\140", - ["subdirectory-arrow-right"] = "\216\141", - ["subway"] = "\211\159", - ["sunglasses"] = "\211\160", - ["surround-sound"] = "\215\133", - ["swap-horizontal"] = "\211\161", - ["swap-vertical"] = "\211\162", - ["swim"] = "\211\163", - ["switch"] = "\211\164", - ["sword"] = "\211\165", - ["sync"] = "\211\166", - ["sync-alert"] = "\211\167", - ["sync-off"] = "\211\168", - ["tab"] = "\211\169", - ["tab-unselected"] = "\211\170", - ["table"] = "\211\171", - ["table-column-plus-after"] = "\211\172", - ["table-column-plus-before"] = "\211\173", - ["table-column-remove"] = "\211\174", - ["table-column-width"] = "\211\175", - ["table-edit"] = "\211\176", - ["table-large"] = "\211\177", - ["table-row-height"] = "\211\178", - ["table-row-plus-after"] = "\211\179", - ["table-row-plus-before"] = "\211\180", - ["table-row-remove"] = "\211\181", - ["tablet"] = "\211\182", - ["tablet-android"] = "\211\183", - ["tablet-ipad"] = "\211\184", - ["tag"] = "\211\185", - ["tag-faces"] = "\211\186", - ["tag-multiple"] = "\211\187", - ["tag-outline"] = "\211\188", - ["tag-text-outline"] = "\211\189", - ["target"] = "\211\190", - ["taxi"] = "\211\191", - ["teamviewer"] = "\212\128", - ["telegram"] = "\212\129", - ["television"] = "\212\130", - ["television-guide"] = "\212\131", - ["temperature-celsius"] = "\212\132", - ["temperature-fahrenheit"] = "\212\133", - ["temperature-kelvin"] = "\212\134", - ["tennis"] = "\212\135", - ["tent"] = "\212\136", - ["terrain"] = "\212\137", - ["test-tube"] = "\217\168", - ["text-shadow"] = "\217\169", - ["text-to-speech"] = "\212\138", - ["text-to-speech-off"] = "\212\139", - ["textbox"] = "\216\142", - ["texture"] = "\212\140", - ["theater"] = "\212\141", - ["theme-light-dark"] = "\212\142", - ["thermometer"] = "\212\143", - ["thermometer-lines"] = "\212\144", - ["thumb-down"] = "\212\145", - ["thumb-down-outline"] = "\212\146", - ["thumb-up"] = "\212\147", - ["thumb-up-outline"] = "\212\148", - ["thumbs-up-down"] = "\212\149", - ["ticket"] = "\212\150", - ["ticket-account"] = "\212\151", - ["ticket-confirmation"] = "\212\152", - ["tie"] = "\212\153", - ["timelapse"] = "\212\154", - ["timer"] = "\212\155", - ["timer-10"] = "\212\156", - ["timer-3"] = "\212\157", - ["timer-off"] = "\212\158", - ["timer-sand"] = "\212\159", - ["timetable"] = "\212\160", - ["toggle-switch"] = "\212\161", - ["toggle-switch-off"] = "\212\162", - ["tooltip"] = "\212\163", - ["tooltip-edit"] = "\212\164", - ["tooltip-image"] = "\212\165", - ["tooltip-outline"] = "\212\166", - ["tooltip-outline-plus"] = "\212\167", - ["tooltip-text"] = "\212\168", - ["tooth"] = "\212\169", - ["tor"] = "\212\170", - ["traffic-light"] = "\212\171", - ["train"] = "\212\172", - ["tram"] = "\212\173", - ["transcribe"] = "\212\174", - ["transcribe-close"] = "\212\175", - ["transfer"] = "\212\176", - ["translate"] = "\215\138", - ["tree"] = "\212\177", - ["trello"] = "\212\178", - ["trending-down"] = "\212\179", - ["trending-neutral"] = "\212\180", - ["trending-up"] = "\212\181", - ["triangle"] = "\212\182", - ["triangle-outline"] = "\212\183", - ["trophy"] = "\212\184", - ["trophy-award"] = "\212\185", - ["trophy-outline"] = "\212\186", - ["trophy-variant"] = "\212\187", - ["trophy-variant-outline"] = "\212\188", - ["truck"] = "\212\189", - ["truck-delivery"] = "\212\190", - ["tshirt-crew"] = "\212\191", - ["tshirt-v"] = "\213\128", - ["tumblr"] = "\213\129", - ["tumblr-reblog"] = "\213\130", - ["tune"] = "\216\174", - ["tune-vertical"] = "\217\170", - ["twitch"] = "\213\131", - ["twitter"] = "\213\132", - ["twitter-box"] = "\213\133", - ["twitter-circle"] = "\213\134", - ["twitter-retweet"] = "\213\135", - ["ubuntu"] = "\213\136", - ["umbraco"] = "\213\137", - ["umbrella"] = "\213\138", - ["umbrella-outline"] = "\213\139", - ["undo"] = "\213\140", - ["undo-variant"] = "\213\141", - ["unfold-less"] = "\213\142", - ["unfold-more"] = "\213\143", - ["ungroup"] = "\213\144", - ["untappd"] = "\213\145", - ["upload"] = "\213\146", - ["usb"] = "\213\147", - ["vector-arrange-above"] = "\213\148", - ["vector-arrange-below"] = "\213\149", - ["vector-circle"] = "\213\150", - ["vector-circle-variant"] = "\213\151", - ["vector-combine"] = "\213\152", - ["vector-curve"] = "\213\153", - ["vector-difference"] = "\213\154", - ["vector-difference-ab"] = "\213\155", - ["vector-difference-ba"] = "\213\156", - ["vector-intersection"] = "\213\157", - ["vector-line"] = "\213\158", - ["vector-point"] = "\213\159", - ["vector-polygon"] = "\213\160", - ["vector-polyline"] = "\213\161", - ["vector-rectangle"] = "\215\134", - ["vector-selection"] = "\213\162", - ["vector-square"] = "\1", - ["vector-triangle"] = "\213\163", - ["vector-union"] = "\213\164", - ["verified"] = "\213\165", - ["vibrate"] = "\213\166", - ["video"] = "\213\167", - ["video-off"] = "\213\168", - ["video-switch"] = "\213\169", - ["view-agenda"] = "\213\170", - ["view-array"] = "\213\171", - ["view-carousel"] = "\213\172", - ["view-column"] = "\213\173", - ["view-dashboard"] = "\213\174", - ["view-day"] = "\213\175", - ["view-grid"] = "\213\176", - ["view-headline"] = "\213\177", - ["view-list"] = "\213\178", - ["view-module"] = "\213\179", - ["view-quilt"] = "\213\180", - ["view-stream"] = "\213\181", - ["view-week"] = "\213\182", - ["vimeo"] = "\213\183", - ["vine"] = "\213\184", - ["violin"] = "\216\143", - ["visualstudio"] = "\216\144", - ["vk"] = "\213\185", - ["vk-box"] = "\213\186", - ["vk-circle"] = "\213\187", - ["vlc"] = "\213\188", - ["voice"] = "\215\139", - ["voicemail"] = "\213\189", - ["volume-high"] = "\213\190", - ["volume-low"] = "\213\191", - ["volume-medium"] = "\214\128", - ["volume-off"] = "\214\129", - ["vpn"] = "\214\130", - ["walk"] = "\214\131", - ["wallet"] = "\214\132", - ["wallet-giftcard"] = "\214\133", - ["wallet-membership"] = "\214\134", - ["wallet-travel"] = "\214\135", - ["wan"] = "\214\136", - ["watch"] = "\214\137", - ["watch-export"] = "\214\138", - ["watch-import"] = "\214\139", - ["water"] = "\214\140", - ["water-off"] = "\214\141", - ["water-percent"] = "\214\142", - ["water-pump"] = "\214\143", - ["watermark"] = "\216\146", - ["weather-cloudy"] = "\214\144", - ["weather-fog"] = "\214\145", - ["weather-hail"] = "\214\146", - ["weather-lightning"] = "\214\147", - ["weather-night"] = "\214\148", - ["weather-partlycloudy"] = "\214\149", - ["weather-pouring"] = "\214\150", - ["weather-rainy"] = "\214\151", - ["weather-snowy"] = "\214\152", - ["weather-sunny"] = "\214\153", - ["weather-sunset"] = "\214\154", - ["weather-sunset-down"] = "\214\155", - ["weather-sunset-up"] = "\214\156", - ["weather-windy"] = "\214\157", - ["weather-windy-variant"] = "\214\158", - ["web"] = "\214\159", - ["webcam"] = "\214\160", - ["webhook"] = "\216\175", - ["wechat"] = "\216\145", - ["weight"] = "\214\161", - ["weight-kilogram"] = "\214\162", - ["whatsapp"] = "\214\163", - ["wheelchair-accessibility"] = "\214\164", - ["white-balance-auto"] = "\214\165", - ["white-balance-incandescent"] = "\214\166", - ["white-balance-iridescent"] = "\214\167", - ["white-balance-sunny"] = "\214\168", - ["wifi"] = "\214\169", - ["wifi-off"] = "\214\170", - ["wii"] = "\214\171", - ["wikipedia"] = "\214\172", - ["window-close"] = "\214\173", - ["window-closed"] = "\214\174", - ["window-maximize"] = "\214\175", - ["window-minimize"] = "\214\176", - ["window-open"] = "\214\177", - ["window-restore"] = "\214\178", - ["windows"] = "\214\179", - ["wordpress"] = "\214\180", - ["worker"] = "\214\181", - ["wrap"] = "\214\182", - ["wrench"] = "\214\183", - ["wunderlist"] = "\214\184", - ["xaml"] = "\217\179", - ["xbox"] = "\214\185", - ["xbox-controller"] = "\214\186", - ["xbox-controller-off"] = "\214\187", - ["xda"] = "\214\188", - ["xing"] = "\214\189", - ["xing-box"] = "\214\190", - ["xing-circle"] = "\214\191", - ["xml"] = "\215\128", - ["yeast"] = "\215\129", - ["yelp"] = "\215\130", - ["youtube-play"] = "\215\131", - ["zip-box"] = "\215\132", + ["access-point"] = "\239\128\130", + ["access-point-network"] = "\239\128\131", + ["account"] = "\239\128\132", + ["account-alert"] = "\239\128\133", + ["account-box"] = "\239\128\134", + ["account-box-outline"] = "\239\128\135", + ["account-card-details"] = "\239\151\146", + ["account-check"] = "\239\128\136", + ["account-circle"] = "\239\128\137", + ["account-convert"] = "\239\128\138", + ["account-key"] = "\239\128\139", + ["account-location"] = "\239\128\140", + ["account-minus"] = "\239\128\141", + ["account-multiple"] = "\239\128\142", + ["account-multiple-minus"] = "\239\151\147", + ["account-multiple-outline"] = "\239\128\143", + ["account-multiple-plus"] = "\239\128\144", + ["account-network"] = "\239\128\145", + ["account-off"] = "\239\128\146", + ["account-outline"] = "\239\128\147", + ["account-plus"] = "\239\128\148", + ["account-remove"] = "\239\128\149", + ["account-search"] = "\239\128\150", + ["account-settings"] = "\239\152\176", + ["account-settings-variant"] = "\239\152\177", + ["account-star"] = "\239\128\151", + ["account-star-variant"] = "\239\128\152", + ["account-switch"] = "\239\128\153", + ["adjust"] = "\239\128\154", + ["air-conditioner"] = "\239\128\155", + ["airballoon"] = "\239\128\156", + ["airplane"] = "\239\128\157", + ["airplane-landing"] = "\239\151\148", + ["airplane-off"] = "\239\128\158", + ["airplane-takeoff"] = "\239\151\149", + ["airplay"] = "\239\128\159", + ["alarm"] = "\239\128\160", + ["alarm-check"] = "\239\128\161", + ["alarm-multiple"] = "\239\128\162", + ["alarm-off"] = "\239\128\163", + ["alarm-plus"] = "\239\128\164", + ["alarm-snooze"] = "\239\154\141", + ["album"] = "\239\128\165", + ["alert"] = "\239\128\166", + ["alert-box"] = "\239\128\167", + ["alert-circle"] = "\239\128\168", + ["alert-circle-outline"] = "\239\151\150", + ["alert-octagon"] = "\239\128\169", + ["alert-outline"] = "\239\128\170", + ["alpha"] = "\239\128\171", + ["alphabetical"] = "\239\128\172", + ["altimeter"] = "\239\151\151", + ["amazon"] = "\239\128\173", + ["amazon-clouddrive"] = "\239\128\174", + ["ambulance"] = "\239\128\175", + ["amplifier"] = "\239\128\176", + ["anchor"] = "\239\128\177", + ["android"] = "\239\128\178", + ["android-debug-bridge"] = "\239\128\179", + ["android-studio"] = "\239\128\180", + ["angular"] = "\239\154\177", + ["animation"] = "\239\151\152", + ["apple"] = "\239\128\181", + ["apple-finder"] = "\239\128\182", + ["apple-ios"] = "\239\128\183", + ["apple-keyboard-caps"] = "\239\152\178", + ["apple-keyboard-command"] = "\239\152\179", + ["apple-keyboard-control"] = "\239\152\180", + ["apple-keyboard-option"] = "\239\152\181", + ["apple-keyboard-shift"] = "\239\152\182", + ["apple-mobileme"] = "\239\128\184", + ["apple-safari"] = "\239\128\185", + ["application"] = "\239\152\148", + ["appnet"] = "\239\128\186", + ["apps"] = "\239\128\187", + ["archive"] = "\239\128\188", + ["arrange-bring-forward"] = "\239\128\189", + ["arrange-bring-to-front"] = "\239\128\190", + ["arrange-send-backward"] = "\239\128\191", + ["arrange-send-to-back"] = "\239\129\128", + ["arrow-all"] = "\239\129\129", + ["arrow-bottom-left"] = "\239\129\130", + ["arrow-bottom-right"] = "\239\129\131", + ["arrow-compress"] = "\239\152\149", + ["arrow-compress-all"] = "\239\129\132", + ["arrow-down"] = "\239\129\133", + ["arrow-down-bold"] = "\239\129\134", + ["arrow-down-bold-circle"] = "\239\129\135", + ["arrow-down-bold-circle-outline"] = "\239\129\136", + ["arrow-down-bold-hexagon-outline"] = "\239\129\137", + ["arrow-down-drop-circle"] = "\239\129\138", + ["arrow-down-drop-circle-outline"] = "\239\129\139", + ["arrow-expand"] = "\239\152\150", + ["arrow-expand-all"] = "\239\129\140", + ["arrow-left"] = "\239\129\141", + ["arrow-left-bold"] = "\239\129\142", + ["arrow-left-bold-circle"] = "\239\129\143", + ["arrow-left-bold-circle-outline"] = "\239\129\144", + ["arrow-left-bold-hexagon-outline"] = "\239\129\145", + ["arrow-left-drop-circle"] = "\239\129\146", + ["arrow-left-drop-circle-outline"] = "\239\129\147", + ["arrow-right"] = "\239\129\148", + ["arrow-right-bold"] = "\239\129\149", + ["arrow-right-bold-circle"] = "\239\129\150", + ["arrow-right-bold-circle-outline"] = "\239\129\151", + ["arrow-right-bold-hexagon-outline"] = "\239\129\152", + ["arrow-right-drop-circle"] = "\239\129\153", + ["arrow-right-drop-circle-outline"] = "\239\129\154", + ["arrow-top-left"] = "\239\129\155", + ["arrow-top-right"] = "\239\129\156", + ["arrow-up"] = "\239\129\157", + ["arrow-up-bold"] = "\239\129\158", + ["arrow-up-bold-circle"] = "\239\129\159", + ["arrow-up-bold-circle-outline"] = "\239\129\160", + ["arrow-up-bold-hexagon-outline"] = "\239\129\161", + ["arrow-up-drop-circle"] = "\239\129\162", + ["arrow-up-drop-circle-outline"] = "\239\129\163", + ["assistant"] = "\239\129\164", + ["at"] = "\239\129\165", + ["attachment"] = "\239\129\166", + ["audiobook"] = "\239\129\167", + ["auto-fix"] = "\239\129\168", + ["auto-upload"] = "\239\129\169", + ["autorenew"] = "\239\129\170", + ["av-timer"] = "\239\129\171", + ["baby"] = "\239\129\172", + ["baby-buggy"] = "\239\154\142", + ["backburger"] = "\239\129\173", + ["backspace"] = "\239\129\174", + ["backup-restore"] = "\239\129\175", + ["bandcamp"] = "\239\153\180", + ["bank"] = "\239\129\176", + ["barcode"] = "\239\129\177", + ["barcode-scan"] = "\239\129\178", + ["barley"] = "\239\129\179", + ["barrel"] = "\239\129\180", + ["basecamp"] = "\239\129\181", + ["basket"] = "\239\129\182", + ["basket-fill"] = "\239\129\183", + ["basket-unfill"] = "\239\129\184", + ["battery"] = "\239\129\185", + ["battery-10"] = "\239\129\186", + ["battery-20"] = "\239\129\187", + ["battery-30"] = "\239\129\188", + ["battery-40"] = "\239\129\189", + ["battery-50"] = "\239\129\190", + ["battery-60"] = "\239\129\191", + ["battery-70"] = "\239\130\128", + ["battery-80"] = "\239\130\129", + ["battery-90"] = "\239\130\130", + ["battery-alert"] = "\239\130\131", + ["battery-charging"] = "\239\130\132", + ["battery-charging-100"] = "\239\130\133", + ["battery-charging-20"] = "\239\130\134", + ["battery-charging-30"] = "\239\130\135", + ["battery-charging-40"] = "\239\130\136", + ["battery-charging-60"] = "\239\130\137", + ["battery-charging-80"] = "\239\130\138", + ["battery-charging-90"] = "\239\130\139", + ["battery-minus"] = "\239\130\140", + ["battery-negative"] = "\239\130\141", + ["battery-outline"] = "\239\130\142", + ["battery-plus"] = "\239\130\143", + ["battery-positive"] = "\239\130\144", + ["battery-unknown"] = "\239\130\145", + ["beach"] = "\239\130\146", + ["beaker"] = "\239\154\143", + ["beats"] = "\239\130\151", + ["beer"] = "\239\130\152", + ["behance"] = "\239\130\153", + ["bell"] = "\239\130\154", + ["bell-off"] = "\239\130\155", + ["bell-outline"] = "\239\130\156", + ["bell-plus"] = "\239\130\157", + ["bell-ring"] = "\239\130\158", + ["bell-ring-outline"] = "\239\130\159", + ["bell-sleep"] = "\239\130\160", + ["beta"] = "\239\130\161", + ["bible"] = "\239\130\162", + ["bike"] = "\239\130\163", + ["bing"] = "\239\130\164", + ["binoculars"] = "\239\130\165", + ["bio"] = "\239\130\166", + ["biohazard"] = "\239\130\167", + ["bitbucket"] = "\239\130\168", + ["black-mesa"] = "\239\130\169", + ["blackberry"] = "\239\130\170", + ["blender"] = "\239\130\171", + ["blinds"] = "\239\130\172", + ["block-helper"] = "\239\130\173", + ["blogger"] = "\239\130\174", + ["bluetooth"] = "\239\130\175", + ["bluetooth-audio"] = "\239\130\176", + ["bluetooth-connect"] = "\239\130\177", + ["bluetooth-off"] = "\239\130\178", + ["bluetooth-settings"] = "\239\130\179", + ["bluetooth-transfer"] = "\239\130\180", + ["blur"] = "\239\130\181", + ["blur-linear"] = "\239\130\182", + ["blur-off"] = "\239\130\183", + ["blur-radial"] = "\239\130\184", + ["bomb"] = "\239\154\144", + ["bone"] = "\239\130\185", + ["book"] = "\239\130\186", + ["book-minus"] = "\239\151\153", + ["book-multiple"] = "\239\130\187", + ["book-multiple-variant"] = "\239\130\188", + ["book-open"] = "\239\130\189", + ["book-open-page-variant"] = "\239\151\154", + ["book-open-variant"] = "\239\130\190", + ["book-plus"] = "\239\151\155", + ["book-variant"] = "\239\130\191", + ["bookmark"] = "\239\131\128", + ["bookmark-check"] = "\239\131\129", + ["bookmark-music"] = "\239\131\130", + ["bookmark-outline"] = "\239\131\131", + ["bookmark-plus"] = "\239\131\133", + ["bookmark-plus-outline"] = "\239\131\132", + ["bookmark-remove"] = "\239\131\134", + ["boombox"] = "\239\151\156", + ["border-all"] = "\239\131\135", + ["border-bottom"] = "\239\131\136", + ["border-color"] = "\239\131\137", + ["border-horizontal"] = "\239\131\138", + ["border-inside"] = "\239\131\139", + ["border-left"] = "\239\131\140", + ["border-none"] = "\239\131\141", + ["border-outside"] = "\239\131\142", + ["border-right"] = "\239\131\143", + ["border-style"] = "\239\131\144", + ["border-top"] = "\239\131\145", + ["border-vertical"] = "\239\131\146", + ["bow-tie"] = "\239\153\183", + ["bowl"] = "\239\152\151", + ["bowling"] = "\239\131\147", + ["box"] = "\239\131\148", + ["box-cutter"] = "\239\131\149", + ["box-shadow"] = "\239\152\183", + ["bridge"] = "\239\152\152", + ["briefcase"] = "\239\131\150", + ["briefcase-check"] = "\239\131\151", + ["briefcase-download"] = "\239\131\152", + ["briefcase-upload"] = "\239\131\153", + ["brightness-1"] = "\239\131\154", + ["brightness-2"] = "\239\131\155", + ["brightness-3"] = "\239\131\156", + ["brightness-4"] = "\239\131\157", + ["brightness-5"] = "\239\131\158", + ["brightness-6"] = "\239\131\159", + ["brightness-7"] = "\239\131\160", + ["brightness-auto"] = "\239\131\161", + ["broom"] = "\239\131\162", + ["brush"] = "\239\131\163", + ["buffer"] = "\239\152\153", + ["bug"] = "\239\131\164", + ["bulletin-board"] = "\239\131\165", + ["bullhorn"] = "\239\131\166", + ["bullseye"] = "\239\151\157", + ["burst-mode"] = "\239\151\158", + ["bus"] = "\239\131\167", + ["cached"] = "\239\131\168", + ["cake"] = "\239\131\169", + ["cake-layered"] = "\239\131\170", + ["cake-variant"] = "\239\131\171", + ["calculator"] = "\239\131\172", + ["calendar"] = "\239\131\173", + ["calendar-blank"] = "\239\131\174", + ["calendar-check"] = "\239\131\175", + ["calendar-clock"] = "\239\131\176", + ["calendar-multiple"] = "\239\131\177", + ["calendar-multiple-check"] = "\239\131\178", + ["calendar-plus"] = "\239\131\179", + ["calendar-question"] = "\239\154\145", + ["calendar-range"] = "\239\153\184", + ["calendar-remove"] = "\239\131\180", + ["calendar-text"] = "\239\131\181", + ["calendar-today"] = "\239\131\182", + ["call-made"] = "\239\131\183", + ["call-merge"] = "\239\131\184", + ["call-missed"] = "\239\131\185", + ["call-received"] = "\239\131\186", + ["call-split"] = "\239\131\187", + ["camcorder"] = "\239\131\188", + ["camcorder-box"] = "\239\131\189", + ["camcorder-box-off"] = "\239\131\190", + ["camcorder-off"] = "\239\131\191", + ["camera"] = "\239\132\128", + ["camera-burst"] = "\239\154\146", + ["camera-enhance"] = "\239\132\129", + ["camera-front"] = "\239\132\130", + ["camera-front-variant"] = "\239\132\131", + ["camera-iris"] = "\239\132\132", + ["camera-off"] = "\239\151\159", + ["camera-party-mode"] = "\239\132\133", + ["camera-rear"] = "\239\132\134", + ["camera-rear-variant"] = "\239\132\135", + ["camera-switch"] = "\239\132\136", + ["camera-timer"] = "\239\132\137", + ["candle"] = "\239\151\162", + ["candycane"] = "\239\132\138", + ["car"] = "\239\132\139", + ["car-battery"] = "\239\132\140", + ["car-connected"] = "\239\132\141", + ["car-wash"] = "\239\132\142", + ["cards"] = "\239\152\184", + ["cards-outline"] = "\239\152\185", + ["cards-playing-outline"] = "\239\152\186", + ["carrot"] = "\239\132\143", + ["cart"] = "\239\132\144", + ["cart-off"] = "\239\153\171", + ["cart-outline"] = "\239\132\145", + ["cart-plus"] = "\239\132\146", + ["case-sensitive-alt"] = "\239\132\147", + ["cash"] = "\239\132\148", + ["cash-100"] = "\239\132\149", + ["cash-multiple"] = "\239\132\150", + ["cash-usd"] = "\239\132\151", + ["cast"] = "\239\132\152", + ["cast-connected"] = "\239\132\153", + ["castle"] = "\239\132\154", + ["cat"] = "\239\132\155", + ["cellphone"] = "\239\132\156", + ["cellphone-android"] = "\239\132\157", + ["cellphone-basic"] = "\239\132\158", + ["cellphone-dock"] = "\239\132\159", + ["cellphone-iphone"] = "\239\132\160", + ["cellphone-link"] = "\239\132\161", + ["cellphone-link-off"] = "\239\132\162", + ["cellphone-settings"] = "\239\132\163", + ["certificate"] = "\239\132\164", + ["chair-school"] = "\239\132\165", + ["chart-arc"] = "\239\132\166", + ["chart-areaspline"] = "\239\132\167", + ["chart-bar"] = "\239\132\168", + ["chart-bubble"] = "\239\151\163", + ["chart-gantt"] = "\239\153\172", + ["chart-histogram"] = "\239\132\169", + ["chart-line"] = "\239\132\170", + ["chart-pie"] = "\239\132\171", + ["chart-scatterplot-hexbin"] = "\239\153\173", + ["chart-timeline"] = "\239\153\174", + ["check"] = "\239\132\172", + ["check-all"] = "\239\132\173", + ["check-circle"] = "\239\151\160", + ["check-circle-outline"] = "\239\151\161", + ["checkbox-blank"] = "\239\132\174", + ["checkbox-blank-circle"] = "\239\132\175", + ["checkbox-blank-circle-outline"] = "\239\132\176", + ["checkbox-blank-outline"] = "\239\132\177", + ["checkbox-marked"] = "\239\132\178", + ["checkbox-marked-circle"] = "\239\132\179", + ["checkbox-marked-circle-outline"] = "\239\132\180", + ["checkbox-marked-outline"] = "\239\132\181", + ["checkbox-multiple-blank"] = "\239\132\182", + ["checkbox-multiple-blank-circle"] = "\239\152\187", + ["checkbox-multiple-blank-circle-outline"] = "\239\152\188", + ["checkbox-multiple-blank-outline"] = "\239\132\183", + ["checkbox-multiple-marked"] = "\239\132\184", + ["checkbox-multiple-marked-circle"] = "\239\152\189", + ["checkbox-multiple-marked-circle-outline"] = "\239\152\190", + ["checkbox-multiple-marked-outline"] = "\239\132\185", + ["checkerboard"] = "\239\132\186", + ["chemical-weapon"] = "\239\132\187", + ["chevron-double-down"] = "\239\132\188", + ["chevron-double-left"] = "\239\132\189", + ["chevron-double-right"] = "\239\132\190", + ["chevron-double-up"] = "\239\132\191", + ["chevron-down"] = "\239\133\128", + ["chevron-left"] = "\239\133\129", + ["chevron-right"] = "\239\133\130", + ["chevron-up"] = "\239\133\131", + ["chip"] = "\239\152\154", + ["church"] = "\239\133\132", + ["cisco-webex"] = "\239\133\133", + ["city"] = "\239\133\134", + ["clipboard"] = "\239\133\135", + ["clipboard-account"] = "\239\133\136", + ["clipboard-alert"] = "\239\133\137", + ["clipboard-arrow-down"] = "\239\133\138", + ["clipboard-arrow-left"] = "\239\133\139", + ["clipboard-check"] = "\239\133\140", + ["clipboard-outline"] = "\239\133\141", + ["clipboard-text"] = "\239\133\142", + ["clippy"] = "\239\133\143", + ["clock"] = "\239\133\144", + ["clock-alert"] = "\239\151\142", + ["clock-end"] = "\239\133\145", + ["clock-fast"] = "\239\133\146", + ["clock-in"] = "\239\133\147", + ["clock-out"] = "\239\133\148", + ["clock-start"] = "\239\133\149", + ["close"] = "\239\133\150", + ["close-box"] = "\239\133\151", + ["close-box-outline"] = "\239\133\152", + ["close-circle"] = "\239\133\153", + ["close-circle-outline"] = "\239\133\154", + ["close-network"] = "\239\133\155", + ["close-octagon"] = "\239\133\156", + ["close-octagon-outline"] = "\239\133\157", + ["closed-caption"] = "\239\133\158", + ["cloud"] = "\239\133\159", + ["cloud-check"] = "\239\133\160", + ["cloud-circle"] = "\239\133\161", + ["cloud-download"] = "\239\133\162", + ["cloud-outline"] = "\239\133\163", + ["cloud-outline-off"] = "\239\133\164", + ["cloud-print"] = "\239\133\165", + ["cloud-print-outline"] = "\239\133\166", + ["cloud-sync"] = "\239\152\191", + ["cloud-upload"] = "\239\133\167", + ["code-array"] = "\239\133\168", + ["code-braces"] = "\239\133\169", + ["code-brackets"] = "\239\133\170", + ["code-equal"] = "\239\133\171", + ["code-greater-than"] = "\239\133\172", + ["code-greater-than-or-equal"] = "\239\133\173", + ["code-less-than"] = "\239\133\174", + ["code-less-than-or-equal"] = "\239\133\175", + ["code-not-equal"] = "\239\133\176", + ["code-not-equal-variant"] = "\239\133\177", + ["code-parentheses"] = "\239\133\178", + ["code-string"] = "\239\133\179", + ["code-tags"] = "\239\133\180", + ["code-tags-check"] = "\239\154\147", + ["codepen"] = "\239\133\181", + ["coffee"] = "\239\133\182", + ["coffee-to-go"] = "\239\133\183", + ["coin"] = "\239\133\184", + ["coins"] = "\239\154\148", + ["collage"] = "\239\153\128", + ["color-helper"] = "\239\133\185", + ["comment"] = "\239\133\186", + ["comment-account"] = "\239\133\187", + ["comment-account-outline"] = "\239\133\188", + ["comment-alert"] = "\239\133\189", + ["comment-alert-outline"] = "\239\133\190", + ["comment-check"] = "\239\133\191", + ["comment-check-outline"] = "\239\134\128", + ["comment-multiple-outline"] = "\239\134\129", + ["comment-outline"] = "\239\134\130", + ["comment-plus-outline"] = "\239\134\131", + ["comment-processing"] = "\239\134\132", + ["comment-processing-outline"] = "\239\134\133", + ["comment-question-outline"] = "\239\134\134", + ["comment-remove-outline"] = "\239\134\135", + ["comment-text"] = "\239\134\136", + ["comment-text-outline"] = "\239\134\137", + ["compare"] = "\239\134\138", + ["compass"] = "\239\134\139", + ["compass-outline"] = "\239\134\140", + ["console"] = "\239\134\141", + ["contact-mail"] = "\239\134\142", + ["content-copy"] = "\239\134\143", + ["content-cut"] = "\239\134\144", + ["content-duplicate"] = "\239\134\145", + ["content-paste"] = "\239\134\146", + ["content-save"] = "\239\134\147", + ["content-save-all"] = "\239\134\148", + ["content-save-settings"] = "\239\152\155", + ["contrast"] = "\239\134\149", + ["contrast-box"] = "\239\134\150", + ["contrast-circle"] = "\239\134\151", + ["cookie"] = "\239\134\152", + ["copyright"] = "\239\151\166", + ["counter"] = "\239\134\153", + ["cow"] = "\239\134\154", + ["creation"] = "\239\135\137", + ["credit-card"] = "\239\134\155", + ["credit-card-multiple"] = "\239\134\156", + ["credit-card-off"] = "\239\151\164", + ["credit-card-plus"] = "\239\153\181", + ["credit-card-scan"] = "\239\134\157", + ["crop"] = "\239\134\158", + ["crop-free"] = "\239\134\159", + ["crop-landscape"] = "\239\134\160", + ["crop-portrait"] = "\239\134\161", + ["crop-rotate"] = "\239\154\149", + ["crop-square"] = "\239\134\162", + ["crosshairs"] = "\239\134\163", + ["crosshairs-gps"] = "\239\134\164", + ["crown"] = "\239\134\165", + ["cube"] = "\239\134\166", + ["cube-outline"] = "\239\134\167", + ["cube-send"] = "\239\134\168", + ["cube-unfolded"] = "\239\134\169", + ["cup"] = "\239\134\170", + ["cup-off"] = "\239\151\165", + ["cup-water"] = "\239\134\171", + ["currency-btc"] = "\239\134\172", + ["currency-eur"] = "\239\134\173", + ["currency-gbp"] = "\239\134\174", + ["currency-inr"] = "\239\134\175", + ["currency-ngn"] = "\239\134\176", + ["currency-rub"] = "\239\134\177", + ["currency-try"] = "\239\134\178", + ["currency-usd"] = "\239\134\179", + ["currency-usd-off"] = "\239\153\185", + ["cursor-default"] = "\239\134\180", + ["cursor-default-outline"] = "\239\134\181", + ["cursor-move"] = "\239\134\182", + ["cursor-pointer"] = "\239\134\183", + ["cursor-text"] = "\239\151\167", + ["database"] = "\239\134\184", + ["database-minus"] = "\239\134\185", + ["database-plus"] = "\239\134\186", + ["debug-step-into"] = "\239\134\187", + ["debug-step-out"] = "\239\134\188", + ["debug-step-over"] = "\239\134\189", + ["decimal-decrease"] = "\239\134\190", + ["decimal-increase"] = "\239\134\191", + ["delete"] = "\239\135\128", + ["delete-circle"] = "\239\154\130", + ["delete-forever"] = "\239\151\168", + ["delete-sweep"] = "\239\151\169", + ["delete-variant"] = "\239\135\129", + ["delta"] = "\239\135\130", + ["deskphone"] = "\239\135\131", + ["desktop-mac"] = "\239\135\132", + ["desktop-tower"] = "\239\135\133", + ["details"] = "\239\135\134", + ["developer-board"] = "\239\154\150", + ["deviantart"] = "\239\135\135", + ["dialpad"] = "\239\152\156", + ["diamond"] = "\239\135\136", + ["dice-1"] = "\239\135\138", + ["dice-2"] = "\239\135\139", + ["dice-3"] = "\239\135\140", + ["dice-4"] = "\239\135\141", + ["dice-5"] = "\239\135\142", + ["dice-6"] = "\239\135\143", + ["dice-d20"] = "\239\151\170", + ["dice-d4"] = "\239\151\171", + ["dice-d6"] = "\239\151\172", + ["dice-d8"] = "\239\151\173", + ["dictionary"] = "\239\152\157", + ["directions"] = "\239\135\144", + ["directions-fork"] = "\239\153\129", + ["discord"] = "\239\153\175", + ["disk"] = "\239\151\174", + ["disk-alert"] = "\239\135\145", + ["disqus"] = "\239\135\146", + ["disqus-outline"] = "\239\135\147", + ["division"] = "\239\135\148", + ["division-box"] = "\239\135\149", + ["dna"] = "\239\154\131", + ["dns"] = "\239\135\150", + ["do-not-disturb"] = "\239\154\151", + ["do-not-disturb-off"] = "\239\154\152", + ["dolby"] = "\239\154\178", + ["domain"] = "\239\135\151", + ["dots-horizontal"] = "\239\135\152", + ["dots-vertical"] = "\239\135\153", + ["douban"] = "\239\154\153", + ["download"] = "\239\135\154", + ["drag"] = "\239\135\155", + ["drag-horizontal"] = "\239\135\156", + ["drag-vertical"] = "\239\135\157", + ["drawing"] = "\239\135\158", + ["drawing-box"] = "\239\135\159", + ["dribbble"] = "\239\135\160", + ["dribbble-box"] = "\239\135\161", + ["drone"] = "\239\135\162", + ["dropbox"] = "\239\135\163", + ["drupal"] = "\239\135\164", + ["duck"] = "\239\135\165", + ["dumbbell"] = "\239\135\166", + ["earth"] = "\239\135\167", + ["earth-off"] = "\239\135\168", + ["edge"] = "\239\135\169", + ["eject"] = "\239\135\170", + ["elevation-decline"] = "\239\135\171", + ["elevation-rise"] = "\239\135\172", + ["elevator"] = "\239\135\173", + ["email"] = "\239\135\174", + ["email-open"] = "\239\135\175", + ["email-open-outline"] = "\239\151\175", + ["email-outline"] = "\239\135\176", + ["email-secure"] = "\239\135\177", + ["email-variant"] = "\239\151\176", + ["emby"] = "\239\154\179", + ["emoticon"] = "\239\135\178", + ["emoticon-cool"] = "\239\135\179", + ["emoticon-dead"] = "\239\154\154", + ["emoticon-devil"] = "\239\135\180", + ["emoticon-excited"] = "\239\154\155", + ["emoticon-happy"] = "\239\135\181", + ["emoticon-neutral"] = "\239\135\182", + ["emoticon-poop"] = "\239\135\183", + ["emoticon-sad"] = "\239\135\184", + ["emoticon-tongue"] = "\239\135\185", + ["engine"] = "\239\135\186", + ["engine-outline"] = "\239\135\187", + ["equal"] = "\239\135\188", + ["equal-box"] = "\239\135\189", + ["eraser"] = "\239\135\190", + ["eraser-variant"] = "\239\153\130", + ["escalator"] = "\239\135\191", + ["ethernet"] = "\239\136\128", + ["ethernet-cable"] = "\239\136\129", + ["ethernet-cable-off"] = "\239\136\130", + ["etsy"] = "\239\136\131", + ["ev-station"] = "\239\151\177", + ["evernote"] = "\239\136\132", + ["exclamation"] = "\239\136\133", + ["exit-to-app"] = "\239\136\134", + ["export"] = "\239\136\135", + ["eye"] = "\239\136\136", + ["eye-off"] = "\239\136\137", + ["eyedropper"] = "\239\136\138", + ["eyedropper-variant"] = "\239\136\139", + ["face"] = "\239\153\131", + ["face-profile"] = "\239\153\132", + ["facebook"] = "\239\136\140", + ["facebook-box"] = "\239\136\141", + ["facebook-messenger"] = "\239\136\142", + ["factory"] = "\239\136\143", + ["fan"] = "\239\136\144", + ["fast-forward"] = "\239\136\145", + ["fax"] = "\239\136\146", + ["ferry"] = "\239\136\147", + ["file"] = "\239\136\148", + ["file-chart"] = "\239\136\149", + ["file-check"] = "\239\136\150", + ["file-cloud"] = "\239\136\151", + ["file-delimited"] = "\239\136\152", + ["file-document"] = "\239\136\153", + ["file-document-box"] = "\239\136\154", + ["file-excel"] = "\239\136\155", + ["file-excel-box"] = "\239\136\156", + ["file-export"] = "\239\136\157", + ["file-find"] = "\239\136\158", + ["file-hidden"] = "\239\152\147", + ["file-image"] = "\239\136\159", + ["file-import"] = "\239\136\160", + ["file-lock"] = "\239\136\161", + ["file-multiple"] = "\239\136\162", + ["file-music"] = "\239\136\163", + ["file-outline"] = "\239\136\164", + ["file-pdf"] = "\239\136\165", + ["file-pdf-box"] = "\239\136\166", + ["file-powerpoint"] = "\239\136\167", + ["file-powerpoint-box"] = "\239\136\168", + ["file-presentation-box"] = "\239\136\169", + ["file-restore"] = "\239\153\176", + ["file-send"] = "\239\136\170", + ["file-tree"] = "\239\153\133", + ["file-video"] = "\239\136\171", + ["file-word"] = "\239\136\172", + ["file-word-box"] = "\239\136\173", + ["file-xml"] = "\239\136\174", + ["film"] = "\239\136\175", + ["filmstrip"] = "\239\136\176", + ["filmstrip-off"] = "\239\136\177", + ["filter"] = "\239\136\178", + ["filter-outline"] = "\239\136\179", + ["filter-remove"] = "\239\136\180", + ["filter-remove-outline"] = "\239\136\181", + ["filter-variant"] = "\239\136\182", + ["fingerprint"] = "\239\136\183", + ["fire"] = "\239\136\184", + ["firefox"] = "\239\136\185", + ["fish"] = "\239\136\186", + ["flag"] = "\239\136\187", + ["flag-checkered"] = "\239\136\188", + ["flag-outline"] = "\239\136\189", + ["flag-outline-variant"] = "\239\136\190", + ["flag-triangle"] = "\239\136\191", + ["flag-variant"] = "\239\137\128", + ["flash"] = "\239\137\129", + ["flash-auto"] = "\239\137\130", + ["flash-off"] = "\239\137\131", + ["flash-red-eye"] = "\239\153\186", + ["flashlight"] = "\239\137\132", + ["flashlight-off"] = "\239\137\133", + ["flask"] = "\239\130\147", + ["flask-empty"] = "\239\130\148", + ["flask-empty-outline"] = "\239\130\149", + ["flask-outline"] = "\239\130\150", + ["flattr"] = "\239\137\134", + ["flip-to-back"] = "\239\137\135", + ["flip-to-front"] = "\239\137\136", + ["floppy"] = "\239\137\137", + ["flower"] = "\239\137\138", + ["folder"] = "\239\137\139", + ["folder-account"] = "\239\137\140", + ["folder-download"] = "\239\137\141", + ["folder-google-drive"] = "\239\137\142", + ["folder-image"] = "\239\137\143", + ["folder-lock"] = "\239\137\144", + ["folder-lock-open"] = "\239\137\145", + ["folder-move"] = "\239\137\146", + ["folder-multiple"] = "\239\137\147", + ["folder-multiple-image"] = "\239\137\148", + ["folder-multiple-outline"] = "\239\137\149", + ["folder-outline"] = "\239\137\150", + ["folder-plus"] = "\239\137\151", + ["folder-remove"] = "\239\137\152", + ["folder-star"] = "\239\154\156", + ["folder-upload"] = "\239\137\153", + ["food"] = "\239\137\154", + ["food-apple"] = "\239\137\155", + ["food-fork-drink"] = "\239\151\178", + ["food-off"] = "\239\151\179", + ["food-variant"] = "\239\137\156", + ["football"] = "\239\137\157", + ["football-australian"] = "\239\137\158", + ["football-helmet"] = "\239\137\159", + ["format-align-center"] = "\239\137\160", + ["format-align-justify"] = "\239\137\161", + ["format-align-left"] = "\239\137\162", + ["format-align-right"] = "\239\137\163", + ["format-annotation-plus"] = "\239\153\134", + ["format-bold"] = "\239\137\164", + ["format-clear"] = "\239\137\165", + ["format-color-fill"] = "\239\137\166", + ["format-color-text"] = "\239\154\157", + ["format-float-center"] = "\239\137\167", + ["format-float-left"] = "\239\137\168", + ["format-float-none"] = "\239\137\169", + ["format-float-right"] = "\239\137\170", + ["format-header-1"] = "\239\137\171", + ["format-header-2"] = "\239\137\172", + ["format-header-3"] = "\239\137\173", + ["format-header-4"] = "\239\137\174", + ["format-header-5"] = "\239\137\175", + ["format-header-6"] = "\239\137\176", + ["format-header-decrease"] = "\239\137\177", + ["format-header-equal"] = "\239\137\178", + ["format-header-increase"] = "\239\137\179", + ["format-header-pound"] = "\239\137\180", + ["format-horizontal-align-center"] = "\239\152\158", + ["format-horizontal-align-left"] = "\239\152\159", + ["format-horizontal-align-right"] = "\239\152\160", + ["format-indent-decrease"] = "\239\137\181", + ["format-indent-increase"] = "\239\137\182", + ["format-italic"] = "\239\137\183", + ["format-line-spacing"] = "\239\137\184", + ["format-line-style"] = "\239\151\136", + ["format-line-weight"] = "\239\151\137", + ["format-list-bulleted"] = "\239\137\185", + ["format-list-bulleted-type"] = "\239\137\186", + ["format-list-numbers"] = "\239\137\187", + ["format-paint"] = "\239\137\188", + ["format-paragraph"] = "\239\137\189", + ["format-quote"] = "\239\137\190", + ["format-section"] = "\239\154\158", + ["format-size"] = "\239\137\191", + ["format-strikethrough"] = "\239\138\128", + ["format-strikethrough-variant"] = "\239\138\129", + ["format-subscript"] = "\239\138\130", + ["format-superscript"] = "\239\138\131", + ["format-text"] = "\239\138\132", + ["format-textdirection-l-to-r"] = "\239\138\133", + ["format-textdirection-r-to-l"] = "\239\138\134", + ["format-title"] = "\239\151\180", + ["format-underline"] = "\239\138\135", + ["format-vertical-align-bottom"] = "\239\152\161", + ["format-vertical-align-center"] = "\239\152\162", + ["format-vertical-align-top"] = "\239\152\163", + ["format-wrap-inline"] = "\239\138\136", + ["format-wrap-square"] = "\239\138\137", + ["format-wrap-tight"] = "\239\138\138", + ["format-wrap-top-bottom"] = "\239\138\139", + ["forum"] = "\239\138\140", + ["forward"] = "\239\138\141", + ["foursquare"] = "\239\138\142", + ["fridge"] = "\239\138\143", + ["fridge-filled"] = "\239\138\144", + ["fridge-filled-bottom"] = "\239\138\145", + ["fridge-filled-top"] = "\239\138\146", + ["fullscreen"] = "\239\138\147", + ["fullscreen-exit"] = "\239\138\148", + ["function"] = "\239\138\149", + ["gamepad"] = "\239\138\150", + ["gamepad-variant"] = "\239\138\151", + ["gas-cylinder"] = "\239\153\135", + ["gas-station"] = "\239\138\152", + ["gate"] = "\239\138\153", + ["gauge"] = "\239\138\154", + ["gavel"] = "\239\138\155", + ["gender-female"] = "\239\138\156", + ["gender-male"] = "\239\138\157", + ["gender-male-female"] = "\239\138\158", + ["gender-transgender"] = "\239\138\159", + ["ghost"] = "\239\138\160", + ["gift"] = "\239\138\161", + ["git"] = "\239\138\162", + ["github-box"] = "\239\138\163", + ["github-circle"] = "\239\138\164", + ["glass-flute"] = "\239\138\165", + ["glass-mug"] = "\239\138\166", + ["glass-stange"] = "\239\138\167", + ["glass-tulip"] = "\239\138\168", + ["glassdoor"] = "\239\138\169", + ["glasses"] = "\239\138\170", + ["gmail"] = "\239\138\171", + ["gnome"] = "\239\138\172", + ["gondola"] = "\239\154\133", + ["google"] = "\239\138\173", + ["google-cardboard"] = "\239\138\174", + ["google-chrome"] = "\239\138\175", + ["google-circles"] = "\239\138\176", + ["google-circles-communities"] = "\239\138\177", + ["google-circles-extended"] = "\239\138\178", + ["google-circles-group"] = "\239\138\179", + ["google-controller"] = "\239\138\180", + ["google-controller-off"] = "\239\138\181", + ["google-drive"] = "\239\138\182", + ["google-earth"] = "\239\138\183", + ["google-glass"] = "\239\138\184", + ["google-maps"] = "\239\151\181", + ["google-nearby"] = "\239\138\185", + ["google-pages"] = "\239\138\186", + ["google-physical-web"] = "\239\138\187", + ["google-play"] = "\239\138\188", + ["google-plus"] = "\239\138\189", + ["google-plus-box"] = "\239\138\190", + ["google-translate"] = "\239\138\191", + ["google-wallet"] = "\239\139\128", + ["gradient"] = "\239\154\159", + ["grease-pencil"] = "\239\153\136", + ["grid"] = "\239\139\129", + ["grid-off"] = "\239\139\130", + ["group"] = "\239\139\131", + ["guitar-electric"] = "\239\139\132", + ["guitar-pick"] = "\239\139\133", + ["guitar-pick-outline"] = "\239\139\134", + ["hackernews"] = "\239\152\164", + ["hamburger"] = "\239\154\132", + ["hand-pointing-right"] = "\239\139\135", + ["hanger"] = "\239\139\136", + ["hangouts"] = "\239\139\137", + ["harddisk"] = "\239\139\138", + ["headphones"] = "\239\139\139", + ["headphones-box"] = "\239\139\140", + ["headphones-settings"] = "\239\139\141", + ["headset"] = "\239\139\142", + ["headset-dock"] = "\239\139\143", + ["headset-off"] = "\239\139\144", + ["heart"] = "\239\139\145", + ["heart-box"] = "\239\139\146", + ["heart-box-outline"] = "\239\139\147", + ["heart-broken"] = "\239\139\148", + ["heart-outline"] = "\239\139\149", + ["heart-pulse"] = "\239\151\182", + ["help"] = "\239\139\150", + ["help-circle"] = "\239\139\151", + ["help-circle-outline"] = "\239\152\165", + ["hexagon"] = "\239\139\152", + ["hexagon-outline"] = "\239\139\153", + ["highway"] = "\239\151\183", + ["history"] = "\239\139\154", + ["hololens"] = "\239\139\155", + ["home"] = "\239\139\156", + ["home-map-marker"] = "\239\151\184", + ["home-modern"] = "\239\139\157", + ["home-outline"] = "\239\154\160", + ["home-variant"] = "\239\139\158", + ["hops"] = "\239\139\159", + ["hospital"] = "\239\139\160", + ["hospital-building"] = "\239\139\161", + ["hospital-marker"] = "\239\139\162", + ["hotel"] = "\239\139\163", + ["houzz"] = "\239\139\164", + ["houzz-box"] = "\239\139\165", + ["human"] = "\239\139\166", + ["human-child"] = "\239\139\167", + ["human-female"] = "\239\153\137", + ["human-greeting"] = "\239\153\138", + ["human-handsdown"] = "\239\153\139", + ["human-handsup"] = "\239\153\140", + ["human-male"] = "\239\153\141", + ["human-male-female"] = "\239\139\168", + ["human-pregnant"] = "\239\151\143", + ["image"] = "\239\139\169", + ["image-album"] = "\239\139\170", + ["image-area"] = "\239\139\171", + ["image-area-close"] = "\239\139\172", + ["image-broken"] = "\239\139\173", + ["image-broken-variant"] = "\239\139\174", + ["image-filter"] = "\239\139\175", + ["image-filter-black-white"] = "\239\139\176", + ["image-filter-center-focus"] = "\239\139\177", + ["image-filter-center-focus-weak"] = "\239\139\178", + ["image-filter-drama"] = "\239\139\179", + ["image-filter-frames"] = "\239\139\180", + ["image-filter-hdr"] = "\239\139\181", + ["image-filter-none"] = "\239\139\182", + ["image-filter-tilt-shift"] = "\239\139\183", + ["image-filter-vintage"] = "\239\139\184", + ["image-multiple"] = "\239\139\185", + ["import"] = "\239\139\186", + ["inbox"] = "\239\154\134", + ["inbox-arrow-down"] = "\239\139\187", + ["inbox-arrow-up"] = "\239\143\145", + ["incognito"] = "\239\151\185", + ["information"] = "\239\139\188", + ["information-outline"] = "\239\139\189", + ["information-variant"] = "\239\153\142", + ["instagram"] = "\239\139\190", + ["instapaper"] = "\239\139\191", + ["internet-explorer"] = "\239\140\128", + ["invert-colors"] = "\239\140\129", + ["itunes"] = "\239\153\182", + ["jeepney"] = "\239\140\130", + ["jira"] = "\239\140\131", + ["jsfiddle"] = "\239\140\132", + ["json"] = "\239\152\166", + ["keg"] = "\239\140\133", + ["kettle"] = "\239\151\186", + ["key"] = "\239\140\134", + ["key-change"] = "\239\140\135", + ["key-minus"] = "\239\140\136", + ["key-plus"] = "\239\140\137", + ["key-remove"] = "\239\140\138", + ["key-variant"] = "\239\140\139", + ["keyboard"] = "\239\140\140", + ["keyboard-backspace"] = "\239\140\141", + ["keyboard-caps"] = "\239\140\142", + ["keyboard-close"] = "\239\140\143", + ["keyboard-off"] = "\239\140\144", + ["keyboard-return"] = "\239\140\145", + ["keyboard-tab"] = "\239\140\146", + ["keyboard-variant"] = "\239\140\147", + ["kodi"] = "\239\140\148", + ["label"] = "\239\140\149", + ["label-outline"] = "\239\140\150", + ["lambda"] = "\239\152\167", + ["lamp"] = "\239\154\180", + ["lan"] = "\239\140\151", + ["lan-connect"] = "\239\140\152", + ["lan-disconnect"] = "\239\140\153", + ["lan-pending"] = "\239\140\154", + ["language-c"] = "\239\153\177", + ["language-cpp"] = "\239\153\178", + ["language-csharp"] = "\239\140\155", + ["language-css3"] = "\239\140\156", + ["language-html5"] = "\239\140\157", + ["language-javascript"] = "\239\140\158", + ["language-php"] = "\239\140\159", + ["language-python"] = "\239\140\160", + ["language-python-text"] = "\239\140\161", + ["laptop"] = "\239\140\162", + ["laptop-chromebook"] = "\239\140\163", + ["laptop-mac"] = "\239\140\164", + ["laptop-windows"] = "\239\140\165", + ["lastfm"] = "\239\140\166", + ["launch"] = "\239\140\167", + ["layers"] = "\239\140\168", + ["layers-off"] = "\239\140\169", + ["lead-pencil"] = "\239\153\143", + ["leaf"] = "\239\140\170", + ["led-off"] = "\239\140\171", + ["led-on"] = "\239\140\172", + ["led-outline"] = "\239\140\173", + ["led-variant-off"] = "\239\140\174", + ["led-variant-on"] = "\239\140\175", + ["led-variant-outline"] = "\239\140\176", + ["library"] = "\239\140\177", + ["library-books"] = "\239\140\178", + ["library-music"] = "\239\140\179", + ["library-plus"] = "\239\140\180", + ["lightbulb"] = "\239\140\181", + ["lightbulb-outline"] = "\239\140\182", + ["link"] = "\239\140\183", + ["link-off"] = "\239\140\184", + ["link-variant"] = "\239\140\185", + ["link-variant-off"] = "\239\140\186", + ["linkedin"] = "\239\140\187", + ["linkedin-box"] = "\239\140\188", + ["linux"] = "\239\140\189", + ["lock"] = "\239\140\190", + ["lock-open"] = "\239\140\191", + ["lock-open-outline"] = "\239\141\128", + ["lock-outline"] = "\239\141\129", + ["lock-plus"] = "\239\151\187", + ["login"] = "\239\141\130", + ["login-variant"] = "\239\151\188", + ["logout"] = "\239\141\131", + ["logout-variant"] = "\239\151\189", + ["looks"] = "\239\141\132", + ["loupe"] = "\239\141\133", + ["lumx"] = "\239\141\134", + ["magnet"] = "\239\141\135", + ["magnet-on"] = "\239\141\136", + ["magnify"] = "\239\141\137", + ["magnify-minus"] = "\239\141\138", + ["magnify-plus"] = "\239\141\139", + ["mail-ru"] = "\239\141\140", + ["map"] = "\239\141\141", + ["map-marker"] = "\239\141\142", + ["map-marker-circle"] = "\239\141\143", + ["map-marker-minus"] = "\239\153\144", + ["map-marker-multiple"] = "\239\141\144", + ["map-marker-off"] = "\239\141\145", + ["map-marker-plus"] = "\239\153\145", + ["map-marker-radius"] = "\239\141\146", + ["margin"] = "\239\141\147", + ["markdown"] = "\239\141\148", + ["marker"] = "\239\153\146", + ["marker-check"] = "\239\141\149", + ["martini"] = "\239\141\150", + ["material-ui"] = "\239\141\151", + ["math-compass"] = "\239\141\152", + ["matrix"] = "\239\152\168", + ["maxcdn"] = "\239\141\153", + ["medium"] = "\239\141\154", + ["memory"] = "\239\141\155", + ["menu"] = "\239\141\156", + ["menu-down"] = "\239\141\157", + ["menu-down-outline"] = "\239\154\181", + ["menu-left"] = "\239\141\158", + ["menu-right"] = "\239\141\159", + ["menu-up"] = "\239\141\160", + ["menu-up-outline"] = "\239\154\182", + ["message"] = "\239\141\161", + ["message-alert"] = "\239\141\162", + ["message-bulleted"] = "\239\154\161", + ["message-bulleted-off"] = "\239\154\162", + ["message-draw"] = "\239\141\163", + ["message-image"] = "\239\141\164", + ["message-outline"] = "\239\141\165", + ["message-plus"] = "\239\153\147", + ["message-processing"] = "\239\141\166", + ["message-reply"] = "\239\141\167", + ["message-reply-text"] = "\239\141\168", + ["message-text"] = "\239\141\169", + ["message-text-outline"] = "\239\141\170", + ["message-video"] = "\239\141\171", + ["meteor"] = "\239\152\169", + ["microphone"] = "\239\141\172", + ["microphone-off"] = "\239\141\173", + ["microphone-outline"] = "\239\141\174", + ["microphone-settings"] = "\239\141\175", + ["microphone-variant"] = "\239\141\176", + ["microphone-variant-off"] = "\239\141\177", + ["microscope"] = "\239\153\148", + ["microsoft"] = "\239\141\178", + ["minecraft"] = "\239\141\179", + ["minus"] = "\239\141\180", + ["minus-box"] = "\239\141\181", + ["minus-circle"] = "\239\141\182", + ["minus-circle-outline"] = "\239\141\183", + ["minus-network"] = "\239\141\184", + ["mixcloud"] = "\239\152\170", + ["monitor"] = "\239\141\185", + ["monitor-multiple"] = "\239\141\186", + ["more"] = "\239\141\187", + ["motorbike"] = "\239\141\188", + ["mouse"] = "\239\141\189", + ["mouse-off"] = "\239\141\190", + ["mouse-variant"] = "\239\141\191", + ["mouse-variant-off"] = "\239\142\128", + ["move-resize"] = "\239\153\149", + ["move-resize-variant"] = "\239\153\150", + ["movie"] = "\239\142\129", + ["multiplication"] = "\239\142\130", + ["multiplication-box"] = "\239\142\131", + ["music-box"] = "\239\142\132", + ["music-box-outline"] = "\239\142\133", + ["music-circle"] = "\239\142\134", + ["music-note"] = "\239\142\135", + ["music-note-bluetooth"] = "\239\151\190", + ["music-note-bluetooth-off"] = "\239\151\191", + ["music-note-eighth"] = "\239\142\136", + ["music-note-half"] = "\239\142\137", + ["music-note-off"] = "\239\142\138", + ["music-note-quarter"] = "\239\142\139", + ["music-note-sixteenth"] = "\239\142\140", + ["music-note-whole"] = "\239\142\141", + ["nature"] = "\239\142\142", + ["nature-people"] = "\239\142\143", + ["navigation"] = "\239\142\144", + ["near-me"] = "\239\151\141", + ["needle"] = "\239\142\145", + ["nest-protect"] = "\239\142\146", + ["nest-thermostat"] = "\239\142\147", + ["new-box"] = "\239\142\148", + ["newspaper"] = "\239\142\149", + ["nfc"] = "\239\142\150", + ["nfc-tap"] = "\239\142\151", + ["nfc-variant"] = "\239\142\152", + ["nodejs"] = "\239\142\153", + ["note"] = "\239\142\154", + ["note-multiple"] = "\239\154\183", + ["note-multiple-outline"] = "\239\154\184", + ["note-outline"] = "\239\142\155", + ["note-plus"] = "\239\142\156", + ["note-plus-outline"] = "\239\142\157", + ["note-text"] = "\239\142\158", + ["notification-clear-all"] = "\239\142\159", + ["nuke"] = "\239\154\163", + ["numeric"] = "\239\142\160", + ["numeric-0-box"] = "\239\142\161", + ["numeric-0-box-multiple-outline"] = "\239\142\162", + ["numeric-0-box-outline"] = "\239\142\163", + ["numeric-1-box"] = "\239\142\164", + ["numeric-1-box-multiple-outline"] = "\239\142\165", + ["numeric-1-box-outline"] = "\239\142\166", + ["numeric-2-box"] = "\239\142\167", + ["numeric-2-box-multiple-outline"] = "\239\142\168", + ["numeric-2-box-outline"] = "\239\142\169", + ["numeric-3-box"] = "\239\142\170", + ["numeric-3-box-multiple-outline"] = "\239\142\171", + ["numeric-3-box-outline"] = "\239\142\172", + ["numeric-4-box"] = "\239\142\173", + ["numeric-4-box-multiple-outline"] = "\239\142\174", + ["numeric-4-box-outline"] = "\239\142\175", + ["numeric-5-box"] = "\239\142\176", + ["numeric-5-box-multiple-outline"] = "\239\142\177", + ["numeric-5-box-outline"] = "\239\142\178", + ["numeric-6-box"] = "\239\142\179", + ["numeric-6-box-multiple-outline"] = "\239\142\180", + ["numeric-6-box-outline"] = "\239\142\181", + ["numeric-7-box"] = "\239\142\182", + ["numeric-7-box-multiple-outline"] = "\239\142\183", + ["numeric-7-box-outline"] = "\239\142\184", + ["numeric-8-box"] = "\239\142\185", + ["numeric-8-box-multiple-outline"] = "\239\142\186", + ["numeric-8-box-outline"] = "\239\142\187", + ["numeric-9-box"] = "\239\142\188", + ["numeric-9-box-multiple-outline"] = "\239\142\189", + ["numeric-9-box-outline"] = "\239\142\190", + ["numeric-9-plus-box"] = "\239\142\191", + ["numeric-9-plus-box-multiple-outline"] = "\239\143\128", + ["numeric-9-plus-box-outline"] = "\239\143\129", + ["nutrition"] = "\239\143\130", + ["oar"] = "\239\153\187", + ["octagon"] = "\239\143\131", + ["octagon-outline"] = "\239\143\132", + ["odnoklassniki"] = "\239\143\133", + ["office"] = "\239\143\134", + ["oil"] = "\239\143\135", + ["oil-temperature"] = "\239\143\136", + ["omega"] = "\239\143\137", + ["onedrive"] = "\239\143\138", + ["opacity"] = "\239\151\140", + ["open-in-app"] = "\239\143\139", + ["open-in-new"] = "\239\143\140", + ["openid"] = "\239\143\141", + ["opera"] = "\239\143\142", + ["ornament"] = "\239\143\143", + ["ornament-variant"] = "\239\143\144", + ["owl"] = "\239\143\146", + ["package"] = "\239\143\147", + ["package-down"] = "\239\143\148", + ["package-up"] = "\239\143\149", + ["package-variant"] = "\239\143\150", + ["package-variant-closed"] = "\239\143\151", + ["page-first"] = "\239\152\128", + ["page-last"] = "\239\152\129", + ["palette"] = "\239\143\152", + ["palette-advanced"] = "\239\143\153", + ["panda"] = "\239\143\154", + ["pandora"] = "\239\143\155", + ["panorama"] = "\239\143\156", + ["panorama-fisheye"] = "\239\143\157", + ["panorama-horizontal"] = "\239\143\158", + ["panorama-vertical"] = "\239\143\159", + ["panorama-wide-angle"] = "\239\143\160", + ["paper-cut-vertical"] = "\239\143\161", + ["paperclip"] = "\239\143\162", + ["parking"] = "\239\143\163", + ["pause"] = "\239\143\164", + ["pause-circle"] = "\239\143\165", + ["pause-circle-outline"] = "\239\143\166", + ["pause-octagon"] = "\239\143\167", + ["pause-octagon-outline"] = "\239\143\168", + ["paw"] = "\239\143\169", + ["paw-off"] = "\239\153\151", + ["pen"] = "\239\143\170", + ["pencil"] = "\239\143\171", + ["pencil-box"] = "\239\143\172", + ["pencil-box-outline"] = "\239\143\173", + ["pencil-lock"] = "\239\143\174", + ["pencil-off"] = "\239\143\175", + ["percent"] = "\239\143\176", + ["pharmacy"] = "\239\143\177", + ["phone"] = "\239\143\178", + ["phone-bluetooth"] = "\239\143\179", + ["phone-classic"] = "\239\152\130", + ["phone-forward"] = "\239\143\180", + ["phone-hangup"] = "\239\143\181", + ["phone-in-talk"] = "\239\143\182", + ["phone-incoming"] = "\239\143\183", + ["phone-locked"] = "\239\143\184", + ["phone-log"] = "\239\143\185", + ["phone-minus"] = "\239\153\152", + ["phone-missed"] = "\239\143\186", + ["phone-outgoing"] = "\239\143\187", + ["phone-paused"] = "\239\143\188", + ["phone-plus"] = "\239\153\153", + ["phone-settings"] = "\239\143\189", + ["phone-voip"] = "\239\143\190", + ["pi"] = "\239\143\191", + ["pi-box"] = "\239\144\128", + ["piano"] = "\239\153\188", + ["pig"] = "\239\144\129", + ["pill"] = "\239\144\130", + ["pin"] = "\239\144\131", + ["pin-off"] = "\239\144\132", + ["pine-tree"] = "\239\144\133", + ["pine-tree-box"] = "\239\144\134", + ["pinterest"] = "\239\144\135", + ["pinterest-box"] = "\239\144\136", + ["pizza"] = "\239\144\137", + ["plane-shield"] = "\239\154\186", + ["play"] = "\239\144\138", + ["play-box-outline"] = "\239\144\139", + ["play-circle"] = "\239\144\140", + ["play-circle-outline"] = "\239\144\141", + ["play-pause"] = "\239\144\142", + ["play-protected-content"] = "\239\144\143", + ["playlist-check"] = "\239\151\135", + ["playlist-minus"] = "\239\144\144", + ["playlist-play"] = "\239\144\145", + ["playlist-plus"] = "\239\144\146", + ["playlist-remove"] = "\239\144\147", + ["playstation"] = "\239\144\148", + ["plex"] = "\239\154\185", + ["plus"] = "\239\144\149", + ["plus-box"] = "\239\144\150", + ["plus-circle"] = "\239\144\151", + ["plus-circle-multiple-outline"] = "\239\144\152", + ["plus-circle-outline"] = "\239\144\153", + ["plus-network"] = "\239\144\154", + ["plus-one"] = "\239\144\155", + ["pocket"] = "\239\144\156", + ["pokeball"] = "\239\144\157", + ["polaroid"] = "\239\144\158", + ["poll"] = "\239\144\159", + ["poll-box"] = "\239\144\160", + ["polymer"] = "\239\144\161", + ["pool"] = "\239\152\134", + ["popcorn"] = "\239\144\162", + ["pot"] = "\239\153\154", + ["pot-mix"] = "\239\153\155", + ["pound"] = "\239\144\163", + ["pound-box"] = "\239\144\164", + ["power"] = "\239\144\165", + ["power-plug"] = "\239\154\164", + ["power-plug-off"] = "\239\154\165", + ["power-settings"] = "\239\144\166", + ["power-socket"] = "\239\144\167", + ["presentation"] = "\239\144\168", + ["presentation-play"] = "\239\144\169", + ["printer"] = "\239\144\170", + ["printer-3d"] = "\239\144\171", + ["printer-alert"] = "\239\144\172", + ["priority-high"] = "\239\152\131", + ["priority-low"] = "\239\152\132", + ["professional-hexagon"] = "\239\144\173", + ["projector"] = "\239\144\174", + ["projector-screen"] = "\239\144\175", + ["publish"] = "\239\154\166", + ["pulse"] = "\239\144\176", + ["puzzle"] = "\239\144\177", + ["qqchat"] = "\239\152\133", + ["qrcode"] = "\239\144\178", + ["qrcode-scan"] = "\239\144\179", + ["quadcopter"] = "\239\144\180", + ["quality-high"] = "\239\144\181", + ["quicktime"] = "\239\144\182", + ["radar"] = "\239\144\183", + ["radiator"] = "\239\144\184", + ["radio"] = "\239\144\185", + ["radio-handheld"] = "\239\144\186", + ["radio-tower"] = "\239\144\187", + ["radioactive"] = "\239\144\188", + ["radiobox-blank"] = "\239\144\189", + ["radiobox-marked"] = "\239\144\190", + ["raspberrypi"] = "\239\144\191", + ["ray-end"] = "\239\145\128", + ["ray-end-arrow"] = "\239\145\129", + ["ray-start"] = "\239\145\130", + ["ray-start-arrow"] = "\239\145\131", + ["ray-start-end"] = "\239\145\132", + ["ray-vertex"] = "\239\145\133", + ["rdio"] = "\239\145\134", + ["read"] = "\239\145\135", + ["readability"] = "\239\145\136", + ["receipt"] = "\239\145\137", + ["record"] = "\239\145\138", + ["record-rec"] = "\239\145\139", + ["recycle"] = "\239\145\140", + ["reddit"] = "\239\145\141", + ["redo"] = "\239\145\142", + ["redo-variant"] = "\239\145\143", + ["refresh"] = "\239\145\144", + ["regex"] = "\239\145\145", + ["relative-scale"] = "\239\145\146", + ["reload"] = "\239\145\147", + ["remote"] = "\239\145\148", + ["rename-box"] = "\239\145\149", + ["reorder-horizontal"] = "\239\154\135", + ["reorder-vertical"] = "\239\154\136", + ["repeat"] = "\239\145\150", + ["repeat-off"] = "\239\145\151", + ["repeat-once"] = "\239\145\152", + ["replay"] = "\239\145\153", + ["reply"] = "\239\145\154", + ["reply-all"] = "\239\145\155", + ["reproduction"] = "\239\145\156", + ["resize-bottom-right"] = "\239\145\157", + ["responsive"] = "\239\145\158", + ["restore"] = "\239\154\167", + ["rewind"] = "\239\145\159", + ["ribbon"] = "\239\145\160", + ["road"] = "\239\145\161", + ["road-variant"] = "\239\145\162", + ["robot"] = "\239\154\168", + ["rocket"] = "\239\145\163", + ["rotate-3d"] = "\239\145\164", + ["rotate-90"] = "\239\154\169", + ["rotate-left"] = "\239\145\165", + ["rotate-left-variant"] = "\239\145\166", + ["rotate-right"] = "\239\145\167", + ["rotate-right-variant"] = "\239\145\168", + ["rounded-corner"] = "\239\152\135", + ["router-wireless"] = "\239\145\169", + ["routes"] = "\239\145\170", + ["rowing"] = "\239\152\136", + ["rss"] = "\239\145\171", + ["rss-box"] = "\239\145\172", + ["ruler"] = "\239\145\173", + ["run"] = "\239\145\174", + ["sale"] = "\239\145\175", + ["satellite"] = "\239\145\176", + ["satellite-variant"] = "\239\145\177", + ["saxophone"] = "\239\152\137", + ["scale"] = "\239\145\178", + ["scale-balance"] = "\239\151\145", + ["scale-bathroom"] = "\239\145\179", + ["scanner"] = "\239\154\170", + ["school"] = "\239\145\180", + ["screen-rotation"] = "\239\145\181", + ["screen-rotation-lock"] = "\239\145\182", + ["screwdriver"] = "\239\145\183", + ["script"] = "\239\145\184", + ["sd"] = "\239\145\185", + ["seal"] = "\239\145\186", + ["seat-flat"] = "\239\145\187", + ["seat-flat-angled"] = "\239\145\188", + ["seat-individual-suite"] = "\239\145\189", + ["seat-legroom-extra"] = "\239\145\190", + ["seat-legroom-normal"] = "\239\145\191", + ["seat-legroom-reduced"] = "\239\146\128", + ["seat-recline-extra"] = "\239\146\129", + ["seat-recline-normal"] = "\239\146\130", + ["security"] = "\239\146\131", + ["security-home"] = "\239\154\137", + ["security-network"] = "\239\146\132", + ["select"] = "\239\146\133", + ["select-all"] = "\239\146\134", + ["select-inverse"] = "\239\146\135", + ["select-off"] = "\239\146\136", + ["selection"] = "\239\146\137", + ["send"] = "\239\146\138", + ["serial-port"] = "\239\153\156", + ["server"] = "\239\146\139", + ["server-minus"] = "\239\146\140", + ["server-network"] = "\239\146\141", + ["server-network-off"] = "\239\146\142", + ["server-off"] = "\239\146\143", + ["server-plus"] = "\239\146\144", + ["server-remove"] = "\239\146\145", + ["server-security"] = "\239\146\146", + ["settings"] = "\239\146\147", + ["settings-box"] = "\239\146\148", + ["shape-circle-plus"] = "\239\153\157", + ["shape-plus"] = "\239\146\149", + ["shape-polygon-plus"] = "\239\153\158", + ["shape-rectangle-plus"] = "\239\153\159", + ["shape-square-plus"] = "\239\153\160", + ["share"] = "\239\146\150", + ["share-variant"] = "\239\146\151", + ["shield"] = "\239\146\152", + ["shield-outline"] = "\239\146\153", + ["shopping"] = "\239\146\154", + ["shopping-music"] = "\239\146\155", + ["shredder"] = "\239\146\156", + ["shuffle"] = "\239\146\157", + ["shuffle-disabled"] = "\239\146\158", + ["shuffle-variant"] = "\239\146\159", + ["sigma"] = "\239\146\160", + ["sigma-lower"] = "\239\152\171", + ["sign-caution"] = "\239\146\161", + ["signal"] = "\239\146\162", + ["signal-variant"] = "\239\152\138", + ["silverware"] = "\239\146\163", + ["silverware-fork"] = "\239\146\164", + ["silverware-spoon"] = "\239\146\165", + ["silverware-variant"] = "\239\146\166", + ["sim"] = "\239\146\167", + ["sim-alert"] = "\239\146\168", + ["sim-off"] = "\239\146\169", + ["sitemap"] = "\239\146\170", + ["skip-backward"] = "\239\146\171", + ["skip-forward"] = "\239\146\172", + ["skip-next"] = "\239\146\173", + ["skip-next-circle"] = "\239\153\161", + ["skip-next-circle-outline"] = "\239\153\162", + ["skip-previous"] = "\239\146\174", + ["skip-previous-circle"] = "\239\153\163", + ["skip-previous-circle-outline"] = "\239\153\164", + ["skull"] = "\239\154\139", + ["skype"] = "\239\146\175", + ["skype-business"] = "\239\146\176", + ["slack"] = "\239\146\177", + ["sleep"] = "\239\146\178", + ["sleep-off"] = "\239\146\179", + ["smoking"] = "\239\146\180", + ["smoking-off"] = "\239\146\181", + ["snapchat"] = "\239\146\182", + ["snowman"] = "\239\146\183", + ["soccer"] = "\239\146\184", + ["sofa"] = "\239\146\185", + ["solid"] = "\239\154\140", + ["sort"] = "\239\146\186", + ["sort-alphabetical"] = "\239\146\187", + ["sort-ascending"] = "\239\146\188", + ["sort-descending"] = "\239\146\189", + ["sort-numeric"] = "\239\146\190", + ["sort-variant"] = "\239\146\191", + ["soundcloud"] = "\239\147\128", + ["source-branch"] = "\239\152\172", + ["source-fork"] = "\239\147\129", + ["source-merge"] = "\239\152\173", + ["source-pull"] = "\239\147\130", + ["speaker"] = "\239\147\131", + ["speaker-off"] = "\239\147\132", + ["speedometer"] = "\239\147\133", + ["spellcheck"] = "\239\147\134", + ["spotify"] = "\239\147\135", + ["spotlight"] = "\239\147\136", + ["spotlight-beam"] = "\239\147\137", + ["spray"] = "\239\153\165", + ["square-inc"] = "\239\147\138", + ["square-inc-cash"] = "\239\147\139", + ["stackexchange"] = "\239\152\139", + ["stackoverflow"] = "\239\147\140", + ["stairs"] = "\239\147\141", + ["star"] = "\239\147\142", + ["star-circle"] = "\239\147\143", + ["star-half"] = "\239\147\144", + ["star-off"] = "\239\147\145", + ["star-outline"] = "\239\147\146", + ["steam"] = "\239\147\147", + ["steering"] = "\239\147\148", + ["step-backward"] = "\239\147\149", + ["step-backward-2"] = "\239\147\150", + ["step-forward"] = "\239\147\151", + ["step-forward-2"] = "\239\147\152", + ["stethoscope"] = "\239\147\153", + ["sticker"] = "\239\151\144", + ["stocking"] = "\239\147\154", + ["stop"] = "\239\147\155", + ["stop-circle"] = "\239\153\166", + ["stop-circle-outline"] = "\239\153\167", + ["store"] = "\239\147\156", + ["store-24-hour"] = "\239\147\157", + ["stove"] = "\239\147\158", + ["subdirectory-arrow-left"] = "\239\152\140", + ["subdirectory-arrow-right"] = "\239\152\141", + ["subway"] = "\239\154\171", + ["subway-variant"] = "\239\147\159", + ["sunglasses"] = "\239\147\160", + ["surround-sound"] = "\239\151\133", + ["swap-horizontal"] = "\239\147\161", + ["swap-vertical"] = "\239\147\162", + ["swim"] = "\239\147\163", + ["switch"] = "\239\147\164", + ["sword"] = "\239\147\165", + ["sync"] = "\239\147\166", + ["sync-alert"] = "\239\147\167", + ["sync-off"] = "\239\147\168", + ["tab"] = "\239\147\169", + ["tab-unselected"] = "\239\147\170", + ["table"] = "\239\147\171", + ["table-column-plus-after"] = "\239\147\172", + ["table-column-plus-before"] = "\239\147\173", + ["table-column-remove"] = "\239\147\174", + ["table-column-width"] = "\239\147\175", + ["table-edit"] = "\239\147\176", + ["table-large"] = "\239\147\177", + ["table-row-height"] = "\239\147\178", + ["table-row-plus-after"] = "\239\147\179", + ["table-row-plus-before"] = "\239\147\180", + ["table-row-remove"] = "\239\147\181", + ["tablet"] = "\239\147\182", + ["tablet-android"] = "\239\147\183", + ["tablet-ipad"] = "\239\147\184", + ["tag"] = "\239\147\185", + ["tag-faces"] = "\239\147\186", + ["tag-heart"] = "\239\154\138", + ["tag-multiple"] = "\239\147\187", + ["tag-outline"] = "\239\147\188", + ["tag-text-outline"] = "\239\147\189", + ["target"] = "\239\147\190", + ["taxi"] = "\239\147\191", + ["teamviewer"] = "\239\148\128", + ["telegram"] = "\239\148\129", + ["television"] = "\239\148\130", + ["television-guide"] = "\239\148\131", + ["temperature-celsius"] = "\239\148\132", + ["temperature-fahrenheit"] = "\239\148\133", + ["temperature-kelvin"] = "\239\148\134", + ["tennis"] = "\239\148\135", + ["tent"] = "\239\148\136", + ["terrain"] = "\239\148\137", + ["test-tube"] = "\239\153\168", + ["text-shadow"] = "\239\153\169", + ["text-to-speech"] = "\239\148\138", + ["text-to-speech-off"] = "\239\148\139", + ["textbox"] = "\239\152\142", + ["texture"] = "\239\148\140", + ["theater"] = "\239\148\141", + ["theme-light-dark"] = "\239\148\142", + ["thermometer"] = "\239\148\143", + ["thermometer-lines"] = "\239\148\144", + ["thumb-down"] = "\239\148\145", + ["thumb-down-outline"] = "\239\148\146", + ["thumb-up"] = "\239\148\147", + ["thumb-up-outline"] = "\239\148\148", + ["thumbs-up-down"] = "\239\148\149", + ["ticket"] = "\239\148\150", + ["ticket-account"] = "\239\148\151", + ["ticket-confirmation"] = "\239\148\152", + ["tie"] = "\239\148\153", + ["timelapse"] = "\239\148\154", + ["timer"] = "\239\148\155", + ["timer-10"] = "\239\148\156", + ["timer-3"] = "\239\148\157", + ["timer-off"] = "\239\148\158", + ["timer-sand"] = "\239\148\159", + ["timer-sand-empty"] = "\239\154\172", + ["timetable"] = "\239\148\160", + ["toggle-switch"] = "\239\148\161", + ["toggle-switch-off"] = "\239\148\162", + ["tooltip"] = "\239\148\163", + ["tooltip-edit"] = "\239\148\164", + ["tooltip-image"] = "\239\148\165", + ["tooltip-outline"] = "\239\148\166", + ["tooltip-outline-plus"] = "\239\148\167", + ["tooltip-text"] = "\239\148\168", + ["tooth"] = "\239\148\169", + ["tor"] = "\239\148\170", + ["tower-beach"] = "\239\154\128", + ["tower-fire"] = "\239\154\129", + ["traffic-light"] = "\239\148\171", + ["train"] = "\239\148\172", + ["tram"] = "\239\148\173", + ["transcribe"] = "\239\148\174", + ["transcribe-close"] = "\239\148\175", + ["transfer"] = "\239\148\176", + ["transit-transfer"] = "\239\154\173", + ["translate"] = "\239\151\138", + ["tree"] = "\239\148\177", + ["trello"] = "\239\148\178", + ["trending-down"] = "\239\148\179", + ["trending-neutral"] = "\239\148\180", + ["trending-up"] = "\239\148\181", + ["triangle"] = "\239\148\182", + ["triangle-outline"] = "\239\148\183", + ["trophy"] = "\239\148\184", + ["trophy-award"] = "\239\148\185", + ["trophy-outline"] = "\239\148\186", + ["trophy-variant"] = "\239\148\187", + ["trophy-variant-outline"] = "\239\148\188", + ["truck"] = "\239\148\189", + ["truck-delivery"] = "\239\148\190", + ["tshirt-crew"] = "\239\148\191", + ["tshirt-v"] = "\239\149\128", + ["tumblr"] = "\239\149\129", + ["tumblr-reblog"] = "\239\149\130", + ["tune"] = "\239\152\174", + ["tune-vertical"] = "\239\153\170", + ["twitch"] = "\239\149\131", + ["twitter"] = "\239\149\132", + ["twitter-box"] = "\239\149\133", + ["twitter-circle"] = "\239\149\134", + ["twitter-retweet"] = "\239\149\135", + ["ubuntu"] = "\239\149\136", + ["umbraco"] = "\239\149\137", + ["umbrella"] = "\239\149\138", + ["umbrella-outline"] = "\239\149\139", + ["undo"] = "\239\149\140", + ["undo-variant"] = "\239\149\141", + ["unfold-less"] = "\239\149\142", + ["unfold-more"] = "\239\149\143", + ["ungroup"] = "\239\149\144", + ["unity"] = "\239\154\174", + ["untappd"] = "\239\149\145", + ["update"] = "\239\154\175", + ["upload"] = "\239\149\146", + ["usb"] = "\239\149\147", + ["vector-arrange-above"] = "\239\149\148", + ["vector-arrange-below"] = "\239\149\149", + ["vector-circle"] = "\239\149\150", + ["vector-circle-variant"] = "\239\149\151", + ["vector-combine"] = "\239\149\152", + ["vector-curve"] = "\239\149\153", + ["vector-difference"] = "\239\149\154", + ["vector-difference-ab"] = "\239\149\155", + ["vector-difference-ba"] = "\239\149\156", + ["vector-intersection"] = "\239\149\157", + ["vector-line"] = "\239\149\158", + ["vector-point"] = "\239\149\159", + ["vector-polygon"] = "\239\149\160", + ["vector-polyline"] = "\239\149\161", + ["vector-rectangle"] = "\239\151\134", + ["vector-selection"] = "\239\149\162", + ["vector-square"] = "\239\128\129", + ["vector-triangle"] = "\239\149\163", + ["vector-union"] = "\239\149\164", + ["verified"] = "\239\149\165", + ["vibrate"] = "\239\149\166", + ["video"] = "\239\149\167", + ["video-off"] = "\239\149\168", + ["video-switch"] = "\239\149\169", + ["view-agenda"] = "\239\149\170", + ["view-array"] = "\239\149\171", + ["view-carousel"] = "\239\149\172", + ["view-column"] = "\239\149\173", + ["view-dashboard"] = "\239\149\174", + ["view-day"] = "\239\149\175", + ["view-grid"] = "\239\149\176", + ["view-headline"] = "\239\149\177", + ["view-list"] = "\239\149\178", + ["view-module"] = "\239\149\179", + ["view-quilt"] = "\239\149\180", + ["view-stream"] = "\239\149\181", + ["view-week"] = "\239\149\182", + ["vimeo"] = "\239\149\183", + ["vine"] = "\239\149\184", + ["violin"] = "\239\152\143", + ["visualstudio"] = "\239\152\144", + ["vk"] = "\239\149\185", + ["vk-box"] = "\239\149\186", + ["vk-circle"] = "\239\149\187", + ["vlc"] = "\239\149\188", + ["voice"] = "\239\151\139", + ["voicemail"] = "\239\149\189", + ["volume-high"] = "\239\149\190", + ["volume-low"] = "\239\149\191", + ["volume-medium"] = "\239\150\128", + ["volume-off"] = "\239\150\129", + ["vpn"] = "\239\150\130", + ["walk"] = "\239\150\131", + ["wallet"] = "\239\150\132", + ["wallet-giftcard"] = "\239\150\133", + ["wallet-membership"] = "\239\150\134", + ["wallet-travel"] = "\239\150\135", + ["wan"] = "\239\150\136", + ["watch"] = "\239\150\137", + ["watch-export"] = "\239\150\138", + ["watch-import"] = "\239\150\139", + ["watch-vibrate"] = "\239\154\176", + ["water"] = "\239\150\140", + ["water-off"] = "\239\150\141", + ["water-percent"] = "\239\150\142", + ["water-pump"] = "\239\150\143", + ["watermark"] = "\239\152\146", + ["weather-cloudy"] = "\239\150\144", + ["weather-fog"] = "\239\150\145", + ["weather-hail"] = "\239\150\146", + ["weather-lightning"] = "\239\150\147", + ["weather-lightning-rainy"] = "\239\153\189", + ["weather-night"] = "\239\150\148", + ["weather-partlycloudy"] = "\239\150\149", + ["weather-pouring"] = "\239\150\150", + ["weather-rainy"] = "\239\150\151", + ["weather-snowy"] = "\239\150\152", + ["weather-snowy-rainy"] = "\239\153\190", + ["weather-sunny"] = "\239\150\153", + ["weather-sunset"] = "\239\150\154", + ["weather-sunset-down"] = "\239\150\155", + ["weather-sunset-up"] = "\239\150\156", + ["weather-windy"] = "\239\150\157", + ["weather-windy-variant"] = "\239\150\158", + ["web"] = "\239\150\159", + ["webcam"] = "\239\150\160", + ["webhook"] = "\239\152\175", + ["wechat"] = "\239\152\145", + ["weight"] = "\239\150\161", + ["weight-kilogram"] = "\239\150\162", + ["whatsapp"] = "\239\150\163", + ["wheelchair-accessibility"] = "\239\150\164", + ["white-balance-auto"] = "\239\150\165", + ["white-balance-incandescent"] = "\239\150\166", + ["white-balance-iridescent"] = "\239\150\167", + ["white-balance-sunny"] = "\239\150\168", + ["wifi"] = "\239\150\169", + ["wifi-off"] = "\239\150\170", + ["wii"] = "\239\150\171", + ["wikipedia"] = "\239\150\172", + ["window-close"] = "\239\150\173", + ["window-closed"] = "\239\150\174", + ["window-maximize"] = "\239\150\175", + ["window-minimize"] = "\239\150\176", + ["window-open"] = "\239\150\177", + ["window-restore"] = "\239\150\178", + ["windows"] = "\239\150\179", + ["wordpress"] = "\239\150\180", + ["worker"] = "\239\150\181", + ["wrap"] = "\239\150\182", + ["wrench"] = "\239\150\183", + ["wunderlist"] = "\239\150\184", + ["xaml"] = "\239\153\179", + ["xbox"] = "\239\150\185", + ["xbox-controller"] = "\239\150\186", + ["xbox-controller-off"] = "\239\150\187", + ["xda"] = "\239\150\188", + ["xing"] = "\239\150\189", + ["xing-box"] = "\239\150\190", + ["xing-circle"] = "\239\150\191", + ["xml"] = "\239\151\128", + ["yeast"] = "\239\151\129", + ["yelp"] = "\239\151\130", + ["yin-yang"] = "\239\153\191", + ["youtube-play"] = "\239\151\131", + ["zip-box"] = "\239\151\132", } local function get (...) diff --git a/material-love/libs/roboto.lua b/material-love/libs/roboto.lua index 53c0c9d..31e43d4 100644 --- a/material-love/libs/roboto.lua +++ b/material-love/libs/roboto.lua @@ -24,8 +24,8 @@ local load = function (a) button = lf(medium, 15 * ps) } - local get = function (font) - return roboto[font] + local get = function (self, font) + return self[font] end setmetatable(roboto, {__call = get}) diff --git a/material-love/libs/roundrect.lua b/material-love/libs/roundrect.lua index 40523a7..7cd4e4e 100644 --- a/material-love/libs/roundrect.lua +++ b/material-love/libs/roundrect.lua @@ -35,7 +35,6 @@ roundrect.new = function (x, y, width, height, radius, precision) precision = precision or radius[i]^2 for j = 0, precision do local add = (xs[i] and ys[i]) and 2 or ((xs[i] and 3 or 2) + (ys[i] and 1 or 2)) - print(add % 4) local angle = (j / precision + add) * math.pi / 2 table.insert(p, (xs[i] and x + radius[i] or x + width - radius[i]) + radius[i] * math.cos(angle)) table.insert(p, (ys[i] and y + radius[i] or y + height - radius[i]) + radius[i] * math.sin(angle))